/* ============================================================
   HOLIDAY HOUSE — design system
   Night/Day rhythm: midnight photo sections alternate with cream
   editorial sections. One accent: --glow (C9 warm gold).
   ============================================================ */

:root {
  --midnight: #0B1F2A;
  --night-2: #102935;
  --pine: #143642;
  --cream: #F7F2E4;
  --cream-2: #EFE7D2;
  --ink: #132229;
  --ink-muted: #4E5D63;        /* AA on cream */
  --paper-line: #DCD2B8;
  --on-dark: #F3EDDC;
  --on-dark-muted: #A9B6BA;    /* AA on midnight */
  --glow: #F2C879;             /* fills, borders, large type on dark */
  --glow-text-dark: #F2C879;   /* on midnight: 4.5+ */
  --glow-text-light: #8A5E14;  /* accent TEXT on cream: AA */
  --night-line: rgba(243, 237, 220, 0.16);
  --radius: 16px;
  --nav-h: 78px;
  --space-section: clamp(5rem, 12vw, 10rem);
  --wrap: 1240px;
  --wrap-narrow: 820px;
  --wrap-wide: 1400px;
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  /* fluid modular steps (Buzz grammar) */
  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.45rem, 1.28rem + 0.85vw, 2rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.5vw, 2.7rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.6vw, 4.25rem);
  --step-5: clamp(3rem, 2.1rem + 4.5vw, 6rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 0.5em; font-family: var(--font-display); font-optical-sizing: auto; font-weight: 600; line-height: 1.02; letter-spacing: -0.022em; text-wrap: balance; }
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--glow); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--glow); color: var(--ink); padding: 0.6rem 1rem; font-weight: 600; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- type scale ---------- */
.h-display { font-size: var(--step-5); line-height: 0.98; letter-spacing: -0.03em; }
.h-section { font-size: var(--step-4); line-height: 1.0; letter-spacing: -0.028em; }
/* Jordan's verbatim "Bringing the light to your home by Holiday House" is a long heading; balance
   the wrap so narrow widths don't strand an orphan "by" on its own line. */
.h-display, .h-section { text-wrap: balance; }
@media (max-width: 560px) {
  .page-head .h-display { font-size: clamp(2.1rem, 9.2vw, 2.9rem); }
}
.h-card    { font-size: var(--step-2); }
.lede { font-size: var(--step-1); line-height: 1.5; }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
h2 em, h1 em { font-style: italic; font-weight: 480; letter-spacing: -0.02em; }
.kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  display: flex; align-items: center; gap: 0.7em; margin-bottom: 1.3rem;
}
.kicker::before { content: ""; width: 2em; height: 1px; background: var(--glow); flex: none; }
.mono-tag {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.on-night .kicker, .night .kicker, .night-2 .kicker { color: var(--on-dark-muted); }
/* gold reserved for: CTAs, countdown numeral, deadline borders, hero arch, string bulbs */

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.wrap-wide { max-width: var(--wrap-wide); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }
.section { padding-block: var(--space-section); }
.night { background: var(--midnight); color: var(--on-dark); }
.night-2 { background: var(--night-2); color: var(--on-dark); }
.night .muted, .night-2 .muted { color: var(--on-dark-muted); }
.muted { color: var(--ink-muted); }

/* ---------- reveals: VISIBLE BY DEFAULT ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal[data-delay="1"].is-in { transition-delay: 0.08s; }
html.js .reveal[data-delay="2"].is-in { transition-delay: 0.16s; }
html.js .reveal[data-delay="3"].is-in { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav::before { /* top scrim so transparent nav reads over photos */
  content: ""; position: absolute; inset: 0 0 -46px 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(7,18,24,0.72), rgba(7,18,24,0));
  transition: opacity 0.35s ease;
}
.nav.is-solid { background: rgba(11, 31, 42, 0.96); box-shadow: 0 1px 0 var(--night-line); }
.nav.is-solid::before { opacity: 0; }
.nav-inner { position: relative; display: flex; align-items: center; gap: 1.5rem; width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }
/* asset is alpha-trimmed, so this height is very nearly all visible mark */
.nav-logo img { height: 62px; width: auto; display: block; }
@media (max-width: 900px) { .nav-logo img { height: 50px; } }
.nav-links { display: flex; gap: clamp(0.9rem, 2vw, 1.8rem); margin-left: auto; align-items: center; list-style: none; padding: 0; }
.nav-links a { color: var(--on-dark); text-decoration: none; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.is-active { border-bottom-color: var(--glow); }
.nav-tel { white-space: nowrap; }
.btn-nav { background: var(--glow); color: var(--ink) !important; padding: 0.62rem 1.15rem !important; border-radius: 999px; border-bottom: none !important; font-weight: 700 !important; }
.btn-nav:hover { filter: brightness(1.06); }
.nav-burger { display: none; margin-left: auto; background: none; border: 0; padding: 0.5rem; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--on-dark); margin: 6px 0; transition: transform 0.25s ease, opacity 0.25s ease; }

/* mobile menu sheet */
.menu-sheet {
  position: fixed; inset: 0; z-index: 90; background: rgba(11,31,42,0.985);
  display: none; flex-direction: column; justify-content: center; padding: 2rem;
}
.menu-sheet.is-open { display: flex; }
.menu-sheet a { color: var(--on-dark); text-decoration: none; font-family: var(--font-display); font-size: 2rem; padding: 0.55rem 0; border-bottom: 1px solid var(--night-line); }
.menu-sheet a:last-child { border-bottom: 0; }
.menu-sheet .sheet-tel { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--glow); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--on-dark); background: var(--midnight);
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(7,16,22,0.86) 0%, rgba(7,16,22,0.26) 44%, rgba(7,16,22,0.06) 72%, rgba(7,16,22,0.38) 100%); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 2.2rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(243,237,220,0.22); }
.hero-trust span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.hero-trust b { color: var(--on-dark); font-weight: 500; }
.hero-chip { position: absolute; right: clamp(1rem, 5vw, 4.5rem); bottom: clamp(6rem, 16vh, 9.5rem); z-index: 2;
  background: rgba(11,31,42,0.82); border: 1px solid rgba(243,237,220,0.18); border-radius: 14px;
  padding: 0.9rem 1.15rem; backdrop-filter: blur(6px); }
.hero-chip .chip-k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glow); display: block; margin-bottom: 0.3rem; }
.hero-chip .chip-v { font-family: var(--font-display); font-size: 1.12rem; font-weight: 560; color: var(--on-dark); }
@media (max-width: 900px) { .hero-chip { display: none; } }
.hero-content { position: relative; z-index: 2; width: 100%; }
/* own curve, not --step-5: the headline is 41 chars and must set on 2 lines at every width,
   so the size tracks the available measure instead of bottoming out at step-5's 3rem floor. */
.hero h1 { max-width: 17ch; font-size: clamp(1.9rem, 9vw, 6rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.03em; }
.hero .lede { max-width: 54ch; color: var(--on-dark); opacity: 0.97; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.hero-eyebrow { margin-bottom: 1.4rem; }
.hero-eyebrow svg { width: min(300px, 60vw); height: auto; overflow: visible; }
@media (max-height: 760px) {
  .hero h1 { font-size: clamp(1.6rem, 7vw, 3.6rem); }
  .hero { padding-top: calc(var(--nav-h) + 1.5rem); }
}
@media (max-width: 640px) {
  .hero-media img { object-position: 38% 62%; }
}

/* split-word hero animation (words wrapped by JS; safe if JS absent) */
html.js .hero h1 .w { display: inline-block; white-space: nowrap; }

/* ---------- buttons ---------- */
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 999px; padding: 0.95rem 1.7rem; letter-spacing: 0.01em; border: 2px solid transparent; transition: transform 0.18s ease, filter 0.18s ease; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-primary { background: var(--glow); color: var(--ink); }
.btn-ghost { border-color: var(--on-dark); color: var(--on-dark); background: transparent; }
.btn-ghost:hover { background: rgba(243,237,220,0.1); }
.btn-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ink:hover { background: rgba(19,34,41,0.06); }

/* ---------- C9 string divider (SVG, drawn on scroll) ---------- */
.string-divider { display: block; width: 100%; overflow: visible; }
.string-divider .wire { fill: none; stroke: currentColor; stroke-width: 2.5; opacity: 0.55; }
.string-divider .bulb { transition: opacity 0.5s ease, filter 0.5s ease; }
html.js .string-divider .bulb { opacity: 0.25; }
html.js .string-divider.is-lit .bulb { opacity: 1; filter: drop-shadow(0 0 6px rgba(242,200,121,0.75)); }
html.js .string-divider .bulb:nth-child(odd) { transition-delay: 0.12s; }
@media (prefers-reduced-motion: reduce) { html.js .string-divider .bulb { opacity: 1 !important; } }

/* ---------- custody split ---------- */
.custody { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: stretch; }
.custody-col { border-radius: 18px; padding: clamp(1.75rem, 3.2vw, 3rem); position: relative; }
.custody-col.ours { background: var(--midnight); color: var(--on-dark); box-shadow: inset 0 1px 0 rgba(243,237,220,0.08), 0 24px 60px -30px rgba(11,31,42,0.45); }
.custody-col.yours { background: var(--cream-2); border: 1px solid var(--paper-line); }
.custody-col .col-tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--glow); display: block; margin-bottom: 0.8rem; }
.custody-col.yours .col-tag { color: var(--glow-text-light); }
.custody-col h3 { font-size: var(--step-3); margin-bottom: 1.4rem; letter-spacing: -0.02em; }
.custody-list { list-style: none; margin: 0; padding: 0; }
.custody-list li { padding: 0.78rem 0; border-bottom: 1px solid var(--night-line); display: flex; gap: 0.75rem; align-items: baseline; }
.custody-col.yours .custody-list li { border-bottom-color: var(--paper-line); }
.custody-list li:last-child { border-bottom: 0; }
.custody-list .tick { flex: none; font-weight: 700; color: var(--glow-text-dark); }
.custody-col.yours .tick { color: var(--glow-text-light); }
.custody-note { margin-top: 1.6rem; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; line-height: 1.7; }
@media (max-width: 760px) { .custody { grid-template-columns: 1fr; } }

/* ---------- way (4 acts) ---------- */
.way-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); margin-top: 2.5rem; }
.way-step { min-width: 0; }
.way-step { position: relative; }
.way-step .media { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 1.2rem; }
.way-step img, .way-step .media img { border-radius: 16px; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 0; width: 100%; }
.photo-tag { position: absolute; left: 0.8rem; bottom: 0.8rem; background: rgba(11,31,42,0.78); color: var(--on-dark); border-radius: 8px; padding: 0.38rem 0.6rem; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; backdrop-filter: blur(4px); }
.way-num { font-family: var(--font-display); font-size: 1rem; color: var(--glow-text-dark); letter-spacing: 0.1em; display: block; margin-bottom: 0.35rem; }
@media (max-width: 760px) { .way-grid { grid-template-columns: 1fr; } }

/* ---------- deadline strip ---------- */
.deadlines { border-block: 1px solid var(--paper-line); }
/* countdown band — days until Christmas, directly under the hero */
.countdown-band { background: var(--pine); color: var(--on-dark); padding: clamp(1.75rem, 3.5vw, 2.75rem) 0; }
.countdown-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.25rem, 4vw, 3rem); flex-wrap: wrap; }
.countdown-figure { display: flex; align-items: baseline; gap: 0.9rem; }
.countdown-num { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem); line-height: 0.9; letter-spacing: -0.03em; color: var(--glow-text-dark); }
.countdown-lab { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-muted); }
.countdown-note { font-size: 0.98rem; color: var(--on-dark-muted); margin: 0; max-width: 44ch; }
@media (max-width: 700px) { .countdown-inner { flex-direction: column; align-items: flex-start; } }
.deadline-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; border-top: 1px solid var(--paper-line); }
.deadline-item { padding: 1.4rem 1.4rem 0.4rem 0; position: relative; }
.deadline-item + .deadline-item { padding-left: 1.4rem; border-left: 1px solid var(--paper-line); }
.deadline-item::before { content: ""; position: absolute; top: -1px; left: 0; width: 2.2em; height: 2px; background: var(--glow); }
.deadline-item strong { display: block; font-family: var(--font-display); font-size: var(--step-2); font-weight: 560; margin-bottom: 0.3rem; letter-spacing: -0.015em; }
.deadline-item span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); line-height: 1.7; display: block; }
@media (max-width: 860px) { .deadline-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .deadline-row { grid-template-columns: 1fr; } }

/* ---------- timer device ---------- */
.timer { position: relative; overflow: hidden; }
.timer-media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 11; box-shadow: 0 30px 70px -35px rgba(0,0,0,0.55); }
.timer-media img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.6s ease; }
.timer-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; transition: opacity 0.6s ease; opacity: 0;
  background: radial-gradient(75% 65% at 50% 58%, rgba(242,200,121,0.2), rgba(7,16,22,0.42) 80%); }
/* three DISTINCT stylized grades (same real photo, labeled as schedule states) */
.timer .timer-media img { filter: brightness(1.28) saturate(0.6) contrast(0.94); } /* afternoon: flat daylight, lights read faint */
.timer.at-dusk .timer-media img { filter: none; } /* dusk: the photo's natural blue-hour glow */
.timer.at-night .timer-media img { filter: brightness(0.78) contrast(1.12) saturate(1.12); } /* showtime: deep night, glow vignette */
.timer.at-night .timer-media::after { opacity: 1; }
.timer-ui { margin-top: 1.8rem; }
.timer-ui .timer-label { display: block; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 0.8rem; }
.timer-seg { display: inline-flex; border: 1px solid var(--night-line); border-radius: 999px; padding: 4px; gap: 4px; background: rgba(7,16,22,0.5); }
.timer-seg button { border: 0; background: transparent; color: var(--on-dark-muted); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.68rem 1.15rem; border-radius: 999px; transition: background 0.25s ease, color 0.25s ease; min-height: 44px; }
.timer-seg button[aria-pressed="true"] { background: var(--glow); color: var(--ink); font-weight: 500; }
.timer-chip { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; background: rgba(11,31,42,0.88); border: 1px solid rgba(243,237,220,0.18); border-radius: 12px; padding: 0.8rem 1rem; backdrop-filter: blur(6px); min-width: 200px; }
.timer-chip .chip-k { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glow); display: block; margin-bottom: 0.45rem; }
.timer-chip .chip-row { display: flex; justify-content: space-between; gap: 1.2rem; font-family: var(--font-mono); font-size: 0.74rem; color: var(--on-dark); padding: 0.18rem 0; }
.timer-chip .chip-row .dot { color: var(--on-dark-muted); }
.timer-chip .chip-row.live .dot { color: #7FC98B; }
.timer-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .timer-grid { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.masonry { columns: 3 300px; column-gap: 1.1rem; }
.masonry a { display: block; break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius); overflow: hidden; }
.masonry img { width: 100%; transition: transform 0.4s ease, filter 0.4s ease; }
.masonry a:hover img { transform: scale(1.02); filter: brightness(1.08); }
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.strip a { border-radius: var(--radius); overflow: hidden; display: block; }
.strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; }
.strip a:hover img { transform: scale(1.02); filter: brightness(1.08); }
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; } }

/* lightbox */
.lightbox { border: 0; padding: 0; background: rgba(7,16,22,0.94); max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(7,16,22,0.9); }
.lightbox figure { margin: 0; height: 100%; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 6px; }
.lightbox button { position: absolute; background: rgba(243,237,220,0.12); color: var(--on-dark); border: 1px solid var(--night-line); border-radius: 999px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.lightbox .lb-close { top: 18px; right: 18px; }
.lightbox .lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox figcaption { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: var(--on-dark-muted); font-size: 0.9rem; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.quote { border-top: 3px solid var(--glow); padding-top: 1.75rem; }
.quote blockquote { margin: 0 0 1.25rem; font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.4; font-weight: 460; }
.quote cite { font-style: normal; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- assurance ledger ---------- */
.ledger { border-top: 1px solid var(--night-line); }
.ledger-item { display: grid; grid-template-columns: minmax(180px, 0.9fr) 1.4fr; gap: 1rem 3rem; align-items: baseline; padding: clamp(1.3rem, 2.2vw, 1.8rem) 0.25rem; border-bottom: 1px solid var(--night-line); transition: background 0.25s ease; }
.ledger-item:hover { background: rgba(243, 237, 220, 0.045); }
.ledger-item strong { font-family: var(--font-display); font-size: var(--step-2); font-weight: 560; letter-spacing: -0.015em; }
.ledger-item p { margin: 0; color: var(--on-dark-muted); font-size: var(--step-0); max-width: 52ch; }
@media (max-width: 700px) { .ledger-item { grid-template-columns: 1fr; gap: 0.35rem; } }


/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--paper-line); border-radius: 8px;
  background: #FFFDF6; color: var(--ink); font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pine); outline: 2px solid var(--glow); outline-offset: 1px; }
.checks { border: 0; margin: 0; padding: 0; min-width: 0; }
.checks legend { display: block; width: 100%; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; padding: 0; }
.checks label {
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.98rem;
  padding: 0.55rem 0.9rem; border: 1.5px solid var(--paper-line); border-radius: 8px;
  background: #FFFDF6; cursor: pointer; min-height: 44px;
}
.checks label:hover { border-color: var(--pine); }
.checks input[type="checkbox"] { width: 1.05rem; height: 1.05rem; flex: none; accent-color: var(--pine); margin: 0; cursor: pointer; }
.checks input[type="checkbox"]:focus-visible { outline: 2px solid var(--glow); outline-offset: 2px; }
.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 0.75rem; }
@media (max-width: 640px) { .checks-grid { grid-template-columns: 1fr; } }
.form-actions { margin-top: 1.5rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.form-note { font-size: 0.92rem; color: var(--ink-muted); }
.form-status { margin-top: 1rem; font-weight: 600; }
.form-status.ok { color: #1E6B4A; }
.form-status.err { color: #A33A28; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 20ch; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--midnight); color: var(--on-dark); padding-block: 4rem 2.5rem; }
.footer a { color: var(--on-dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-logo img { height: 132px; width: auto; align-self: flex-start; }
.footer h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-muted); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 0.28rem 0; }
.footer-social { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.35rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; color: var(--on-dark-muted); }
.footer-social a:first-child { margin-left: -0.6rem; }
.footer-social a:hover, .footer-social a:focus-visible { color: var(--glow); }
.footer-social svg { display: block; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--night-line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--on-dark-muted); font-size: 0.9rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- mobile sticky CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; background: rgba(11,31,42,0.97); border-top: 1px solid var(--night-line); padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom)); gap: 0.6rem; }
.sticky-cta a { flex: 1; text-align: center; padding: 0.75rem 0.5rem; font-size: 0.95rem; }
.sticky-cta .btn-ghost { border-width: 1.5px; }
@media (max-width: 760px) {
  html.js .sticky-cta.is-shown { display: flex; }
  html.js body.has-sticky { padding-bottom: 76px; }
  html.js body.has-sticky .footer { padding-bottom: calc(2.5rem + 12px); }
}

/* ---------- season calendar (process) ---------- */
.season { position: relative; }
.season-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); position: relative; margin-top: 3rem; }
.season-track::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 2px; background: var(--night-line); }
.season-stop { position: relative; padding-top: 2rem; }
.season-stop::before { content: ""; position: absolute; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 0 4px rgba(242,200,121,0.2); }
.season-stop h3 { font-size: 1.3rem; }
.season-stop .when { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glow-text-dark); display: block; margin-bottom: 0.5rem; }
.season-stop p { color: var(--on-dark-muted); font-size: 0.98rem; }
@media (max-width: 860px) {
  .season-track { grid-template-columns: 1fr; gap: 2rem; padding-left: 1.6rem; }
  .season-track::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; }
  .season-stop { padding-top: 0; padding-left: 1rem; }
  .season-stop::before { top: 4px; left: -1.6rem; }
}

/* ---------- faq accordion ---------- */
.faq { border-bottom: 1px solid var(--paper-line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.35rem 0; cursor: pointer; font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 540; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.6rem; color: var(--glow-text-light); flex: none; transition: transform 0.25s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 1.5rem; max-width: 65ch; color: var(--ink-muted); }

.pad-b-tight { padding-block-end: clamp(3rem, 6vw, 5.5rem); }
.card-foot { margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid var(--night-line); display: flex; justify-content: space-between; gap: 1rem; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.custody-col.yours .card-foot { border-top-color: var(--paper-line); color: var(--ink-muted); }

/* ---------- misc ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-top: 2rem; }
.badge-row span { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.dropcap::first-letter { font-family: var(--font-display); font-size: 3.4em; float: left; line-height: 0.82; padding-right: 0.12em; color: var(--pine); font-weight: 560; }
.full-bleed { position: relative; min-height: 72svh; display: flex; align-items: flex-end; color: var(--on-dark); }
.full-bleed .fb-media { position: absolute; inset: 0; overflow: hidden; }
.full-bleed .fb-media img { width: 100%; height: 100%; object-fit: cover; }
.full-bleed .fb-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,22,0.8), rgba(7,16,22,0.06) 55%); }
.full-bleed .fb-content { position: relative; z-index: 2; width: 100%; padding-block: 3rem; }
.page-head { padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem)); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.page-head + .section { padding-top: clamp(1.5rem, 3.5vw, 3rem); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.two-col img { border-radius: var(--radius); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.svc-row img { border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.svc-row:nth-child(even) .svc-media { order: 2; }
.svc-row + .svc-row { border-top: 1px solid var(--paper-line); }
@media (max-width: 860px) { .svc-row { grid-template-columns: 1fr; } .svc-row:nth-child(even) .svc-media { order: 0; } }
