/* ============================================================
   HIGH PLAINS ECO SOLUTIONS — Design System
   Brand: Deep forest green + Colorado sky blue + warm red accent
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800&f[]=satoshi@400,500,700&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Brand Colors */
  --color-green:        #2d6a1f;
  --color-green-dark:   #1e4a14;
  --color-green-light:  #e8f5e2;
  --color-blue:         #1a6fa8;
  --color-blue-dark:    #124e7a;
  --color-blue-light:   #e0f0fa;
  --color-red:          #c0392b;
  --color-red-dark:     #922b21;

  /* Surfaces */
  --color-bg:           #f8f7f4;
  --color-surface:      #ffffff;
  --color-surface-2:    #f2f0ec;
  --color-divider:      #dedad3;
  --color-border:       #ccc8c0;

  /* Text */
  --color-text:         #1a1a18;
  --color-text-muted:   #6b6860;
  --color-text-faint:   #aba8a0;
  --color-text-inverse: #f8f7f4;

  /* Primary CTA */
  --color-primary:      #2d6a1f;
  --color-primary-hover:#1e4a14;

  /* Type */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Misc */
  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-full:9999px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --transition: 180ms cubic-bezier(0.16,1,0.3,1);
}

/* Dark Mode */
[data-theme='dark'] {
  --color-bg:           #131210;
  --color-surface:      #1a1917;
  --color-surface-2:    #201e1c;
  --color-divider:      #2e2c28;
  --color-border:       #3a3834;
  --color-text:         #d8d6d0;
  --color-text-muted:   #807e78;
  --color-text-faint:   #58564f;
  --color-text-inverse: #1a1a18;
  --color-primary:      #5aaa3f;
  --color-primary-hover:#7fc968;
  --color-green:        #5aaa3f;
  --color-green-light:  #1e2e18;
  --color-blue:         #5ba8d8;
  --color-blue-light:   #182230;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:           #131210;
    --color-surface:      #1a1917;
    --color-surface-2:    #201e1c;
    --color-divider:      #2e2c28;
    --color-border:       #3a3834;
    --color-text:         #d8d6d0;
    --color-text-muted:   #807e78;
    --color-text-faint:   #58564f;
    --color-text-inverse: #1a1a18;
    --color-primary:      #5aaa3f;
    --color-primary-hover:#7fc968;
    --color-green:        #5aaa3f;
    --color-green-light:  #1e2e18;
    --color-blue:         #5ba8d8;
    --color-blue-light:   #182230;
  }
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth; scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh; font-family: var(--font-body); font-size: var(--text-base);
  line-height: 1.6; color: var(--color-text); background: var(--color-bg);
}
img, picture, video { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; max-width: 70ch; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
::selection { background: rgba(45,106,31,.2); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ---- Layout Utilities ---- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(var(--space-5), 5vw, var(--space-16)); }
.container--narrow { max-width: var(--content-default); }
.section { padding-block: clamp(var(--space-12), 8vw, var(--space-32)); }

/* ---- Header / Nav ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--space-4);
}
.header__logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--color-text); }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__logo-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm); letter-spacing: -.01em; color: var(--color-green); }
.header__logo-sub  { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: .03em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.nav__links a { text-decoration: none; color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; }
.nav__links a:hover, .nav__links a[aria-current] { color: var(--color-green); }
.nav__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-green); color: #fff; text-decoration: none;
  font-size: var(--text-sm); font-weight: 700; padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full); letter-spacing: .01em;
}
.nav__cta:hover { background: var(--color-green-dark); color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.theme-toggle { background: none; border: 1px solid var(--color-border); border-radius: var(--radius-full); padding: var(--space-2); color: var(--color-text-muted); display: flex; align-items: center; }
.theme-toggle:hover { color: var(--color-text); border-color: var(--color-text-muted); }

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); border-bottom: 1px solid var(--color-divider); padding: var(--space-6); gap: var(--space-5); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; background: #1a2e14;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover; background-position: center 30%;
  opacity: .62;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,34,8,.75) 0%, rgba(14,34,8,.35) 60%, transparent 100%); }
.hero__content { position: relative; z-index: 2; padding-block: var(--space-24); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4); color: rgba(255,255,255,.9);
  font-size: var(--text-xs); font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #5aaa3f; }
.hero h1 {
  font-size: var(--text-hero); font-weight: 800; color: #fff;
  line-height: 1.05; letter-spacing: -.02em; max-width: 14ch;
  margin-bottom: var(--space-6);
}
.hero h1 span { color: #8dd96b; }
.hero__sub { font-size: var(--text-lg); color: rgba(255,255,255,.8); max-width: 52ch; margin-bottom: var(--space-10); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2); text-decoration: none;
  font-weight: 700; font-size: var(--text-sm); border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-7); letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--color-green); color: #fff; box-shadow: 0 4px 20px rgba(45,106,31,.4); }
.btn--primary:hover { background: var(--color-green-dark); box-shadow: 0 6px 28px rgba(45,106,31,.5); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn--outline { background: transparent; color: var(--color-green); border: 2px solid var(--color-green); }
.btn--outline:hover { background: var(--color-green); color: #fff; }
.hero__stats { display: flex; flex-wrap: wrap; gap: var(--space-8); margin-top: var(--space-12); padding-top: var(--space-10); border-top: 1px solid rgba(255,255,255,.15); }
.hero__stat-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: #fff; line-height: 1; }
.hero__stat-label { font-size: var(--text-xs); color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-top: var(--space-1); }

/* ---- Section headings ---- */
.section-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-green); margin-bottom: var(--space-3); }
.section-title { font-size: var(--text-2xl); font-weight: 800; letter-spacing: -.02em; color: var(--color-text); line-height: 1.1; margin-bottom: var(--space-5); }
.section-desc { font-size: var(--text-base); color: var(--color-text-muted); max-width: 58ch; }

/* ---- Why Us (Benefits) ---- */
.why { background: var(--color-surface); }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); margin-top: var(--space-10); }
.why__card {
  background: var(--color-bg); border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl); padding: var(--space-8);
  transition: box-shadow .25s, transform .25s;
}
.why__card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why__icon { width: 48px; height: 48px; border-radius: var(--radius-lg); background: var(--color-green-light); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); }
.why__icon svg { color: var(--color-green); }
.why__card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); }
.why__card p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

/* ---- Services ---- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); margin-top: var(--space-10); }
.service-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--color-surface); border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__img { width: 100%; height: 220px; object-fit: cover; }
.service-card__body { padding: var(--space-6); }
.service-card__tag { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-green); margin-bottom: var(--space-3); }
.service-card h3 { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-3); }
.service-card p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }
.service-card__link { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-5); font-size: var(--text-sm); font-weight: 700; color: var(--color-green); text-decoration: none; }
.service-card__link:hover { gap: var(--space-3); }

/* ---- Why Artificial Turf (green band) ---- */
.turf-band { background: var(--color-green); color: #fff; }
.turf-band .section-label { color: rgba(255,255,255,.6); }
.turf-band .section-title { color: #fff; }
.turf-band .section-desc { color: rgba(255,255,255,.8); }
.turf-band__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-6); margin-top: var(--space-10); }
.turf-band__stat { text-align: center; padding: var(--space-6); background: rgba(255,255,255,.1); border-radius: var(--radius-xl); }
.turf-band__stat-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; line-height: 1; }
.turf-band__stat-label { font-size: var(--text-xs); color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; margin-top: var(--space-2); }

/* ---- Process ---- */
.process { background: var(--color-surface); }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-2); margin-top: var(--space-10); position: relative; }
.process__step { text-align: center; padding: var(--space-8) var(--space-6); }
.process__num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--color-green-light);
  color: var(--color-green); font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5);
  border: 2px solid var(--color-green);
}
.process__step h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.process__step p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

/* ---- Testimonials ---- */
.testimonials { background: var(--color-surface-2); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-6); margin-top: var(--space-10); }
.testimonial {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl); padding: var(--space-8);
}
.testimonial__stars { display: flex; gap: var(--space-1); margin-bottom: var(--space-4); color: #f59e0b; }
.testimonial__text { font-size: var(--text-base); color: var(--color-text); line-height: 1.7; margin-bottom: var(--space-6); max-width: none; font-style: italic; }
.testimonial__author { font-weight: 700; font-size: var(--text-sm); }
.testimonial__loc { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 60%, #3d8f28 100%);
  color: #fff; text-align: center;
}
.cta-banner h2 { font-size: var(--text-2xl); font-weight: 800; color: #fff; margin-bottom: var(--space-5); }
.cta-banner p { font-size: var(--text-base); color: rgba(255,255,255,.8); margin-bottom: var(--space-8); max-width: 54ch; margin-inline: auto; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.btn--white { background: #fff; color: var(--color-green); }
.btn--white:hover { background: #f0fce8; color: var(--color-green-dark); }
.btn--ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---- Footer ---- */
.footer { background: #0d1a08; color: rgba(255,255,255,.7); padding-top: var(--space-16); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-12); padding-bottom: var(--space-12); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: #fff; }
.footer__brand-sub { font-size: var(--text-xs); color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.footer__tagline { font-size: var(--text-sm); margin-top: var(--space-4); max-width: 36ch; line-height: 1.6; }
.footer__col h4 { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: #fff; margin-bottom: var(--space-5); letter-spacing: .02em; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__links a { text-decoration: none; color: rgba(255,255,255,.6); font-size: var(--text-sm); }
.footer__links a:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); font-size: var(--text-sm); }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: #5aaa3f; }
.footer__contact-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-block: var(--space-6); font-size: var(--text-xs); color: rgba(255,255,255,.35); flex-wrap: wrap; gap: var(--space-3); }
.footer__bottom a { color: rgba(255,255,255,.4); text-decoration: none; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 5rem); }
}

/* ---- Page-specific ---- */
/* Services page */
.services-hero { background: linear-gradient(135deg, #0d1a08 0%, #1e3a14 100%); padding-block: clamp(var(--space-16), 12vw, var(--space-32)); color: #fff; }
.services-hero h1 { font-size: var(--text-3xl); font-weight: 800; color: #fff; }
.services-hero p { font-size: var(--text-lg); color: rgba(255,255,255,.75); max-width: 56ch; margin-top: var(--space-5); }

.service-detail { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.service-detail:nth-child(even) { background: var(--color-surface); }
.service-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: center; }
.service-detail:nth-child(even) .service-detail__inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail__inner > * { direction: ltr; }
.service-detail__img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail__img img { width: 100%; height: 400px; object-fit: cover; }
.service-detail__content ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-6); }
.service-detail__content ul li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.service-detail__content ul li::before { content: ''; display: block; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--color-green); margin-top: 7px; }
@media (max-width: 768px) {
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__inner { direction: ltr; }
}

/* Gallery page */
.gallery-hero { background: linear-gradient(135deg, #0a1833 0%, #1a3a6a 100%); padding-block: clamp(var(--space-16), 12vw, var(--space-32)); color: #fff; }
.gallery-hero h1 { font-size: var(--text-3xl); font-weight: 800; color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-10); }
.gallery-grid__item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid__item:hover img { transform: scale(1.04); }
.gallery-grid__item--wide { grid-column: span 2; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-grid__item--wide { grid-column: span 2; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid__item--wide { grid-column: span 1; } }

/* Contact page */
.contact-hero { background: linear-gradient(135deg, #1a1208 0%, #2e1e08 100%); padding-block: clamp(var(--space-16), 10vw, var(--space-24)); color: #fff; }
.contact-hero h1 { font-size: var(--text-3xl); font-weight: 800; color: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info__item { display: flex; gap: var(--space-4); align-items: flex-start; padding-block: var(--space-5); border-bottom: 1px solid var(--color-divider); }
.contact-info__icon { width: 44px; height: 44px; border-radius: var(--radius-lg); background: var(--color-green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { color: var(--color-green); }
.contact-info__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: var(--space-1); }
.contact-info__value { font-size: var(--text-base); font-weight: 600; }
.contact-info__value a { color: var(--color-text); text-decoration: none; }
.contact-info__value a:hover { color: var(--color-green); }

.contact-form { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-xl); padding: var(--space-10); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: var(--space-6); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-bg); font-size: var(--text-sm); color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-green); box-shadow: 0 0 0 3px rgba(45,106,31,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* About strip */
.about-strip { background: var(--color-blue-light); }
[data-theme='dark'] .about-strip { background: var(--color-blue-light); }
.about-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: center; }
@media (max-width: 768px) { .about-strip__inner { grid-template-columns: 1fr; } }
.about-strip__img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-strip__img img { width: 100%; height: 380px; object-fit: cover; }

/* Page active nav */
a[aria-current='page'] { color: var(--color-green) !important; font-weight: 700; }
