/* Joey's Landscaping and Design — dark "site ops" design system
   Mood: Bloomberg-terminal black with a single moss-green accent.
   Headings: Space Grotesque · Body: IBM Plex Sans · Stats: IBM Plex Mono · Nav: IBM Plex Sans
*/

:root {
  /* 60% — dominant background */
  --bg: #0a0a0b;
  --bg-raised: #0e0f11;

  /* 30% — surfaces (nav, cards, panels) */
  --panel: #151719;
  --panel-2: #1c1f22;
  --border: #2a2e32;
  --border-soft: #212427;

  /* 10% — single accent, used only for CTAs / links / highlights */
  --accent: #5c8c5a;
  --accent-dim: #3c6339;
  --accent-glow: rgba(92, 140, 90, 0.18);
  --accent-ink: #0a140a; /* text color when placed ON accent */

  /* type */
  --text: #f4f5f6;
  --text-body: #c7cbd0;
  --text-dim: #8b9199;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

  --font-head: "Space Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; }
img, video { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.brand .mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

nav.primary-nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

nav.primary-nav a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.15s;
}

nav.primary-nav a:hover,
nav.primary-nav a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(15%) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.75) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.65) 0%, rgba(10,10,11,0.15) 60%);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 160px 28px 120px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.hero h1 {
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 36px;
  max-width: 520px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #4dfb8d; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Hero trust bar */
.trust-bar {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; }
.trust-stat .num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.trust-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* Scroll-driven lawn story (homepage intro) ---------------------------------
   One WebGL surface renders the whole transformation. The house/sky are locked
   to the "before" plate in the shader and only the ground heals, so there is
   never a frame swap. Copy is anchored bottom-left over a scrim, which keeps
   it off the bright house siding and lets the yard read as the subject.      */
.scroll-story {
  position: relative;
  height: 400vh;
  background: var(--bg);
  /* Must override the global `section { padding: 120px 0 }` or the sticky
     panel is pushed 120px down and letterboxes against the page background. */
  padding: 0;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  color: var(--text);
}

.story-media { position: absolute; inset: 0; z-index: 1; background: var(--bg); }

#lawn-gl { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }

.story-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

/* Scrim is weighted to the bottom-left, under the copy. The upper right stays
   clear so the yard and house are fully readable. */
.story-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.62) 0%, rgba(10,10,11,0.05) 26%, rgba(10,10,11,0.10) 44%, rgba(10,10,11,0.86) 88%, var(--bg) 100%),
    linear-gradient(75deg, rgba(10,10,11,0.80) 0%, rgba(10,10,11,0.34) 42%, rgba(10,10,11,0.0) 72%);
}

.story-content { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

.story-stage {
  position: absolute;
  left: 0; right: 0;
  bottom: 112px;
  padding: 0 28px;
  max-width: 1160px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.story-stage .story-heading {
  font-family: var(--font-head);
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 15ch;
  text-shadow: 0 2px 26px rgba(0,0,0,0.55);
}

.story-stage .lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 28px;
  max-width: 46ch;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}

.story-stage[data-stage="3"] .trust-bar { margin-top: 34px; padding-top: 24px; }

.story-progress {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
}
.story-progress .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transition: background 0.2s, transform 0.2s;
}
.story-progress .dot.is-active {
  background: var(--accent); transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Live lawn-health readout - makes the scroll feel like it is doing the work */
.story-meter {
  position: absolute;
  right: 28px; bottom: 26px;
  z-index: 3;
  width: 208px;
  background: rgba(10, 10, 11, 0.62);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  backdrop-filter: blur(6px);
}
.story-meter-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-dim); margin-bottom: 9px;
}
.story-meter-val { color: var(--accent); font-size: 12px; letter-spacing: 0.04em; }
.story-meter-track { height: 3px; background: rgba(255,255,255,0.14); border-radius: 2px; overflow: hidden; }
.story-meter-fill {
  height: 100%; width: 8%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  border-radius: 2px;
}

.story-disclosure {
  position: absolute;
  left: 28px; bottom: 26px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  max-width: 300px;
  line-height: 1.5;
  opacity: 0.72;
}

.story-scrollcue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: opacity 0.3s;
}
.story-scrollcue i {
  width: 1px; height: 26px; display: block;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.story-scrollcue.is-hidden { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .scroll-story { height: auto; }
  .story-sticky { position: relative; height: 100vh; min-height: 560px; }
  #lawn-gl { display: none; }
  .story-fallback { opacity: 1 !important; }
  .story-stage:not([data-stage="3"]) { display: none; }
  .story-stage[data-stage="3"] { opacity: 1 !important; pointer-events: auto; transform: none !important; }
  .story-progress, .story-scrollcue { display: none; }
}

/* Sections */
section { padding: 120px 0; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: 36px; margin: 0 0 14px; }
.section-head p { color: var(--text-dim); margin: 0; font-size: 16px; }

/* Service cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: var(--border); transform: translateY(-2px); }

.card .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--panel-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}

.card h3 { margin: 0 0 10px; font-size: 19px; }
.card p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

.card.card-photo { padding: 0; overflow: hidden; }
.card.card-photo .photo-wrap { aspect-ratio: 4/3; overflow: hidden; background: #000; }
.card.card-photo .photo-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.05); }
.card.card-photo .card-photo-body { padding: 26px 26px 28px; }
.card.card-photo .card-photo-body h3 { margin: 0 0 10px; font-size: 18px; }
.card.card-photo .card-photo-body p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* Media showcase */
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase-strip .tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #000;
  aspect-ratio: 9/16;
}

.showcase-strip .tile video,
.showcase-strip .tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.05); }

/* Band / offer */
.band {
  background: var(--panel);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}

.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 56px;
  padding-bottom: 56px;
}

.band h2 { margin: 0 0 8px; font-size: 26px; }
.band p { margin: 0; color: var(--text-dim); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; }

/* Footer */
footer.site-footer {
  background: var(--bg);
  color: var(--text-dim);
  padding: 64px 0 32px;
  font-size: 14px;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 16px;
}

.footer-grid a { display: block; text-decoration: none; color: var(--text-dim); margin-bottom: 10px; transition: color 0.15s; }
.footer-grid a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  opacity: 0.6;
}

/* Page header (non-home pages) */
.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { margin: 12px 0 0; font-size: 40px; letter-spacing: -0.02em; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.info-list .label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--text-dim);
  min-width: 120px;
  padding-top: 2px;
}
.info-list li a, .info-list li span:not(.label) { color: var(--text); font-size: 15px; }

form.contact-form { display: flex; flex-direction: column; gap: 14px; }
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--panel);
  color: var(--text);
}
form.contact-form input::placeholder,
form.contact-form textarea::placeholder { color: var(--text-dim); }
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus { outline: none; border-color: var(--accent); }
form.contact-form textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.form-note code {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.form-note a { color: var(--accent); }

/* Placeholder note banner */
.placeholder-note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.placeholder-note code {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.placeholder-note a { color: var(--accent); }
.placeholder-note strong { color: var(--text); }

/* Our Work / gallery page */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  padding: 24px 28px 0;
  max-width: 1160px;
}
.cat-nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text-dim);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: var(--radius);
}
.cat-nav a:hover { border-color: var(--accent); color: var(--accent); }

.gallery-section { padding: 72px 0; scroll-margin-top: 90px; border-bottom: 1px solid var(--border-soft); }
.gallery-section:last-of-type { border-bottom: none; }
.gallery-head { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.gallery-head .eyebrow { justify-content: center; }
.gallery-head h2 { font-size: 28px; margin: 8px 0 12px; }
.gallery-head p { color: var(--text-dim); margin: 0; }
.gallery-count { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em; margin-top: 8px; display: inline-block; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.photo-grid a.photo-tile {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 3/4;
  background: #000;
}
.photo-grid a.photo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.3s, filter 0.3s;
}
.photo-grid a.photo-tile:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.1); }
/* Service cards as links (services.html -> service-detail.html) */
.card.card-photo.card-link { color: inherit; text-decoration: none; display: block; cursor: pointer; }
.card-photo-cta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.card.card-photo.card-link:hover .card-photo-cta { text-decoration: underline; }

/* Service detail page */
.back-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 18px;
}
.back-link:hover { color: var(--accent); }

/* Before/after reveal slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #000;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
  --ba-pos: 50%;
}
.ba-slider .ba-after,
.ba-slider .ba-before { position: absolute; inset: 0; }
.ba-slider .ba-before { clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.ba-slider .ba-after img,
.ba-slider .ba-before img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 0;
  pointer-events: none;
}
.ba-slider .ba-handle::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -1px; width: 2px;
  background: var(--accent); box-shadow: 0 0 12px var(--accent-glow);
}
.ba-slider .ba-handle::after {
  content: '\2194';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  box-shadow: var(--shadow);
}
.ba-slider .ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; opacity: 0;
  -webkit-appearance: none; appearance: none; background: transparent;
  /* The slider container itself owns pointer/touch dragging (see the JS
     pointerdown/pointermove handlers on .ba-slider) so this native range
     input is kept only as a keyboard-accessible control (Tab to focus,
     arrow keys to adjust) — it should never intercept mouse/touch input. */
  pointer-events: none;
}
.ba-slider .ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 100%; height: 100%; }
.ba-slider .ba-range::-moz-range-thumb { width: 100%; height: 100%; opacity: 0; border: none; }
.ba-slider .ba-label {
  position: absolute; top: 16px;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(10,10,11,0.62); color: #fff; padding: 6px 12px; border-radius: 4px;
  pointer-events: none;
}
.ba-slider .ba-label.before { left: 16px; }
.ba-slider .ba-label.after { right: 16px; }

.service-area-map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.service-area-map .leaflet-popup-content-wrapper {
  background: var(--panel-2);
  color: var(--text);
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.service-area-map .leaflet-popup-content { font-size: 13.5px; line-height: 1.5; margin: 10px 12px; }
.service-area-map .leaflet-popup-tip { background: var(--panel-2); }
.service-area-map .leaflet-control-attribution {
  background: rgba(10,10,11,0.72);
  color: var(--text-dim);
}
.service-area-map .leaflet-control-attribution a { color: var(--text-dim); }

@media (max-width: 860px) {
  nav.primary-nav { display: none; }
  .hero h1 { font-size: 38px; }
  section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .showcase-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { gap: 28px; }
  .scroll-story { height: 320vh; }
  .story-stage { bottom: 92px; padding: 0 20px; }
  .story-stage .story-heading { font-size: 32px; max-width: 100%; }
  .story-stage .lead { font-size: 15.5px; margin-bottom: 22px; }
  .story-stage[data-stage="3"] .trust-bar { margin-top: 24px; padding-top: 18px; gap: 24px; }
  .story-progress { display: none; }
  .story-disclosure { max-width: 55%; font-size: 9.5px; left: 20px; bottom: 18px; }
  .story-meter { width: 128px; right: 20px; bottom: 18px; padding: 8px 10px; }
  .story-meter-head { font-size: 9px; letter-spacing: 0.06em; margin-bottom: 7px; }
  /* Copy sits over the photo on narrow screens, so weight the scrim to the
     bottom across the full width rather than to one side. */
  .story-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.10) 30%, rgba(10,10,11,0.62) 62%, rgba(10,10,11,0.94) 92%, var(--bg) 100%);
  }
}
