/* =============================================================
   Greenman Trees, Lawns & Gardens — East Auckland
   CSS v3 — Production
   ============================================================= */

:root {
  /* Core palette */
  --bark:          #011a10;
  --forest:        #02321d;
  --forest-mid:    #011a10;
  --moss:          #6fa832;
  --sage:          #8dc63f;
  --grass:         #8dc63f;
  --grass-light:   #b5e06e;
  --amber:         #6fa832;
  --amber-light:   #b5e06e;

  /* Backgrounds */
  --bg-warm:       #fffdf9;
  --bg-stone:      #eff1e9;
  --bg-white:      #fffdf9;

  /* Text */
  --ink:           #1d1d1b;
  --ink-mid:       #2d3828;
  --btn-green:     #4a7a28;
  --ink-light:     #4a5a3a;
  --ink-muted:     #7a8a6a;

  /* Borders */
  --border:        #d8e4cf;
  --border-light:  #e4eedd;

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(14,32,24,0.06);
  --shadow-sm:     0 2px 12px rgba(14,32,24,0.08);
  --shadow-md:     0 8px 32px rgba(14,32,24,0.12);
  --shadow-lg:     0 24px 64px rgba(14,32,24,0.18);

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-full: 9999px;

  /* Fonts */
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:  1160px;
  --section-py: 96px;
  --nav-h:      76px;
  --ease:       240ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Backward-compatibility aliases for inline styles */
  --primary:       var(--forest);
  --primary-dark:  var(--bark);
  --primary-light: var(--moss);
  --accent:        var(--grass);
  --accent-dark:   var(--moss);
  --accent-light:  var(--grass-light);
  --bg-light:      var(--bg-stone);
  --cream:         var(--bg-stone);
  --text-dark:     var(--ink);
  --text-medium:   var(--ink-mid);
  --text-light:    var(--ink-light);
  --text-muted:    var(--ink-muted);
  --radius-sm:     var(--r-xs);
  --radius-md:     var(--r-md);
  --radius-lg:     var(--r-lg);
  --radius-full:   var(--r-full);
  --font-sans:     var(--font-body);
  --font-display:  var(--font-head);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Focus Styles (keyboard nav) ────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--grass);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-color: var(--grass-light); outline-offset: 2px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
}
@media (min-width: 769px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.025em; font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); }
p  { color: var(--ink-mid); line-height: 1.78; }
strong { color: var(--ink); font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--light  { background: var(--bg-stone); }
.section--cream  { background: var(--bg-stone); }
.section--dark   { background: var(--bark); }
.section--green  { background: var(--forest); }
.section--forest { background: var(--forest-mid); }

.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4,
.section--green h1, .section--green h2, .section--green h3, .section--green h4,
.section--forest h1,.section--forest h2,.section--forest h3,.section--forest h4 { color: white; }
.section--dark  p, .section--green p, .section--forest p { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3,.grid-4 { grid-template-columns: 1fr; } :root { --section-py: 64px; } }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bark);
  height: var(--nav-h);
  box-shadow: 0 2px 28px rgba(0,0,0,0.4);
}
/* Amber-to-grass accent line */
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--grass) 55%, transparent 100%);
  opacity: 0.6;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; gap: 16px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: white; flex-shrink: 0;
}
.nav__logo-img { height: 68px; width: auto; filter: brightness(0) invert(1); }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,0.62); font-size: 0.875rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-xs);
  transition: all var(--ease); display: block;
  font-family: var(--font-body); letter-spacing: 0.01em;
}
.nav__links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav__links a[aria-current="page"] { color: var(--grass-light); background: rgba(168,212,112,0.1); }
.nav__phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--amber-light); font-weight: 600; font-size: 0.9rem;
  flex-shrink: 0; white-space: nowrap; font-family: var(--font-body);
}
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.nav__hamburger span { display: block; width: 26px; height: 2px; background: white; border-radius: 1px; transition: all var(--ease); }
@media (max-width: 820px) {
  .nav__links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--bark); padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45); gap: 2px;
  }
  .nav__links.open { display: flex; }
  .nav__links a { width: 100%; padding: 12px 14px; }
  .nav__hamburger { display: flex; }
  .nav { overflow: visible; }
}
@media (max-width: 480px) { .nav__phone { display: none; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.925rem;
  transition: all var(--ease); white-space: nowrap; text-decoration: none;
  cursor: pointer; border: none; letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--btn-green); color: white;
  box-shadow: 0 4px 16px rgba(74,122,40,0.35);
}
.btn--primary:hover {
  background: #3d6820; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,122,40,0.48);
}
.btn--outline { border: 1.5px solid rgba(255,255,255,0.42); color: white; }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn--dark { background: var(--forest); color: white; box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--forest-mid); transform: translateY(-2px); }
.btn--ghost { color: var(--moss); font-weight: 600; padding: 0; gap: 6px; background: none; }
.btn--ghost:hover { gap: 10px; color: var(--sage); }
.btn--ghost-light {
  color: rgba(255,255,255,0.7); font-weight: 600; gap: 6px;
  font-family: var(--font-body); font-size: 0.925rem;
  display: inline-flex; align-items: center; transition: all var(--ease);
}
.btn--ghost-light:hover { color: white; gap: 10px; }
.btn--sm { padding: 9px 20px; font-size: 0.825rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ── Hero (Homepage) ─────────────────────────────────────────── */
.hero {
  background: var(--bark);
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(150deg,
      rgba(22,17,10,0.22) 0%,
      rgba(22,17,10,0.55) 38%,
      rgba(22,17,10,0.93) 100%),
    url('../images/photo-garden-hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 800px;
  padding: 80px 24px 80px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,110,0.16); border: 1px solid rgba(76,175,110,0.32);
  color: #ffe600; font-size: 0.72rem; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-xs);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px;
  font-family: var(--font-body);
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  color: white; margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: -0.03em; line-height: 1.02; font-weight: 900;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 span { color: var(--grass-light); }
.hero__sub {
  color: rgba(255,255,255,0.68); font-size: 1.1rem;
  margin-bottom: 36px; max-width: 540px; line-height: 1.72;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: fadeUp 0.7s 0.3s ease both; }
.hero__stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero__stat-item { display: flex; flex-direction: column; padding: 0 28px 0 0; }
.hero__stat-num {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 900;
  color: white; line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
  font-family: var(--font-body);
}
.hero__stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.13); margin-right: 28px; flex-shrink: 0; }
@media (max-width: 540px) {
  .hero__stats { gap: 20px; }
  .hero__stat-sep { display: none; }
  .hero__stat-item { padding-right: 0; }
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar { background: var(--forest); padding: 18px 0; }
.trust-bar__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.73); font-size: 0.85rem; font-weight: 500;
  font-family: var(--font-body);
}
.trust-item .icon { font-size: 1rem; color: var(--grass-light); }
.trust-item strong { color: white; font-weight: 600; }

/* ── Section Header ──────────────────────────────────────────── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-header__eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--amber); margin-bottom: 12px; font-family: var(--font-body);
}
.section--dark  .section-header__eyebrow,
.section--green .section-header__eyebrow,
.section--forest .section-header__eyebrow { color: var(--amber-light); }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--ink-light); }
.section--dark  .section-header h2,
.section--green .section-header h2,
.section--forest .section-header h2 { color: white; }
.section--dark  .section-header p,
.section--green .section-header p,
.section--forest .section-header p { color: rgba(255,255,255,0.6); }

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.service-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.service-card__thumb {
  height: 210px; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card__thumb { transform: scale(1.02); }
.service-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(22,17,10,0.52));
}
.service-card__body { padding: 24px 24px 22px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card__body p { font-size: 0.875rem; margin-bottom: 18px; flex: 1; line-height: 1.68; }
.service-card__link {
  font-size: 0.85rem; font-weight: 600; color: var(--moss);
  display: inline-flex; align-items: center; gap: 5px; transition: gap var(--ease);
  font-family: var(--font-body);
}
.service-card:hover .service-card__link { gap: 9px; color: var(--sage); }

/* ── Differentiation Section (Why Greenman) ─────────────────── */
.diff-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
@media (max-width: 860px) { .diff-layout { grid-template-columns: 1fr; gap: 48px; } }

.diff-img-col { position: relative; }
.diff-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
}
.diff-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.diff-img-wrap:hover img { transform: scale(1.04); }

.diff-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--amber); color: white;
  padding: 14px 20px; border-radius: var(--r-sm);
  box-shadow: 0 8px 28px rgba(141,198,63,0.42);
}
.diff-img-badge__num {
  display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; line-height: 1;
}
.diff-img-badge__label {
  display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.88; margin-top: 3px;
  font-family: var(--font-body); letter-spacing: 0.03em;
}

.diff-copy-col .section-header__eyebrow { text-align: left; display: block; }
.diff-copy-col h2 { color: white; margin-bottom: 18px; letter-spacing: -0.02em; }
.diff-copy-col > p { margin-bottom: 36px; font-size: 1rem; color: rgba(255,255,255,0.68); }

.diff-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
@media (max-width: 440px) { .diff-features { grid-template-columns: 1fr; } }
.diff-feature {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm); padding: 18px 18px 16px; transition: background var(--ease);
}
.diff-feature:hover { background: rgba(255,255,255,0.09); }
.diff-feature__icon { font-size: 1.2rem; margin-bottom: 8px; color: var(--grass-light); line-height: 0; }
.diff-feature h4 { color: white; font-size: 0.875rem; margin-bottom: 4px; font-weight: 600; }
.diff-feature p { font-size: 0.78rem; color: rgba(255,255,255,0.54); line-height: 1.55; margin: 0; }

.diff-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-size: 3.4rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 0.83rem; color: rgba(255,255,255,0.52); font-weight: 500; font-family: var(--font-body); }

/* ── Process Steps ───────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: var(--border); z-index: 0;
}
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .process-grid::before { display: none; } }
.process-step { text-align: center; }
.process-step__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.2rem;
  margin: 0 auto 16px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(27,61,34,0.28);
  border: 2px solid var(--border-light);
}
.process-step h4 { margin-bottom: 8px; font-size: 0.925rem; }
.process-step p { font-size: 0.82rem; line-height: 1.62; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 32px;
  box-shadow: var(--shadow-xs); transition: box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars { color: #ffe600; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card__text {
  font-size: 0.925rem; line-height: 1.78;
  color: var(--ink-mid); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-stone); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head); color: var(--forest); font-size: 0.9rem;
}
.testimonial-card__name { font-weight: 600; font-size: 0.875rem; color: var(--ink); }
.testimonial-card__loc { font-size: 0.75rem; color: var(--ink-muted); margin-top: 2px; }

/* ── Google Rating ───────────────────────────────────────────── */
.google-rating-summary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-stone); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 8px 18px;
  margin-top: 16px; font-size: 0.875rem;
}
.google-rating-summary__stars { color: #ffe600; letter-spacing: 1px; font-size: 0.85rem; }
.google-rating-summary__score { font-weight: 700; color: var(--ink); }
.google-rating-summary__count { color: var(--ink-muted); }

.google-reviews-link {
  display: inline-flex; align-items: center;
  font-size: 0.875rem; font-weight: 600; color: var(--ink-mid);
  border: 1px solid var(--border); border-radius: var(--r-full);
  padding: 10px 20px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.google-reviews-link:hover { border-color: var(--moss); color: var(--moss); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 0.975rem; font-weight: 600;
  color: var(--ink); font-family: var(--font-body);
  gap: 16px; transition: color var(--ease);
}
.faq-question:hover { color: var(--moss); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--bg-stone); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: transform var(--ease), background var(--ease);
  color: var(--moss); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--moss); color: white; }
.faq-answer { display: none; padding-bottom: 22px; color: var(--ink-mid); line-height: 1.78; font-size: 0.925rem; }
.faq-item.open .faq-answer { display: block; }

/* ── Areas ───────────────────────────────────────────────────── */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-stone); border: 1px solid var(--border);
  color: var(--ink-mid); font-size: 0.85rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--r-full); transition: all var(--ease);
}
.area-pill:hover, .area-pill--active { background: var(--forest); color: white; border-color: var(--forest); }
.area-pill--link { color: var(--forest); border-color: var(--forest); font-weight: 600; }
.area-pill--link:hover { background: var(--forest); color: white; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: var(--bark); padding: 88px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(136,193,70,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: white; margin-bottom: 14px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.58); max-width: 480px; margin: 0 auto 36px; font-size: 1rem; position: relative; }
.cta-section__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero { background: var(--bark); padding: 72px 0 60px; border-bottom: 2px solid var(--forest); }
.page-hero__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.36); margin-bottom: 18px;
  font-family: var(--font-body);
}
.breadcrumb a { color: rgba(255,255,255,0.46); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb__sep { color: rgba(255,255,255,0.2); }
.breadcrumb__cur { color: var(--amber-light); font-weight: 600; }
.page-hero h1 {
  color: white; margin-bottom: 28px; font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  animation: fadeUp 0.6s 0.1s ease both;
}
.page-hero__sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 580px; line-height: 1.7; animation: fadeUp 0.6s 0.2s ease both; }
.page-hero__badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(76,175,110,0.14); border: 1px solid rgba(76,175,110,0.28);
  color: var(--grass-light); font-size: 0.73rem; font-weight: 600;
  padding: 5px 13px; border-radius: var(--r-xs); letter-spacing: 0.02em;
  font-family: var(--font-body);
}

/* ── Include List ────────────────────────────────────────────── */
.include-list { list-style: none; }
.include-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; font-size: 0.9rem; color: var(--ink-mid);
  border-bottom: 1px solid var(--border-light);
}
.include-list li:last-child { border-bottom: none; }
.include-list .check { color: var(--moss); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Price Cards ─────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-stone); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px; text-align: center;
}
.price-card__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin-bottom: 10px; font-family: var(--font-body); }
.price-card__range { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--forest); margin-bottom: 6px; }
.price-card__desc { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.55; }
.price-note { font-size: 0.78rem; color: var(--ink-muted); text-align: center; margin-top: 14px; }

/* ── Contact Form ────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow-md);
}
@media (max-width: 560px) { .contact-form { padding: 28px 20px; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-family: var(--font-body); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-xs);
  font-size: 0.925rem; color: var(--ink);
  background: var(--bg-white); transition: border-color var(--ease); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61,110,48,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--forest); margin-bottom: 10px; }
.form-success p { color: var(--ink-mid); max-width: 360px; margin: 0 auto; }
.form-error {
  display: none; background: #fef2f2; border: 1px solid #fca5a5;
  border-radius: var(--r-xs); padding: 12px 16px;
  font-size: 0.875rem; color: #dc2626; margin-top: 14px; line-height: 1.55;
}
.btn--submit { width: 100%; justify-content: center; padding: 15px 28px; }
.btn--submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Contact Info Card ───────────────────────────────────────── */
.contact-info-card { background: var(--forest); color: white; border-radius: var(--r-md); padding: 36px; }
.contact-info-card h3 { color: white; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon { margin-top: 1px; flex-shrink: 0; color: var(--grass-light); line-height: 0; }
.contact-info-item strong { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--grass-light); margin-bottom: 3px; font-family: var(--font-body); }
.contact-info-item a { color: rgba(255,255,255,0.78); transition: color var(--ease); }
.contact-info-item a:hover { color: white; }

/* ── Why Items ───────────────────────────────────────────────── */
.why-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border-light); }
.why-item:last-child { border-bottom: none; }
.why-item__icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--bg-stone); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--forest); }
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; margin: 0; }

/* ── Sticky Mobile CTA ───────────────────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bark); z-index: 200;
  padding: 10px 16px; box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sticky-cta__inner { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.sticky-cta .btn { flex: 1; text-align: center; padding: 12px; font-size: 0.85rem; }
@media (max-width: 768px) { .sticky-cta { display: block; } }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--bark); padding: 64px 0 0; }
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: white; margin-bottom: 10px; }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.42); margin-bottom: 20px; line-height: 1.65; }
.footer__nap { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer__nap a { transition: color var(--ease); }
.footer__nap a:hover { color: var(--amber-light); }
.footer__col-title { font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.48); transition: color var(--ease); }
.footer__links a:hover { color: var(--grass-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px;
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.26); }
.footer__bottom a { color: rgba(255,255,255,0.46); transition: color var(--ease); }
.footer__bottom a:hover { color: var(--grass-light); }

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Page Load Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: white !important; }
.mt-2  { margin-top:  8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }
.gap   { display: flex; flex-direction: column; gap: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.highlight-box {
  background: var(--bg-stone); border-left: 4px solid var(--amber);
  border-radius: 0 var(--r-xs) var(--r-xs) 0; padding: 20px 24px; margin: 24px 0;
}
.highlight-box p { font-size: 0.9rem; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print { .nav, .sticky-cta, .cta-section { display: none; } }
