/* ==========================================================================
   Old Pine Landscaping & Farms — Shared Stylesheet
   --------------------------------------------------------------------------
   DESIGN TOKENS live in :root below. Swap in your own brand values here and
   the whole site updates. Order: Colors · Type · Spacing · Radius · Shadow.
   ========================================================================== */

:root {
  /* ---- COLORS ---------------------------------------------------------- */
  --pine: #1b3a2b;          /* primary brand — buttons, icons, dark accents */
  --pine-deep: #11261c;     /* hero / CTA / footer backgrounds */
  --moss: #5d7d59;          /* secondary green (sparingly) */
  --lake: #2f6f6a;          /* links, eyebrow text, focus ring */
  --lake-soft: #9cc0bb;     /* muted labels on dark, contour lines */
  --wheat: #c79a3f;         /* primary accent — buttons, dashes, dots */
  --wheat-hover: #d6a948;   /* primary button hover */
  --wheat-soft: #e6cf95;    /* accent text on dark, stat numbers */
  --paper: #f5f7f1;         /* default page background */
  --mist: #e7ece2;          /* alternating sections, icon chips */
  --ink: #15211a;           /* body text & headings */
  --muted: #536154;         /* secondary text */
  --white: #ffffff;         /* cards */
  --on-dark: #cfe0d2;       /* body text on pine backgrounds */
  --on-dark-soft: #cdd8cd;  /* stat labels on dark */
  --line: rgba(27, 58, 43, 0.14);         /* card borders, dividers */
  --line-strong: rgba(27, 58, 43, 0.26);  /* ghost-button borders */

  /* ---- TYPOGRAPHY ------------------------------------------------------ */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-hero: clamp(2.6rem, 1.4rem + 4.2vw, 4.5rem);
  --fs-page-hero: clamp(2.4rem, 1.6rem + 3vw, 3.8rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.1vw, 3rem);
  --fs-h3: 1.4rem;
  --fs-lead: 1.18rem;
  --fs-intro: 1.08rem;
  --fs-body: 1rem;
  --fs-eyebrow: 0.74rem;
  --fs-nav: 0.96rem;
  --fs-small: 0.85rem;
  --lh-display: 1.08;
  --lh-body: 1.6;
  --lh-tight: 1.2;
  --tracking-display: -0.02em;
  --tracking-display-soft: -0.01em;
  --tracking-eyebrow: 0.22em;

  /* ---- SPACING & LAYOUT ------------------------------------------------ */
  --maxw: 1200px;
  --gutter: 24px;
  --section-pad: 96px;
  --section-pad-mobile: 66px;
  --section-header-maxw: 680px;
  --grid-gap: 26px;

  /* ---- RADIUS ---------------------------------------------------------- */
  --radius: 18px;       /* cards */
  --radius-sm: 16px;    /* stat cards / inputs */
  --radius-chip: 13px;  /* icon chips */
  --radius-lg: 26px;    /* CTA band */
  --radius-pill: 999px; /* buttons / pills */

  /* ---- SHADOW & MOTION ------------------------------------------------- */
  --shadow: 0 18px 50px -24px rgba(17, 38, 28, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(17, 38, 28, 0.35);
  --shadow-gold: 0 14px 30px -16px rgba(199, 154, 63, 0.55);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.32s;
  --dur-fast: 0.18s;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-optical-sizing: auto;
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--lake); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--pine); }

ul, ol { padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

/* Visible focus everywhere (WCAG AA) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pine);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--tight { padding-block: 70px; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--pine-deep); color: var(--on-dark); }

.section-header { max-width: var(--section-header-maxw); margin-bottom: 54px; }
.section-header--center { margin-inline: auto; text-align: center; }
.section-header h2 { font-size: var(--fs-h2); margin-bottom: 16px; }
.section-header p { font-size: var(--fs-intro); color: var(--muted); }
.section--dark .section-header p { color: var(--on-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--wheat);
  border-radius: 2px;
}
.eyebrow--on-dark { color: var(--lake-soft); }

.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.55; }
.section--dark .lead { color: var(--on-dark); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--wheat); color: var(--pine-deep); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--wheat-hover); color: var(--pine-deep); transform: translateY(-2px); }

.btn--pine { background: var(--pine); color: var(--white); }
.btn--pine:hover { background: var(--pine-deep); color: var(--white); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--pine); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(27,58,43,.05); color: var(--pine); border-color: var(--pine); transform: translateY(-2px); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pine); }
.brand:hover { color: var(--pine); }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand-name span { display: block; font-size: 0.66rem; font-family: var(--font-body); font-weight: var(--fw-semibold); letter-spacing: 0.18em; text-transform: uppercase; color: var(--lake); }

.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  display: inline-block;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--ink);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.primary-nav a:hover { background: rgba(27,58,43,.06); color: var(--pine); }
.primary-nav a[aria-current="page"] { color: var(--pine); background: rgba(27,58,43,.08); }

.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: var(--fw-semibold); color: var(--pine); white-space: nowrap; }
.header-phone svg { width: 17px; height: 17px; }

/* mobile nav via JS-free details */
.nav-toggle { display: none; list-style: none; }
.nav-toggle::-webkit-details-marker { display: none; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--pine-deep);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, rgba(17,38,28,.96) 12%, rgba(17,38,28,.72) 52%, rgba(47,111,106,.45) 100%);
}
.hero-contours {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('images/contours-wheat.svg');
  background-size: cover;
  opacity: 0.4;
  mix-blend-mode: screen;
}
.hero-inner { padding-block: clamp(80px, 11vw, 140px); max-width: 760px; }
.hero h1 { font-size: var(--fs-hero); color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: italic; font-weight: var(--fw-medium); color: var(--wheat-soft); }
.hero-lead { font-size: var(--fs-lead); color: var(--on-dark); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 640px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 22px 22px 20px;
}
.stat-card .num { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 2.1rem; color: var(--wheat-soft); line-height: 1; margin-bottom: 8px; }
.stat-card .label { font-size: var(--fs-small); color: var(--on-dark-soft); }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--pine-deep);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(17,38,28,.95) 18%, rgba(17,38,28,.78) 60%, rgba(47,111,106,.5) 100%);
}
.page-hero-contours {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('images/contours-wheat.svg');
  background-size: cover;
  opacity: 0.35;
  mix-blend-mode: screen;
}
.page-hero-inner { padding-block: clamp(72px, 9vw, 116px); max-width: 720px; }
.page-hero h1 { font-size: var(--fs-page-hero); color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: var(--fs-lead); color: var(--on-dark); max-width: 580px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: var(--fs-small); color: var(--lake-soft); margin-bottom: 22px; }
.breadcrumb a { color: var(--lake-soft); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .6; }

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card--lift:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.icon-chip {
  width: 50px; height: 50px;
  display: inline-grid; place-items: center;
  background: var(--mist);
  border-radius: var(--radius-chip);
  color: var(--pine);
  margin-bottom: 20px;
}
.icon-chip svg { width: 24px; height: 24px; }

.card h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.card p { color: var(--muted); }

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-body h3 { font-size: var(--fs-h3); }
.service-body p { color: var(--muted); flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-weight: var(--fw-semibold); color: var(--lake); margin-top: 6px; }
.service-link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag { font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--pine); background: var(--mist); padding: 5px 12px; border-radius: var(--radius-pill); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--fs-small); font-weight: var(--fw-semibold);
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.badge--wheat { background: rgba(199,154,63,.16); color: #8a6a22; }
.badge--mist { background: var(--mist); color: var(--pine); }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip { background: var(--pine); color: var(--on-dark); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 36px; padding-block: 26px; }
.trust-item { display: inline-flex; align-items: center; gap: 11px; font-weight: var(--fw-medium); font-size: 0.98rem; }
.trust-item svg { width: 19px; height: 19px; color: var(--wheat-soft); flex: none; }

/* ==========================================================================
   PROCESS TIMELINE  (unique section)
   ========================================================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); counter-reset: step; }
.timeline-step { position: relative; padding-top: 34px; }
.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--wheat);
  position: absolute; top: 0; left: 0;
}
.timeline-step::after {
  content: "";
  position: absolute; top: 8px; left: 46px; right: -13px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.timeline-step:last-child::after { display: none; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--wheat); border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--wheat); position: absolute; top: 2px; left: 30px; }
.section--mist .timeline-dot { border-color: var(--mist); }
.timeline-step h3 { font-size: 1.18rem; margin: 18px 0 8px; }
.timeline-step p { color: var(--muted); font-size: 0.98rem; }

/* ==========================================================================
   STATS / RESULTS BAND  (unique section, dark)
   ========================================================================== */
.results { position: relative; isolation: isolate; overflow: hidden; }
.results-contours {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('images/contours-lake.svg');
  background-size: cover; opacity: .4;
}
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); text-align: left; }
.result-item { border-left: 2px solid rgba(255,255,255,.16); padding-left: 22px; }
.result-item .num { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(2.4rem, 1.6rem + 2vw, 3.2rem); color: var(--wheat-soft); line-height: 1; margin-bottom: 12px; }
.result-item .label { color: var(--on-dark); font-size: 0.98rem; }

/* ==========================================================================
   COMPARISON TABLE  (unique section)
   ========================================================================== */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.compare {
  width: 100%; min-width: 620px;
  border-collapse: separate; border-spacing: 0;
  background: var(--white);
}
.compare th, .compare td { padding: 18px 22px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1.05rem; color: var(--ink); background: var(--mist); }
.compare thead th:first-child { border-top-left-radius: var(--radius); }
.compare thead th:last-child { border-top-right-radius: var(--radius); }
.compare .col-feature { font-weight: var(--fw-semibold); color: var(--ink); width: 44%; }
.compare .col-pine { background: rgba(27,58,43,.04); }
.compare thead .col-pine { background: var(--pine); color: var(--white); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td span.txt { color: var(--muted); }
.cmark, .xmark { display: inline-flex; align-items: center; gap: 9px; font-weight: var(--fw-medium); }
.cmark svg { width: 20px; height: 20px; color: var(--pine); flex: none; }
.xmark svg { width: 20px; height: 20px; color: #b0584f; flex: none; }
.xmark { color: var(--muted); }

/* ==========================================================================
   FAQ ACCORDION  (CSS-only via <details>)
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 26px;
  transition: box-shadow var(--dur) var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.15rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--mist); color: var(--pine); transition: transform var(--dur) var(--ease), background var(--dur-fast) var(--ease); }
.faq summary .icon svg { width: 16px; height: 16px; }
.faq details[open] summary .icon { transform: rotate(45deg); background: var(--wheat); color: var(--pine-deep); }
.faq details p { color: var(--muted); padding: 0 0 24px; max-width: 64ch; }

/* ==========================================================================
   TESTIMONIAL GRID  (unique section)
   ========================================================================== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { display: inline-flex; gap: 3px; color: var(--wheat); }
.stars svg { width: 18px; height: 18px; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.18rem; font-style: italic; font-weight: var(--fw-medium); line-height: 1.4; color: var(--ink); }
.testimonial-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--pine); color: var(--wheat-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1.05rem; flex: none; }
.testimonial-author .name { font-weight: var(--fw-semibold); color: var(--ink); font-family: var(--font-body); }
.testimonial-author .role { font-size: var(--fs-small); color: var(--muted); }

/* ==========================================================================
   BEFORE / AFTER  (unique section)
   ========================================================================== */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.ba-pane { position: relative; }
.ba-pane img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba-tag { position: absolute; top: 16px; left: 16px; font-size: var(--fs-small); font-weight: var(--fw-semibold); letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.ba-tag--before { background: rgba(17,38,28,.7); color: var(--white); }
.ba-tag--after { background: var(--wheat); color: var(--pine-deep); }

/* ==========================================================================
   SPLIT / FEATURE
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3.2; object-fit: cover; }
.split-body h2 { font-size: var(--fs-h2); margin-bottom: 18px; }
.split-body p + p { margin-top: 16px; }
.split-body .lead { margin-bottom: 8px; }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); }
.check-list svg { width: 22px; height: 22px; color: var(--pine); flex: none; margin-top: 1px; }
.check-list strong { display: block; }
.check-list span { color: var(--muted); font-size: 0.97rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { padding-block: 40px; }
.cta-inner {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--pine-deep);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 76px);
  color: var(--white);
  text-align: center;
}
.cta-contours { position: absolute; inset: 0; z-index: -1; background-image: url('images/contours-lake.svg'); background-size: cover; opacity: .45; }
.cta-inner h2 { font-size: var(--fs-h2); color: var(--white); margin-bottom: 16px; max-width: 18ch; margin-inline: auto; }
.cta-inner p { color: var(--on-dark); font-size: var(--fs-lead); max-width: 52ch; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: var(--fw-semibold); font-size: 0.95rem; color: var(--ink); }
.field label .req { color: #b0584f; }
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa79b; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--lake);
  outline: 3px solid rgba(47,111,106,.25);
  outline-offset: 0;
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: var(--fs-small); color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 22px; }
.contact-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-block h3 { font-size: 1.2rem; margin-bottom: 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row > span:not(.chip) { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-row .chip { width: 40px; height: 40px; border-radius: var(--radius-chip); background: var(--mist); color: var(--pine); display: grid; place-items: center; flex: none; }
.contact-row .chip svg { width: 19px; height: 19px; }
.contact-row .label { display: block; font-size: var(--fs-small); color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; }
.contact-row .val { font-weight: var(--fw-semibold); color: var(--ink); }
.contact-row a.val { color: var(--lake); }

/* ==========================================================================
   VALUE / INFO BLOCKS
   ========================================================================== */
.intro-cols { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.intro-cols h2 { font-size: var(--fs-h2); }
.intro-cols .lead { margin-bottom: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--pine-deep); color: var(--on-dark); position: relative; isolation: isolate; overflow: hidden; }
.footer-contours { position: absolute; inset: 0; z-index: -1; background-image: url('images/contours-lake.svg'); background-size: cover; opacity: .25; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 64px 48px; }
.footer-brand img { width: 64px; height: 64px; background: var(--paper); border-radius: 50%; padding: 6px; object-fit: contain; margin-bottom: 18px; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: var(--on-dark); font-size: 0.96rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lake-soft); margin-bottom: 18px; font-weight: var(--fw-semibold); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--on-dark); font-size: 0.97rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact-row { display: flex; gap: 11px; align-items: flex-start; color: var(--on-dark); font-size: 0.97rem; margin-bottom: 13px; }
.footer-contact-row svg { width: 17px; height: 17px; color: var(--wheat-soft); flex: none; margin-top: 3px; }
.footer-contact-row a { color: var(--on-dark); }
.footer-contact-row a:hover { color: var(--white); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: var(--on-dark); transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.social-row a:hover { background: var(--wheat); border-color: var(--wheat); color: var(--pine-deep); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; }
.footer-bottom p, .footer-bottom a { font-size: var(--fs-small); color: var(--on-dark-soft); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
  .grid-4, .results-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline-step::after { display: none; }
}

@media (max-width: 860px) {
  :root { --section-pad: var(--section-pad-mobile); }

  .header-cta .btn { display: none; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-chip); border: 1px solid var(--line-strong); background: transparent; color: var(--pine); }
  .nav-toggle svg { width: 24px; height: 24px; }

  /* details-based mobile menu */
  details.mobile-menu { position: relative; }
  details.mobile-menu[open] .mobile-panel { display: block; }
  .mobile-panel {
    display: none;
    position: absolute; right: 0; top: calc(100% + 14px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    min-width: 230px;
    z-index: 120;
  }
  .mobile-panel a { display: block; padding: 12px 14px; border-radius: var(--radius-sm); color: var(--ink); font-weight: var(--fw-medium); }
  .mobile-panel a:hover, .mobile-panel a[aria-current="page"] { background: var(--mist); color: var(--pine); }
  .mobile-panel .btn { width: 100%; justify-content: center; margin-top: 8px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split, .intro-cols, .contact-grid, .beforeafter { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-block: 48px 36px; }
}

@media (max-width: 520px) {
  .grid-4, .results-grid, .timeline { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-name { font-size: 1.02rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
