@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --pine-950: #091510;
  --pine-900: #0E2018;
  --pine-800: #1A3B2C;
  --pine-700: #235039;
  --pine-600: #2D6848;
  --pine-500: #3E7F5E;
  --pine-400: #5C9E7A;
  --pine-300: #85BEA0;
  --pine-200: #B8D9C8;
  --pine-100: #DDEEE6;
  --pine-50:  #EEF7F2;

  --sand-50:  #F6F5F0;
  --sand-100: #EEECe5;
  --sand-200: #E2DFDA;

  --text-1: #0D1A10;
  --text-2: #29392E;
  --text-3: #536059;
  --text-4: #8A9E90;

  --border: #DDE8E2;
  --border-dark: #1E4030;

  --serif: 'Barlow Semi Condensed', system-ui, sans-serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --sec-py: clamp(72px, 9vw, 120px);
  --radius: 6px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--text-1); background: #fff; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: inherit; }
p { margin: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: var(--sans); }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container-sm { max-width: 820px;        margin: 0 auto; padding: 0 var(--gutter); }
.section      { padding: var(--sec-py) 0; }
.section-sm   { padding: clamp(48px, 6vw, 80px) 0; }

/* ─── NAVIGATION ─────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: height .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s cubic-bezier(.4, 0, .2, 1), background-color .2s cubic-bezier(.4, 0, .2, 1);
}
.site-nav.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(26, 59, 44, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: none; }
  .mobile-service-toggle svg { transition: none; }
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  color: var(--pine-800); letter-spacing: .01em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 34px; align-items: center;
}
.nav-links a {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pine-700); }
.nav-links a:focus-visible { outline: 2px solid var(--pine-500); outline-offset: 4px; border-radius: 2px; }

.nav-links li { position: relative; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown-trigger svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s cubic-bezier(.23, 1, .32, 1); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(26, 59, 44, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s cubic-bezier(.23, 1, .32, 1), transform .18s cubic-bezier(.23, 1, .32, 1), visibility .18s cubic-bezier(.23, 1, .32, 1);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: var(--pine-50);
  color: var(--pine-700);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-social { display: flex; gap: 12px; align-items: center; }
.nav-social a { color: var(--text-4); transition: color .15s; line-height: 0; }
.nav-social a:hover { color: var(--pine-600); }
.nav-social a:focus-visible { outline: 2px solid var(--pine-500); outline-offset: 3px; border-radius: 2px; }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
  border-radius: 4px;
}
.nav-hamburger:focus-visible { outline: 2px solid var(--pine-500); outline-offset: 2px; }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-2); border-radius: 2px;
}
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: var(--gutter); right: var(--gutter); z-index: 199;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 18px 44px rgba(26, 59, 44, .14);
  padding: 10px; flex-direction: column; gap: 0;
  max-height: calc(100vh - var(--nav-h) - var(--gutter));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-3);
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--pine-50); color: var(--pine-700);
}

.mobile-service-row { display: flex; align-items: stretch; }
.mobile-service-row a { flex: 1; }

.mobile-service-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: 12px; background: none; border: none; cursor: pointer;
  border-radius: 8px; color: var(--text-3);
}
.mobile-service-toggle:hover,
.mobile-service-toggle:focus-visible {
  background: var(--pine-50); color: var(--pine-700);
}
.mobile-service-toggle svg {
  width: 11px; height: 11px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 180ms cubic-bezier(.23, 1, .32, 1);
}
.mobile-service-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-service-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 12px;
}
.mobile-service-links[hidden] {
  display: none;
}

.mobile-service-links a {
  display: block; padding: 10px 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-3);
  border-radius: 8px;
}
.mobile-service-links a:hover,
.mobile-service-links a:focus-visible {
  background: var(--pine-50); color: var(--pine-700);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s, transform .1s;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-primary       { background: var(--pine-700); color: #fff; border-color: var(--pine-700); }
.btn-primary:hover { background: var(--pine-800); border-color: var(--pine-800); }
.btn-outline-white       { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn-outline-green       { background: transparent; color: var(--pine-700); border-color: var(--pine-300); }
.btn-outline-green:hover { background: var(--pine-50); border-color: var(--pine-600); }
@media (prefers-reduced-motion: reduce) {
  .btn:active { transform: none; }
}

/* ─── BACKGROUNDS ─────────────────────────────────────── */
.bg-sand    { background: var(--sand-50); }
.bg-pine800 { background: var(--pine-800); }
.bg-pine900 { background: var(--pine-900); }
.bg-pine950 { background: var(--pine-950); }
.bg-white   { background: #fff; }

/* ─── TYPOGRAPHY HELPERS ──────────────────────────────── */
.eyebrow {
  display: block; font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pine-600); margin-bottom: 14px;
}
.eyebrow-light { color: var(--pine-400); }

/* ─── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background: var(--pine-800);
  padding: calc(var(--nav-h) + 72px) 0 72px;
}
.page-hero h1 {
  color: #fff; font-size: clamp(40px, 5vw, 62px);
  max-width: 700px; margin-bottom: 20px; font-weight: 700;
}
.page-hero p {
  color: var(--pine-200); font-size: clamp(16px, 1.3vw, 19px);
  max-width: 600px; line-height: 1.72; font-weight: 300;
}

/* ─── ABOUT / CONTACT PHOTO HERO ──────────────────────── */
.about-photo-hero,
.contact-photo-hero {
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  background: var(--pine-900);
}

.about-photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(230, 238, 232, 0.12) 0%, rgba(66, 103, 78, 0.18) 58%, rgba(19, 62, 43, 0.38) 100%),
    url("../images/about-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(230, 238, 232, 0.12) 0%, rgba(66, 103, 78, 0.18) 58%, rgba(19, 62, 43, 0.38) 100%),
    url("../images/contact-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-photo-hero::after,
.contact-photo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 28, 19, 0.90) 0%, rgba(8, 28, 19, 0.74) 36%, rgba(8, 28, 19, 0.32) 70%, rgba(8, 28, 19, 0.16) 100%),
    linear-gradient(to bottom, rgba(8, 28, 19, 0.12) 0%, rgba(8, 28, 19, 0.36) 100%);
}

.about-photo-hero .container,
.contact-photo-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.about-photo-hero h1,
.contact-photo-hero h1 {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  color: #fff;
  text-align: left;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.98;
  margin-bottom: 20px;
}

.about-photo-hero p,
.contact-photo-hero p {
  max-width: 660px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 36px;
}

.about-photo-hero p {
  margin-bottom: 0;
}

.about-photo-hero .hero-btns,
.contact-photo-hero .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .about-photo-hero,
  .contact-photo-hero {
    min-height: auto;
  }

  .about-photo-hero .container,
  .contact-photo-hero .container {
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .about-photo-hero .container,
  .contact-photo-hero .container {
    padding-top: calc(var(--nav-h) + 72px);
  }

  .about-photo-hero h1,
  .contact-photo-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }
}

/* ─── IMAGE PLACEHOLDERS ──────────────────────────────── */
.img-ph {
  background: oklch(0.14 0.04 151);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, oklch(0.08 0.03 151) 100%);
  pointer-events: none;
}
.img-ph-dark {
  background: oklch(0.10 0.035 151);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.img-ph-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, oklch(0.05 0.02 151) 100%);
  pointer-events: none;
}

/* ─── FEATURE CARDS ────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--border); border-radius: 8px; }
.card-feature { padding: 36px 32px; }
.feat-icon {
  width: 46px; height: 46px; border-radius: 9px;
  background: var(--pine-50); display: flex;
  align-items: center; justify-content: center; margin-bottom: 22px;
}
.feat-icon svg {
  width: 22px; height: 22px; stroke: var(--pine-600);
  fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.card-feature h3 {
  font-size: clamp(19px, 1.6vw, 23px); margin-bottom: 12px; color: var(--text-1);
}
.card-feature p { font-size: 15px; color: var(--text-2); line-height: 1.68; }

/* ─── STAT BLOCKS ──────────────────────────────────────── */
.stat-block { text-align: center; padding: 40px 24px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(56px, 7vw, 88px);
  font-weight: 400; color: var(--pine-300); line-height: 1;
  margin-bottom: 8px; display: block;
}
.stat-label { font-size: 14px; font-weight: 500; color: var(--pine-200); letter-spacing: .06em; }

/* ─── BULLET LISTS ─────────────────────────────────────── */
.dot-list { display: flex; flex-direction: column; gap: 11px; }
.dot-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-2); line-height: 1.6;
}
.dot-list li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--pine-500);
}
.dot-list-light li { color: var(--pine-200); }
.dot-list-light li::before { background: var(--pine-400); }

/* ─── SERVICE DETAIL SECTIONS ─────────────────────────── */
.service-section { padding: var(--sec-py) 0; border-bottom: 1px solid var(--border); }
.service-section:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.service-subsection { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.service-subsection h4 { font-size: clamp(18px, 1.5vw, 22px); margin-bottom: 10px; color: var(--text-1); }
.service-subsection p  { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--text-1); text-align: left;
  transition: color .15s cubic-bezier(.4, 0, .2, 1), transform .1s;
}
.faq-btn:hover { color: var(--pine-700); }
.faq-btn:active { transform: scale(.99); }
.faq-btn:focus-visible { outline: 2px solid var(--pine-500); outline-offset: 4px; }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  transition: transform .28s cubic-bezier(.23, 1, .32, 1), color .15s cubic-bezier(.4, 0, .2, 1); color: var(--pine-500);
}
.faq-btn:hover .faq-icon { color: var(--pine-600); }
.faq-icon line { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.23, 1, .32, 1);
}
.faq-body > div { overflow: hidden; }
.faq-body p { font-size: 15px; color: var(--text-2); line-height: 1.75; padding-bottom: 22px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
@media (prefers-reduced-motion: reduce) {
  .faq-btn, .faq-icon, .faq-body { transition: none; }
  .faq-btn:active { transform: none; }
}

/* ─── CTA BAND ─────────────────────────────────────────── */
.cta-band { padding: clamp(64px, 8vw, 108px) 0; text-align: center; background: var(--pine-50); }
.cta-band .container { padding: 0; }

.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(24px, 6vw, 84px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 93, 68, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 35, 20, 0.10);
}

.cta-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  font-size: clamp(34px, 4vw, 56px);
}

.cta-icon {
  width: 0.78em;
  height: 0.78em;
  display: grid;
  place-items: center;
  color: var(--pine-900);
  flex: 0 0 auto;
}

.cta-icon svg { width: 100%; height: 100%; }

.cta-icon svg,
.btn-icon svg { display: block; }

.cta-band h2 { color: var(--text-1); font-size: inherit; margin-bottom: 0; }
.cta-band p  { color: var(--text-2); font-size: clamp(16px, 1.3vw, 18px); margin-bottom: 34px; line-height: 1.7; font-weight: 300; }
.cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-band .btn { min-height: 52px; padding-inline: 26px; }
.cta-band .btn-primary { box-shadow: 0 14px 30px rgba(0, 35, 20, 0.18); }
.cta-band .btn-outline-white       { color: var(--pine-700); border-color: var(--pine-300); background: rgba(255, 255, 255, 0.58); }
.cta-band .btn-outline-white:hover { background: var(--pine-100); border-color: var(--pine-600); }

/* CTA band button polish: subtle hover lift, press feedback preserved */
@media (hover: hover) and (pointer: fine) {
  .cta-band .btn {
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform 160ms ease-out, box-shadow 160ms ease-out;
  }
  .cta-band .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 35, 20, 0.24);
  }
  .cta-band .btn-primary:active {
    transform: scale(.97);
    box-shadow: 0 14px 30px rgba(0, 35, 20, 0.18);
  }
  .cta-band .btn-outline-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 35, 20, 0.08);
  }
  .cta-band .btn-outline-white:active {
    transform: scale(.97);
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band .btn:hover { transform: none; }
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--pine-950); padding-top: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 64px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo-img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}
.footer-tagline { font-size: 14px; color: var(--pine-300); line-height: 1.7; max-width: 270px; }
.footer-col-title {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: #f5f5f7; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--pine-300); transition: color .15s; }
.footer-links a:hover { color: #f5f5f7; }
.site-footer a:hover { color: #f5f5f7 !important; }
.site-footer a:focus-visible { outline: 2px solid var(--pine-300); outline-offset: 3px; border-radius: 2px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-row span:first-child {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pine-400); margin-bottom: 3px;
}
.footer-contact-row span:last-child { font-size: 14px; color: var(--pine-300); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 26px 0; text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }

/* ─── GRIDS ────────────────────────────────────────────── */
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.grid-3   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.grid-5   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-img-text { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.grid-text-img { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }

/* ─── FORM ─────────────────────────────────────────────── */
.form-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label   { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans);
  font-size: 15px; color: var(--text-1);
  background: #fff; transition: border-color .15s;
  appearance: none; -webkit-appearance: none;
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23536059' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.service-select-wrap {
  position: relative;
}

.service-native-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.service-select-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-1);
  font-size: 15px;
  text-align: left;
  transition: border-color .15s;
}

.service-select-trigger:hover,
.service-select-trigger:focus {
  outline: none;
  border-color: var(--pine-500);
}

.service-select-trigger svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s cubic-bezier(.23, 1, .32, 1);
}

.service-select-wrap.is-open .service-select-trigger svg {
  transform: rotate(180deg);
}

.service-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(26, 59, 44, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s cubic-bezier(.23, 1, .32, 1), transform .18s cubic-bezier(.23, 1, .32, 1), visibility .18s cubic-bezier(.23, 1, .32, 1);
}

.service-select-wrap.is-open .service-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.service-select-option {
  width: 100%;
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
  transition: background-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.service-select-option:hover,
.service-select-option:focus,
.service-select-option.is-selected {
  outline: none;
  background: var(--pine-50);
  color: var(--pine-700);
}

.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--pine-500); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input { margin-top: 3px; accent-color: var(--pine-600); width: 16px; height: 16px; flex-shrink: 0; }
.form-checkbox label { font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ─── SERVICE AREA CARDS ───────────────────────────────── */
.area-card {
  border: 1px solid var(--border-dark); border-radius: 8px;
  padding: 36px 28px; text-align: center;
}
.area-card h3 { color: #fff; font-size: clamp(22px, 2vw, 28px); margin-bottom: 10px; }
.area-card p  { font-size: 14px; color: var(--pine-300); line-height: 1.7; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-social { display: none; }
  .nav-dropdown-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: flex-start; gap: 14px; }
  .nav-logo { margin-right: auto; }
  .grid-3, .grid-img-text, .grid-text-img, .service-detail-grid { grid-template-columns: 1fr; }
  .grid-img-text, .grid-text-img { gap: 40px; }
  .service-detail-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .grid-2, .form-grid, .footer-grid, .grid-5 { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-card { border-radius: 0; padding: clamp(32px, 8vw, 48px) 22px; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-band {
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 38px;
    padding-bottom: 48px;
    grid-template-areas:
      "logo services"
      "sitemap help";
    align-items: start;
  }

  .footer-grid > div:nth-child(1) { grid-area: logo; }
  .footer-grid > div:nth-child(2) { grid-area: services; }
  .footer-grid > div:nth-child(3) { grid-area: sitemap; }
  .footer-grid > div:nth-child(4) { grid-area: help; }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-logo-img {
    width: min(150px, 100%);
  }

  .footer-col-title {
    margin-bottom: 14px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-contact {
    gap: 12px;
  }
}
