@charset "utf-8";
/* ===========================================================================
   VP Designs Lawn & Landscape · Ithaca, NY
   ---------------------------------------------------------------------------
   One design system. Palette taken from the oval badge logo (deep forest
   greens + the leaf green measured off the mark). Native scroll only — no
   scroll library, no animation framework. Motion is CSS plus one
   IntersectionObserver reveal, and every autoplaying layer can be paused.
   Mobile first: every rule below is written for 390px, then widened.
   =========================================================================== */

/* ---------------------------------------------------------------- 1. fonts */
@font-face {
  font-family: 'Alegreya Sans';
  src: url('/fonts/alegreyasans-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('/fonts/mulish-var.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------- 2. tokens */
:root {
  /* the logo IS the colour system */
  --ink: #183030;          /* darkest green in the mark — rich backgrounds */
  --forest: #184830;       /* the badge ring and banner green — primary */
  --moss: #304830;         /* the muted olive — washes, rules, kickers */
  --leaf: #659648;         /* measured off the leaf sprig — the one accent */
  --leaf-lt: #8cc063;      /* the same green lifted for text on dark */
  --leaf-dk: #4d7a36;

  --ink-2: #12241f;        /* a half step under ink, for banded darks */
  --ink-3: #0d1a16;
  --paper: #f3f5f1;        /* cool, faintly green off-white */
  --paper-2: #e9ede6;
  --white: #ffffff;
  --btn-ink: #0d1710;      /* text that sits on the leaf accent */

  --text: #16211c;         /* body ink on light */
  --text-mute: #4c6154;
  --on-dark: #eef3ea;
  --on-dark-mute: #b3c6b2;

  --line: rgba(24, 72, 48, .17);
  --line-soft: rgba(24, 72, 48, .09);
  --line-dark: rgba(238, 243, 234, .17);
  --line-dark-soft: rgba(238, 243, 234, .09);

  --display: 'Alegreya Sans', 'Segoe UI', system-ui, sans-serif;
  --body: 'Mulish', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --gut: 20px;
  --max: 1180px;
  --hdr-h: 68px;
  --vw: 100vw;
  --edge: max(var(--gut), calc((var(--vw) - var(--max)) / 2));

  --r: 6px;                /* the only corner radius on the site */
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* context colours. Light is the default; every dark band re-points these in
     one place, so a component can never be dark-green-on-dark by accident. */
  --k-c: var(--moss);
  --hl-c: var(--leaf-dk);
  --lede-c: var(--text-mute);
  --cap-c: var(--text-mute);
  --cap-b: var(--forest);
  --rule: var(--line);
}
.t-ink, .t-ink2, .t-forest, .on-photo, .hero, .phero, .moment, .area, .cta, .ftr, .sheet, .nf {
  --k-c: var(--leaf-lt);
  --hl-c: var(--leaf-lt);
  --lede-c: var(--on-dark-mute);
  --cap-c: var(--on-dark-mute);
  --cap-b: var(--leaf-lt);
  --rule: var(--line-dark);
}
@media (min-width: 700px) { :root { --gut: 28px; } }
@media (min-width: 1100px) { :root { --gut: 40px; --hdr-h: 80px; } }

/* ---------------------------------------------------------------- 3. reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -.015em; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote, dl, dd { margin: 0; }          /* the UA figure margin ruins rails */
img, svg, video { display: block; max-width: 100%; }
img { height: auto; background: none; }             /* never box a transparent PNG */
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--leaf); color: var(--btn-ink); }

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip {
  position: fixed; top: -100px; left: 12px; z-index: 300;
  background: var(--leaf); color: var(--btn-ink);
  padding: 12px 18px; border-radius: var(--r);
  font-weight: 800; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ 4. structure */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }
.sec { padding-block: clamp(56px, 12vw, 108px); position: relative; }
.sec-tight { padding-block: clamp(40px, 8vw, 72px); }
.t-paper { background: var(--paper); }
.t-paper2 { background: var(--paper-2); }
.t-ink { background: var(--ink); color: var(--on-dark); }
.t-ink2 { background: var(--ink-2); color: var(--on-dark); }
.t-forest { background: var(--forest); color: var(--on-dark); }
.t-ink h1, .t-ink h2, .t-ink h3, .t-ink2 h2, .t-ink2 h3, .t-forest h2 { color: var(--white); }

/* the leading rule + kicker that opens nearly every section */
.k {
  display: block;
  font-family: var(--body);
  font-size: 12px; font-weight: 800;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--k-c);
  margin: 0 0 14px;
}
.k::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 26px; height: 2px; margin-right: 10px; margin-bottom: 3px;
  background: var(--leaf);
}

.h1 { font-size: clamp(2.6rem, 11.6vw, 5.5rem); letter-spacing: -.028em; }
.h2 { font-size: clamp(2rem, 7.6vw, 3.4rem); letter-spacing: -.024em; }
.h3 { font-size: clamp(1.35rem, 4.4vw, 1.85rem); letter-spacing: -.016em; }
.h4 { font-size: 1.12rem; letter-spacing: -.01em; }
.hl { color: var(--hl-c); }
.lede { font-size: 1.06rem; line-height: 1.55; color: var(--lede-c); max-width: 54ch; }
.sec-head { max-width: 40ch; margin-bottom: clamp(28px, 5vw, 46px); }

/* the slash run — dense service names without a grid of chips */
.slash { display: flex; flex-wrap: wrap; gap: 0 4px; font-size: .95rem; color: var(--lede-c); }
.slash span + span::before { content: '//'; color: var(--leaf); margin-right: 6px; font-weight: 800; }

/* --------------------------------------------------------------- 5. buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 13px 22px;
  border: 2px solid transparent; border-radius: var(--r);
  font-family: var(--body); font-size: 1rem; font-weight: 800;
  letter-spacing: .005em; text-decoration: none; cursor: pointer;
  transition: transform .16s var(--ease), background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--leaf); color: var(--btn-ink); border-color: var(--leaf); }
.btn-primary:hover { background: var(--leaf-lt); border-color: var(--leaf-lt); transform: translateY(-2px); }
/* a tinted fill, not just an outline: an outline button over a photograph is
   white-on-whatever, and snow or bright turf wins */
.btn-ghost { background: rgba(9, 18, 15, .42); color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-2px); }
.t-paper .btn-ghost, .t-paper2 .btn-ghost { color: var(--forest); border-color: var(--line); }
.t-paper .btn-ghost:hover, .t-paper2 .btn-ghost:hover { background: rgba(24, 72, 48, .07); border-color: var(--forest); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row .btn { flex: 1 1 auto; min-width: 190px; }
@media (min-width: 560px) { .btn-row .btn { flex: 0 0 auto; } }

/* the text link with a rule that grows */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .96rem; text-decoration: none;
  color: var(--forest); padding-block: 6px;
}
.tlink svg { width: 17px; height: 17px; transition: transform .18s var(--ease); }
.tlink:hover svg { transform: translateX(5px); }
.tlink u { text-decoration: none; box-shadow: inset 0 -2px 0 var(--leaf); }
.t-ink .tlink, .t-ink2 .tlink, .on-photo .tlink { color: var(--leaf-lt); }

/* --------------------------------------------------------------- 6. header */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 90;
  height: calc(var(--hdr-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  background: transparent;
  transition: transform .3s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
/* The nav sits over whatever the hero photograph happens to show, and bright
   foliage or snow under it drops white type to ~1.1:1. The scrim stays heavy
   across the whole header row, then fades below it. */
.hdr::before {
  content: ''; position: absolute; inset: 0 0 -42px; z-index: -1;
  background: linear-gradient(180deg, rgba(9, 18, 15, .92) 0%, rgba(9, 18, 15, .88) 52%, rgba(9, 18, 15, .38) 82%, rgba(9, 18, 15, 0) 100%);
  transition: opacity .25s var(--ease);
}
.hdr.solid { background: var(--ink); box-shadow: 0 1px 0 var(--line-dark-soft); }
.hdr.solid::before { opacity: 0; }
.hdr.up { transform: translateY(-115%); }
.hdr-in { display: flex; align-items: center; gap: 14px; width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 46px; width: auto; }
@media (min-width: 1100px) { .brand img { height: 54px; } }

.nav { display: none; }
@media (min-width: 1100px) {
  .nav { display: block; }
  .nav ul { display: flex; align-items: center; gap: 4px; }
  .nav a {
    display: block; padding: 9px 12px; border-radius: var(--r);
    color: var(--on-dark); text-decoration: none;
    font-size: .93rem; font-weight: 700; letter-spacing: .005em;
    transition: background-color .16s var(--ease), color .16s var(--ease);
  }
  .nav a:hover, .nav a[aria-current] { background: rgba(255, 255, 255, .12); color: #fff; }
}
.hdr-call {
  display: none; align-items: center; gap: 8px;
  padding: 11px 17px; border-radius: var(--r);
  background: var(--leaf); color: var(--btn-ink);
  font-weight: 800; font-size: .95rem; text-decoration: none;
  transition: background-color .16s var(--ease);
}
.hdr-call:hover { background: var(--leaf-lt); }
.hdr-call svg { width: 17px; height: 17px; }
@media (min-width: 700px) { .hdr-call { display: inline-flex; } }

.burger {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); border: 1px solid var(--line-dark);
  border-radius: var(--r); cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--on-dark); border-radius: 2px;
}
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
@media (min-width: 1100px) { .burger { display: none; } }

/* menu sheet */
.sheet {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink);
  padding: calc(18px + env(safe-area-inset-top)) var(--gut) calc(26px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateY(-101%);
  transition: transform .34s var(--ease);
}
.sheet.open { transform: none; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.sheet-top img { height: 48px; width: auto; }
.sheet-x {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); border: 1px solid var(--line-dark);
  border-radius: var(--r); color: var(--on-dark); cursor: pointer;
}
.sheet-x svg { width: 20px; height: 20px; }
.sheet nav { display: flex; flex-direction: column; }
.sheet nav a {
  padding: 15px 0; border-bottom: 1px solid var(--line-dark-soft);
  color: var(--white); text-decoration: none;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.018em;
}
.sheet nav a small {
  display: block; font-family: var(--body); font-weight: 600; font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--leaf-lt); margin-top: 3px;
}
.sheet-cta { display: grid; gap: 10px; margin-top: 26px; }

/* ----------------------------------------------------------------- 7. hero */
.hero {
  position: relative;
  min-height: max(640px, 100svh);
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 46px) var(--gut) 64px;
  background: var(--ink-3);
  overflow: hidden;
  text-align: center;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: 50% 52%; }
.hero-media video, .hero-media img, .hero-media picture { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 18, 15, .70) 0%, rgba(9, 18, 15, .44) 34%, rgba(9, 18, 15, .62) 72%, rgba(9, 18, 15, .88) 100%),
    radial-gradient(120% 78% at 50% 44%, rgba(9, 18, 15, .10) 0%, rgba(9, 18, 15, .66) 100%);
}
.hero-in { position: relative; z-index: 1; width: 100%; max-width: 860px; }
.hero-logo { margin: 0 auto 20px; height: 112px; width: auto; }
@media (min-width: 900px) { .hero-logo { height: 126px; } }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 18px; padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .42); border-radius: 999px;
  background: rgba(9, 18, 15, .34);
  font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: #fff;
}
.pill svg { width: 15px; height: 15px; color: var(--leaf-lt); }
.hero .h1 { color: #fff; text-shadow: 0 2px 26px rgba(9, 18, 15, .5); }
.hero .h1 .ln { display: block; }
.hero .lede { margin: 18px auto 0; color: rgba(255, 255, 255, .9); font-size: 1.08rem; max-width: 40ch; }
.hero .btn-row { justify-content: center; margin-top: 28px; }
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0;
  margin-top: 30px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255, 255, 255, .84);
}
.trust li { padding: 0 14px; position: relative; }
.trust li + li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--leaf-lt);
}
/* below 620px the row wraps, and a separator dot at the start of a line reads
   as a stray bullet — stack the claims instead */
@media (max-width: 619px) {
  .trust { flex-direction: column; gap: 9px; }
  .trust li { padding: 0; }
  .trust li + li::before { display: none; }
}

/* inner-page hero */
.phero {
  position: relative; overflow: hidden;
  min-height: max(560px, 68svh); display: flex; align-items: flex-end;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 56px) var(--gut) 52px;
  background: var(--ink-3); color: var(--on-dark);
  /* the kicker is 12px: over a photograph the mid leaf green cannot hold 4.5:1
     against a bright frame, so the photo heroes take the pale leaf instead */
  --k-c: #cfe6b6;
}
.phero-media { position: absolute; inset: 0; z-index: 0; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; }
/* heavy enough at the copy end that a snow or bright-grass frame still carries
   white type — measured, not guessed. Two layers: the first shapes the whole
   frame, the second is anchored in PIXELS off the bottom because the copy block
   is bottom-aligned, so it lands on the crumb/kicker/headline at every hero
   height instead of drifting with a percentage. */
.phero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 18, 15, .88) 0px, rgba(9, 18, 15, .76) 300px, rgba(9, 18, 15, 0) 470px),
    linear-gradient(180deg, rgba(9, 18, 15, .60) 0%, rgba(9, 18, 15, .14) 34%, rgba(9, 18, 15, .22) 100%);
}
/* on a phone the hero is short, so a 300px anchored scrim covers the whole
   frame and the photograph disappears — pull the anchors in and lighten */
@media (max-width: 899px) {
  .phero { min-height: max(600px, 74svh); }
  .phero-media::after {
    background:
      linear-gradient(0deg, rgba(9, 18, 15, .88) 0px, rgba(9, 18, 15, .72) 250px, rgba(9, 18, 15, 0) 400px),
      linear-gradient(180deg, rgba(9, 18, 15, .54) 0%, rgba(9, 18, 15, .10) 36%, rgba(9, 18, 15, .12) 100%);
  }
}
/* A 12px kicker over a photograph cannot be carried by an accent green, however
   dark the scrim: on the snow and bright-turf frames it measured under 2:1. */
.phero { --k-c: rgba(255, 255, 255, .94); }
.phero-in { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto; }
.phero .h1 { font-size: clamp(2.2rem, 9.2vw, 4.2rem); color: #fff; max-width: 17ch; }
.phero .lede { color: rgba(255, 255, 255, .9); margin-top: 16px; }
.phero .btn-row { margin-top: 26px; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8rem; font-weight: 700; color: rgba(255, 255, 255, .92); margin-bottom: 14px; }
.crumb a { text-decoration: none; display: inline-block; padding-block: 5px; margin-block: -5px; }
.crumb a:hover { color: var(--leaf-lt); }
.crumb li + li::before { content: '/'; margin-right: 8px; color: var(--leaf-lt); }
.crumb li { display: flex; }

/* ken burns — the only movement on a still photograph */
.kb img, .kb .kb-l { animation: kb 30s ease-in-out infinite alternate; transform-origin: 50% 54%; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.14) translate3d(-1.2%, -1%, 0); } }
html.motion-off .kb img, html.motion-off .kb .kb-l { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .kb img, .kb .kb-l { animation: none; } }

/* pause control — present at every autoplaying band, phones included */
.motion-btn {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 38px; padding: 8px 13px;
  background: rgba(9, 18, 15, .62); border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px; color: #fff; cursor: pointer;
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(3px);
}
.motion-btn:hover { background: rgba(9, 18, 15, .84); }
.motion-btn svg { width: 13px; height: 13px; }
.motion-btn .i-play { display: none; }
html.motion-off .motion-btn .i-play { display: block; }
html.motion-off .motion-btn .i-pause { display: none; }

/* --------------------------------------------------------------- 8. ticker */
.ticker { background: var(--forest); color: #fff; overflow: hidden; padding: 0; position: relative; }
.ticker-row { display: flex; width: max-content; animation: tick 46s linear infinite; }
html.motion-off .ticker-row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker-row { animation: none; } }
@keyframes tick { from { transform: none; } to { transform: translateX(-50%); } }
.ticker ul { display: flex; align-items: center; }
.ticker li {
  display: flex; align-items: center; gap: 18px;
  padding: 15px 0; white-space: nowrap;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .01em; text-transform: uppercase;
}
.ticker li::after {
  content: ''; width: 7px; height: 7px; margin: 0 18px;
  background: var(--leaf-lt); transform: rotate(45deg); border-radius: 1px;
}

/* ----------------------------------------------------------- 9. photo frames
   No radius, no shadow, no inset border. Photographs sit flat on the page.  */
.ph { display: block; position: relative; overflow: hidden; background: var(--ink-2); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-4x5 { aspect-ratio: 4 / 5; }
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-1x1 { aspect-ratio: 1 / 1; }
.cap {
  display: block; margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: .78rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase;
  color: var(--text-mute);
}
.cap b { display: block; font-weight: 800; letter-spacing: .04em; color: var(--forest); text-transform: none; font-size: .92rem; }
.t-ink .cap, .t-ink2 .cap { border-color: var(--line-dark); color: var(--on-dark-mute); }
.t-ink .cap b, .t-ink2 .cap b { color: var(--leaf-lt); }

/* the photo runs off the page edge on its own side */
.bleed-r { margin-right: calc(var(--edge) * -1); }
.bleed-l { margin-left: calc(var(--edge) * -1); }
@media (max-width: 899px) {
  .bleed-r, .bleed-l { margin-inline: calc(var(--gut) * -1); }
}

/* ------------------------------------------------------------- 10. intro */
.split { display: grid; gap: clamp(30px, 6vw, 56px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1.06fr; } .split.rev > :first-child { order: 2; } }
.split-copy .lede { margin-bottom: 20px; }
.facts { display: grid; gap: 0; margin-top: 26px; border-top: 1px solid var(--line); }
.facts li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts b { font-family: var(--display); font-size: 1.02rem; color: var(--forest); }
.facts span { font-size: .95rem; color: var(--text-mute); }
.t-ink .facts, .t-ink .facts li, .t-ink2 .facts, .t-ink2 .facts li { border-color: var(--line-dark); }
.t-ink .facts b, .t-ink2 .facts b { color: var(--leaf-lt); }
.t-ink .facts span, .t-ink2 .facts span { color: var(--on-dark-mute); }

/* ---------------------------------------------------------- 11. service rows
   Numbered editorial rows, alternating side. Not a grid of identical cards. */
.rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.row { display: grid; gap: 20px; padding-block: clamp(30px, 6vw, 52px); border-bottom: 1px solid var(--line); align-items: center; }
@media (min-width: 900px) {
  .row { grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); }
  .row:nth-child(even) .row-media { order: -1; }
}
.row-media { position: relative; }
.row-no {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 3.6rem); line-height: .82;
  color: transparent; -webkit-text-stroke: 1.6px rgba(24, 72, 48, .42);
  margin-bottom: 10px;
}
.t-ink .row-no, .t-ink2 .row-no { -webkit-text-stroke-color: rgba(140, 192, 99, .5); }
.row h3 { margin-bottom: 10px; }
/* the row title is also a link: give it a 29px tap box without moving the type */
.row h3 a { display: inline-block; padding-block: 4px; margin-block: -4px; }
.row p { font-size: 1rem; color: var(--text-mute); margin-bottom: 14px; }
.row .slash { margin-bottom: 16px; font-size: .88rem; }

/* ------------------------------------------------- 12. the hillside section */
.hill { position: relative; overflow: hidden; }
.hill-grid { display: grid; gap: clamp(28px, 5vw, 48px); }
@media (min-width: 1000px) { .hill-grid { grid-template-columns: 1.05fr 1fr; align-items: center; } }
.xsec { position: relative; }
.xsec > svg { display: block; width: 100%; height: auto; }
.xsec-legend { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--line-dark); }
.xsec-legend li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); align-items: baseline; }
.xsec-legend b { font-family: var(--display); font-size: 1rem; color: var(--leaf-lt); }
.xsec-legend span { font-size: .93rem; color: var(--on-dark-mute); }
.xs-draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 2.6s var(--ease) forwards; }
html.io .xsec:not(.in) .xs-draw { animation-play-state: paused; }
@keyframes draw { to { stroke-dashoffset: 0; } }
html.motion-off .xs-draw { animation: none; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .xs-draw { animation: none; stroke-dashoffset: 0; } }

/* ------------------------------------------------------- 13. photo moment */
.moment { position: relative; width: 100%; min-height: 62svh; overflow: hidden; display: flex; align-items: flex-end; background: var(--ink-3); }
.moment .kb-l { position: absolute; inset: 0; }
.moment img { width: 100%; height: 100%; object-fit: cover; }
/* the copy sits in the bottom third, and lamp flare in the photograph lands
   right behind the accent word — the ramp starts early and finishes heavy */
.moment::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 15, .34) 0%, rgba(9, 18, 15, .18) 32%, rgba(9, 18, 15, .78) 70%, rgba(9, 18, 15, .94) 100%);
}
.moment-in { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) clamp(34px, 6vw, 62px); }
.moment .h2 { color: #fff; max-width: 15ch; text-shadow: 0 2px 22px rgba(9, 18, 15, .55); }
.moment p { margin-top: 12px; color: rgba(255, 255, 255, .88); font-size: 1rem; max-width: 42ch; }

/* ---------------------------------------------------------- 14. the gallery */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
@media (min-width: 760px) { .gal { grid-template-columns: repeat(4, 1fr); } }
.gal figure { position: relative; }
.gal .ph { aspect-ratio: 4 / 5; }
.gal figure.tall { grid-row: span 1; }
@media (min-width: 760px) {
  .gal figure.wide { grid-column: span 2; }
  .gal figure.wide .ph { aspect-ratio: 8 / 5; }
}
.gal figcaption {
  padding: 9px 2px 0;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-mute);
}
.gal-note { margin-top: 22px; font-size: .86rem; color: var(--text-mute); }

/* ---------------------------------------------------------- 15. reviews */
.revs { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(268px, 84vw); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
@media (min-width: 760px) { .revs { grid-auto-columns: minmax(330px, 38vw); } }
@media (min-width: 1100px) { .revs { grid-auto-columns: minmax(340px, 30%); } }
.rev { scroll-snap-align: start; display: flex; flex-direction: column; padding: 26px 24px; background: rgba(255, 255, 255, .055); border: 1px solid var(--line-dark); border-radius: var(--r); }
.rev-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev-stars svg { width: 15px; height: 15px; color: #f0b429; }
.rev blockquote { font-size: 1rem; line-height: 1.58; color: var(--on-dark); margin-bottom: 18px; flex: 1; }
.rev figcaption { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--on-dark-mute); }
.rev figcaption b { font-family: var(--display); font-size: 1.02rem; color: #fff; font-weight: 800; }
.rev-src { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
.rev-src svg { width: 14px; height: 14px; }
.rail-hint { margin-top: 6px; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; color: var(--on-dark-mute); }

/* ---------------------------------------------------------- 16. the seasons */
.seasons { display: grid; gap: 3px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .seasons { grid-template-columns: repeat(4, 1fr); } }
.season { position: relative; display: flex; flex-direction: column; }
.season .ph { aspect-ratio: 1 / 1; }
.season-body { padding: 16px 14px 20px; background: var(--ink-2); flex: 1; border-bottom: 3px solid transparent; }
.season.now .season-body { border-bottom-color: var(--leaf); background: var(--forest); }
.season h3 { font-size: 1.22rem; color: #fff; }
.season .now-tag { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: var(--leaf); color: var(--btn-ink); font-family: var(--body); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.season .now-tag[hidden] { display: none; }   /* a display rule beats the hidden attribute */
.season ul { margin-top: 10px; }
.season li { font-size: .88rem; color: var(--on-dark-mute); padding: 4px 0 4px 14px; position: relative; }
.season li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 1px; background: var(--leaf-lt); }

/* ------------------------------------------------------ 17. the service area */
.area { position: relative; overflow: hidden; background: var(--ink-3); color: var(--on-dark); }
.area-media { position: absolute; inset: 0; z-index: 0; }
.area-media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.area-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 26, 22, .82), rgba(13, 26, 22, .94)); }
.area > .wrap { position: relative; z-index: 1; }
.towns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; margin-top: 8px; }
@media (min-width: 700px) { .towns { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .towns { grid-template-columns: repeat(4, 1fr); } }
.towns li { padding: 11px 0; border-bottom: 1px solid var(--line-dark-soft); font-size: .96rem; color: var(--on-dark); }
.towns li.home { font-weight: 800; color: var(--leaf-lt); }
.towns li.home::after { content: 'Home base'; margin-left: 8px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-mute); font-weight: 700; }

/* ------------------------------------------------------------ 18. the FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.012em; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 15px; height: 15px; margin-top: 5px;
  border-right: 2px solid var(--leaf); border-bottom: 2px solid var(--leaf);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .ans { padding: 0 0 22px; max-width: 62ch; color: var(--text-mute); font-size: .99rem; }
.t-ink .faq, .t-ink .faq details { border-color: var(--line-dark); }
.t-ink .faq summary { color: #fff; }
.t-ink .faq .ans { color: var(--on-dark-mute); }

/* -------------------------------------------------------- 19. the CTA band */
.cta { position: relative; overflow: hidden; background: var(--ink); color: #fff; text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: saturate(.7); }
.cta-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24, 48, 48, .86), rgba(13, 26, 22, .95)); }
.cta > .wrap { position: relative; z-index: 1; }
.cta img.mark { height: 92px; width: auto; margin: 0 auto 22px; }
.cta .h2 { max-width: 18ch; margin-inline: auto; }
.cta .lede { margin: 16px auto 0; color: rgba(255, 255, 255, .86); }
.cta .btn-row { justify-content: center; margin-top: 28px; }

/* ------------------------------------------------------------- 20. the form */
.form-grid { display: grid; gap: clamp(30px, 5vw, 52px); }
@media (min-width: 980px) { .form-grid { grid-template-columns: 1.15fr .85fr; } }
form[data-lead] { display: grid; gap: 16px; }
.two { display: grid; gap: 16px; }
@media (min-width: 560px) { .two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: .84rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); }
.field label i { color: var(--leaf-dk); font-style: normal; }
.field input, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px;
  background: var(--white); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--body); font-size: 1rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #93a598; }
.field input:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(101, 150, 72, .22); outline: none; }
.field input[aria-invalid="true"] { border-color: #b3261e; }
.fs { border: 0; padding: 0; margin: 0; }
.fs legend { padding: 0 0 10px; font-size: .84rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: block; padding: 11px 15px; min-height: 44px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); font-size: .92rem; font-weight: 700; color: var(--text-mute);
  transition: all .16s var(--ease);
}
.chip input:checked + span { background: var(--forest); border-color: var(--forest); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--leaf); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg:empty { display: none; }
.form-msg { padding: 14px 16px; border-radius: var(--r); background: var(--paper-2); font-size: .95rem; border: 1px solid var(--line); }
.form-msg.ok { background: rgba(101, 150, 72, .14); border-color: var(--leaf); }
.form-msg.err { background: rgba(179, 38, 30, .09); border-color: rgba(179, 38, 30, .4); color: #8c1d18; }
.form-msg a, .form-msg .copy {
  display: inline-block; margin: 8px 8px 0 0; padding: 10px 15px;
  background: var(--forest); color: #fff; border: 0; border-radius: var(--r);
  font-weight: 800; font-size: .92rem; text-decoration: none; cursor: pointer;
}
.form-note { font-size: .86rem; color: var(--text-mute); }
.contact-card { display: grid; gap: 0; align-content: start; border-top: 1px solid var(--line); }
.contact-card > div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-card dt { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 5px; }
.contact-card dd { font-family: var(--display); font-size: 1.2rem; font-weight: 800; color: var(--forest); }
.contact-card dd a { display: inline-block; padding: 7px 0; min-height: 44px; text-decoration: none; }
.contact-card dd a:hover { box-shadow: inset 0 -2px 0 var(--leaf); }
.contact-card dd.sm { font-family: var(--body); font-size: .98rem; font-weight: 600; color: var(--text-mute); letter-spacing: 0; }

/* ----------------------------------------------------------- 21. the footer */
.ftr { background: var(--ink-3); color: var(--on-dark-mute); padding: clamp(46px, 8vw, 78px) 0 calc(28px + env(safe-area-inset-bottom)); font-size: .94rem; }
.ftr-top { display: grid; gap: 36px; }
@media (min-width: 900px) { .ftr-top { grid-template-columns: 1.1fr 1.5fr; gap: 56px; } }
.ftr-brand img { height: 84px; width: auto; margin-bottom: 16px; }
.ftr-brand p { max-width: 36ch; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: var(--r); color: var(--on-dark); transition: all .16s var(--ease); }
.social a:hover { background: var(--leaf); color: var(--btn-ink); border-color: var(--leaf); }
.social svg { width: 19px; height: 19px; }
.ftr-cols { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .ftr-cols { grid-template-columns: repeat(3, 1fr); } }
.ftr-cols h2 { font-family: var(--body); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-lt); margin-bottom: 14px; }
.ftr-cols li a, .ftr-cols li span { display: block; padding: 10px 0; min-height: 42px; }
.ftr-cols a { text-decoration: none; }
.ftr-cols a:hover { color: #fff; box-shadow: inset 0 -1px 0 var(--leaf); }
.ftr-base { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line-dark-soft); display: grid; gap: 8px; font-size: .84rem; }
@media (min-width: 900px) { .ftr-base { grid-template-columns: 1fr auto; align-items: center; } }

/* --------------------------------------------------------- 22. the call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; gap: 10px;
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(13, 26, 22, .95);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform .28s var(--ease);
  backdrop-filter: blur(6px);
}
.callbar.show { transform: none; }
.callbar .btn { flex: 1; min-height: 50px; min-width: 0; padding-inline: 12px; font-size: .95rem; }
@media (min-width: 900px) { .callbar { display: none; } }
body.has-callbar .ftr { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { body.has-callbar .ftr { padding-bottom: calc(28px + env(safe-area-inset-bottom)); } }

/* ----------------------------------------------------------- 23. the reveal */
html.io .rv { opacity: 0; transform: translateY(18px); }
html.io .rv.in { opacity: 1; transform: none; transition: opacity .62s var(--ease), transform .62s var(--ease); }
@media (prefers-reduced-motion: reduce) { html.io .rv { opacity: 1; transform: none; } }

/* ------------------------------------------------------------- 24. oddments */
.note { display: flex; gap: 12px; padding: 18px 20px; border-left: 3px solid var(--leaf); background: rgba(101, 150, 72, .09); border-radius: 0 var(--r) var(--r) 0; font-size: .96rem; }
.t-ink .note, .t-ink2 .note { background: rgba(101, 150, 72, .14); color: var(--on-dark); }
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); counter-reset: s; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.steps li::before {
  counter-increment: s; content: '0' counter(s);
  font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--leaf-dk); line-height: 1.1;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 5px; }
.steps p { font-size: .95rem; color: var(--text-mute); margin: 0; }
.t-ink .steps, .t-ink .steps li { border-color: var(--line-dark); }
.t-ink .steps li::before { color: var(--leaf-lt); }
.t-ink .steps p { color: var(--on-dark-mute); }
.checks { display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 760px) { .checks { grid-template-columns: 1fr 1fr; column-gap: 34px; } }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .98rem; align-items: start; }
.checks li svg { width: 18px; height: 18px; margin-top: 3px; color: var(--leaf-dk); }
.t-ink .checks, .t-ink .checks li { border-color: var(--line-dark); }
.t-ink .checks li svg { color: var(--leaf-lt); }
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.strip .ph { aspect-ratio: 1 / 1; }
@media (min-width: 760px) { .strip .ph { aspect-ratio: 4 / 5; } }
.pair { display: grid; gap: 3px; grid-template-columns: 1fr 1fr; }
.nf { min-height: 60svh; display: grid; place-items: center; text-align: center; background: var(--ink); color: var(--on-dark); padding: 120px var(--gut) 80px; }
