/* ============================================================
   DAMAHIS — site.css   (build v3 — graphite & ember)

   LINEAGE
     v1  warm limestone/clay editorial skin — REJECTED (too quiet,
         too "elegant", beige undertones).
     v2  the LMO Builders system copied straight: navy #25283D +
         yellow #FFCB00, Poppins uppercase, Lato, Inconsolata.
         Right energy, but a 1:1 clone of a sibling client.
     v3  LMO as BASE, not as skin. Same architecture — light
         surfaces, hairline rules, hard accent blocks, uppercase
         display, dark glass booking card — with its own identity:

           LMO                    →  DAMAHIS
           navy #25283D           →  graphite #16171B
           yellow #FFCB00         →  ember #FF5A1F
           Poppins 700 uppercase  →  Anton (condensed, heavier)
           Lato body              →  Inter
           Inconsolata mono label →  Inter 700 tracked, on a chip
           marker-bar highlight   →  hard slab + rule under-bar

   HERO LEGIBILITY — the house no-tint rule, read properly
     No wash across a whole clip. Ever. But the sanctioned devices
     for white type over media are: a solid block behind the words,
     a SHORT gradient over part of the frame that fades to fully
     transparent, or text-shadow. v2 used a full navy block, which
     buried the plate. v3 uses the other two: a bottom fade over
     the lower ~52% (transparent by mid-frame, the sky and the
     whole upper plate untouched) plus a real text-shadow.
     Measured: the plate's copy zone runs p95 luma 155-176 at every
     timecode, so neither device alone carries it — together they
     do, and the scenery stays visible on desktop and mobile.

   Large flat dark fields still get a two-stop gradient plus
   .noise-overlay so a display pipeline has no flat area to dither
   into a diagonal hairline.
   ============================================================ */

:root{
  /* Surfaces */
  --paper:   #FFFFFF;
  --paper-2: #F5F4F2;
  --line:    #DEDCD8;
  --line-2:  #EDEBE8;

  /* "Warm LMO." The client wants the LMO Builders look, which they love, so
     this matches LMO's system closely — light surfaces, uppercase Poppins,
     mono eyebrows, a bar-underline accent, a golden-hour hero — but WARM
     instead of LMO's cool navy/yellow, so it is not a 1:1 clone:
       LMO navy #25283D   -> warm espresso #1D1712  (--ink)
       LMO yellow #FFCB00 -> gold/amber #EDA82B      (--ember alias)
     The gold is also the client's own brand colour (their logo is green +
     gold), and it sits beautifully on a real golden-hour plate. The whole
     sheet is written against --ink / --ember, so the skin swaps here alone. */
  --ink:     #1D1712;   /* warm near-black (was cool graphite) */
  --ink-2:   #2A2016;   /* gradient partner, lighter */
  --ink-3:   #140F0A;   /* gradient partner, darker */
  /* --ember kept as the accent alias so no downstream rule has to change */
  --ember:    #EDA82B;  /* gold/amber — LMO's yellow family, warmed */
  --ember-dk: #C9861A;  /* darker gold, for links/underlines on white */
  --ember-lt: #F6C566;  /* light gold, for on-dark accents */

  /* Body text — warm-neutral */
  --text:    #40382F;
  --text-2:  #5A5147;
  --muted:   #786E62;

  --white: #FFFFFF;

  /* LMO's exact type system (the client called out the font by name):
     Poppins uppercase display, Lato body, Inconsolata mono for eyebrows
     and counters. */
  --font-display: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-sans: 'Lato', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Inconsolata', ui-monospace, 'Cascadia Mono', Consolas, monospace;
  --track: .2em;

  --page-max: min(92vw, 1620px);
  --gutter: clamp(20px, 3.2vw, 56px);
  --nav-h: 92px;
  --sec-y: clamp(56px, 6vw, 96px);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id]{ scroll-margin-top: calc(var(--nav-h) + 18px); }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }
body{
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font-sans); font-size: 16.5px; line-height: 1.62;
  letter-spacing: -.006em; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video{ display: block; max-width: 100%; }
h1,h2,h3,h4,p,ul,blockquote,figure{ margin: 0; }
ul{ padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection{ background: var(--ember); color: var(--white); }
:focus-visible{ outline: 3px solid var(--ember); outline-offset: 3px; }
.footer :focus-visible, .contact-band :focus-visible, .lb :focus-visible{ outline-color: var(--ember-lt); }

.container{ width: var(--page-max); margin-inline: auto; }
.section{ position: relative; padding-block: var(--sec-y); }
.section--alt{ background: var(--paper-2); }

.skip-link{ position: absolute; left: 14px; top: -60px; z-index: 200; background: var(--ember); color: var(--white);
  padding: 10px 18px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 13px;
  transition: top .2s var(--ease); }
.skip-link:focus{ top: 14px; }

/* ============================================================
   TYPE — LMO's system: Poppins 700 uppercase, tracked. Weight is
   fixed at 700; scale + the accent bar carry hierarchy.
   ============================================================ */
.display{
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--ink); line-height: 1.06; letter-spacing: .035em;
}
.h-sec{ font-size: clamp(2rem, 4.6vw, 3.9rem); }
.h-hero{ font-size: clamp(2rem, 3.9vw, 3.7rem); }

/* THE accent device, straight from LMO: a thick gold bar tucked under the
   phrase's baseline — visible, flat, premium. The word keeps its own colour
   (white over the plate, ink on light) and the gold bar sits beneath it.
   nowrap so the accent phrase never splits across lines. */
.hl{ white-space: nowrap; padding: 0 .04em;
  background-image: linear-gradient(180deg, transparent calc(100% - .16em), var(--ember) calc(100% - .16em), var(--ember) calc(100% - .04em), transparent calc(100% - .04em)); }
/* The solid-block variant is kept for the rare case a phrase must carry itself
   with no room for an underline; LMO uses it almost nowhere, and neither does
   this build now — headings use .hl. text-shadow:none so it never embosses. */
.slab{ white-space: nowrap; background: var(--ember); color: var(--ink);
  padding: .02em .16em; text-shadow: none; }
.nw{ white-space: nowrap; }
/* The nowrap accent phrase forces its container's min-content width. On a
   narrow phone a two-word phrase ("FAMILY OPERATED.") is wider than the column
   and pushes a 3px horizontal overflow — let it wrap below 700px (the gold bar
   still underlines each line fragment cleanly). */
@media (max-width: 700px){ .hl{ white-space: normal; } }

/* Eyebrow — LMO's mono label with a short gold tick, NOT a solid chip.
   Inconsolata, tracked, muted on light / white over media. */
.eyebrow{
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 700;
  letter-spacing: var(--track); text-transform: uppercase; color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow::before{ content: ""; width: 40px; height: 3px; background: var(--ember); flex: none; }
/* centre it when the section head is centred */
.sec-head--center .eyebrow{ justify-content: center; }

.sec-head{ max-width: 1100px; margin-bottom: clamp(32px, 3.4vw, 50px); }
.sec-head .sub{ margin-top: 24px; color: var(--text-2); font-size: 1.04rem; max-width: 62ch; }
.sec-head--center{ text-align: center; margin-inline: auto; }
.sec-head--center .sub{ margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  --bg: var(--ember); --fg: var(--ink); --bd: var(--ember);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 30px; border: 2px solid var(--bd); background: var(--bg); color: var(--fg);
  font-size: 13.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn .ar{ transition: transform .2s var(--ease); }
.btn:hover{ --bg: var(--ink); --fg: var(--white); --bd: var(--ink); }
.btn:hover .ar{ transform: translateX(4px); }
.btn--ghost{ --bg: transparent; --fg: var(--white); --bd: rgba(255,255,255,.6); }
.btn--ghost:hover{ --bg: var(--white); --fg: var(--ink); --bd: var(--white); }
.btn--solid{ --bg: var(--ink); --fg: var(--white); --bd: var(--ink); }
.btn--solid:hover{ --bg: var(--ember); --fg: var(--ink); --bd: var(--ember); }
.btn--sm{ padding: 12px 20px; font-size: 12.5px; }

.tlink{ display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700;
  font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; position: relative; padding-bottom: 6px; }
.tlink::after{ content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--line); }
.tlink::before{ content: ""; position: absolute; left: 0; width: 0; bottom: 0; height: 2px;
  background: var(--ember); z-index: 1; transition: width .3s var(--ease); }
.tlink:hover::before{ width: 100%; }

/* ---------------- Reveal ---------------- */
.rv{ opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in{ opacity: 1; transform: none; }
.rv.d1{ transition-delay: .08s; } .rv.d2{ transition-delay: .16s; } .rv.d3{ transition-delay: .24s; }
html:not(.js) .rv{ opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce){ .rv{ opacity: 1 !important; transform: none !important; transition: none !important; } }

.noise-overlay{ position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>"); }

/* ============================================================
   BRAND
   ============================================================ */
.brand{ display: inline-flex; align-items: center; margin-right: auto; }
.brand-words{ display: flex; flex-direction: column; line-height: 1; gap: 7px; }
.logo{ display: block; height: 30px; width: auto; }
/* Dark artwork on light grounds, light artwork over the plate and in the
   footer. Exactly one is ever rendered. */
.logo--light{ display: none; }
.nav:not(.nav--solid) .logo--dark,
.footer .logo--dark{ display: none; }
.nav:not(.nav--solid) .logo--light,
.footer .logo--light{ display: block; }
@media (max-width: 640px){ .logo{ height: 25px; } }
.brand-sub{ font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; }

/* ============================================================
   NAV — TRANSPARENT over the plate (client call), solid white past
   it. Legibility over the footage comes from white ink + a real
   text-shadow, plus the short top fade that lives in .hero-media —
   never a wash across the clip.
   ============================================================ */
.nav{ position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h); display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease); }
.nav-inner{ width: var(--page-max); margin-inline: auto; display: flex; align-items: center; gap: 28px;
  position: relative; height: 100%; }
.nav-inner::after{ content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(255,255,255,.3); transition: opacity .35s var(--ease); }
.nav--solid{ background: rgba(255,255,255,.97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--line); }
.nav--solid .nav-inner::after{ opacity: 0; }
.nav:not(.nav--solid) .nav-link,
.nav:not(.nav--solid) .nav-phone{ color: var(--white); text-shadow: 0 2px 14px rgba(10,9,7,.9), 0 1px 3px rgba(10,9,7,.7); }
.nav:not(.nav--solid) .brand-sub{ color: var(--white); text-shadow: 0 2px 12px rgba(10,9,7,.95); }
.nav-links{ display: flex; align-items: center; gap: 32px; }
.nav-link{ font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 8px 0; }
.nav-link::after{ content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--ember); transition: right .25s var(--ease); }
.nav-link:hover::after{ right: 0; }
.nav-actions{ display: flex; align-items: center; gap: 22px; flex: none; }
.nav-phone{ font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--ink); white-space: nowrap; }
.nav-cta{ flex: none; }
.menu-btn{ display: none; width: 48px; height: 48px; flex: none; border: 2px solid var(--ember);
  position: relative; background: var(--ember); margin-left: auto; }
.menu-btn .bar{ position: absolute; left: 12px; right: 12px; height: 2.5px; background: var(--ink);
  transition: transform .28s var(--ease), opacity .2s var(--ease); }
.menu-btn .bar:nth-child(1){ top: 16px; } .menu-btn .bar:nth-child(2){ top: 22px; } .menu-btn .bar:nth-child(3){ top: 28px; }
.nav--open .menu-btn .bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav--open .menu-btn .bar:nth-child(2){ opacity: 0; }
.nav--open .menu-btn .bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px){ .nav .brand{ margin-right: 0; } }

/* ---- no-JS fallbacks ---- */
html:not(.js) .nav{ background: rgba(255,255,255,.97); border-bottom-color: var(--line); }
html:not(.js) .nav-inner::after{ opacity: 0; }
html:not(.js) .menu-btn{ display: none; }
html:not(.js) .sticky{ opacity: 1; visibility: visible; transform: none; }
@media (max-width: 900px){
  html:not(.js) .nav-phone{ display: inline-flex; }
  html:not(.js) .sticky{ display: flex; }
}

.mobile-menu{ position: fixed; inset: 0; z-index: 55; background: var(--paper); display: flex; flex-direction: column;
  justify-content: center; gap: 4px; padding: 100px var(--gutter) 40px; opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.mobile-menu.open{ opacity: 1; visibility: visible; transform: none; }
.mobile-menu a{ font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(2rem, 10vw, 3rem); color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .m-foot{ display: flex; flex-direction: column; gap: 8px; margin-top: 26px; }
.mobile-menu .m-foot a{ font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .12em;
  border: 0; padding: 13px 0; display: inline-flex; align-items: center; color: var(--ink);
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }

/* ============================================================
   HERO — the plate stays visible. Naked white type on the footage,
   a bottom fade that is fully transparent by mid-frame, and a
   glass booking card the scenery shows through.
   ============================================================ */
.hero{ position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 24px); padding-bottom: clamp(36px, 5vh, 64px);
  background: var(--ink); overflow: hidden; }
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video{ position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%; }
.hero-media video{ opacity: 0; transition: opacity 1s var(--ease); }
.hero-media video.ready{ opacity: 1; }
/* The two fades. NOT a wash: the top one is 22% tall and only exists so the
   transparent nav has something to sit on; the bottom one is 52% and is fully
   transparent by mid-frame. Everything above the midline is untouched clip. */
/* Tuned against COMPOSITED PIXELS, not guessed. First pass (.62 top / .88
   bottom over 52%) measured white text at 4.19:1 in the nav strip and 3.32:1
   in the copy zone — both short of 4.5. These stops put the worst realistic
   patch under sRGB 119, which is where white clears 4.5:1. The top ~38% of
   the frame is still completely untouched clip. */
/* Tuned against the golden-hour plate's copy zone (p95 luma 155-176 across the
   whole source). With align-items:end sinking the copy into the strong part of
   the fade, these stops clear the bars while leaving the upper ~38% of the
   plate untouched. Re-measure if the hero clip changes — a brighter plate needs
   more. */
.hero-fade{ position: absolute; left: 0; right: 0; bottom: 0; height: 62%; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(10,9,7,.94) 0%, rgba(10,9,7,.82) 26%,
                              rgba(10,9,7,.48) 58%, rgba(10,9,7,0) 100%); }
.hero-fade--top{ top: 0; bottom: auto; height: 24%;
  background: linear-gradient(to bottom, rgba(10,9,7,.78) 0%, rgba(10,9,7,.5) 45%, rgba(10,9,7,0) 100%); }
.hero-inner{ position: relative; z-index: 2; width: var(--page-max); margin-inline: auto; }
/* Copy + booking card, the LMO arrangement. (A previous pass deleted the card
   and moved the form to its own horizontal band at the bottom — wrong read of
   the brief; the client wants the quote box IN the hero.) */
/* align-items:end, not center. The card is the taller column, so ending the
   row sinks the copy into the strong part of the bottom fade — which buys the
   headline its contrast without darkening more of the plate. Cheaper than
   another 10% of gradient. */
.hero-grid{ display: grid; grid-template-columns: 1.06fr .86fr; gap: clamp(28px, 3.4vw, 64px);
  align-items: end; }

/* Copy rides the plate directly — no block. Shadow does the lifting. */
.hero-copy{ max-width: 720px; padding-bottom: clamp(4px, 1vh, 16px); }
.hero-copy .eyebrow{ color: var(--white); }
.hero h1{ color: var(--white); text-shadow: 0 3px 26px rgba(10,9,7,.85), 0 1px 4px rgba(10,9,7,.6); }
.hero h1 .slab{ text-shadow: none; }
.hero-sub{ color: var(--white); font-size: clamp(1rem, 1.3vw, 1.12rem); max-width: 46ch;
  margin-top: clamp(16px, 1.8vw, 24px); text-shadow: 0 2px 16px rgba(10,9,7,.95), 0 1px 3px rgba(10,9,7,.8); }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-chips{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-chips span{ display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--white);
  background: rgba(16,17,21,.72); border: 1px solid rgba(255,255,255,.24); padding: 9px 13px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.hero-chips svg{ width: 14px; height: 14px; color: var(--ember-lt); flex: none; }

/* Booking card — glass, so the plate keeps moving through it */
.quote-card{ position: relative; overflow: hidden;
  background: rgba(16,17,21,.62);
  -webkit-backdrop-filter: blur(18px) saturate(1.1); backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.18); padding: clamp(24px, 2.4vw, 38px);
  box-shadow: 0 30px 80px -36px rgba(0,0,0,.7); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .quote-card{ background: rgba(16,17,21,.93); }
}
.quote-card > *{ position: relative; }
.quote-card .noise-overlay{ z-index: 0; }
.quote-card h2{ font-size: clamp(1.6rem, 2.1vw, 2rem); color: var(--white); line-height: 1; margin-bottom: 10px; }
.quote-card .q-sub{ font-size: 14.5px; color: var(--white); margin-bottom: 22px; }
@keyframes cardPulse{
  0%   { box-shadow: 0 0 0 0 rgba(255,90,31,.9), 0 30px 80px -36px rgba(0,0,0,.7); }
  70%  { box-shadow: 0 0 0 20px rgba(255,90,31,0), 0 30px 80px -36px rgba(0,0,0,.7); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,31,0), 0 30px 80px -36px rgba(0,0,0,.7); }
}
.quote-card.pulse{ animation: cardPulse 1.15s var(--ease) 2; }
@media (prefers-reduced-motion: reduce){
  .quote-card.pulse{ animation: none; outline: 3px solid var(--ember); outline-offset: 2px; }
}

/* The WCAG 2.2.2 stop for the auto-playing plate. The scroll cue that used
   to sit beside it is gone (client call) — this is just the control. */
.hero-pause{ position: absolute; z-index: 3; right: calc((100% - var(--page-max)) / 2);
  bottom: clamp(16px, 2.6vh, 30px); width: 38px; height: 38px;
  background: rgba(16,17,21,.72); border: 1px solid rgba(255,255,255,.28); color: var(--white);
  display: grid; place-items: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .25s var(--ease), color .25s var(--ease); }
.hero-pause:hover{ background: var(--ember); color: var(--ink); border-color: var(--ember); }
.hero-pause svg{ width: 14px; height: 14px; }
.hero-pause[hidden]{ display: none; }

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.creed{ background: var(--paper); border-bottom: 1px solid var(--line-2); }
.creed-grid{ display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 110px);
  align-items: center; padding-block: clamp(56px, 6.5vw, 100px); }
.creed-words{ font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--ink); font-size: clamp(2.4rem, 5.6vw, 4.9rem); line-height: 1.04; letter-spacing: .03em; }
.creed-words span{ display: block; }
.creed-lead{ font-size: clamp(1.05rem, 1.4vw, 1.2rem); font-weight: 600; color: var(--ink);
  max-width: 44ch; margin-bottom: 16px; }
.creed-side p + p{ color: var(--text-2); max-width: 52ch; }
.creed-side .btn{ margin-top: 30px; }

/* ============================================================
   SERVICES — expanding slots, untinted photos
   ============================================================ */
#services{ padding-top: clamp(36px, 3.6vw, 56px); }
.slots{ display: flex; gap: 3px; height: clamp(500px, 64vh, 640px); }
.slot{ position: relative; overflow: hidden; flex: 1 1 0; min-width: 0; transition: flex-grow .55s var(--ease); }
.slot.open{ flex-grow: 3.3; }
.slot > img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease); }
.slot:hover > img{ transform: scale(1.04); }
.slot-head{ position: absolute; inset: 0; z-index: 2; cursor: pointer; text-align: left; padding: 0; }
.svc-n{ position: absolute; left: 0; top: 0; z-index: 2; background: var(--ember); color: var(--ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 14px; letter-spacing: .08em; padding: 6px 13px; }
.slot-tag{ position: absolute; left: 14px; bottom: 14px; z-index: 2;
  writing-mode: vertical-rl; transform: rotate(180deg);
  background: var(--ink); color: var(--white); padding: 14px 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; white-space: nowrap; transition: opacity .3s var(--ease); }
.slot.open .slot-tag{ opacity: 0; }
.slot-body{ position: absolute; left: 0; bottom: 0; z-index: 3;
  width: clamp(380px, 34vw, 520px); background: var(--paper);
  padding: 24px clamp(20px, 2vw, 32px) 26px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease) .18s, transform .35s var(--ease) .18s, visibility 0s .53s; }
.slot.open .slot-body{ opacity: 1; visibility: visible; transform: none;
  transition: opacity .35s var(--ease) .18s, transform .35s var(--ease) .18s, visibility 0s .18s; }
.slot-body h3{ font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem); letter-spacing: .015em; line-height: 1.05; margin-bottom: 10px; }
.slot-body p{ font-size: 14.5px; color: var(--text-2); margin-bottom: 18px; max-width: 52ch; }
@media (prefers-reduced-motion: reduce){ .slot, .slot > img, .slot-tag, .slot-body{ transition: none; } }
html:not(.js) .slots{ flex-direction: column; height: auto; }
html:not(.js) .slot{ min-height: 300px; }
html:not(.js) .slot-tag{ display: none; }
html:not(.js) .slot-body{ position: static; opacity: 1; visibility: visible; transform: none; width: auto; }

/* ============================================================
   SERVICE AREA GRID
   ============================================================ */
.areas{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.area{ background: var(--paper); padding: clamp(24px, 2.4vw, 36px); }
.area h3{ font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--ink);
  font-size: 1.24rem; letter-spacing: .015em; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.area h3::before{ content: ""; width: 18px; height: 4px; background: var(--ember); flex: none; }
.area p{ font-size: 15px; color: var(--text-2); }

/* ============================================================
   ABOUT
   ============================================================ */
/* Contained split, NOT a full-bleed band (client call — they disliked the
   edge-to-edge photo with a panel floating on it). The image is a framed
   column inside the grid; the copy sits beside it on the page's own paper. */
.about{ position: relative; background: var(--paper-2); padding-block: var(--sec-y); }
.about-inner{ position: relative; display: grid; grid-template-columns: .85fr 1fr;
  gap: clamp(32px, 4vw, 72px); align-items: center; }
.about-figure{ position: relative; border: 1px solid var(--line); background: var(--paper); padding: 10px; min-width: 0; }
.about-figure img{ width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
/* Gold corner rule — the same hard-edged accent used across the page */
.about-figure::after{ content: ""; position: absolute; left: -1px; bottom: -1px;
  width: 92px; height: 6px; background: var(--ember); }
.about-panel{ background: none; padding: 0; min-width: 0; }
.about-panel .h-sec{ font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 18px; }
.about-panel p{ color: var(--text-2); margin-bottom: 14px; max-width: 54ch; font-size: 15.5px; }
.about-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 16px 0 4px; }
.about-list li{ display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--text-2); }
.about-list li::before{ content: ""; width: 18px; height: 4px; background: var(--ember); flex: none; margin-top: 10px; }
.about-list b{ display: block; color: var(--ink); font-weight: 700; }

/* ============================================================
   WORK RAIL
   ============================================================ */
.car-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  margin-bottom: clamp(34px, 4vw, 52px); }
.car-ctl{ display: flex; align-items: center; gap: 16px; flex: none; }
.car-count{ font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: .1em; color: var(--muted); }
.car-count b{ color: var(--ink); font-weight: 600; }
.car-btns{ display: flex; gap: 8px; }
.cbtn{ width: 54px; height: 54px; border: 2px solid var(--ember); background: var(--ember); color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.cbtn:hover:not([disabled]){ background: var(--ink); border-color: var(--ink); color: var(--white); }
.cbtn[disabled]{ background: transparent; border-color: var(--line); color: var(--muted); cursor: default; }
.cbtn svg{ width: 20px; height: 20px; stroke-width: 2.6; }
.rail{ display: flex; gap: clamp(16px, 1.6vw, 26px); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.rail::-webkit-scrollbar{ display: none; }
@media (prefers-reduced-motion: reduce){ .rail{ scroll-behavior: auto; } }
.work-tile{ flex: 0 0 clamp(260px, 26vw, 380px); scroll-snap-align: start; position: relative;
  padding: 0; border: 1px solid var(--line); display: flex; flex-direction: column; text-align: left;
  cursor: pointer; background: var(--paper); transition: border-color .3s var(--ease); }
.work-tile:hover{ border-color: var(--ink); }
.work-media{ position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.work-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-tile:hover .work-media img{ transform: scale(1.05); }
.work-cap{ display: flex; align-items: baseline; gap: 12px; padding: 16px 18px 18px; }
.work-cap .n{ font-family: var(--font-mono); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; color: var(--muted); }
.work-cap .t{ font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.02rem, 1.15vw, 1.15rem); letter-spacing: .015em; line-height: 1.1; }
.work-tile .zoom{ position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px;
  background: var(--ember); color: var(--ink); display: grid; place-items: center; opacity: 0;
  transform: translateY(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.work-tile:hover .zoom, .work-tile:focus-visible .zoom{ opacity: 1; transform: none; }
.work-tile .zoom svg{ width: 17px; height: 17px; }

/* ============================================================
   REVIEWS — PLACEHOLDER CONTENT (see index.html)
   ============================================================ */
.carousel{ position: relative; }
.car-track{ display: flex; gap: 24px; align-items: stretch; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 8px; }
.car-track::-webkit-scrollbar{ display: none; }
@media (prefers-reduced-motion: reduce){ .car-track{ scroll-behavior: auto; } }
.review{ flex: 0 0 calc((100% - 72px) / 4); margin: 0; padding: 22px 22px 20px; scroll-snap-align: start;
  background: var(--paper); border: 1px solid var(--line); min-height: 240px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease; }
.review:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(22,23,27,.12); }
.rv-top{ display: flex; align-items: center; justify-content: space-between; }
.rv-stars{ display: inline-flex; gap: 3px; color: var(--ember); }
.rv-stars svg{ width: 18px; height: 18px; }
.rv-g{ width: 22px; height: 22px; flex: 0 0 auto; }
.review blockquote{ margin: 0; flex: 1 1 auto; min-height: 0; font-size: 15px; line-height: 1.65; color: var(--text-2);
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review figcaption{ display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.rv-avatar{ flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--white); font-family: var(--font-mono); font-weight: 700; font-size: 17px; line-height: 1; }
.rv-who{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv-name{ font-size: 15px; font-weight: 700; color: var(--ink); }
.rv-meta{ font-size: 12.5px; color: var(--muted); }
.car-nav{ position: absolute; top: 42%; z-index: 3; width: 48px; height: 48px; display: none;
  align-items: center; justify-content: center; background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 6px 20px rgba(22,23,27,.14);
  transition: background-color .2s ease, color .2s ease, opacity .2s ease; }
.carousel.is-ready .car-nav{ display: flex; }
.car-nav:hover:not(:disabled){ background: var(--ink); color: var(--white); border-color: var(--ink); }
.car-nav:disabled{ opacity: .3; cursor: default; }
.car-nav svg{ width: 20px; height: 20px; }
.car-prev{ left: -20px; } .car-next{ right: -20px; }
.car-dots{ display: none; justify-content: center; gap: 4px; margin-top: 20px; }
.carousel.is-ready .car-dots{ display: flex; }
.car-dot{ position: relative; width: 34px; height: 40px; padding: 0; background: transparent; border: none; }
.car-dot::before{ content: ''; position: absolute; left: 3px; right: 3px; top: 50%; height: 3px; margin-top: -1.5px;
  background: #C9C7C2; transition: background-color .2s ease; }
.car-dot[aria-current="true"]::before{ background: var(--ember); }
.rev-note{ text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
@media (max-width: 1400px){ .review{ flex-basis: calc((100% - 48px) / 3); } }
@media (max-width: 1080px){ .review{ flex-basis: calc((100% - 24px) / 2); } .review blockquote{ -webkit-line-clamp: 8; } }
@media (max-width: 1340px) and (min-width: 681px){ .car-prev{ left: 6px; } .car-next{ right: 6px; } }
@media (max-width: 680px){
  .review{ flex-basis: 86%; min-height: 0; }
  .review blockquote{ -webkit-line-clamp: unset; overflow: visible; }
  .car-track{ gap: 16px; }
  .car-nav{ display: none !important; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap{ max-width: 960px; }
.faq{ border-bottom: 1px solid var(--line); }
.faq summary{ list-style: none; cursor: pointer; position: relative; padding: 26px 56px 26px 0;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.1rem, 1.4vw, 1.32rem); letter-spacing: .015em; line-height: 1.16;
  transition: color .2s var(--ease); }
.faq summary::-webkit-details-marker{ display: none; }
.faq summary:hover{ color: var(--text-2); }
.faq summary::after{ content: ""; position: absolute; right: 4px; top: 50%; width: 14px; height: 14px;
  margin-top: -7px; border-right: 3px solid var(--ember); border-bottom: 3px solid var(--ember);
  transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease); }
.faq[open] summary::after{ transform: rotate(-135deg) translateY(-3px); }
.faq-body{ padding: 0 56px 30px 0; color: var(--text-2); font-size: 15.5px; max-width: 72ch; }
.faq-body a{ color: var(--ink); font-weight: 700; text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ============================================================
   FORM FIELDS — the hero booking card runs dark
   ============================================================ */
.fld{ margin-bottom: 16px; }
.fld label{ display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 9px; }
.fld input, .fld select, .fld textarea{ width: 100%; font: inherit; font-size: 15.5px; color: var(--white);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.45); padding: 15px 16px; border-radius: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease); }
.fld input::placeholder, .fld textarea::placeholder{ color: rgba(255,255,255,.62); }
.fld input:focus, .fld select:focus, .fld textarea:focus{ outline: none; border-color: var(--ember);
  background: rgba(255,255,255,.14); }
.fld select{ appearance: none; padding-right: 40px; background-repeat: no-repeat; background-position: right 16px center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>"); }
.fld select option{ color: var(--ink); background: var(--paper); }
.fld.two{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fld.two > div{ margin: 0; }
.fld input.err, .fld select.err{ border-color: #FF9C7A; }
.quote-card .btn{ width: 100%; margin-top: 6px; }
.f-status{ font-size: 13.5px; color: var(--white); margin-top: 14px; }
.f-status a{ color: var(--ember-lt); text-decoration: underline; text-decoration-thickness: 2px; }
.f-note{ font-size: 12px; color: var(--white); text-align: center; margin-top: 14px; }

/* ============================================================
   CONTACT BAND — graphite. Two-stop gradient + noise (anti-dither).
   ============================================================ */
.contact-band{ position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--ink-2) 0%, var(--ink-3) 100%); }
.contact-inner{ position: relative; z-index: 1; width: var(--page-max); margin-inline: auto;
  padding-block: var(--sec-y); display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 88px); align-items: start; }
/* The estimate form lives here now, on the dark green field, so the hero can
   stay pure scenery. Fields already run the dark scheme. */
.contact-form{ background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  padding: clamp(24px, 2.4vw, 36px); }
.contact-form h3{ font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  color: var(--white); font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1; margin-bottom: 8px; }
.contact-form .q-sub{ font-size: 14.5px; color: var(--white); margin-bottom: 22px; }
.contact-form .btn{ width: 100%; margin-top: 6px; }
.contact-copy .eyebrow{ color: var(--white); }
.contact-copy .h-sec{ color: var(--white); }
.contact-copy .hl{ box-shadow: inset 0 -.14em 0 var(--ember); }
.contact-copy p{ color: rgba(255,255,255,.86); margin-top: 22px; max-width: 42ch; font-size: 1.04rem; }
.contact-facts{ display: flex; flex-direction: column; }
.contact-facts > a, .contact-facts > span{ display: flex; align-items: baseline; gap: 18px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16); font-size: 16px; color: var(--white); }
.contact-facts > *:last-child{ border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-facts .k{ flex: 0 0 104px; font-size: 12px; font-weight: 700;
  letter-spacing: var(--track); text-transform: uppercase; color: var(--ember-lt); }
.contact-facts > a:hover{ color: var(--ember-lt); }

/* ============================================================
   CTA BAND — full-bleed clip. Same fade device as the hero, so the
   house is visible rather than buried under a panel.
   ============================================================ */
.cta{ position: relative; min-height: clamp(420px, 56vh, 580px); display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink); }
.cta img.cta-poster, .cta video{ position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 55%; z-index: 0; }
.cta video{ opacity: 0; transition: opacity 1s var(--ease); }
.cta video.ready{ opacity: 1; }
.cta .hero-fade{ height: 62%; }
.cta-inner{ position: relative; z-index: 2; width: var(--page-max); margin-inline: auto;
  padding-block: clamp(40px, 5.5vh, 68px); }
.cta-copy{ max-width: 640px; }
.cta-copy .eyebrow{ color: var(--white); }
.cta-copy .h-sec{ color: var(--white); margin-bottom: 14px;
  text-shadow: 0 3px 26px rgba(10,9,7,.85), 0 1px 4px rgba(10,9,7,.6); }
.cta-copy p{ color: var(--white); margin-bottom: 26px; max-width: 42ch;
  text-shadow: 0 2px 16px rgba(10,9,7,.95), 0 1px 3px rgba(10,9,7,.8); }
.cta-btns{ display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cta .tlink{ color: var(--white); }
.cta .tlink::after{ background: rgba(255,255,255,.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ position: relative; overflow: hidden;
  background: linear-gradient(178deg, var(--ink-2) 0%, var(--ink-3) 100%); }
.footer-inner{ position: relative; z-index: 1; width: var(--page-max); margin-inline: auto;
  padding: clamp(58px, 7vw, 92px) 0 40px; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand-name{ color: var(--white); }
.footer .brand-sub{ color: var(--ember-lt); }
.footer .f-brand p{ margin-top: 20px; color: #A8A9B0; font-size: 14.5px; max-width: 34ch; }
.footer h3{ font-size: 12px; font-weight: 700; letter-spacing: var(--track);
  text-transform: uppercase; color: var(--ember-lt); margin-bottom: 20px; }
.footer li{ margin-bottom: 12px; }
.footer li a, .footer li span{ font-size: 14.5px; color: #C0C1C7; transition: color .2s var(--ease); }
.footer li a:hover{ color: var(--ember-lt); }
.footer-bottom{ position: relative; z-index: 1; width: var(--page-max); margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0 30px; display: flex; flex-wrap: wrap;
  gap: 10px 28px; justify-content: space-between; font-size: 12.5px; color: #A8A9B0; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.sticky{ position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: 10px;
  justify-content: center; pointer-events: none;
  padding: 0 var(--gutter) calc(16px + env(safe-area-inset-bottom, 0px));
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease); }
.sticky.show{ opacity: 1; visibility: visible; transform: none; }
.sticky a{ pointer-events: auto; flex: 0 1 auto; justify-content: center; white-space: nowrap;
  padding: 17px 22px; font-size: 13px; letter-spacing: .1em; border-radius: 999px;
  box-shadow: 0 16px 38px -8px rgba(16,17,21,.7); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb{ position: fixed; inset: 0; z-index: 130; display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 54px); background: rgba(16,17,21,.97); opacity: 0; transition: opacity .3s var(--ease); }
.lb.open{ display: flex; opacity: 1; }
.lb-stage{ position: relative; max-width: 1180px; width: 100%; }
.lb-stage img{ width: 100%; max-height: 80vh; object-fit: contain; background: #000; }
.lb-cap{ margin-top: 16px; text-align: center; font-family: var(--font-mono); font-weight: 700;
  text-transform: uppercase; color: var(--white); letter-spacing: .06em; font-size: 17px; }
.lb-cap .c{ color: var(--ember-lt); margin-left: 12px; }
.lb-btn{ position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px;
  background: var(--paper); color: var(--ink); display: grid; place-items: center; }
.lb-btn:hover{ background: var(--ember); color: var(--ink); }
.lb-prev{ left: -10px; } .lb-next{ right: -10px; }
.lb-btn svg{ width: 22px; height: 22px; }
.lb-close{ position: fixed; top: 22px; right: 24px; width: 48px; height: 48px; background: rgba(255,255,255,.16);
  color: var(--white); display: grid; place-items: center; }
.lb-close:hover{ background: var(--ember); color: var(--ink); }
.lb-close svg{ width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px){
  .creed-grid{ grid-template-columns: 1fr; gap: 30px; }
  .areas{ grid-template-columns: 1fr 1fr; }
  .contact-inner{ grid-template-columns: 1fr; gap: 34px; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .hero-grid{ grid-template-columns: 1fr; gap: 30px; }
  .hero{ align-items: flex-start; min-height: auto; padding-bottom: 64px; }
  .about-panel{ max-width: 560px; }
}
@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-phone{ display: none; }
  .nav-cta{ display: none; }
  .menu-btn{ display: block; }
  .sticky{ display: flex; }
  .hero-ctas{ width: 100%; }
  .hero-ctas .btn{ flex: 1; }
  /* Phones get the 9:16 recut pinned to the first viewport — the copy rides
     it and the card scrolls in below, so the plate is still enjoyable. */
  .hero-media{ bottom: auto; height: 100svh; }
  .hero-inner{ margin-top: clamp(170px, 26vh, 300px); }
  .hero-pause{ bottom: auto; top: calc(100svh - 58px); right: var(--gutter); }
  .car-head{ flex-direction: column; align-items: flex-start; gap: 24px; }
  .about-inner{ grid-template-columns: 1fr; gap: 28px; }
  .about-figure img{ aspect-ratio: 3 / 2; }
  .cta{ min-height: clamp(400px, 62vh, 520px); }
  .slots{ flex-direction: column; height: auto; }
  .slot{ flex: none; height: 88px; transition: height .5s var(--ease); }
  .slot.open{ flex-grow: 0; height: 470px; }
  .slot .svc-n{ top: 50%; transform: translateY(-50%); }
  .slot.open .svc-n{ top: 0; transform: none; }
  .slot-tag{ writing-mode: horizontal-tb; transform: translateY(-50%); left: 62px; top: 50%; bottom: auto;
    padding: 9px 14px; }
  .slot-body{ width: auto; right: 0; }
}
@media (max-width: 640px){
  body{ font-size: 16px; }
  :root{ --sec-y: clamp(64px, 12vw, 92px); }
  .areas{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; gap: 34px; }
  .fld.two{ grid-template-columns: 1fr; gap: 0; }
  .hero-ctas{ flex-direction: column; }
  .hero-ctas .btn{ width: 100%; }
  .about-panel{ max-width: none; padding: 26px 22px; }
  .about-list{ grid-template-columns: 1fr; gap: 8px; }
  .lb-prev{ left: 2px; } .lb-next{ right: 2px; }
  .contact-facts .k{ flex-basis: 84px; }
}
/* Small phones — the hero CTAs must clear the fold */
@media (max-width: 900px) and (max-height: 720px){
  .hero{ padding-top: calc(var(--nav-h) + 8px); }
  .hero-inner{ margin-top: clamp(120px, 20vh, 180px); }
  .h-hero{ font-size: 2.1rem; }
  .hero-sub{ font-size: .88rem; margin-top: 8px; }
  .hero-ctas{ margin-top: 14px; gap: 8px; }
  .hero-ctas .btn{ padding: 13px 16px; font-size: 11.5px; }
  .hero-chips{ display: none; }
}
