/* =============================================================================
   KUNA LOGISTICS — styles.css
   Component layer. References tokens.css by var() ONLY — never raw hex.
   Order in <head>: tokens.css (imports fonts) → styles.css.

   Map of decisions (per DESIGN-SPEC §0 best-of):
     · deep-green palette, paper grain, rotating seal ...... B-editorial
     · Bodoni Moda display + italic accents ................ H-luxe
     · tight Swiss grid, hairline rules, near-square radii . G-swiss
     · word-by-word masked headline reveal ................. A-kinetic
     · tactile EMBER offset-shadow primary button .......... J-bold
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------------------------------------------------------------------------
   Skip link + screen-reader utility
   --------------------------------------------------------------------------- */
.sr-only-focusable {
  position: absolute; left: -9999px; top: 0;
  background: var(--ember); color: var(--ember-on);
  padding: 10px 16px; border-radius: var(--r-xs);
  z-index: var(--z-toast); font-weight: var(--fw-semibold); font-size: var(--fs-small);
}
.sr-only-focusable:focus { left: 16px; top: 12px; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: var(--r-xs); }

/* ---------------------------------------------------------------------------
   Layout primitives
   --------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 600px) { .wrap { padding: 0 var(--gutter-sm); } }

section { position: relative; z-index: var(--z-raised); }
.block { padding: var(--section-pad-y) 0; }

/* ---------------------------------------------------------------------------
   Display typography + shared bits
   --------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--forest-deep);
  text-wrap: balance;
  font-optical-sizing: auto;
}
.serif-it { font-style: italic; font-weight: var(--fw-regular); }

/* Eyebrow — a deliberate brand system: brass leading rule + tracked label.
   Content varies per section ("What we move", "Where we run"); it is voice, not scaffold. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--brass-text);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--brass); flex: 0 0 auto;
}
.eyebrow--dark { color: var(--brass-soft); }
.eyebrow--dark::before { background: var(--brass-soft); }

.sec-head { max-width: 32ch; margin-bottom: var(--space-7); }
.sec-head h2 { font-size: var(--fs-h2); margin-top: var(--space-3); line-height: var(--lh-snug); }
.sec-sub { color: var(--text-2); font-size: var(--fs-body-lg); margin-top: var(--space-4);
  line-height: var(--lh-body); max-width: 56ch; text-wrap: pretty; }

/* ---------------------------------------------------------------------------
   Buttons — base + the three variants. EMBER carries the J-bold offset shadow.
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-body);
  border-radius: var(--r-xs); border: 1px solid transparent;
  padding: 14px 24px; line-height: 1; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn .ar { transition: transform var(--dur-base) var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

/* EMBER — the one action colour. Tactile physical button on a hard offset shadow. */
.btn--cta {
  background: var(--cta); color: var(--cta-on);
  box-shadow: var(--offset-shadow);
  transition: transform var(--dur-press) var(--ease-spring),
              box-shadow var(--dur-press) var(--ease-spring),
              background var(--dur-fast) var(--ease);
}
.btn--cta:hover {
  background: var(--ember-bright);
  transform: translate(-2px, -2px);
  box-shadow: var(--offset-shadow-hover);
}
.btn--cta:active {
  background: var(--ember-deep);
  transform: translate(2px, 3px);
  box-shadow: var(--offset-shadow-active);
}

.btn--ghost {
  background: transparent; color: var(--forest); border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--sage-wash); border-color: var(--forest); }

.btn--forest {
  background: var(--forest); color: var(--on-dark);
  box-shadow: var(--offset-shadow-forest);
  transition: transform var(--dur-press) var(--ease-spring),
              box-shadow var(--dur-press) var(--ease-spring),
              background var(--dur-fast) var(--ease);
}
.btn--forest:hover { background: var(--forest-2); transform: translate(-2px,-2px); box-shadow: var(--offset-shadow-forest-hover); }
.btn--forest:active { transform: translate(2px,3px); box-shadow: var(--offset-shadow-forest-active); }

.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; box-shadow: var(--ring); }
.on-dark .btn:focus-visible, .btn--on-dark:focus-visible { outline-color: var(--focus-dark); box-shadow: var(--ring-dark); }

@media (prefers-reduced-motion: reduce) {
  .btn--cta, .btn--forest { transition: background var(--dur-fast) var(--ease); }
  .btn--cta:hover, .btn--cta:active, .btn--forest:hover, .btn--forest:active { transform: none; box-shadow: var(--offset-shadow); }
  .btn--forest:hover, .btn--forest:active { box-shadow: var(--offset-shadow-forest); }
  .btn:hover .ar { transform: none; }
}

/* =============================================================================
   REVEAL SYSTEM — JS toggles .in. No-JS / reduced-motion renders fully visible.
   html.js (set by app.js) arms the hidden start states.
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
.stagger > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  }
  .js .reveal.in { opacity: 1; transform: none; }

  .js .stagger > * {
    opacity: 0; transform: translateY(18px);
    transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  }
  .js .stagger.in > * { opacity: 1; transform: none; }
  .js .stagger.in > *:nth-child(2) { transition-delay: var(--stagger-step); }
  .js .stagger.in > *:nth-child(3) { transition-delay: calc(var(--stagger-step) * 2); }
  .js .stagger.in > *:nth-child(4) { transition-delay: calc(var(--stagger-step) * 3); }
  .js .stagger.in > *:nth-child(5) { transition-delay: calc(var(--stagger-step) * 4); }

  .js .reveal.d1 { transition-delay: var(--stagger-step); }
  .js .reveal.d2 { transition-delay: calc(var(--stagger-step) * 2); }
  .js .reveal.d3 { transition-delay: calc(var(--stagger-step) * 3); }
  .js .reveal.d4 { transition-delay: calc(var(--stagger-step) * 4); }
  .js .reveal.d5 { transition-delay: calc(var(--stagger-step) * 5); }
}

/* =============================================================================
   HEADER  —  #siteHeader
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  backdrop-filter: saturate(140%) blur(9px);
  -webkit-backdrop-filter: saturate(140%) blur(9px);
  background: rgba(244, 245, 243, 0.80);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 245, 243, 0.94);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: var(--space-5); }

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand .logo-lockup { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a {
  font-size: var(--fs-small); color: var(--ink-soft); font-weight: var(--fw-medium);
  position: relative; padding: 6px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--forest); transition: width var(--dur-base) var(--ease);
}
.nav-links a:hover { color: var(--forest-deep); }
.nav-links a:hover::after { width: 100%; }
/* scroll-spy: the section currently in view gets a settled underline + ink colour,
   so a long scroll always shows where you are */
.nav-links a.is-current { color: var(--forest-deep); }
.nav-links a.is-current::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: var(--space-5); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-small); color: var(--ink-soft); font-weight: var(--fw-medium);
}
.nav-phone svg { color: var(--brass-text); flex: 0 0 auto; }
.header-cta .btn--cta { padding: 11px 18px; font-size: var(--fs-small); }

.hamburger {
  display: none; width: 46px; height: 44px; border-radius: var(--r-xs);
  align-items: center; justify-content: center; color: var(--forest-deep);
  border: 1px solid var(--line-strong);
}
.hamburger:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line); background: var(--paper);
  padding: var(--space-3) 0 var(--space-5);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 0; font-size: var(--fs-body); color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.mm-phone { color: var(--forest); font-weight: var(--fw-medium); }
.mobile-menu .btn { width: 100%; margin-top: var(--space-4); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: inline-flex; }
}
@media (max-width: 560px) {
  .header-cta .btn--cta { display: none; }
  .header-row { height: 70px; }
}

/* =============================================================================
   HERO  —  #hero
   ========================================================================== */
.hero { position: relative; z-index: var(--z-raised); padding: var(--space-8) 0 var(--space-7); overflow-x: clip; }
.hero-grid {
  display: grid; grid-template-columns: 1.22fr 0.88fr; gap: var(--space-8); align-items: center;
}
.hero-title {
  font-size: var(--fs-h1);
  margin: var(--space-4) 0 0;
}
.hero-title .serif-it { color: var(--brass); }   /* display >=48px — bright brass OK */

/* word-by-word masked reveal (A-kinetic): outer .word clips, inner span slides up.
   The headline is the LCP element, so its DEFAULT (no-JS, slow paint, headless
   render, hidden tab) is fully legible — spans sit at translateY(0). The clip +
   slide-up start-state is armed ONLY while .hero-title carries .pre-reveal, which
   app.js adds before paint and removes on the next frame to play the entrance.
   If the JS reveal never runs, the headline simply stays visible. */
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .word > span { display: inline-block; transition: transform var(--dur-word) var(--ease-out); }
.hero-title .line-break { display: block; height: 0; }
@media (prefers-reduced-motion: no-preference) {
  .js .hero-title.pre-reveal .word > span { transform: translateY(105%); }
  .js .hero-title.pre-reveal.in .word > span { transform: translateY(0); }
}
/* staggered word delays (only meaningful while the entrance is armed) */
.js .hero-title.pre-reveal.in .word:nth-child(2) > span { transition-delay: calc(var(--stagger-step) * 1); }
.js .hero-title.pre-reveal.in .word:nth-child(3) > span { transition-delay: calc(var(--stagger-step) * 2); }
.js .hero-title.pre-reveal.in .word:nth-child(5) > span { transition-delay: calc(var(--stagger-step) * 3); }
.js .hero-title.pre-reveal.in .word:nth-child(6) > span { transition-delay: calc(var(--stagger-step) * 4); }
.js .hero-title.pre-reveal.in .word:nth-child(7) > span { transition-delay: calc(var(--stagger-step) * 5); }

.hero-sub {
  font-size: var(--fs-body-lg); color: var(--ink-soft);
  max-width: 38ch; margin: var(--space-5) 0 0; line-height: var(--lh-body); text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); align-items: center; }
/* The hero CTA is the page's conversion engine — make it the loudest object in
   the fold: bigger than the ghost button, with the offset shadow clearly reading
   against the pale paper field. */
.hero-cta .btn--cta { padding: 17px 30px; font-size: var(--fs-body-lg); }
.hero-cta .btn--ghost { padding: 16px 24px; }

.hero-trust {
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap;
  margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: var(--fs-small); color: var(--ink-soft); }
.trust-item svg { color: var(--brass-text); flex: 0 0 auto; }

/* hero art column: seal + teaser card */
.hero-art { position: relative; }
.hero-card {
  /* not a flat white void: a faint forest+brass wash + grain so the card reads
     as a considered product surface against the pale paper bg */
  background:
    radial-gradient(130% 100% at 88% -12%, rgba(205, 163, 73, 0.08), transparent 58%),
    radial-gradient(120% 90% at -8% 112%, rgba(31, 59, 48, 0.06), transparent 55%),
    var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-md);
  /* tighter padding so the scene fills the card instead of floating in whitespace */
  padding: var(--space-4) var(--space-4) var(--space-3);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
/* scale the route/van scene up to fill the card width (it was floating small) */
.hero-card .scene { width: 100%; height: auto; display: block; }

.seal { position: absolute; right: -18px; top: -26px; width: 124px; height: 124px; z-index: var(--z-raised); transform-origin: 50% 50%; }
/* The seal is a hero peak-moment object: it makes ONE dignified rotation on load
   and settles, rather than spinning forever (perpetual rotation reads as a gadget,
   not a premium signature). Gated to fine pointers + larger screens so it never
   runs on small phones, and explicitly paused under reduced-motion. */
@media (prefers-reduced-motion: no-preference) and (pointer: fine) and (min-width: 700px) {
  .js .seal { animation: seal-settle var(--dur-seal-intro) var(--ease-out) 1 both; }
  @keyframes seal-settle { from { transform: rotate(-150deg); } to { transform: rotate(0deg); } }
}
@media (prefers-reduced-motion: reduce) {
  .seal { animation: none !important; transform: none; }
}

.price-pill {
  position: absolute; left: -26px; bottom: 26px;
  background: var(--forest-deep); color: var(--on-dark);
  border-radius: var(--r-sm); padding: 14px 18px;
  border: 1px solid rgba(199, 154, 82, 0.28);
  box-shadow: var(--shadow-lg); z-index: var(--z-raised);
}
.price-pill .lab { font-size: var(--fs-micro); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brass-soft); }
.price-pill .val { font-family: var(--font-display); font-size: 30px; font-weight: var(--fw-medium); line-height: 1; margin-top: 5px; letter-spacing: var(--tracking-tight); }
.price-pill .val small { font-family: var(--font-body); font-size: 12px; letter-spacing: 0; color: var(--on-dark-soft); font-weight: var(--fw-regular); }

@media (max-width: 880px) {
  .hero { padding: var(--space-6) 0 var(--space-4); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero-sub { max-width: 48ch; }
  .seal { width: 92px; height: 92px; right: 6px; top: -28px; }
  .price-pill { left: auto; right: 16px; bottom: -18px; max-width: calc(100% - 32px); }
  /* the headline now lives in a single full-width column — scale it to that
     column, not the viewport, so 521–880px doesn't render an 80px H1 in a
     narrowing measure. */
  .hero-title { font-size: clamp(2.8rem, 9vw, 4.6rem); }
}
@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.6rem, 8.5vw, 3.4rem); }
  /* never clip wrapped headline lines on narrow screens */
  .hero-title .word { overflow: visible; }
  .js .hero-title.pre-reveal .word > span { transform: none !important; }
}

/* =============================================================================
   INSTANT QUOTE + LEAD FORM  —  #quote  (conversion core, forest-deep shell)
   ========================================================================== */
.quote { padding: var(--space-7) 0 var(--space-7); }
.quote-shell {
  background: var(--forest-deep); border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 48px); color: var(--on-dark);
  position: relative; overflow: hidden;
}
/* brass hairline ring decoration */
.quote-shell::after {
  content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px;
  border: 1px solid rgba(199, 154, 82, 0.18); border-radius: 50%; pointer-events: none;
}
.quote-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; margin-bottom: var(--space-6); position: relative; z-index: var(--z-raised); }
.quote-head h2 { color: var(--paper); font-size: var(--fs-h3); margin-top: var(--space-2); line-height: var(--lh-snug); max-width: 18ch; }
.quote-timer {
  display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-small); color: var(--on-dark-soft);
  border: 1px solid var(--line-dark-2); border-radius: var(--r-xs); padding: 9px 14px;
}
.quote-timer svg { color: var(--brass-soft); flex: 0 0 auto; }
.quote-timer b { color: var(--brass-soft); font-weight: var(--fw-medium); }

.quote-form { position: relative; z-index: var(--z-raised); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-4) var(--space-5); align-items: end; }

/* service & size radiogroups */
.toggle-set { border: 0; padding: 0; margin: 0; min-width: 0; }
.toggle-set legend { font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brass-soft); font-weight: var(--fw-medium); padding: 0; margin-bottom: 10px; }
.svc-toggle { grid-column: 1 / -1; }
.size-toggle { grid-column: 1 / -1; }
/* the size fieldset lays its .size-option children out as a flex row directly */
.size-toggle { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.size-toggle legend { flex: 1 0 100%; }
.toggle-row { display: flex; gap: 10px; flex-wrap: wrap; }
.toggle-row .opt { flex: 1 1 0; min-width: 150px; }

/* radio inputs are visually hidden inside both the service .opt labels and the
   JS-generated .size-option labels */
.toggle-row input,
.size-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }

/* the two card-toggle label shapes share styling:
   · service line  -> .toggle-row .opt > label
   · size/vehicle  -> .size-option (label is the wrapper, set by app.js + the no-JS fallback) */
.toggle-row label,
.size-option {
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  border: 1px solid var(--line-dark-2); border-radius: var(--r-xs);
  padding: 13px 14px; background: rgba(255, 255, 255, 0.04);
  color: var(--on-dark); font-size: var(--fs-small); min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.size-option { flex: 1 1 0; min-width: 150px; }
.size-option__text { display: flex; flex-direction: column; gap: 4px; }
.toggle-row label .opt-title,
.size-option strong { font-weight: var(--fw-semibold); }
.toggle-row label .cap,
.size-option small { font-size: var(--fs-micro); color: var(--on-dark-soft); }
.toggle-row label:hover,
.size-option:hover { border-color: rgba(199, 154, 82, 0.55); transform: translateY(-1px); }
.toggle-row input:checked + label,
.size-option:has(input:checked) {
  border-color: var(--brass-soft); background: rgba(199, 154, 82, 0.15); color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(199, 154, 82, 0.5);
}
.toggle-row input:focus-visible + label,
.size-option:has(input:focus-visible) { outline: 2px solid var(--brass-soft); outline-offset: 2px; }

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field.span2 { grid-column: span 2; }
.field label { font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brass-soft); font-weight: var(--fw-medium); }
.field input {
  width: 100%; background: rgba(255, 255, 255, 0.055); border: 1px solid var(--line-dark-2);
  color: var(--paper); border-radius: var(--r-xs); padding: 14px 14px; min-height: 44px;
  font-family: var(--font-body); font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input::placeholder { color: rgba(238, 240, 234, 0.72); } /* ≈6.7:1 on the input fill — hints stay legible (carry the only format example) */
.field input:hover { border-color: rgba(199, 154, 82, 0.45); }
.field input:focus { outline: none; border-color: var(--brass-soft); background: rgba(255, 255, 255, 0.09); box-shadow: var(--ring-dark); }
.field input[aria-invalid="true"] { border-color: var(--ember-bright); }
/* persistent helper hint — survives focus/typing (the format guidance the
   placeholder used to carry). Hidden once that field shows an error. */
.field-hint { font-size: var(--fs-micro); color: var(--on-dark-soft); line-height: 1.4; }
.field-error { font-size: var(--fs-micro); color: var(--ember-bright); min-height: 0; line-height: 1.4; }
.field-error:not(:empty) { margin-top: 2px; }
.field:has(.field-error:not(:empty)) .field-hint { display: none; }

.quote-actions {
  position: relative; z-index: var(--z-raised);
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap;
  margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--line-dark);
}
.quote-note { font-size: var(--fs-small); color: var(--on-dark-soft); display: flex; align-items: center; gap: 8px; }
.quote-note svg { color: var(--brass-soft); flex: 0 0 auto; }

.estimate { margin-left: auto; text-align: right; display: flex; align-items: baseline; gap: 10px; }
.estimate .e-lab { font-size: var(--fs-micro); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brass-soft); }
.estimate output { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 30px; letter-spacing: var(--tracking-tight); color: var(--paper); line-height: 1; }

.quote-fulfil {
  position: relative; z-index: var(--z-raised);
  margin-top: var(--space-5); font-size: var(--fs-small); color: var(--on-dark-soft);
  display: inline-flex; align-items: center; gap: 9px;
}
.quote-fulfil svg { color: var(--brass-soft); flex: 0 0 auto; }

.quote-state {
  position: relative; z-index: var(--z-raised);
  margin-top: var(--space-5); padding: var(--space-4) var(--space-5); border-radius: var(--r-xs);
  font-size: var(--fs-body); line-height: var(--lh-body);
}
#quoteSuccess { background: rgba(199, 154, 82, 0.12); border: 1px solid var(--line-dark-2); color: var(--paper); }
#quoteSuccess strong { color: var(--brass-soft); font-weight: var(--fw-semibold); }
#quoteError { background: rgba(199, 82, 42, 0.16); border: 1px solid var(--ember-bright); color: var(--ember-on); }
#quoteError a { color: var(--brass-bright); text-decoration: underline; }

/* intermediate tablet step: keep the form compact at 2 columns before the
   single-column collapse, so name/email/phone don't stack into a tall scroll */
@media (max-width: 760px) and (min-width: 561px) {
  .quote-form { grid-template-columns: 1fr 1fr; }
  .field.span2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .quote-form { grid-template-columns: 1fr; }
  .field.span2 { grid-column: span 1; }
  .estimate { margin-left: 0; text-align: left; width: 100%; }
}

/* =============================================================================
   SERVICES  —  #services  (asymmetric editorial grid; lead card spans 2 rows)
   ========================================================================== */
.services { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: auto auto; gap: var(--space-5); }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: var(--space-6) var(--space-6) var(--space-5); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--line-strong); }
.svc--lead {
  grid-row: span 2; background: var(--forest-deep); color: var(--on-dark); border-color: var(--forest-deep);
}
.svc--lead:hover { box-shadow: var(--shadow-lg); }
.svc-tag { font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase; font-weight: var(--fw-medium); color: var(--brass-text); }
.svc--lead .svc-tag { color: var(--brass-soft); }
.svc h3 { font-family: var(--font-display); font-weight: var(--fw-regular); letter-spacing: var(--tracking-tight); font-size: var(--fs-h4); margin: var(--space-3) 0 var(--space-3); color: var(--forest-deep); line-height: 1; }
.svc--lead h3 { color: var(--paper); font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3rem); }
.svc p { color: var(--ink-soft); margin: 0 0 var(--space-4); font-size: var(--fs-body); line-height: var(--lh-body); text-wrap: pretty; }
.svc--lead p { color: var(--on-dark-soft); }
.svc ul { padding: 0; margin: 0 0 var(--space-2); }
.svc li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: var(--fs-small); color: var(--ink-soft); border-top: 1px solid var(--line); }
.svc li:first-child { border-top: none; }
.svc--lead li { color: var(--on-dark-soft); border-color: var(--line-dark); }
.svc li svg { color: var(--brass-text); flex: 0 0 auto; margin-top: 3px; }
.svc--lead li svg { color: var(--brass-soft); }
.svc-art { margin-top: auto; padding-top: var(--space-5); }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-small); font-weight: var(--fw-semibold);
  color: var(--forest); margin-top: var(--space-3); align-self: flex-start;
  transition: gap var(--dur-fast) var(--ease);
}
.svc--lead .svc-link { color: var(--brass-soft); }
.svc-link svg { transition: transform var(--dur-fast) var(--ease); }
.svc-link:hover { gap: 12px; }
.svc-link:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .services { grid-template-columns: 1fr; }
  .svc--lead { grid-row: auto; }
}

/* =============================================================================
   HOW IT WORKS  —  #how  (3 steps on a hairline-ruled Swiss row)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: var(--space-6) var(--space-6) var(--space-5); border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: none; }
.step-num { font-family: var(--font-display); font-size: var(--fs-h5); color: var(--brass-text); font-weight: var(--fw-medium); letter-spacing: 0.02em; display: flex; align-items: center; gap: 12px; }
.step-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.step-ico { margin: var(--space-5) 0 var(--space-4); color: var(--forest); }
.step h3 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); color: var(--forest-deep); margin: 0 0 10px; }
.step p { color: var(--ink-soft); font-size: var(--fs-small); margin: 0; line-height: var(--lh-body); text-wrap: pretty; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* =============================================================================
   COVERAGE  —  #coverage  (Swiss-grid hairline region cells)
   ========================================================================== */
.coverage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--surface); }
.area { padding: var(--space-5) var(--space-5); border-right: 1px solid var(--line); }
.area:last-child { border-right: none; }
.area h3 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-h5); color: var(--forest-deep); letter-spacing: var(--tracking-tight); margin-bottom: 6px; }
.area .area-line { font-size: var(--fs-micro); color: var(--ink-faint); margin: 0 0 var(--space-4); line-height: 1.5; min-height: 2.6em; }
.area-link { display: block; font-size: var(--fs-small); color: var(--ink-soft); padding: 5px 0; transition: color var(--dur-fast) var(--ease); }
.area-link:hover { color: var(--forest); }
.coverage-note {
  margin-top: var(--space-6); font-size: var(--fs-small); color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 9px;
}
.coverage-note svg { color: var(--brass-text); flex: 0 0 auto; }
@media (max-width: 920px) {
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .area { border-bottom: 1px solid var(--line); }
  .area:nth-child(2n) { border-right: none; }
  .area:nth-last-child(-n+1) { border-bottom: none; }
  .area .area-line { min-height: 0; }
}
@media (max-width: 520px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .area { border-right: none; }
  .area:last-child { border-bottom: none; }
}

/* =============================================================================
   TRUST  —  #trust  (forest-deep band, faint seal-motif circle behind)
   ========================================================================== */
.trustband { background: var(--forest-deep); color: var(--on-dark); overflow: hidden; }
.trustband::before {
  content: ""; position: absolute; left: 50%; top: -38%; width: 580px; height: 580px; transform: translateX(-50%);
  border: 1px solid rgba(199, 154, 82, 0.12); border-radius: 50%; pointer-events: none;
}
.trustband .display { color: var(--paper); }
.trustband .sec-sub { color: var(--on-dark-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line-dark); border-radius: var(--r-sm); position: relative; z-index: var(--z-raised); }
.tcell { padding: var(--space-6) var(--space-5); border-right: 1px solid var(--line-dark); }
.tcell:last-child { border-right: none; }
.tcell .ico { color: var(--brass-soft); margin-bottom: var(--space-4); }
.tcell h3 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); color: var(--paper); margin: 0 0 10px; }
.tcell p { color: var(--on-dark-soft); font-size: var(--fs-small); margin: 0; line-height: var(--lh-body); text-wrap: pretty; }

.stats-rail {
  display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap;
  margin-top: var(--space-7); padding-top: var(--space-5);
  border-top: 1px solid var(--line-dark); position: relative; z-index: var(--z-raised);
  color: var(--on-dark-soft); font-size: var(--fs-small); text-align: center;
}
.stats-rail .stat b { font-family: var(--font-display); color: var(--paper); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); }
.stats-rail .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass-soft); opacity: 0.6; }

.trust-disclosure {
  margin-top: var(--space-6); font-size: var(--fs-small); color: var(--on-dark-soft);
  max-width: 72ch; line-height: var(--lh-body); position: relative; z-index: var(--z-raised); text-wrap: pretty;
}
.trust-disclosure a { color: var(--brass-soft); text-decoration: underline; text-underline-offset: 2px; }
.trust-disclosure a:hover { color: var(--brass-bright); }

@media (max-width: 820px) {
  .trust-grid { grid-template-columns: 1fr; }
  .tcell { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .tcell:last-child { border-bottom: none; }
}

/* =============================================================================
   FINAL CTA STRIP  —  #ctaStrip  (brass-wash surface)
   ========================================================================== */
.cta-strip { padding: 0 0 var(--space-10); }
.cta-inner {
  background: var(--brass-wash); border: 1px solid var(--brass-soft); border-radius: var(--r-md);
  padding: clamp(36px, 4vw, 56px) clamp(26px, 4vw, 52px);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap;
}
.cta-inner .cta-copy { max-width: 28ch; }
.cta-inner h2 { font-size: var(--fs-h3); color: var(--forest-deep); line-height: var(--lh-snug); }
.cta-inner p { color: var(--brass-text); margin-top: var(--space-3); font-size: var(--fs-body); }

/* =============================================================================
   FOOTER  —  #siteFooter  (forest-deep, legal block)
   ========================================================================== */
.site-footer { background: var(--forest-deep); color: var(--on-dark-soft); padding: var(--space-8) 0 0; position: relative; z-index: var(--z-raised); }
.foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.1fr; gap: var(--space-6); padding-bottom: var(--space-7); border-bottom: 1px solid var(--line-dark); }
.foot-brand .logo-lockup { height: 38px; width: auto; }
.foot-tag { font-family: var(--font-display); font-style: italic; font-size: var(--fs-body-lg); color: var(--brass-soft); margin: var(--space-4) 0 0; line-height: 1.4; max-width: 26ch; }
.foot-col h4 { font-family: var(--font-body); font-weight: var(--fw-medium); font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brass-soft); margin: 0 0 var(--space-4); }
.foot-col a { display: block; font-size: var(--fs-small); color: var(--on-dark-soft); padding: 6px 0; transition: color var(--dur-fast) var(--ease); }
.foot-col a:hover { color: var(--paper); }

.foot-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; padding: var(--space-5) 0 var(--space-6); }
.foot-legal { max-width: 78ch; font-size: var(--fs-micro); color: var(--on-dark-faint); line-height: 1.7; }
.foot-legal strong { color: var(--on-dark-soft); font-weight: var(--fw-medium); }
.foot-legal a { color: var(--brass-soft); text-decoration: underline; text-underline-offset: 2px; }
.foot-legal a:hover { color: var(--brass-bright); }

@media (max-width: 980px) {
  .foot-top { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* very small screens */
@media (max-width: 380px) {
  body { font-size: 16px; }
  .toggle-row .opt { min-width: 100%; }
}

/* =============================================================================
   ====== CINEMATIC (homepage only — body.home-cine) ======
   F-cinematic's photographic rhythm, recoloured to deep-green/brass/ember.
   New cine-* classes leave the shared .hero/.site-header/area-page classes
   untouched. Scrims use --forest-deep #16291f; accent = brass; action = ember.
   All on-photo text/scrim pairs are tuned to clear AA (>=4.5:1; large >=3:1).
   ========================================================================== */

/* the cinematic homepage drops the fixed paper grain over its full-bleed photos */
body.home-cine::before { display: none; }

/* ---- shared on-photo helpers ---------------------------------------------- */
.home-cine .on-photo,
.home-cine .cine-cta__inner { color: var(--on-dark); }

/* eyebrow recoloured for dark photo scrims (brass-soft reads AA on forest) */
.eyebrow--on-photo { color: var(--brass-soft); }
.eyebrow--on-photo::before { background: var(--brass-soft); }

/* a light button that sits on a photo (snow fill / forest text) + ghost variant */
.btn--on-photo {
  background: var(--on-dark); color: var(--forest-deep);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.btn--on-photo:hover { background: #fff; transform: translateY(-2px); }
.btn--on-photo:active { transform: translateY(0); }
.btn--on-photo svg { color: var(--forest-deep); }
.btn--on-photo-ghost {
  background: transparent; color: var(--on-dark);
  border-color: rgba(238, 240, 234, 0.55); box-shadow: none;
}
.btn--on-photo-ghost:hover { background: rgba(238, 240, 234, 0.12); border-color: var(--on-dark); }
/* focus ring on photo surfaces = brass-soft */
.home-cine .on-photo :focus-visible,
.cine-scene :focus-visible,
.cine-cta :focus-visible { outline-color: var(--brass-soft); }

/* =============================================================================
   HERO — full-bleed photo + forest scrim + floating quote card
   ========================================================================== */
.cine-hero {
  position: relative; z-index: var(--z-raised);
  min-height: clamp(660px, 94vh, 1000px);
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.cine-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--forest-deep); }
.cine-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; }
@media (prefers-reduced-motion: no-preference) {
  .js .cine-hero__img { transform: scale(1.06); animation: cine-kenburns 26s var(--ease-out) forwards; }
  @keyframes cine-kenburns { from { transform: scale(1.1) translateY(1.4%); } to { transform: scale(1); } }
}
/* SCRIM: left/bottom-weighted forest gradient — headline sits over the dark
   shaded trees on the left; rgba(22,41,31,..) = --forest-deep. Snow --on-dark
   over the .86 region measures ~9:1 (well past AA). */
.cine-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(78deg, rgba(22,41,31,.88) 0%, rgba(22,41,31,.60) 38%, rgba(22,41,31,.16) 64%, rgba(22,41,31,0) 82%),
    linear-gradient(0deg,  rgba(22,41,31,.72) 0%, rgba(22,41,31,.14) 34%, rgba(22,41,31,0) 56%);
}
.cine-hero__inner {
  width: 100%; position: relative; z-index: var(--z-raised);
  padding-block: clamp(2.4rem, 6vh, 5rem);
  padding-top: clamp(6rem, 13vh, 9rem);
}
.cine-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.8rem, 4vw, 3.6rem); align-items: end;
}
.cine-hero__copy { max-width: 40ch; }
.cine-hero__title {
  color: var(--on-dark);
  font-size: clamp(3rem, 1.2rem + 7vw, 6.2rem);
  margin: var(--space-4) 0 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.42);
}
.cine-hero__title .serif-it { color: var(--brass-soft); }   /* brass accent word */
.cine-hero__sub {
  color: var(--on-dark-soft); font-size: var(--fs-body-lg);
  max-width: 34ch; margin: var(--space-5) 0 0; line-height: var(--lh-body); text-wrap: pretty;
}
.cine-hero__sub strong { color: var(--on-dark); font-weight: var(--fw-semibold); }
.cine-hero__price {
  display: inline-flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
  margin-top: var(--space-5); color: var(--on-dark-soft);
}
.cine-hero__price b {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: 2rem; line-height: 1; color: var(--brass-soft); letter-spacing: var(--tracking-tight);
}
.cine-hero__price span { font-size: var(--fs-small); }
.cine-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.cine-hero__actions .btn--cta { padding: 16px 28px; font-size: var(--fs-body-lg); }
.cine-hero__fulfil {
  margin-top: var(--space-5); font-size: var(--fs-micro);
  letter-spacing: 0.02em; color: var(--on-dark-faint);
}

/* =============================================================================
   FLOATING QUOTE CARD — solid light surface on the hero photo (full AA)
   ========================================================================== */
.cine-quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 2.2vw, 1.7rem);
  position: relative; z-index: var(--z-raised);
  max-width: 100%;
}
.cine-quote__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: var(--space-4); }
.cine-quote__title {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-h3); line-height: 1; color: var(--forest); letter-spacing: var(--tracking-tight); margin: 0;
}
.cine-quote__badge {
  font-family: var(--font-body); font-size: var(--fs-micro); font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brass-text); background: var(--brass-wash);
  padding: 0.5em 0.85em; border-radius: var(--r-pill); white-space: nowrap;
}

/* The quote form on the card is LIGHT (ink-on-paper), overriding the dark
   .quote-form defaults from the old quote-shell. */
.cine-quote__form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-4); align-items: start; }
.cine-quote__form .toggle-set legend { color: var(--ink-faint); }
.cine-quote__form .svc-toggle { grid-column: 1 / -1; }
.cine-quote__form .toggle-row { gap: 8px; }
.cine-quote__form .toggle-row .opt { min-width: 0; }
.cine-quote__form .toggle-row label,
.cine-quote__form .size-option {
  background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink);
  border-radius: var(--r-xs); padding: 10px 12px; min-width: 0;
}
.cine-quote__form .toggle-row label .cap,
.cine-quote__form .size-option small { color: var(--ink-faint); }
.cine-quote__form .toggle-row label:hover,
.cine-quote__form .size-option:hover { border-color: var(--brass); transform: translateY(-1px); }
.cine-quote__form .toggle-row input:checked + label,
.cine-quote__form .size-option:has(input:checked) {
  border-color: var(--forest); background: var(--sage-wash);
  box-shadow: inset 0 0 0 1px var(--forest);
}
.cine-quote__form .toggle-row input:focus-visible + label,
.cine-quote__form .size-option:has(input:focus-visible) { outline: 2px solid var(--focus); outline-offset: 2px; }
.cine-quote__form fieldset.size-toggle { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.cine-quote__form fieldset.size-toggle legend { width: 100%; }
.cine-quote__form fieldset.size-toggle .size-option { flex: 1 1 140px; }

.cine-quote__form .field label { color: var(--ink-faint); }
.cine-quote__form .field.span2 { grid-column: 1 / -1; }
.cine-quote__form .field input {
  background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink);
  border-radius: var(--r-xs); padding: 11px 13px; font-family: inherit; font-size: var(--fs-body); width: 100%;
}
.cine-quote__form .field input::placeholder { color: var(--ink-faint); }   /* ~4.7:1 — AA */
.cine-quote__form .field input:hover { border-color: var(--brass); }
.cine-quote__form .field input:focus { outline: none; border-color: var(--moss); background: #fff; box-shadow: var(--ring); }
.cine-quote__form .field input[aria-invalid="true"] { border-color: var(--ember); }
.cine-quote__form .field-hint { color: var(--ink-faint); }
.cine-quote__form .field-error { color: var(--ember-deep); }

/* contact group: collapsed by default, revealed on first interaction/submit.
   NOT display:none — app.js must reach the first invalid field. */
.cine-quote__contact {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-3) var(--space-4);
}
.cine-quote__contact.is-collapsed {
  max-height: 0; overflow: hidden; opacity: 0; margin: 0; pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .cine-quote__contact { transition: max-height var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease); }
}
.cine-quote__contact:not(.is-collapsed) { max-height: 360px; opacity: 1; margin-top: 2px; }
/* if focus lands inside while collapsed (keyboard/AT), reveal it */
.cine-quote__contact.is-collapsed:focus-within { max-height: 360px; opacity: 1; pointer-events: auto; }

.cine-quote__actions {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  margin-top: var(--space-5); flex-wrap: wrap;
}
.cine-quote__est { display: flex; flex-direction: column; gap: 2px; }
.cine-quote__est .e-lab { font-size: var(--fs-micro); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--ink-faint); }
.cine-quote__est #estVal { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 2.1rem; line-height: 1; color: var(--forest); letter-spacing: var(--tracking-tight); }
.cine-quote__actions .btn--cta { flex: 0 0 auto; }
.cine-quote__note { font-size: var(--fs-small); color: var(--ink-soft); display: flex; align-items: center; gap: 8px; margin-top: var(--space-3); }
.cine-quote__note svg { color: var(--brass-text); flex: 0 0 auto; }
.cine-quote__fulfil { display: flex; align-items: center; gap: 8px; margin-top: var(--space-2); font-size: var(--fs-micro); color: var(--ink-faint); }
.cine-quote__fulfil svg { color: var(--brass-text); flex: 0 0 auto; }
.cine-quote .quote-state {
  margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--r-sm);
  font-size: var(--fs-small); line-height: var(--lh-body);
}
.cine-quote #quoteSuccess { background: var(--sage-wash); color: var(--forest-deep); border: 1px solid var(--moss); }
.cine-quote #quoteSuccess strong { color: var(--forest-deep); }
.cine-quote #quoteError { background: var(--ember-wash); color: var(--ember-deep); border: 1px solid var(--ember); }
.cine-quote #quoteError a { color: var(--ember-deep); text-decoration: underline; text-underline-offset: 2px; font-weight: var(--fw-semibold); }
.cine-quote .quote-area-note { color: var(--ink-soft) !important; }

/* hero responsive: collapse to one column, copy then card */
@media (max-width: 1024px) {
  .cine-hero { align-items: center; }
  .cine-hero__inner { padding-top: clamp(5rem, 14vh, 7rem); padding-bottom: clamp(2rem, 5vh, 4rem); }
  .cine-hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .cine-hero__copy { max-width: 52ch; }
  .cine-quote { max-width: 540px; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  .cine-hero__scrim {
    background: linear-gradient(0deg, rgba(22,41,31,.90) 0%, rgba(22,41,31,.58) 48%, rgba(22,41,31,.22) 78%, rgba(22,41,31,.08) 100%);
  }
  .cine-hero__inner { padding-top: clamp(4.5rem, 12vh, 6rem); }
  .cine-quote__form { grid-template-columns: 1fr; }
  .cine-quote__form .field.span2 { grid-column: 1; }
  .cine-quote__contact { grid-template-columns: 1fr; }
  .cine-quote__actions { flex-direction: column; align-items: stretch; }
  .cine-quote__actions .btn--cta { width: 100%; }
}

/* =============================================================================
   TRUST STRIP / MARQUEE — forest band, brass icons
   ========================================================================== */
.cine-strip { background: var(--forest-deep); color: var(--on-dark-soft); border-block: 1px solid var(--line-dark); overflow: hidden; position: relative; z-index: var(--z-raised); }
.cine-strip__row { display: flex; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; padding-block: var(--space-4); white-space: nowrap; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .js .cine-strip__row { animation: cine-slide 38s linear infinite; }
  @keyframes cine-slide { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) { .cine-strip__row { animation: none !important; } }
.cine-strip__item { display: inline-flex; align-items: center; gap: 10px; font-size: var(--fs-small); letter-spacing: 0.02em; color: var(--on-dark-soft); }
.cine-strip__item svg { color: var(--brass-soft); flex: 0 0 auto; }
.cine-strip__item b { color: var(--on-dark); font-weight: var(--fw-semibold); }

/* =============================================================================
   HOW IT WORKS — editorial numbered steps (light section, the calm beat)
   ========================================================================== */
.cine-how { background: var(--paper); }
.cine-how .sec-head { max-width: 44ch; }
.cine-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.4vw, 3rem); }
.cine-step { position: relative; }
.cine-step__n { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.4rem); line-height: 1; color: var(--brass); font-weight: var(--fw-medium); }
.cine-step__line { display: block; height: 1px; background: var(--line); margin: var(--space-4) 0 var(--space-4); position: relative; }
.cine-step__line::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 46px; background: var(--brass); }
.cine-step h3 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); color: var(--forest-deep); }
.cine-step p { color: var(--ink-soft); font-size: var(--fs-small); margin-top: var(--space-2); line-height: var(--lh-body); text-wrap: pretty; }
@media (max-width: 820px) { .cine-steps { grid-template-columns: 1fr; gap: var(--space-6); } }

/* =============================================================================
   SERVICES — photo cards (Move = lead, larger; Courier + Business beside)
   ========================================================================== */
.cine-services { background: var(--paper-3); }
.cine-svc-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: clamp(1.2rem, 2.2vw, 1.8rem); }
.cine-svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.cine-svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--line-strong); }
/* MOVE leads: spans both rows on the left, with a taller photo */
.cine-svc--lead { grid-row: span 2; }
.cine-svc__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--forest-deep); }
.cine-svc--lead .cine-svc__media { aspect-ratio: 16 / 12; }
.cine-svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-reveal) var(--ease); }
@media (prefers-reduced-motion: no-preference) { .js .cine-svc:hover .cine-svc__media img { transform: scale(1.06); } }
.cine-svc__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(22, 41, 31, 0.85); color: var(--on-dark);
  font-family: var(--font-body); font-size: var(--fs-micro); font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  padding: 0.5em 0.85em; border-radius: var(--r-xs); backdrop-filter: blur(4px);
}
.cine-svc__body { padding: clamp(1.3rem, 2vw, 1.7rem); display: flex; flex-direction: column; flex: 1; }
.cine-svc__body h3 { font-family: var(--font-display); font-weight: var(--fw-regular); font-size: var(--fs-h4); letter-spacing: var(--tracking-tight); color: var(--forest-deep); line-height: 1; }
.cine-svc--lead .cine-svc__body h3 { font-size: clamp(2.1rem, 1.4rem + 2vw, 2.8rem); }
.cine-svc__body p { color: var(--ink-soft); margin-top: var(--space-3); font-size: var(--fs-small); line-height: var(--lh-body); text-wrap: pretty; flex: 0 0 auto; }
.cine-svc--lead .cine-svc__body p { font-size: var(--fs-body); }
.cine-svc__list { padding: 0; margin: var(--space-4) 0 var(--space-4); display: flex; flex-direction: column; }
.cine-svc__list li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: var(--fs-small); color: var(--ink-soft); border-top: 1px solid var(--line); }
.cine-svc__list li:first-child { border-top: none; }
.cine-svc__list svg { color: var(--brass-text); flex: 0 0 auto; margin-top: 3px; }
.cine-svc__foot { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--line); }
.cine-svc__from b { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h5); color: var(--forest-deep); letter-spacing: var(--tracking-tight); }
.cine-svc__from span { font-size: var(--fs-micro); color: var(--ink-faint); margin-left: 6px; }
.cine-svc__link { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-small); font-weight: var(--fw-semibold); color: var(--forest); white-space: nowrap; transition: gap var(--dur-fast) var(--ease); }
.cine-svc__link .ar { transition: transform var(--dur-base) var(--ease); }
.cine-svc__link:hover { gap: 11px; }
.cine-svc__link:hover .ar { transform: translateX(3px); }
@media (max-width: 860px) {
  .cine-svc-grid { grid-template-columns: 1fr; }
  .cine-svc--lead { grid-row: auto; }
  .cine-svc--lead .cine-svc__media { aspect-ratio: 16 / 10; }
}

/* =============================================================================
   CINEMATIC SCENE BAND — full-bleed photo + left-weighted forest scrim
   ========================================================================== */
.cine-scene { position: relative; z-index: var(--z-raised); min-height: clamp(460px, 72vh, 720px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.cine-scene__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--forest-deep); }
.cine-scene__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
@media (prefers-reduced-motion: no-preference) { .js .cine-scene__img { transform: scale(1.04); } }
.cine-scene__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(22,41,31,.92) 0%, rgba(22,41,31,.70) 36%, rgba(22,41,31,.24) 70%, rgba(22,41,31,.05) 100%);
}
.cine-scene__inner { position: relative; z-index: var(--z-raised); color: var(--on-dark); }
.cine-scene__quote {
  font-family: var(--font-display); font-weight: var(--fw-medium); font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.1; letter-spacing: var(--tracking-tight);
  max-width: 18ch; margin: 0; color: var(--on-dark); text-shadow: 0 2px 26px rgba(0, 0, 0, 0.42);
}
.cine-scene__stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3rem); margin-top: var(--space-7); }
.cine-scene__stat .v { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(2.2rem, 4.4vw, 3.2rem); line-height: 1; color: var(--brass-soft); letter-spacing: var(--tracking-tight); }
.cine-scene__stat .l { font-size: var(--fs-small); color: var(--on-dark-soft); margin-top: 6px; max-width: 18ch; line-height: var(--lh-body); }
@media (max-width: 560px) {
  .cine-scene__scrim { background: linear-gradient(0deg, rgba(22,41,31,.92) 0%, rgba(22,41,31,.66) 55%, rgba(22,41,31,.34) 100%); }
}

/* =============================================================================
   COVERAGE — elegant editorial regions (NO link table)
   ========================================================================== */
.cine-coverage { background: var(--paper); }
.cine-coverage .sec-head { max-width: 48ch; }
.cine-regions {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong); margin: 0; padding: 0; list-style: none;
}
.cine-region {
  display: flex; flex-direction: column; gap: 6px;
  padding: var(--space-6) var(--space-4) var(--space-5);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}
.cine-region:last-child { border-right: none; }
.cine-region::before { content: ""; position: absolute; left: var(--space-4); top: -1px; width: 30px; height: 2px; background: var(--brass); }
.cine-region__name { font-family: var(--font-display); font-style: italic; font-weight: var(--fw-medium); font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--forest-deep); letter-spacing: var(--tracking-tight); line-height: 1; }
.cine-region__desc { font-size: var(--fs-small); color: var(--ink-faint); line-height: var(--lh-body); }
.cine-coverage__note { margin-top: var(--space-6); font-size: var(--fs-small); color: var(--ink-soft); display: inline-flex; align-items: center; gap: 9px; }
.cine-coverage__note svg { color: var(--brass-text); flex: 0 0 auto; }
@media (max-width: 860px) {
  .cine-regions { grid-template-columns: repeat(2, 1fr); }
  .cine-region:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .cine-regions { grid-template-columns: 1fr; }
  .cine-region { border-right: none; }
}

/* =============================================================================
   TRUST PORTRAIT BAND — framed portrait + 2x2 pillars (sunk surface)
   ========================================================================== */
.cine-trust { background: var(--paper-3); }
.cine-trust__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cine-trust__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.cine-trust__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.cine-trust__chip {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(22, 41, 31, 0.88); color: var(--on-dark);
  border-radius: var(--r-sm); padding: 0.85rem 1.05rem;
  display: flex; align-items: center; gap: 12px; backdrop-filter: blur(5px);
}
.cine-trust__chip svg { color: var(--brass-soft); flex: 0 0 auto; }
.cine-trust__chip b { display: block; font-weight: var(--fw-semibold); font-size: var(--fs-small); }
.cine-trust__chip span { font-size: var(--fs-micro); color: var(--on-dark-soft); }
.cine-trust__copy .display { color: var(--forest-deep); margin-top: var(--space-3); }
.cine-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-6); }
.cine-pillar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--space-5); }
.cine-pillar__ico { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--brass-wash); color: var(--brass-text); margin-bottom: var(--space-3); }
.cine-pillar h3 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); color: var(--forest-deep); line-height: 1.05; }
.cine-pillar p { color: var(--ink-soft); font-size: var(--fs-small); margin-top: var(--space-2); line-height: var(--lh-body); text-wrap: pretty; }
.cine-trust__rail { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--ink-soft); }
.cine-trust__rail .stat b { font-family: var(--font-display); color: var(--forest-deep); font-weight: var(--fw-medium); font-size: var(--fs-h5); letter-spacing: var(--tracking-tight); }
.cine-trust__rail .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: 0.7; }
.cine-trust__disclosure { margin-top: var(--space-5); font-size: var(--fs-small); color: var(--ink-faint); max-width: 64ch; line-height: var(--lh-body); text-wrap: pretty; }
.cine-trust__disclosure a { color: var(--brass-text); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 980px) {
  .cine-trust__grid { grid-template-columns: 1fr; }
  .cine-trust__photo { max-width: 440px; aspect-ratio: 4 / 4; }
}
@media (max-width: 520px) {
  .cine-pillars { grid-template-columns: 1fr; }
}

/* =============================================================================
   FINAL CTA — full-bleed photo + radial forest veil (centred)
   ========================================================================== */
.cine-cta { position: relative; z-index: var(--z-raised); min-height: clamp(520px, 80vh, 760px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.cine-cta__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--forest-deep); }
.cine-cta__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
@media (prefers-reduced-motion: no-preference) { .js .cine-cta__img { transform: scale(1.05); } }
.cine-cta__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(22,41,31,.56) 0%, rgba(22,41,31,.78) 60%, rgba(22,41,31,.90) 100%),
    linear-gradient(0deg, rgba(22,41,31,.44), rgba(22,41,31,.44));
}
.cine-cta__inner { position: relative; z-index: var(--z-raised); text-align: center; margin-inline: auto; max-width: 46rem; color: var(--on-dark); }
.cine-cta__eyebrow { justify-content: center; }
.cine-cta__eyebrow::before { display: none; }
.cine-cta__title { color: var(--on-dark); font-size: clamp(2.6rem, 5.6vw, 4.8rem); margin-top: var(--space-3); text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.cine-cta__title .serif-it { color: var(--brass-soft); }
.cine-cta__sub { color: var(--on-dark-soft); font-size: var(--fs-body-lg); margin-top: var(--space-4); }
.cine-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.cine-cta__actions .btn--cta { padding: 16px 28px; font-size: var(--fs-body-lg); }
.cine-cta__note { margin-top: var(--space-5); font-size: var(--fs-small); color: var(--on-dark-soft); display: inline-flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.cine-cta__note span { display: inline-flex; align-items: center; gap: 7px; }
.cine-cta__note svg { color: var(--brass-soft); flex: 0 0 auto; }
