/* =================================================================
   SALTBUSH LANDSCAPES  -  Coastal Fresh, waterwise garden landscaper
   Palette: sage #2F9E7E · sand #E7D6A8 · ink #173129 · paper #F7FBF8
   Type:    Fraunces (display, brand-named) + Mulish (body)
   Motion:  CINEMATIC - full-viewport parallax coastal scene + scroll reveals
   ================================================================= */

/* ---------- NAV-SAFETY (mandatory) ---------- */
[hidden] { display: none !important; }

/* ---------- TOKENS ---------- */
:root {
  --sage:        #2F9E7E;
  --sage-deep:   #1f7a60;
  --sage-soft:   #d6ece3;
  --sand:        #E7D6A8;
  --sand-soft:   #f3ead0;
  --ink:         #173129;
  --ink-soft:    #3c534a;
  --ink-faint:   #6c8077;
  --paper:       #F7FBF8;
  --paper-2:     #eef6f1;
  --white:       #ffffff;
  --line:        rgba(23, 49, 41, 0.12);
  --line-soft:   rgba(23, 49, 41, 0.07);

  --shadow-sm: 0 1px 2px rgba(23,49,41,.06), 0 4px 14px rgba(23,49,41,.06);
  --shadow-md: 0 8px 26px rgba(23,49,41,.10), 0 2px 6px rgba(23,49,41,.06);
  --shadow-lg: 0 24px 60px rgba(23,49,41,.16), 0 6px 16px rgba(23,49,41,.08);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --nav-h: 74px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--sage); color: #fff; }

/* ---------- FOCUS (visible, AA) ---------- */
:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* =================================================================
   CINEMATIC BACKGROUND SCENE
   Fixed full-viewport. Layers move via --scroll-y * depth (set by JS,
   transform-only). Self-contained animations (sun shimmer, grass sway,
   drifting motes) run on transform/opacity only.
   ================================================================= */
.scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.scene__sky {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background:
    radial-gradient(120% 80% at 78% -8%, #fdf6e3 0%, #f6eccd 14%, rgba(246,236,205,0) 46%),
    linear-gradient(180deg,
      #eaf5ef 0%,
      #ddeee6 30%,
      #e7f1d9 58%,
      #f2ecd2 82%,
      #f6e9cb 100%);
}

/* low coastal sun */
.scene__sun {
  position: absolute;
  top: 9vh; right: 14vw;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff6df 0%, #ffeec0 38%, #ffe3a3 60%, rgba(255,227,163,0) 72%);
  will-change: transform;
  animation: sunBreathe 9s var(--ease) infinite;
}
.scene__sun::after {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7e6 0%, #ffe6ad 70%, rgba(255,230,173,0) 100%);
}

.scene__haze {
  position: absolute;
  left: -5%; right: -5%;
  bottom: 30vh;
  height: 26vh;
  background: linear-gradient(180deg, rgba(247,251,248,0) 0%, rgba(231,241,225,.5) 60%, rgba(231,241,225,.85) 100%);
  filter: blur(6px);
}

/* hill / dune bands */
.scene__band {
  position: absolute;
  left: -4%; right: -4%;
  width: 108%;
  bottom: 0;
  height: auto;
  will-change: transform;
}
.scene__band path { stroke: none; }
.scene__band--far {
  bottom: 26vh;
  height: 46vh;
}
.scene__band--far path { fill: #cfe3d6; }
.scene__band--mid {
  bottom: 12vh;
  height: 48vh;
}
.scene__band--mid path { fill: #a9d0bb; }
.scene__band--near {
  bottom: 0;
  height: 42vh;
}
.scene__band--near path { fill: #7cb89c; }

/* foreground grass strip */
.scene__grass {
  position: absolute;
  left: -2%; right: -2%;
  width: 104%;
  bottom: -2vh;
  height: 30vh;
  will-change: transform;
}
.scene__grass path { fill: #2f6b54; }
.grass-tuft {
  transform-box: fill-box;
  transform-origin: bottom center;
  translate: var(--gx) 0;
  animation: sway 5.5s ease-in-out infinite;
  animation-delay: var(--gd);
}
@keyframes sway {
  0%, 100% { transform: rotate(-3.5deg); }
  50%      { transform: rotate(3.5deg); }
}
@keyframes sunBreathe {
  0%, 100% { transform: scale(1); opacity: .95; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* drifting seed motes */
.motes { position: absolute; inset: 0; }
.motes span {
  position: absolute;
  left: var(--x);
  bottom: 22vh;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #eef6df 60%, rgba(238,246,223,0) 100%);
  opacity: .0;
  scale: var(--s);
  will-change: transform, opacity;
  animation: drift 16s linear infinite;
  animation-delay: var(--d);
}
@keyframes drift {
  0%   { transform: translate(0, 0); opacity: 0; }
  12%  { opacity: .85; }
  50%  { transform: translate(26px, -42vh); opacity: .7; }
  88%  { opacity: .5; }
  100% { transform: translate(-12px, -78vh); opacity: 0; }
}

/* page content sits on a translucent paper wash so the scene reads
   strongest at the hero and quiets behind dense copy */
.content-veil {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(247,251,248,0) 0vh,
    rgba(247,251,248,0) 62vh,
    rgba(247,251,248,.86) 96vh,
    var(--paper) 130vh);
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; padding: 16px 24px; font-size: 16px; }

.btn--solid {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47,158,126,.32);
}
.btn--solid:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,158,126,.36); }
.btn--solid:active { transform: translateY(0) scale(.985); }

.btn--ghost { background: transparent; color: var(--ink); padding: 10px 14px; }
.btn--ghost:hover { color: var(--sage-deep); }

.btn--line {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--line:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }
.btn--line:active { transform: translateY(0) scale(.985); }

.btn--line-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--line-light:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav[data-elevated="true"] {
  height: 64px;
  background: rgba(247, 251, 248, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(23,49,41,.07);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.wordmark__mark { color: var(--sage); display: inline-flex; flex-shrink: 0; }
.wordmark__text { display: inline-flex; align-items: baseline; gap: 6px; line-height: 1; }
.wordmark__co {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-weight: 700; font-size: 14px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2.2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(247, 251, 248, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  padding: 14px 24px 26px;
  animation: drawerIn .28s var(--ease);
}
@keyframes drawerIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 15px 4px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-nav__cta {
  margin-top: 16px;
  background: var(--sage);
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill);
  text-align: center;
  font-size: 16px !important;
}
.mobile-nav__phone {
  margin-top: 10px;
  text-align: center;
  color: var(--sage-deep) !important;
  border: none !important;
  font-weight: 700;
}

/* =================================================================
   LAYOUT HELPERS
   ================================================================= */
section { position: relative; }
.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-head__lede {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4vh) 24px 16vh;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; max-width: 920px; }

.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--sage-soft);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6.6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  max-width: 16ch;
}
/* italic display word with a descender ("gardens"): keep leading >= 1.1
   and reserve a little space so the g/descender + italic lean never clip */
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.12;
  padding-right: .04em;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 54ch;
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.trust-strip svg { color: var(--sage); flex-shrink: 0; }

/* =================================================================
   STATS BAR
   ================================================================= */
.stats {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 12px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 30px 24px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--sand);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

/* =================================================================
   SHARED SECTION PADDING
   ================================================================= */
.services, .process, .gallery, .callback, .reviews, .areas, .finalcta {
  padding: clamp(72px, 11vw, 130px) 24px;
}
.services > *, .process > *, .gallery > *, .reviews > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* =================================================================
   SERVICES GRID
   ================================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}
.svc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: 20px;
}
.svc__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.svc__copy { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

/* =================================================================
   PROCESS / STEPS  (numbered connected timeline)
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sage-soft) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; text-align: center; padding-top: 4px; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(47,158,126,.3);
  border: 4px solid var(--paper);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  margin: 18px 0 8px;
}
.step__copy { font-size: 15px; color: var(--ink-soft); line-height: 1.55; max-width: 26ch; margin: 0 auto; }

/* =================================================================
   GALLERY (your work here)
   ================================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.shot { margin: 0; position: relative; }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot__ph {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,0)),
    linear-gradient(160deg, var(--sage-soft) 0%, var(--sand-soft) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
/* a faint native-leaf motif so placeholders read as deliberate */
.shot__ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 78%, rgba(47,107,84,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, rgba(47,107,84,.16) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 60%, rgba(47,107,84,.12) 0 1.5px, transparent 2.5px);
  background-size: 90px 90px, 120px 120px, 60px 60px;
  opacity: .6;
}
.shot__plus {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.shot:hover .shot__ph { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shot__cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(23,49,41,.82);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.gallery__note {
  text-align: center;
  margin: 30px auto 0;
  max-width: 56ch;
  color: var(--ink-faint);
  font-size: 14.5px;
}

/* =================================================================
   GET A FREE QUOTE + FORM
   ================================================================= */
.callback {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(47,158,126,.10), transparent 50%),
    var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.callback__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.callback__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.callback__eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
}
.callback__eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: .5;
  animation: pingDot 2s var(--ease) infinite;
}
@keyframes pingDot {
  0% { transform: scale(.6); opacity: .6; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}
.callback__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.callback__copy { margin-top: 18px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; max-width: 52ch; }
.callback__list { margin-top: 24px; display: grid; gap: 13px; }
.callback__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
.callback__list svg {
  flex-shrink: 0;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  padding: 4px;
  width: 26px; height: 26px;
}

/* form card */
.callback__formwrap { position: relative; }
.cb-form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cb-form__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -.01em;
}
.cb-form__sub { margin-top: 6px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: 14px; color: var(--ink); }
.field input, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 15.5px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder { color: #97a89f; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47,158,126,.14);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23173129' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field__hint { font-size: 12.5px; color: var(--ink-faint); }
.field__error { font-size: 13px; color: #b4452f; font-weight: 600; }
.field input[aria-invalid="true"] { border-color: #d05a3f; box-shadow: 0 0 0 4px rgba(208,90,63,.12); }

.cb-form__fineprint { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }

/* success state overlays the form */
.cb-form__success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
  animation: successIn .4s var(--ease);
}
@keyframes successIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.cb-form__tick {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: tickPop .5s var(--ease) .08s both;
}
@keyframes tickPop { 0% { transform: scale(0); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.cb-form__success h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.cb-form__success p { margin-top: 8px; color: var(--ink-soft); max-width: 30ch; font-size: 15px; }

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review__stars { display: flex; gap: 3px; color: var(--sand); margin-bottom: 16px; }
.review__stars svg { color: #e6a73c; }
.review__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--ink);
  flex-grow: 1;
}
.review__quote::before { content: "“"; }
.review__quote::after { content: "”"; }
.review__by {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  font-size: 15px;
}
.review__loc { font-weight: 600; font-size: 13.5px; color: var(--sage-deep); }

/* =================================================================
   SERVICE AREAS
   ================================================================= */
.areas { background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.areas__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas__copy .section-head__eyebrow,
.areas__copy .section-head__title,
.areas__copy .section-head__lede { text-align: left; margin-left: 0; }
.areas__copy .section-head__title { max-width: 14ch; }
.areas__copy .btn { margin-top: 26px; }
.areas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.areas__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.areas__list li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--sage);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.areas__list li:hover { transform: translateX(4px); border-color: var(--sage-soft); }

/* =================================================================
   FINAL CTA
   ================================================================= */
.finalcta {
  background:
    radial-gradient(120% 140% at 80% 10%, rgba(47,158,126,.5), transparent 55%),
    radial-gradient(90% 120% at 10% 90%, rgba(231,214,168,.28), transparent 60%),
    var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.finalcta__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.finalcta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 18ch;
  margin: 0 auto;
}
.finalcta__sub {
  margin-top: 18px;
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.finalcta__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: #11241d; color: rgba(255,255,255,.74); padding: 72px 24px 0; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.wordmark--light { color: #fff; }
.wordmark--light .wordmark__mark { color: var(--sand); }
.wordmark--light .wordmark__co { color: rgba(255,255,255,.6); }
.footer__blurb { margin-top: 16px; font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); }

.footer__col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links li, .footer__hours li, .footer__areas li { margin-bottom: 11px; font-size: 14.5px; }
.footer__links a { transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--sand); }
.footer__hours li { display: flex; justify-content: space-between; gap: 12px; max-width: 230px; }
.footer__hours span:first-child { color: rgba(255,255,255,.6); }
.footer__emergency { margin-top: 14px; font-size: 13.5px; color: var(--sand); font-weight: 600; }
.footer__areas { columns: 2; }

.footer__bar {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* =================================================================
   STICKY MOBILE CALL BAR
   ================================================================= */
.callbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 251, 248, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(23,49,41,.1);
}
.callbar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
}
.callbar__btn--phone { background: var(--ink); color: #fff; }
.callbar__btn--quote { background: var(--sage); color: #fff; }

/* =================================================================
   SIGNATURE SET-PIECE  -  scroll-to-transform (bare yard -> lush garden)
   The track is tall; the stage is sticky and pins for the track's length.
   A single rAF loop writes --p (0..1) on [data-stage]; everything below is
   derived from --p (clip wipe, grow-in, label cross-fade, progress rail).
   Pure transform / opacity / clip-path. Reduced-motion shows the lush end.
   ================================================================= */
.transform {
  position: relative;
  background: var(--paper);
  /* sits above the fixed cinematic scene so the swap reads cleanly */
  z-index: 3;
}
.transform__track {
  /* scrub length = how far you scroll to complete the transformation.
     Sticky child pins inside this; remaining height is the timeline. */
  height: 320vh;
  padding: 0 24px;
}
.transform__stage {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  padding: calc(var(--nav-h) + 2vh) 0 4vh;
  max-width: var(--maxw);
  margin: 0 auto;
}

.transform__head { text-align: center; max-width: 38ch; }
.transform__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.transform__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.transform__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.12;
  padding-right: .04em;
}

/* the viewer  -  height is capped to the viewport so the whole scene
   (including the planting that grows in at the bottom) stays on-screen
   while pinned. width follows from the 16:10 aspect ratio. */
.reveal-stage {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 10;
  max-height: min(62vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  margin: 0;
  background: #e5e0cb;
}
.scene-svg { width: 100%; height: 100%; }

/* --- MECHANIC 1: the diagonal wipe ---
   Only the CLIP rect is skewed, never the drawn content (skewing the content
   would pull the after-scene off the right edge and expose the before scene).
   The skewed clip rect gives a diagonal leading edge; over-shooting x and
   width guarantees full coverage at every y once the wipe completes. */
.wipe-rect {
  transform: skewX(-7deg);
  transform-box: view-box;
  transform-origin: top left;
  width: calc(var(--p, 0) * 1980px);
}
/* leading-edge glint rides just ahead of the reveal */
.wipe-edge {
  transform: translateX(calc(-120px + var(--p, 0) * 1760px)) skewX(-7deg);
  transform-box: view-box;
  transform-origin: top left;
  opacity: calc(var(--p, 0) * (1 - var(--p, 0)) * 2.4);
  filter: blur(2px);
}

/* --- MECHANIC 2: grow-in planting ---
   Each .grow scales from its base (transform-origin set per element in markup).
   --o (1..10) staggers the start: a plant only grows once the wipe has passed
   it. gp = clamped, eased local progress for this plant. */
.grow {
  /* local progress: starts when global --p crosses this plant's threshold */
  --gp: clamp(0, calc((var(--p, 0) - (var(--o) * 0.06)) / 0.34), 1);
  transform: scale(var(--gp));
  /* origin is the plant's base, given per-element in markup (viewBox coords) */
  transform-box: view-box;
  opacity: var(--gp);
  will-change: transform, opacity;
}

/* state labels cross-fade with progress */
.scene-tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.scene-tag--before {
  left: 16px;
  background: rgba(23,49,41,.66);
  color: #fff;
  opacity: calc(1 - var(--p, 0) * 1.6);
}
.scene-tag--after {
  right: 16px;
  background: rgba(47,158,126,.92);
  color: #fff;
  opacity: calc((var(--p, 0) - 0.45) * 2.4);
}

/* progress rail */
.scene-rail {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.45);
  overflow: hidden;
}
.scene-rail__fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: var(--sage);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

.transform__cap {
  text-align: center;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* =================================================================
   SCROLL REVEALS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__quote { display: none; }
  .nav__toggle { display: flex; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .callback__inner { gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  /* shorter scrub track on tablets so the pin doesn't feel endless */
  .transform__track { height: 280vh; }
}

@media (max-width: 860px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
  .stat:nth-child(odd)::before { display: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps::before { display: none; }
  .callback__inner { grid-template-columns: 1fr; }
  .areas__inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .shot--wide { grid-column: span 2; }
  .shot--tall { grid-row: span 1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 10px; }
  .callbar { display: flex; }
  main { padding-bottom: 78px; }
  .hero { padding: calc(var(--nav-h) + 2vh) 20px 12vh; min-height: 94dvh; }
  .hero__title { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .services, .process, .gallery, .callback, .reviews, .areas, .finalcta { padding-left: 20px; padding-right: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { padding: 26px 24px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .shot--wide { grid-column: span 1; }
  .areas__list { grid-template-columns: 1fr; }
  .cb-form { padding: 26px 22px; }
  .section-head { margin-bottom: 38px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .finalcta__cta .btn, .hero__cta .btn { flex: 1; min-width: 140px; }
  .scene__sun { width: 150px; height: 150px; right: 8vw; top: 12vh; }

  /* set-piece on phones: taller viewer, shorter scrub, padded edges */
  .transform__track { height: 240vh; padding: 0 20px; }
  .transform__stage { padding-top: calc(var(--nav-h) + 1vh); gap: 16px; }
  .reveal-stage { aspect-ratio: 4 / 5; max-width: 460px; }
  .scene-svg { /* show more of the action on a portrait crop */ }
  .scene-tag { font-size: 11px; padding: 5px 11px; top: 12px; }
  .transform__cap { font-size: 14.5px; }
}

@media (max-width: 380px) {
  .trust-strip { gap: 10px 18px; }
  .trust-strip li { font-size: 13.5px; }
}

/* =================================================================
   REDUCED MOTION  - collapse the cinematic scene to a clean static
   composition; disable reveals, parallax, sways, drifts, pings.
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scene__sun, .grass-tuft, .motes span { animation: none !important; }
  .motes span { opacity: .5; }
  .scene__band, .scene__grass, .scene__sun { transform: none !important; }

  /* SET-PIECE FALLBACK: no pin, no scrub. Show the finished lush garden. */
  .transform__track { height: auto !important; }
  .transform__stage {
    position: static !important;
    min-height: 0 !important;
    padding: clamp(72px, 11vw, 130px) 0 !important;
  }
  /* force the transformation to its completed end-state */
  [data-stage] { --p: 1 !important; }
  .wipe-rect { width: 1980px !important; }
  .wipe-edge { opacity: 0 !important; }
  .grow { transform: none !important; opacity: 1 !important; }
  .scene-tag--before { opacity: 0 !important; }
  .scene-tag--after { opacity: 1 !important; }
  .scene-rail__fill { transform: scaleX(1) !important; }
}
