/* ==========================================================================
   Green Knack Lawn Co. — design system + site styles
   Single stylesheet, vanilla CSS. Mobile-first, then min-width breakpoints.
   ========================================================================== */

:root{
  /* Brand palette */
  --gk-cream:      #FBF7EE;
  --gk-cream-2:    #F3EEE0;
  --gk-charcoal:   #23291F;
  --gk-charcoal-2: #3A4232;
  --gk-green:      #2F6B3C;
  --gk-green-dark: #21492A;
  --gk-green-deep: #16321C;
  --gk-sage:       #A9C3A0;
  --gk-sage-light: #DCE8D6;
  --gk-lime:       #C9E265;
  --gk-yellow:     #F2B33D;
  --gk-white:      #FFFFFF;
  --gk-line:       #E4DECC;

  /* Semantic */
  --bg:            var(--gk-cream);
  --bg-alt:        var(--gk-cream-2);
  --ink:           var(--gk-charcoal);
  --ink-soft:      #565F4C;
  --brand:         var(--gk-green);
  --brand-dark:    var(--gk-green-dark);
  --accent:        var(--gk-yellow);
  --ring:          #7FAF6E;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(22,50,28,0.06), 0 1px 1px rgba(22,50,28,0.04);
  --shadow-md: 0 8px 24px rgba(22,50,28,0.10);
  --shadow-lg: 0 20px 48px rgba(22,50,28,0.16);

  /* Content widths — two tiers: standard (readable text) and wide (visual/grid sections) */
  --container: 1300px;
  --container-wide: 1680px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Typography scale */
  --heading-xl: clamp(2.75rem, 4.5vw, 4.75rem);   /* editorial section H2, ~44-76px */
  --heading-lg: clamp(1.875rem, 2.6vw, 2.75rem);  /* section H3, ~30-44px */
  --body-lg: clamp(1.15rem, 1.4vw, 1.5rem);       /* intro/lede copy, ~18-24px */
  --body-base: 1.0625rem;                          /* normal body, ~17px */

  /* Section rhythm */
  --section-space: clamp(72px, 10vw, 140px);
  --card-padding: clamp(28px, 3vw, 40px);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  color-scheme: light;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
input,select,textarea{ font:inherit; color:inherit; }
::selection{ background:var(--gk-lime); color:var(--gk-charcoal); }

h1,h2,h3,h4{ font-family:var(--font-head); font-weight:600; letter-spacing:-0.01em; color:var(--gk-charcoal); }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }
.container-wide{ width:100%; max-width:var(--container-wide); margin-inline:auto; padding-inline:var(--gutter); }

/* Focus visibility — keyboard nav must always be legible */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--ring);
  outline-offset:2px;
  border-radius:6px;
}

.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--gk-charcoal); color:var(--gk-cream);
  padding:12px 18px; border-radius:0 0 10px 10px;
  z-index:200; transition:top .15s ease;
  font-weight:600;
}
.skip-link:focus{ top:0; }

.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;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding:18px 34px;
  border-radius:999px;
  font-weight:700;
  font-size:1rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:var(--gk-green-deep);
  box-shadow:var(--shadow-md);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-lg); background:#F7C158; }
.btn-primary:active{ transform:translateY(0); }

.btn-secondary{
  background:transparent;
  color:var(--gk-cream);
  border:2px solid rgba(251,247,238,0.55);
}
.btn-secondary:hover{ background:rgba(251,247,238,0.12); border-color:var(--gk-cream); }

.btn-outline{
  background:transparent;
  color:var(--gk-green-dark);
  border:2px solid var(--gk-green-dark);
}
.btn-outline:hover{ background:var(--gk-green-dark); color:var(--gk-cream); }

.btn-block{ width:100%; }
.btn-lg{ padding:22px 44px; font-size:1.1rem; }

/* ---------------------------------------------------------------------- */
/* Header / nav                                                            */
/* ---------------------------------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,247,238,0.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--gk-line);
}
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding-block:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-head); font-weight:700; font-size:1.25rem; color:var(--gk-green-deep);
}
.brand__mark{ width:40px; height:40px; flex:none; }
.brand__name{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name small{ font-family:var(--font-body); font-weight:600; font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); }

.main-nav{ display:none; }
.main-nav ul{ display:flex; align-items:center; gap:6px; }
.main-nav a.nav-link{
  display:flex; align-items:center; gap:4px;
  padding:10px 14px; border-radius:999px; font-weight:600; font-size:.95rem; color:var(--gk-charcoal-2);
  transition:background-color .15s ease, color .15s ease;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link[aria-current="page"]{ background:var(--gk-sage-light); color:var(--gk-green-deep); }
.main-nav a.nav-link svg{ width:14px; height:14px; transition:transform .15s ease; }

.has-dropdown{ position:relative; }
/* Invisible hover bridge: keeps :hover alive across the gap between the
   trigger and the dropdown so the menu doesn't drop while the pointer
   is in transit toward it. */
.has-dropdown::after{
  content:"";
  position:absolute; left:0; right:0; top:100%;
  height:14px;
}
.dropdown{
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translate(-50%,6px);
  width:max-content; min-width:240px; max-width:300px;
  background:var(--gk-white);
  border:1px solid var(--gk-line);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  padding:10px;
  opacity:0; visibility:hidden;
  z-index:20;
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translate(-50%,0); }
.has-dropdown:hover .nav-link svg, .has-dropdown:focus-within .nav-link svg{ transform:rotate(180deg); }
.dropdown a{
  display:flex; align-items:center; gap:10px;
  padding:11px 14px; border-radius:10px; font-weight:600; font-size:.92rem; color:var(--gk-charcoal-2);
  transition:background-color .12s ease, color .12s ease;
}
.dropdown a:hover, .dropdown a:focus-visible{ background:var(--gk-cream-2); color:var(--gk-green-deep); }
.dropdown a.dropdown-all{ margin-top:4px; border-top:1px solid var(--gk-line); padding-top:12px; color:var(--gk-green-dark); }

.header-cta{ display:none; align-items:center; gap:14px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--gk-green-deep); white-space:nowrap; }
.header-phone svg{ width:18px; height:18px; }

.nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:12px; background:var(--gk-sage-light);
}
.nav-toggle svg{ width:22px; height:22px; }
.nav-toggle .icon-close{ display:none; }
.nav-open .nav-toggle .icon-open{ display:none; }
.nav-open .nav-toggle .icon-close{ display:block; }

.mobile-nav{
  display:none;
  position:fixed; inset:0; top:var(--header-h,72px);
  background:var(--gk-cream);
  z-index:90;
  overflow-y:auto;
  padding:24px var(--gutter) 40px;
}
.nav-open .mobile-nav{ display:block; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:4px; }
.mobile-nav > ul > li{ border-bottom:1px solid var(--gk-line); }
.mobile-nav a.nav-link{ display:flex; justify-content:space-between; align-items:center; padding:16px 4px; font-weight:700; font-size:1.05rem; }
.mobile-nav-row{ display:flex; align-items:center; }
.mobile-nav-row .nav-link{ flex:1; }
.mobile-sub-toggle{
  display:flex; align-items:center; justify-content:center; flex:none;
  width:44px; height:44px; border-radius:12px; color:var(--ink-soft);
  transition:background-color .12s ease, color .12s ease;
}
.mobile-sub-toggle:hover, .mobile-sub-toggle:focus-visible{ background:var(--gk-sage-light); color:var(--gk-green-deep); }
.mobile-sub-toggle svg{ width:18px; height:18px; transition:transform .18s ease; }
.mobile-sub-toggle[aria-expanded="true"] svg{ transform:rotate(180deg); }
.mobile-sub{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .22s ease; }
.mobile-sub.is-open{ grid-template-rows:1fr; }
.mobile-sub__inner{ overflow:hidden; display:flex; flex-direction:column; gap:2px; padding-bottom:10px; }
.mobile-sub__inner a{ padding:10px 12px; border-radius:10px; font-weight:600; color:var(--ink-soft); }
.mobile-sub__inner a:hover{ background:var(--gk-sage-light); }
.mobile-cta{ margin-top:24px; display:flex; flex-direction:column; gap:12px; }
.mobile-cta .header-phone{ justify-content:center; padding:14px; background:var(--gk-white); border-radius:14px; }

@media (min-width:960px){
  .main-nav{ display:block; }
  .header-cta{ display:flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none !important; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--gk-cream);
  min-height:clamp(650px, 58vw, 950px);
  background:var(--gk-green-deep); /* shows while the image loads */
}
.hero__bg{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 35%;
}
.hero__overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(
    90deg,
    rgba(10,60,32,0.92) 0%,
    rgba(10,60,32,0.78) 35%,
    rgba(10,60,32,0.42) 60%,
    rgba(10,60,32,0.12) 100%
  );
}
.hero__content{
  position:relative; z-index:2;
  width:min(850px, calc(100% - 96px));
  margin-left:0;
  padding-left:48px;
  padding-right:48px;
  padding-block:clamp(48px,7vw,80px);
}
.hero__eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(251,247,238,0.12);
  border:1px solid rgba(251,247,238,0.25);
  padding:18px 28px; border-radius:999px;
  font-size:1rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  line-height:1.3;
  color:var(--gk-lime);
  margin-bottom:32px;
}
.hero__eyebrow svg{ width:40px; height:40px; flex:none; }
.hero__content .kicker{ color:var(--gk-lime); }
.hero__content h1{
  color:var(--gk-white);
  font-size:clamp(4rem, 6vw, 6.875rem);
  line-height:1;
}
.hero__content p{
  margin-top:28px;
  color:var(--gk-sage-light);
  font-size:clamp(1.375rem, 1.6vw, 1.75rem);
  line-height:1.5;
  max-width:740px;
}
.hero__content .hero__ctas{ gap:24px; margin-top:44px; }
.hero__content .btn-lg{ padding:28px 48px; font-size:1.15rem; }
.hero__trust{
  margin-top:44px; display:flex; flex-wrap:wrap; gap:14px 32px;
  font-size:1.2rem; font-weight:600; color:var(--gk-sage-light);
}
.hero__trust li{ display:flex; align-items:center; gap:10px; }
.hero__trust svg{ width:22px; height:22px; color:var(--gk-lime); flex:none; }

@media (max-width:960px){
  .hero{
    min-height:0;
    align-items:flex-end;
  }
  .hero__bg{ object-position:center 35%; }
  .hero__content{
    width:min(850px, calc(100% - 40px));
    padding-left:20px;
    padding-right:20px;
    padding-block:64px 40px;
  }
  .hero__eyebrow{ padding:12px 20px; font-size:.8rem; gap:8px; margin-bottom:22px; }
  .hero__eyebrow svg{ width:26px; height:26px; }
  .hero__content h1{ font-size:clamp(2.5rem, 9vw, 3.5rem); }
  .hero__content p{ font-size:1.1rem; margin-top:20px; }
  .hero__content .hero__ctas{ gap:14px; margin-top:32px; }
  .hero__content .btn-lg{ padding:18px 32px; font-size:1rem; }
  .hero__trust{ margin-top:28px; font-size:.92rem; gap:8px 20px; }
  .hero__trust svg{ width:16px; height:16px; }
  .hero__overlay{
    background:linear-gradient(
      180deg,
      rgba(10,60,32,0.55) 0%,
      rgba(10,60,32,0.82) 55%,
      rgba(10,60,32,0.92) 100%
    );
  }
}

/* ---------------------------------------------------------------------- */
/* Shared background-video hero system                                    */
/* Used by any hero that swaps its static image for looping B-roll        */
/* (.hero, .service-hero, ...). The image/object-fit rules stay on the    */
/* hero-specific bg class (.hero__bg / .service-hero__bg); these classes  */
/* only handle the video/poster swap and reduced-motion behavior.         */
/* ---------------------------------------------------------------------- */
.hero-video-wrap{ position:absolute; inset:0; z-index:0; }
.hero-video-poster{ display:none; }
@media (prefers-reduced-motion: reduce){
  .hero-video{ display:none; }
  .hero-video-poster{ display:block; }
}

/* ---------------------------------------------------------------------- */
/* Trust strip                                                            */
/* ---------------------------------------------------------------------- */
.trust-strip{ background:var(--gk-green-deep); padding-block:0; }
.trust-strip__inner{
  display:grid; gap:28px;
  padding-block:clamp(32px,5vw,52px);
  color:var(--gk-sage-light);
}
.trust-strip__item{ display:flex; align-items:center; gap:16px; font-weight:600; font-size:1.05rem; }
.trust-strip__item svg{ width:34px; height:34px; color:var(--gk-lime); flex:none; }
.trust-strip__item strong{ display:block; color:var(--gk-white); font-family:var(--font-head); font-size:1.55rem; font-weight:700; line-height:1.2; }
@media (min-width:720px){ .trust-strip__inner{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .trust-strip__inner{ grid-template-columns:repeat(4,1fr); } }

/* ---------------------------------------------------------------------- */
/* Section scaffolding                                                     */
/* ---------------------------------------------------------------------- */
section{ padding-block:var(--section-space); }
.section-alt{ background:var(--bg-alt); }
.section-deep{ background:var(--gk-green-deep); color:var(--gk-cream); }
.section-sage{ background:var(--gk-sage-light); }

.section-head{ max-width:820px; margin-bottom:clamp(44px,6vw,72px); }
.section-head.center{ margin-inline:auto; text-align:center; }
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.92rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gk-green-dark); margin-bottom:18px;
}
.kicker::before{ content:""; width:28px; height:3px; border-radius:3px; background:var(--accent); }
.section-deep .kicker{ color:var(--gk-lime); }
.section-head h2{ font-size:var(--heading-xl); line-height:1.08; }
.section-deep .section-head h2{ color:var(--gk-white); }
.section-head p{ margin-top:20px; font-size:var(--body-lg); color:var(--ink-soft); line-height:1.55; }
.section-deep .section-head p{ color:var(--gk-sage-light); }

/* ---------------------------------------------------------------------- */
/* Cards grid — services                                                  */
/* ---------------------------------------------------------------------- */
.card-grid{ display:grid; gap:28px; grid-template-columns:1fr; }
@media (min-width:640px){ .card-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:900px){ .card-grid.cols-3, .card-grid.cols-4{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1280px){ .card-grid.cols-4{ grid-template-columns:repeat(4,1fr); } }

.service-card{
  background:var(--gk-white);
  border:1px solid var(--gk-line);
  border-radius:var(--radius-lg);
  padding:var(--card-padding);
  display:flex; flex-direction:column; gap:20px;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
@media (min-width:640px){ .service-card{ min-height:380px; } }
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gk-sage); }
.service-card__media{
  margin:calc(var(--card-padding) * -1) calc(var(--card-padding) * -1) 0;
  aspect-ratio:16 / 10;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  overflow:hidden;
  background:var(--gk-sage-light);
}
.service-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.service-card__icon{
  width:72px; height:72px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background:var(--gk-sage-light); color:var(--gk-green-dark);
}
.service-card__icon svg{ width:34px; height:34px; }
.service-card h3{ font-size:1.55rem; }
.service-card p{ color:var(--ink-soft); font-size:1.05rem; line-height:1.6; }
.service-card__link{ margin-top:auto; display:inline-flex; align-items:center; gap:6px; font-weight:700; color:var(--gk-green-dark); font-size:1rem; }
.service-card__link svg{ width:16px; height:16px; transition:transform .15s ease; }
.service-card:hover .service-card__link svg{ transform:translateX(4px); }

/* ---------------------------------------------------------------------- */
/* Benefit / split section                                                */
/* ---------------------------------------------------------------------- */
.split{ display:grid; gap:48px; align-items:center; }
@media (min-width:900px){ .split{ grid-template-columns:1fr 1fr; gap:72px; } .split.reverse{ direction:rtl; } .split.reverse > *{ direction:ltr; } }

.benefit-list{ display:flex; flex-direction:column; gap:28px; margin-top:12px; }
.benefit-item{ display:flex; gap:20px; }
.benefit-item__icon{
  flex:none; width:56px; height:56px; border-radius:14px;
  background:var(--gk-green-deep); color:var(--gk-lime);
  display:flex; align-items:center; justify-content:center;
}
.benefit-item__icon svg{ width:26px; height:26px; }
.benefit-item h3{ font-size:1.35rem; margin-bottom:6px; }
.benefit-item p{ color:var(--ink-soft); font-size:1.05rem; line-height:1.55; }

.art-panel{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:linear-gradient(150deg,var(--gk-sage-light),var(--gk-cream-2));
  border:1px solid var(--gk-line);
  padding:clamp(20px,4vw,40px);
  display:flex; align-items:center; justify-content:center;
}
.art-panel svg{ width:100%; height:auto; }
.art-panel--photo{ padding:0; aspect-ratio:6/5; }
.art-panel--photo img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------------------------------------------------------------------- */
/* Before / after slider                                                  */
/* ---------------------------------------------------------------------- */
.ba-wrap{ max-width:880px; margin-inline:auto; }
.ba-slider{
  position:relative;
  aspect-ratio:16/10;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--gk-line);
  touch-action:pan-y;
  user-select:none;
  background:var(--gk-charcoal);
}
.ba-slider svg, .ba-slider img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ba-layer{ position:absolute; inset:0; }
.ba-layer.ba-after{ clip-path:inset(0 0 0 50%); }
.ba-tag{
  position:absolute; top:16px; padding:7px 16px; border-radius:999px;
  font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  background:rgba(22,50,28,0.72); color:var(--gk-white); backdrop-filter:blur(4px);
}
.ba-tag.ba-tag-before{ left:16px; }
.ba-tag.ba-tag-after{ right:16px; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%;
  width:4px; background:var(--gk-white);
  transform:translateX(-50%);
  box-shadow:0 0 0 4px rgba(255,255,255,0.28);
}
.ba-handle__grip{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:52px; height:52px; border-radius:50%;
  background:var(--gk-white); box-shadow:var(--shadow-lg);
  display:flex; align-items:center; justify-content:center; gap:2px;
  color:var(--gk-green-dark);
}
.ba-handle__grip svg{ width:16px; height:16px; }
.ba-range{
  position:absolute; inset:0; width:100%; height:100%;
  opacity:0; cursor:ew-resize; margin:0;
}
.ba-caption{ text-align:center; margin-top:18px; color:var(--ink-soft); font-size:.95rem; }
.ba-caption strong{ color:var(--gk-green-dark); }

/* ---------------------------------------------------------------------- */
/* How it works                                                            */
/* ---------------------------------------------------------------------- */
.steps{ display:grid; gap:40px; counter-reset:step; }
@media (min-width:820px){ .steps{ grid-template-columns:repeat(3,1fr); gap:56px; } }
.step{ position:relative; padding-top:8px; }
.step__num{
  display:flex; align-items:center; justify-content:center;
  width:64px; height:64px; border-radius:50%;
  background:var(--gk-green-deep); color:var(--gk-lime);
  font-family:var(--font-head); font-weight:700; font-size:1.6rem;
  margin-bottom:26px;
}
.step h3{ font-size:1.45rem; margin-bottom:10px; }
.step p{ color:var(--ink-soft); font-size:1.05rem; line-height:1.55; }
.step-connector{ display:none; }
@media (min-width:820px){
  .step:not(:last-child)::after{
    content:""; position:absolute; top:32px; left:calc(50% + 56px); width:calc(100% - 48px);
    height:2px; background:repeating-linear-gradient(90deg,var(--gk-sage) 0 10px,transparent 10px 18px);
  }
}

/* ---------------------------------------------------------------------- */
/* Service areas                                                          */
/* ---------------------------------------------------------------------- */
.area-layout{ display:grid; gap:48px; }
@media (min-width:940px){ .area-layout{ grid-template-columns:1fr 1fr; gap:72px; align-items:center; } }
.area-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:28px; }
@media (min-width:520px){ .area-list{ grid-template-columns:repeat(3,1fr); } }
.area-chip{
  display:flex; align-items:center; gap:10px;
  background:var(--gk-white); border:1px solid var(--gk-line); border-radius:14px;
  padding:16px 18px; font-weight:600; font-size:1rem;
}
.area-chip svg{ width:17px; height:17px; color:var(--gk-green-dark); flex:none; }
.area-chip.is-link{ transition:border-color .15s ease, background-color .15s ease; }
.area-chip.is-link:hover{ border-color:var(--gk-green); background:var(--gk-sage-light); }
.area-note{ margin-top:24px; font-size:1rem; color:var(--ink-soft); }

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.testi-grid{ display:grid; gap:28px; grid-template-columns:1fr; }
@media (min-width:720px){ .testi-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1060px){ .testi-grid.cols-3{ grid-template-columns:repeat(3,1fr); } }
.testi-card{
  background:var(--gk-white); border:1px solid var(--gk-line); border-radius:var(--radius-lg);
  padding:var(--card-padding); display:flex; flex-direction:column; gap:20px; box-shadow:var(--shadow-sm);
}
.testi-stars{ display:flex; gap:3px; color:var(--gk-yellow); }
.testi-stars svg{ width:18px; height:18px; }
.testi-card p{ color:var(--gk-charcoal-2); font-size:1.08rem; line-height:1.6; }
.testi-person{ display:flex; align-items:center; gap:14px; margin-top:auto; }
.testi-avatar{
  width:52px; height:52px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  color:var(--gk-white); font-weight:700; font-family:var(--font-head); font-size:1.15rem;
}
.testi-name{ font-weight:700; font-size:1rem; color:var(--gk-charcoal); }
.testi-loc{ font-size:.9rem; color:var(--ink-soft); }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */
.faq-list{ display:flex; flex-direction:column; gap:16px; max-width:880px; margin-inline:auto; }
.faq-item{ background:var(--gk-white); border:1px solid var(--gk-line); border-radius:var(--radius-md); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:26px 30px; text-align:left; font-weight:700; font-size:1.15rem; color:var(--gk-charcoal);
}
.faq-q svg{ width:22px; height:22px; flex:none; transition:transform .2s ease; color:var(--gk-green-dark); }
.faq-item[data-open="true"] .faq-q svg{ transform:rotate(45deg); }
.faq-a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .22s ease; }
.faq-item[data-open="true"] .faq-a{ grid-template-rows:1fr; }
.faq-a-inner{ overflow:hidden; }
.faq-a p{ padding:0 30px 28px; color:var(--ink-soft); font-size:1.05rem; line-height:1.6; }

/* ---------------------------------------------------------------------- */
/* Closing CTA band                                                       */
/* ---------------------------------------------------------------------- */
.cta-band{
  background:radial-gradient(120% 160% at 15% 0%, var(--gk-green) 0%, var(--gk-green-deep) 60%);
  color:var(--gk-white); text-align:center; position:relative; overflow:hidden;
}
.cta-band__inner{ position:relative; z-index:1; max-width:800px; margin-inline:auto; }
.cta-band h2{ color:var(--gk-white); font-size:clamp(2.25rem,4.5vw,3.75rem); line-height:1.1; }
.cta-band p{ margin-top:22px; font-size:var(--body-lg); color:var(--gk-sage-light); }
.cta-band .hero__ctas{ justify-content:center; margin-top:40px; gap:20px; }
.cta-band-blob{ position:absolute; opacity:.5; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{ background:var(--gk-green-deep); color:var(--gk-sage-light); }
.footer-top{ padding-block:clamp(56px,8vw,96px); display:grid; gap:48px; }
@media (min-width:820px){ .footer-top{ grid-template-columns:1.3fr 1fr 1fr 1fr; gap:36px; } }
.footer-brand .brand{ color:var(--gk-white); }
.footer-brand p{ margin-top:18px; color:var(--gk-sage-light); font-size:1rem; max-width:34ch; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-heading{ font-size:.85rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gk-lime); margin-bottom:18px; }
.footer-links{ display:flex; flex-direction:column; gap:13px; }
.footer-links a{ font-size:1rem; color:var(--gk-sage-light); transition:color .15s ease; }
.footer-links a:hover{ color:var(--gk-white); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:1rem; margin-bottom:14px; }
.footer-contact svg{ width:18px; height:18px; margin-top:2px; color:var(--gk-lime); flex:none; }
.footer-bottom{
  border-top:1px solid rgba(251,247,238,0.14);
  padding-block:22px;
  display:flex; flex-direction:column; gap:10px;
  font-size:.82rem; color:rgba(220,232,214,0.75);
}
@media (min-width:720px){ .footer-bottom{ flex-direction:row; align-items:center; justify-content:space-between; } }
.footer-bottom a{ color:rgba(220,232,214,0.9); font-weight:600; }
.footer-bottom a:hover{ color:var(--gk-white); text-decoration:underline; }
.footer-disclosure{ max-width:640px; line-height:1.5; }
.footer-credit{ font-size:.78rem; opacity:.85; }

/* ---------------------------------------------------------------------- */
/* Breadcrumbs                                                            */
/* ---------------------------------------------------------------------- */
.breadcrumbs{ padding-block:16px; font-size:.85rem; color:var(--ink-soft); }
.breadcrumbs ol{ display:flex; flex-wrap:wrap; align-items:center; gap:6px; list-style:none; margin:0; padding:0; }
.breadcrumbs li{ display:flex; align-items:center; gap:6px; }
.breadcrumbs a{ font-weight:600; color:var(--gk-green-dark); }
.breadcrumbs a:hover{ text-decoration:underline; }
.breadcrumbs li[aria-current] { color: var(--ink-soft); }
.breadcrumbs svg{ width:12px; height:12px; opacity:.6; }

/* ---------------------------------------------------------------------- */
/* Page hero (inner pages)                                                 */
/* ---------------------------------------------------------------------- */
.page-hero{
  background:linear-gradient(160deg, var(--gk-green-deep) 0%, var(--gk-green-dark) 100%);
  color:var(--gk-white);
  padding-block:clamp(56px,8vw,96px);
}
.page-hero .kicker{ color:var(--gk-lime); }
.page-hero h1{ color:var(--gk-white); font-size:clamp(2.5rem,5vw,4rem); max-width:20ch; line-height:1.08; }
.page-hero p{ margin-top:22px; color:var(--gk-sage-light); font-size:var(--body-lg); max-width:56ch; }
.page-hero .hero__ctas{ margin-top:34px; }

.page-media{ padding-block:0 clamp(40px,6vw,72px); }
.page-media__frame{ margin:0; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:21/9; }
.page-media__frame img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:720px){ .page-media__frame{ aspect-ratio:4/3; } }

/* ---------------------------------------------------------------------- */
/* Service hero (photo background, for /services/* detail pages)          */
/* ---------------------------------------------------------------------- */
.service-hero{
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--gk-white);
  min-height:clamp(560px, 46vw, 760px);
  background:var(--gk-green-deep); /* shows while the image loads */
}
.service-hero__bg{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover;
}
.service-hero__overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(
    90deg,
    rgba(15,50,26,0.90) 0%,
    rgba(15,50,26,0.74) 42%,
    rgba(15,50,26,0.32) 72%,
    rgba(15,50,26,0.12) 100%
  );
}
.service-hero__content{ position:relative; z-index:2; }
.service-hero__content .kicker{ color:var(--gk-lime); font-size:.85rem; }
.service-hero__content .hero__ctas{ margin-top:28px; }

@media (max-width:960px){
  .service-hero{
    min-height:0;
    align-items:flex-end;
    padding-block:64px 40px;
  }
  .service-hero__overlay{
    background:linear-gradient(
      180deg,
      rgba(15,50,26,0.55) 0%,
      rgba(15,50,26,0.82) 55%,
      rgba(15,50,26,0.92) 100%
    );
  }
}

/* ---------------------------------------------------------------------- */
/* Image hero — shared content positioning + scale (service pages)        */
/* ---------------------------------------------------------------------- */
.service-hero__content{
  width:min(820px, calc(100% - 80px));
  margin-left:0;
  padding-left:40px;
  padding-right:40px;
}
.service-hero__content h1{
  color:var(--gk-white);
  font-size:clamp(3.5rem, 5.5vw, 6rem);
  line-height:1.02;
}
.service-hero__content p{
  margin-top:24px;
  color:var(--gk-sage-light);
  font-size:clamp(1.2rem, 1.5vw, 1.4rem);
  line-height:1.55;
  max-width:680px;
}
.service-hero__content .hero__ctas{
  gap:22px;
}
.service-hero__content .btn-lg{
  padding:24px 46px;
  font-size:1.1rem;
}
@media (max-width:960px){
  .service-hero__content{
    width:min(820px, calc(100% - 40px));
    padding-left:20px;
    padding-right:20px;
  }
  .service-hero__content h1{
    font-size:clamp(2.75rem, 9vw, 3.5rem);
  }
}

/* ---------------------------------------------------------------------- */
/* Generic content components                                              */
/* ---------------------------------------------------------------------- */
.prose{ max-width:780px; color:var(--gk-charcoal-2); font-size:1.125rem; line-height:1.75; }
.prose h2{ margin-top:2.2em; margin-bottom:.6em; font-size:1.875rem; }
.prose h2:first-child{ margin-top:0; }
.prose p + p, .prose p + ul{ margin-top:1.1em; }
.prose ul{ display:flex; flex-direction:column; gap:8px; margin-top:1.1em; }
.prose ul li{ padding-left:26px; position:relative; }
.prose ul li::before{ content:"›"; position:absolute; left:4px; color:var(--gk-green); font-weight:800; }
.prose a{ color:var(--gk-green-dark); font-weight:700; text-decoration:underline; text-underline-offset:3px; }

.checklist{ display:flex; flex-direction:column; gap:18px; }
.checklist li{ display:flex; gap:14px; align-items:flex-start; font-size:1.08rem; color:var(--gk-charcoal-2); line-height:1.5; }
.checklist svg{ width:22px; height:22px; color:var(--gk-green); flex:none; margin-top:2px; }

.pill-row{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gk-sage-light); color:var(--gk-green-deep);
  border-radius:999px; padding:8px 16px; font-size:.86rem; font-weight:700;
}

.stat-row{ display:grid; gap:32px; grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .stat-row{ grid-template-columns:repeat(4,1fr); } }
.stat{ text-align:center; }
.stat strong{ display:block; font-family:var(--font-head); font-size:clamp(2.25rem,4vw,3.25rem); color:var(--gk-green-dark); }
.section-deep .stat strong{ color:var(--gk-white); }
.stat span{ font-size:.98rem; color:var(--ink-soft); font-weight:600; }
.section-deep .stat span{ color:var(--gk-sage-light); }

.table-wrap{ overflow-x:auto; border-radius:var(--radius-md); border:1px solid var(--gk-line); }
table{ width:100%; border-collapse:collapse; min-width:560px; background:var(--gk-white); }
th,td{ padding:14px 18px; text-align:left; font-size:.94rem; border-bottom:1px solid var(--gk-line); }
th{ background:var(--gk-cream-2); font-family:var(--font-head); font-weight:700; color:var(--gk-green-deep); }
tr:last-child td{ border-bottom:none; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */
.form-card{
  background:var(--gk-white); border:1px solid var(--gk-line); border-radius:var(--radius-xl);
  padding:clamp(32px,5vw,56px); box-shadow:var(--shadow-md);
}
.form-grid{ display:grid; gap:24px; }
@media (min-width:640px){ .form-grid.two{ grid-template-columns:1fr 1fr; } }
.field{ display:flex; flex-direction:column; gap:9px; }
.field.full{ grid-column:1/-1; }
.field label{ font-weight:700; font-size:.98rem; color:var(--gk-charcoal); }
.field .req{ color:var(--gk-green-dark); }
.field input,.field select,.field textarea{
  padding:16px 18px; border-radius:12px; border:1.5px solid var(--gk-line);
  background:var(--gk-cream); font-size:1.05rem; color:var(--gk-charcoal);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--gk-green); box-shadow:0 0 0 4px rgba(47,107,60,0.14);
}
.field textarea{ resize:vertical; min-height:120px; }
.field-hint{ font-size:.88rem; color:var(--ink-soft); }
.field-error{ font-size:.82rem; color:#B4433A; display:none; }
.field.has-error input,.field.has-error select,.field.has-error textarea{ border-color:#B4433A; }
.field.has-error .field-error{ display:block; }

.choice-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
@media (min-width:520px){ .choice-grid.services{ grid-template-columns:repeat(2,1fr); } }
.choice{
  display:flex; align-items:center; gap:12px;
  border:1.5px solid var(--gk-line); border-radius:12px; padding:14px 16px;
  background:var(--gk-cream); font-size:1rem; font-weight:600; cursor:pointer;
  transition:border-color .15s ease, background-color .15s ease;
}
.choice:has(input:checked){ border-color:var(--gk-green); background:var(--gk-sage-light); }
.choice input{ accent-color:var(--gk-green); width:18px; height:18px; flex:none; }

.radio-row{ display:flex; gap:14px; flex-wrap:wrap; }
.radio-pill{
  display:flex; align-items:center; gap:8px;
  border:1.5px solid var(--gk-line); border-radius:999px; padding:12px 20px;
  font-weight:600; font-size:1rem; cursor:pointer; background:var(--gk-cream);
}
.radio-pill:has(input:checked){ border-color:var(--gk-green); background:var(--gk-green-deep); color:var(--gk-white); }
.radio-pill input{ accent-color:var(--gk-green); }

.form-foot{ margin-top:26px; display:flex; flex-direction:column; gap:14px; align-items:center; text-align:center; }
.form-foot small{ color:var(--ink-soft); font-size:.82rem; max-width:52ch; }

.progress-track{ display:flex; gap:8px; margin-bottom:30px; }
.progress-track span{ flex:1; height:6px; border-radius:99px; background:var(--gk-line); }
.progress-track span.is-done{ background:var(--gk-green); }

.form-step{ display:none; }
.form-step.is-active{ display:block; animation:fadeIn .25s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:translateY(0);} }

.step-actions{ display:flex; justify-content:space-between; align-items:center; margin-top:28px; gap:12px; }

.success-card{ text-align:center; padding:clamp(36px,6vw,64px); }
.success-icon{
  width:88px; height:88px; border-radius:50%; margin-inline:auto 20px;
  background:var(--gk-sage-light); color:var(--gk-green-dark);
  display:flex; align-items:center; justify-content:center;
}
.success-icon svg{ width:44px; height:44px; }
.success-card h2{ font-size:2.15rem; margin-top:20px; }
.success-card p{ margin-top:16px; color:var(--ink-soft); font-size:1.1rem; max-width:48ch; margin-inline:auto; }

/* Simple contact form (single step) reused styling */
.contact-layout{ display:grid; gap:48px; }
@media (min-width:960px){ .contact-layout{ grid-template-columns:1fr 1.15fr; gap:64px; } }
.contact-info-card{
  background:var(--gk-green-deep); color:var(--gk-cream); border-radius:var(--radius-xl);
  padding:clamp(32px,5vw,48px); display:flex; flex-direction:column; gap:26px; height:fit-content;
}
.contact-info-card h2{ color:var(--gk-white); font-size:1.85rem; }
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-item svg{ width:24px; height:24px; color:var(--gk-lime); flex:none; margin-top:2px; }
.contact-info-item strong{ display:block; font-size:1.05rem; margin-bottom:3px; }
.contact-info-item span, .contact-info-item a{ color:var(--gk-sage-light); font-size:1rem; }
.contact-hours{ border-top:1px solid rgba(251,247,238,0.16); padding-top:20px; }
.contact-hours table{ background:transparent; width:100%; }
.contact-hours td{ border:none; padding:6px 0; color:var(--gk-sage-light); font-size:.92rem; }
.contact-hours td:last-child{ text-align:right; font-weight:700; color:var(--gk-white); }

/* ---------------------------------------------------------------------- */
/* Utility                                                                  */
/* ---------------------------------------------------------------------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

.dot-divider{ display:flex; justify-content:center; padding-block:8px; }
.dot-divider svg{ width:120px; height:14px; color:var(--gk-sage); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

.zip-checker{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.zip-checker input{ flex:1; min-width:180px; }
.zip-result{ margin-top:14px; font-weight:700; font-size:.95rem; padding:12px 16px; border-radius:12px; display:none; }
.zip-result.show{ display:block; }
.zip-result.in-area{ background:var(--gk-sage-light); color:var(--gk-green-deep); }
.zip-result.out-area{ background:#FBEAE6; color:#8A342B; }

.error-page{ padding-block:clamp(80px,12vw,140px); text-align:center; }
.error-page h1{ font-size:clamp(2.4rem,7vw,4rem); }

noscript .js-only{ display:none; }

/* ---------------------------------------------------------------------- */
/* Mobile sticky Free Quote CTA (mobile only)                              */
/* ---------------------------------------------------------------------- */
.mobile-sticky-cta{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:95;
  align-items:center; justify-content:center; gap:.5em;
  padding:14px var(--gutter) calc(14px + env(safe-area-inset-bottom,0px));
  background:var(--gk-green-deep); color:var(--gk-cream);
  font-weight:800; font-size:.92rem; letter-spacing:.08em; text-transform:uppercase;
  box-shadow:0 -10px 24px rgba(22,50,28,0.24);
}
.mobile-sticky-cta svg{ width:18px; height:18px; color:var(--gk-lime); flex:none; }
.nav-open .mobile-sticky-cta{ display:none !important; }
@media (max-width:959px){
  body.has-sticky-cta{ padding-bottom:64px; }
  .mobile-sticky-cta{ display:flex; }
}

/* ---------------------------------------------------------------------- */
/* Global hero/header refinement                                           */
/* ---------------------------------------------------------------------- */
.site-header{
  position:fixed;
  inset:0 0 auto;
  background:transparent;
  border-bottom-color:transparent;
  backdrop-filter:none;
  transition:background-color .2s ease, border-color .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.site-header .brand,
.site-header .header-phone,
.site-header .main-nav a.nav-link{ color:var(--gk-white); }
.site-header .brand__name small{ color:var(--gk-sage-light); }
.site-header .brand__mark rect{ fill:rgba(12,44,24,.72); stroke:rgba(255,255,255,.45); }
.site-header .main-nav a.nav-link:hover,
.site-header .main-nav a.nav-link[aria-current="page"]{ background:rgba(255,255,255,.16); color:var(--gk-white); }
.site-header.is-scrolled,
.nav-open .site-header{
  background:rgba(251,247,238,.94);
  border-bottom-color:rgba(228,222,204,.9);
  box-shadow:0 6px 24px rgba(22,50,28,.09);
  backdrop-filter:saturate(150%) blur(14px);
}
.site-header.is-scrolled .brand,
.site-header.is-scrolled .header-phone,
.site-header.is-scrolled .main-nav a.nav-link,
.nav-open .site-header .brand{ color:var(--gk-green-deep); }
.site-header.is-scrolled .brand__name small,
.nav-open .site-header .brand__name small{ color:var(--ink-soft); }
.site-header.is-scrolled .main-nav a.nav-link:hover,
.site-header.is-scrolled .main-nav a.nav-link[aria-current="page"]{ background:var(--gk-sage-light); color:var(--gk-green-deep); }
.nav-toggle{ background:rgba(251,247,238,.9); color:var(--gk-green-deep); }

/* The first content panel clears the fixed header when it is not a hero. */
main > .breadcrumbs:first-child{ display:none; }

.hero{
  min-height:clamp(540px, calc(100svh - 88px), 720px);
  padding-top:var(--header-h, 72px);
}
.hero__content{
  width:min(720px, calc(100% - 2 * var(--gutter)));
  padding:clamp(38px,5vw,64px) 0;
  margin-left:max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.hero__eyebrow{ padding:0; border:0; background:transparent; font-size:.8rem; margin-bottom:18px; }
.hero__eyebrow svg{ width:24px; height:24px; }
.hero__content h1{ font-size:clamp(3rem,5vw,5rem); line-height:1.03; max-width:12ch; }
.hero__content p{ margin-top:18px; font-size:clamp(1rem,1.25vw,1.2rem); max-width:620px; }
.hero__content .hero__ctas{ margin-top:28px; gap:14px; }
.hero__content .btn-lg{ padding:18px 34px; font-size:.98rem; }
.hero__trust{ display:none; }

.service-hero{
  min-height:clamp(480px, calc(100svh - 128px), 610px);
  padding-top:var(--header-h, 72px);
}
.service-hero__content{ width:100%; padding-inline:var(--gutter); }
.service-hero__content h1{ font-size:clamp(3rem,5vw,5rem); line-height:1.03; max-width:12ch; }
.service-hero__content p{ font-size:clamp(1rem,1.25vw,1.2rem); }
.service-hero__content .btn-lg{ padding:18px 34px; font-size:.98rem; }
.about-hero .service-hero__bg{ object-position:center 58%; }
.page-hero h1{ font-size:clamp(3rem,5vw,5rem); line-height:1.03; max-width:12ch; }
.page-hero p{ max-width:620px; }

.trust-strip__inner{ gap:0; padding-block:16px; }
.trust-strip__item{ min-height:54px; padding:6px clamp(12px,2vw,28px); font-size:.78rem; line-height:1.35; }
.trust-strip__item + .trust-strip__item{ border-left:1px solid rgba(220,232,214,.4); }
.trust-strip__item svg{ width:28px; height:28px; }
.trust-strip__item strong{ font-family:var(--font-body); font-size:.9rem; }

@media (max-width:1039px){
  .trust-strip__item:nth-child(3){ border-left:0; }
  .trust-strip__item:nth-child(n+3){ border-top:1px solid rgba(220,232,214,.28); }
}
@media (max-width:959px){
  .hero{ min-height:560px; padding-top:var(--header-h, 72px); }
  .service-hero{ min-height:480px; padding-top:var(--header-h, 72px); }
  .hero__content{ margin-left:var(--gutter); width:calc(100% - 2 * var(--gutter)); padding-inline:0; }
  .service-hero{ padding-bottom:44px; }
  .service-hero__content{ width:100%; padding-inline:var(--gutter); }
}
@media (max-width:719px){
  .trust-strip__inner{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-strip__item{ padding:12px 10px; gap:10px; }
  .trust-strip__item:nth-child(3){ border-left:0; }
  .trust-strip__item:nth-child(2),.trust-strip__item:nth-child(4){ border-left:1px solid rgba(220,232,214,.4); }
}
@media (max-width:430px){
  .hero{ min-height:540px; }
  .service-hero{ min-height:480px; }
  .hero__content h1,.service-hero__content h1{ font-size:clamp(2.45rem,12vw,3.15rem); }
  .hero__ctas{ flex-direction:column; align-items:stretch; }
  .hero__ctas .btn{ width:100%; }
  .trust-strip__inner{ grid-template-columns:1fr; }
  .trust-strip__item:nth-child(n){ border-left:0; border-top:1px solid rgba(220,232,214,.28); }
  .trust-strip__item:first-child{ border-top:0; }
}

/* One entry system across home, About, and every service page:
   hero + proof stripe equals exactly one visible viewport. */
:root{ --entry-trust-h:92px; }
.hero,
.service-hero,
.page-hero{
  height:calc(100svh - var(--entry-trust-h));
  min-height:0;
  max-height:none;
}
.page-hero{
  display:flex;
  align-items:center;
  padding-top:var(--header-h,72px);
  padding-bottom:0;
}
.trust-strip__inner{
  height:var(--entry-trust-h);
  min-height:var(--entry-trust-h);
  padding-block:10px;
}

@media (max-width:719px){
  :root{ --entry-trust-h:146px; }
  .hero,
  .service-hero,
  .page-hero{
    height:calc(100svh - var(--entry-trust-h));
    min-height:0;
  }
  .trust-strip__inner{
    grid-template-columns:repeat(2,minmax(0,1fr));
    height:var(--entry-trust-h);
    min-height:var(--entry-trust-h);
    padding-block:0;
  }
  .trust-strip__item{ min-height:73px; }
  body:not(.page-scrolled) .mobile-sticky-cta{ display:none; }
  .hero__content,
  .service-hero__content{
    padding-top:18px;
    padding-bottom:18px;
    transform:translateY(28px);
  }
  .hero__eyebrow,
  .service-hero__content .kicker{ margin-bottom:12px; }
  .hero__content h1,
  .service-hero__content h1,
  .page-hero h1{
    font-size:clamp(2.25rem,9vw,2.8rem);
    line-height:1.02;
  }
  .hero__content p,
  .service-hero__content p,
  .page-hero p{
    margin-top:14px;
    font-size:.96rem;
    line-height:1.45;
  }
  .hero__content .hero__ctas,
  .service-hero__content .hero__ctas,
  .page-hero .hero__ctas{
    flex-direction:row;
    flex-wrap:nowrap;
    gap:8px;
    margin-top:18px;
  }
  .hero__content .btn-lg,
  .service-hero__content .btn-lg,
  .page-hero .btn-lg{
    width:auto;
    min-width:0;
    padding:14px 18px;
    font-size:.78rem;
  }
}

@media (max-width:430px){
  .trust-strip__inner{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-strip__item:nth-child(n){ border-top:1px solid rgba(220,232,214,.28); }
  .trust-strip__item:nth-child(-n+2){ border-top:0; }
  .trust-strip__item:nth-child(even){ border-left:1px solid rgba(220,232,214,.4); }
  .hero__ctas{ flex-direction:row; align-items:center; }
  .hero__ctas .btn{ width:auto; }
}

/* Compact desktop service dropdown. */
.dropdown{
  min-width:210px;
  width:220px;
  max-width:220px;
  padding:6px;
  border-radius:14px;
}
.dropdown a{
  gap:10px;
  min-height:40px;
  padding:8px 10px;
  border-radius:8px;
  font-size:.84rem;
  line-height:1.25;
}
.dropdown a .svg-mini,
.dropdown a.dropdown-all svg{
  width:18px;
  height:18px;
  min-width:18px;
  flex:none;
  color:var(--gk-green-dark);
}
.dropdown a.dropdown-all{
  justify-content:space-between;
  margin-top:3px;
  padding-top:9px;
}
.dropdown a.dropdown-all svg{ margin-left:auto; }

/* Contact page */
.contact-hero .service-hero__bg{ object-position:center 58%; }
.contact-section{
  background:linear-gradient(180deg,var(--gk-cream) 0%,#f5efdf 100%);
}
.contact-layout{ align-items:start; }
.contact-info-card{
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(201,226,101,.18);
}
.contact-info-card::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  right:-110px;
  bottom:-120px;
  border-radius:50%;
  background:rgba(201,226,101,.08);
  pointer-events:none;
}
.contact-card-kicker{
  color:var(--gk-lime);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:-16px;
}
.contact-info-item{
  padding:2px 0;
  position:relative;
  z-index:1;
}
.contact-info-item svg{
  width:42px;
  height:42px;
  padding:10px;
  border-radius:12px;
  background:rgba(201,226,101,.1);
}
.contact-hours{ position:relative; z-index:1; }
.contact-hours table{ min-width:0; }
.form-card{
  box-shadow:0 18px 50px rgba(22,50,28,.11);
}
.contact-form-head{ margin-bottom:32px; }
.contact-form-head .kicker{ margin-bottom:10px; }
.contact-form-head h2{ font-size:clamp(2rem,3vw,2.7rem); line-height:1.08; }
.contact-form-head p{ margin-top:12px; color:var(--ink-soft); }
.contact-section .field input,
.contact-section .field select,
.contact-section .field textarea{ background:#fcfaf4; }
.contact-section .step-actions .btn{ min-width:190px; }

@media (min-width:960px){
  .contact-layout{ grid-template-columns:.82fr 1.18fr; gap:clamp(48px,6vw,82px); }
  .contact-info-card{ position:sticky; top:110px; }
}

@media (max-width:719px){
  .contact-hero{
    align-items:flex-start;
    height:auto;
    min-height:0;
    padding-top:var(--header-h,72px);
    padding-bottom:36px;
  }
  .contact-hero .service-hero__content{
    transform:none;
    padding-top:34px;
    padding-bottom:0;
  }
}

@media (max-width:430px){
  .contact-hero .hero__ctas{ gap:6px; }
  .contact-hero .btn-lg{
    padding:12px 10px;
    font-size:.68rem;
    letter-spacing:0;
  }
}

/* Final mobile navigation and hero-flow corrections. */
@media (max-width:959px){
  .site-header,
  .site-header.is-scrolled,
  .nav-open .site-header{
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .mobile-nav{
    position:fixed;
    top:var(--header-h,72px);
    right:0;
    bottom:0;
    left:0;
    height:calc(100dvh - var(--header-h,72px));
    padding:20px var(--gutter) 32px;
    overflow-y:auto;
    background:var(--gk-cream);
    z-index:1000;
  }
  .mobile-nav > ul > li{ background:transparent; }
}

@media (max-width:719px){
  .hero,
  .service-hero,
  .page-hero{
    align-items:flex-start;
  }
  .hero__content,
  .service-hero__content,
  .page-hero > .container{
    transform:none;
    padding-top:30px;
  }
  .contact-hero .service-hero__content{ padding-top:30px; }
}

/* Final proportional scale adjustment: +7% without changing the
   hero + trust-stripe one-viewport composition above. */
.hero__content{ width:min(770px, calc(100% - 2 * var(--gutter))); }
.hero__content,
.service-hero__content,
.page-hero > .container{ transform:translateY(56px); }
.hero__content h1,
.service-hero__content h1,
.page-hero h1{ font-size:clamp(3.2rem,5.35vw,5.35rem); }
.hero__content p,
.service-hero__content p,
.page-hero p{ font-size:clamp(1.07rem,1.34vw,1.28rem); }
.hero__eyebrow,
.service-hero__content .kicker{ font-size:.86rem; }
.hero__content .btn-lg,
.service-hero__content .btn-lg,
.page-hero .btn-lg{ padding:19px 36px; font-size:1.05rem; }
.trust-strip__item{ font-size:.835rem; }
.trust-strip__item svg{ width:30px; height:30px; }
.trust-strip__item strong{ font-size:.96rem; }

@media (max-width:719px){
  .hero__content,
  .service-hero__content,
  .page-hero > .container{ transform:translateY(28px); }
  .hero__content h1,
  .service-hero__content h1,
  .page-hero h1{ font-size:clamp(2.4rem,9.6vw,3rem); }
  .hero__content p,
  .service-hero__content p,
  .page-hero p{ font-size:1.03rem; }
  .hero__content .btn-lg,
  .service-hero__content .btn-lg,
  .page-hero .btn-lg{ padding:15px 19px; font-size:.835rem; }
  .trust-strip__item{ min-height:73px; font-size:.82rem; }
}

/* Authoritative mobile first-screen composition. */
@media (max-width:719px){
  :root{ --entry-trust-h:auto; }

  .hero,
  .service-hero,
  .page-hero,
  .contact-hero{
    height:auto;
    min-height:0;
    max-height:none;
    align-items:flex-start;
    padding-top:var(--header-h,72px);
    padding-bottom:30px;
  }

  .hero__content,
  .service-hero__content,
  .page-hero > .container,
  .contact-hero .service-hero__content{
    width:calc(100% - 48px);
    margin-left:24px;
    margin-right:24px;
    padding:24px 0 0;
    transform:none;
  }

  .hero__eyebrow,
  .service-hero__content .kicker,
  .page-hero .kicker{
    margin-bottom:20px;
    font-size:.8rem;
    line-height:1.2;
  }

  .hero__content h1,
  .service-hero__content h1,
  .page-hero h1{
    max-width:11ch;
    font-size:clamp(3rem,13vw,4rem);
    line-height:.98;
  }

  .hero__content p,
  .service-hero__content p,
  .page-hero p{
    margin-top:20px;
    max-width:34ch;
    font-size:clamp(1.18rem,5vw,1.375rem);
    line-height:1.38;
  }

  .hero__content .hero__ctas,
  .service-hero__content .hero__ctas,
  .page-hero .hero__ctas,
  .contact-hero .hero__ctas{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:20px;
    margin-top:26px;
  }

  .hero__content .btn-lg,
  .service-hero__content .btn-lg,
  .page-hero .btn-lg,
  .contact-hero .btn-lg{
    width:100%;
    min-height:60px;
    padding:15px 20px;
    font-size:.88rem;
    line-height:1.15;
  }

  .trust-strip__inner{
    grid-template-columns:repeat(2,minmax(0,1fr));
    height:auto;
    min-height:0;
    padding-block:0;
  }
  .trust-strip__item{
    min-height:0;
    padding:16px 12px;
    gap:10px;
    font-size:.78rem;
    line-height:1.25;
  }
  .trust-strip__item svg{ width:30px; height:30px; }
  .trust-strip__item strong{ font-size:.94rem; }

  .hero__bg{ object-position:58% center; }
  .service-hero__bg{ object-position:62% center; }
  .contact-hero .service-hero__bg{ object-position:center 58%; }
}

@media (max-width:400px){
  .hero__content,
  .service-hero__content,
  .page-hero > .container,
  .contact-hero .service-hero__content{
    width:calc(100% - 40px);
    margin-inline:20px;
  }
  .hero__content h1,
  .service-hero__content h1,
  .page-hero h1{ font-size:clamp(2.9rem,12.7vw,3.2rem); }
  .hero__content p,
  .service-hero__content p,
  .page-hero p{ font-size:1.18rem; }
  .trust-strip__item{ padding:14px 10px; }
}

/* ---------------------------------------------------------------------- */
/* All Services hero: tighter, content-driven first screen                */
/* Desktop only — mobile already sizes .page-hero to its content via the  */
/* 719px "authoritative mobile first-screen composition" rules above.     */
/* Opts this page's hero out of the fixed viewport-height + vertical-     */
/* center treatment shared by .hero/.service-hero/.page-hero, so the      */
/* trust strip sits directly against the CTA instead of floating in a     */
/* mostly-empty full-height panel.                                        */
/* ---------------------------------------------------------------------- */
@media (min-width:720px){
  .services-hero{
    height:auto;
    min-height:0;
    max-height:none;
    padding-top:calc(var(--header-h, 72px) + 76px);
    padding-bottom:40px;
  }
  .services-hero > .container{ transform:none; }
  .services-hero .kicker{ margin-bottom:28px; }
}
