/* =============================================================
   Crestview Heating & Air — Standard tier
   Thesis: "the relief of a perfectly conditioned room on the
   worst day of the year." Dark, warm, dialed-in. A gauge/ember
   visual system — comfort you can feel.

   Motion signature: the COMFORT GAUGE — arc sweeps and the
   readout counts up to the 71° setpoint, then the glow blooms
   ("reaching temperature").
   Ambient system: HEAT RISE — the room comes up to temperature
   as you move through the page: a radiant field at the foot of
   the viewport warms with scroll, warm supply-air seams bleed
   from every section joint, and photos rest slightly cool and
   warm to setpoint on hover.

   Hand-authored CSS + design tokens. No build, no Tailwind.
   ============================================================= */

:root {
  /* Palette — warm dark espresso + ember, with a cool accent
     Contrast (WCAG, on --espresso #1c1714): cream 14.4:1, cream-2 9.6:1,
     mute 5.3:1, ember 6.7:1, ember-2 8.8:1, cool 7.1:1. On --espresso-2:
     cream-2 9.0:1, mute 4.9:1, ember 6.2:1. All AA. */
  --espresso:   #1c1714;
  --espresso-2: #241d18;   /* panels */
  --espresso-3: #2e251e;   /* raised */
  --cream:      #efe6d8;
  --cream-2:    #cabdab;
  --mute:       #978a79;
  --ember:      #e08a3c;   /* heat accent */
  --ember-2:    #f0a85a;
  --cool:       #84a9b6;   /* cooling accent, used sparingly */
  --line:       rgba(239,230,216,0.14);
  --line-2:     rgba(239,230,216,0.28);

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --sans:    "Figtree", system-ui, -apple-system, sans-serif;
  --mono:    "DM Mono", ui-monospace, monospace;

  --fs-hero: clamp(2.5rem, 1.2rem + 5.2vw, 5rem);
  --fs-h2:   clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
  --fs-h3:   clamp(1.3rem, 1.05rem + 1vw, 1.7rem);
  --fs-lede: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-mark: 0.72rem;

  --bound: 72rem;
  --gut: clamp(1.15rem, 0.5rem + 2.6vw, 2.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; background: var(--espresso); }
body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--espresso); color: var(--cream);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* HEAT RISE — the ambient system. A fixed radiant layer behind everything:
   the two corner pools (ember above, a cool draft below-left) plus a floor
   glow whose warmth tracks scroll progress (--heat, set by JS; static 0.35
   without JS or with reduced motion — page reads identically, just calmer). */
.heat {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(224,138,60,0.16), transparent 70%),
    radial-gradient(55% 45% at 0% 100%, rgba(132,169,182,0.08), transparent 70%);
}
.heat::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 60% at 50% 112%, rgba(224,138,60,0.20), transparent 66%);
  opacity: var(--heat, 0.35); transition: opacity 0.35s linear;
}

/* grain — one whisper of texture over the conditioned air */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; overflow-wrap: break-word; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--ember); color: var(--espresso); }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ember); color: var(--espresso); padding: 0.8rem 1.2rem; font-weight: 700; }
.skip:focus { left: 0.5rem; top: 0.5rem; }

.shell { width: 100%; max-width: var(--bound); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(4rem, 2.5rem + 6vw, 8rem); }
.section--line { border-top: 1px solid var(--line); }
/* supply-air seam — warm air bleeding through every section joint (HEAT RISE) */
.section--line::before {
  content: ""; position: absolute; top: -1px; height: 1px; pointer-events: none;
  left: max(var(--gut), calc((100% - var(--bound)) / 2 + var(--gut)));
  width: min(18rem, 40%);
  background: linear-gradient(90deg, rgba(224,138,60,0.7), rgba(224,138,60,0.22) 60%, transparent);
}

.mark { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.mark--e { color: var(--ember); }

/* ---- Top bar + header ---- */
.titlebar { border-bottom: 1px solid var(--line); }
.titlebar .shell { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; }
.titlebar .lic { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.titlebar .lic .hide { display: none; }
@media (min-width: 680px) { .titlebar .lic .hide { display: inline; } }
.titlebar a { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.08em; color: var(--cream); transition: color 0.2s var(--ease); }
.titlebar a:hover { color: var(--ember); }

.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--espresso) 90%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .shell { display: flex; align-items: center; justify-content: space-between; height: 4.6rem; gap: 1.25rem; }
.brand { display: flex; align-items: baseline; gap: 0.5rem; }
.brand b { font-family: var(--display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; }
.brand span { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.nav { display: none; align-items: center; gap: 1.9rem; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 0.95rem; color: var(--cream-2); position: relative; padding-block: 0.2rem; transition: color 0.2s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav a:hover { color: var(--cream); } .nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--cream); } .nav a[aria-current="page"]::after { transform: scaleX(1); }

.btn { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.8rem 1.4rem; background: var(--ember); color: var(--espresso); border: 1px solid var(--ember); font-weight: 500; transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease); }
.btn:hover { background: var(--ember-2); border-color: var(--ember-2); transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(224,138,60,0.55); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn--ghost:hover { background: transparent; color: var(--ember); border-color: var(--ember); transform: translateY(-1px); box-shadow: none; }

.menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border: 1px solid var(--line-2); background: none; color: var(--cream); cursor: pointer; }
@media (min-width: 900px) { .menu-btn { display: none; } }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--espresso-2); }
.mobile-nav.open { display: block; }
.mobile-nav .shell { display: flex; flex-direction: column; padding-block: 0.8rem; height: auto; } /* height:auto overrides .site-header .shell fixed bar height */
.mobile-nav a { padding-block: 0.65rem; border-bottom: 1px solid var(--line); color: var(--cream-2); }
/* No JS: hide the dead menu button; render the mobile nav statically (desktop keeps the inline nav) */
html:not(.js) .menu-btn { display: none; }
html:not(.js) .mobile-nav { display: block; }
@media (min-width: 900px) { html:not(.js) .mobile-nav { display: none; } }

/* ---- Hero with gauge ---- */
.hero { padding-top: clamp(2.5rem, 1rem + 4vw, 4.5rem); }
.hero-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); } }
.hero h1 { font-size: var(--fs-hero); }
.hero h1 .em { color: var(--ember); }
.hero .lede { font-size: var(--fs-lede); color: var(--cream-2); max-width: 40ch; margin-top: 1.5rem; }
.hero .actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---- Hero load-in choreography (once per load, JS-gated) ----
   kicker -> headline lines -> lede -> actions -> gauge, each on --i.
   Headline lines rise out of a clipped line box; the clip gets a
   0.12em descender allowance so g/j never shear at rest. */
.hero h1 .hl { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero h1 .hl > span { display: block; }
.js [data-hero] { opacity: 0; animation: hero-rise 0.8s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.13s + 0.05s); }
.js .hero h1 .hl > span { transform: translateY(112%); animation: hero-line 0.9s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.13s + 0.05s); }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hero-line { from { transform: translateY(112%); } to { transform: none; } }

/* the comfort gauge — an arc that sweeps to "just right" (motion signature) */
.gauge { position: relative; aspect-ratio: 1; max-width: 23rem; margin-inline: auto; }
.gauge svg { width: 100%; height: 100%; transform: rotate(135deg); }
.gauge .track { fill: none; stroke: var(--line); stroke-width: 6; stroke-linecap: round; }
.gauge .fill { fill: none; stroke: var(--ember); stroke-width: 6; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(224,138,60,0)); transition: filter 1s var(--ease); }
.js .gauge .fill { transition: stroke-dashoffset 1.6s var(--ease), filter 1s var(--ease); }
/* the room reaching temperature — warm bloom once the arc lands on 71° */
.gauge::before { content: ""; position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 54%, rgba(224,138,60,0.20), transparent 72%);
  opacity: 0; transition: opacity 1.4s var(--ease); }
.gauge.at-temp::before, html:not(.js) .gauge::before { opacity: 1; }
.gauge.at-temp .fill { filter: drop-shadow(0 0 7px rgba(224,138,60,0.55)); }
html:not(.js) .gauge .fill { filter: drop-shadow(0 0 7px rgba(224,138,60,0.55)); }
.gauge .center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.gauge .temp { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 1.5rem + 3vw, 3.4rem); line-height: 1; font-variant-numeric: tabular-nums; }
.gauge .temp .deg { color: var(--ember); }
.gauge .cap { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-top: 0.5rem; }
.gauge .scale { position: absolute; bottom: 12%; width: 100%; display: flex; justify-content: space-between; padding-inline: 14%; font-family: var(--mono); font-size: 0.66rem; color: var(--mute); }

/* ---- Section head ---- */
.head { max-width: 52rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.head h1, .head h2 { font-size: var(--fs-h2); margin-top: 0.9rem; }
.head h1 .em, .head h2 .em { color: var(--ember); }
.head p { color: var(--cream-2); margin-top: 1rem; max-width: 48ch; }

/* ---- Service panels — layered espresso, edge catch-light, one light source ---- */
.panels { display: grid; gap: 1.25rem; }
@media (min-width: 680px) { .panels { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .panels.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.panel { background-color: var(--espresso-2);
  background-image: linear-gradient(180deg, rgba(239,230,216,0.04), transparent 44%);
  box-shadow: inset 0 1px 0 rgba(239,230,216,0.07);
  border: 1px solid var(--line); padding: 1.6rem 1.5rem 1.8rem; position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.3s var(--ease); }
.panel:hover { border-color: color-mix(in srgb, var(--ember) 55%, transparent); transform: translateY(-3px); background-color: var(--espresso-3);
  box-shadow: inset 0 1px 0 rgba(240,168,90,0.4), 0 18px 36px -20px rgba(0,0,0,0.65); }
.panel .pico { width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center; color: var(--ember); border: 1px solid color-mix(in srgb, var(--ember) 40%, transparent); border-radius: 50%; margin-bottom: 1.1rem; }
.panel .pico svg { width: 1.25rem; height: 1.25rem; }
.panel h3 { font-size: var(--fs-h3); }
.panel p { color: var(--cream-2); margin-top: 0.6rem; font-size: 0.97rem; }
.panel .more { margin-top: 1.1rem; display: inline-flex; gap: 0.45rem; font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); }
.panel .more .arrow { transition: transform 0.3s var(--ease); }
.panel:hover .more .arrow { transform: translateX(4px); }

/* ---- Stats ---- */
.stats { display: grid; gap: 1.5rem; }
@media (min-width: 680px) { .stats { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.stat { border-top: 2px solid var(--ember); padding-top: 1rem; }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 1.5rem + 2vw, 3rem); line-height: 1; }
.stat span { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }

/* ---- Split / story ---- */
.split { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--espresso-3); border: 1px solid var(--line); }
.media img { width: 100%; height: 100%; object-fit: cover;
  /* HEAT RISE: photos rest slightly cool, warm to setpoint on hover */
  filter: saturate(0.85) sepia(0.08) brightness(0.93);
  transition: filter 0.6s var(--ease); }
.media:hover img, .media:focus-within img { filter: none; }
.js .media img { transform: scale(1.05); transition: transform 1.3s var(--ease), clip-path 1.1s var(--ease), filter 0.6s var(--ease); clip-path: inset(0 0 100% 0); }
.js .in-view .media img { transform: scale(1); clip-path: inset(0 0 0 0); }
.media .tag { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--ember); color: var(--espresso); font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.6rem; }
.prose .lede { font-family: var(--display); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); font-weight: 600; line-height: 1.3; }
.prose .lede .em { color: var(--ember); }
.prose p + p { margin-top: 1rem; color: var(--cream-2); }

/* ---- The room log — filmstrip gallery ----
   Frames sit on a rail like prints clipped to a wire; each carries a
   mono setpoint plate. Native horizontal scroll-snap: works untouched
   without JS, keyboard-scrollable via tabindex on the strip. */
.strip-wrap { position: relative; margin-top: clamp(1rem, 0.5rem + 2vw, 2rem); }
.strip { display: flex; align-items: flex-end; gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
  overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 1rem;
  padding-inline: max(var(--gut), calc((100vw - var(--bound)) / 2 + var(--gut)));
  scrollbar-width: thin; scrollbar-color: var(--ember) transparent; }
.frame { flex: 0 0 min(24rem, 76vw); scroll-snap-align: start; }
.frame:nth-child(3n+2) { flex-basis: min(17rem, 58vw); }
.frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(239,230,216,0.07);
  filter: saturate(0.85) sepia(0.10) brightness(0.9); transition: filter 0.5s var(--ease), border-color 0.3s var(--ease); }
.frame:nth-child(3n+2) img { aspect-ratio: 3/4; }
.frame:hover img, .frame:focus-within img { filter: none; border-color: color-mix(in srgb, var(--ember) 45%, transparent); }
.frame .plate { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; margin-top: 0.65rem;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.frame .plate .ptemp { color: var(--ember); white-space: nowrap; }
/* the strip fades into the room at both ends */
.strip-wrap::before, .strip-wrap::after { content: ""; position: absolute; top: 0; bottom: 1rem; width: clamp(1rem, 5vw, 4.5rem); pointer-events: none; z-index: 1; }
.strip-wrap::before { left: 0; background: linear-gradient(90deg, var(--espresso), transparent); }
.strip-wrap::after { right: 0; background: linear-gradient(270deg, var(--espresso), transparent); }

/* ---- Quote ---- */
.quote { max-width: 46rem; }
.quote blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem); line-height: 1.3; }
.quote .by { margin-top: 1.3rem; }
.stars { color: var(--ember); letter-spacing: 0.15em; }

/* ---- Contact ---- */
.contact { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 3rem); }
@media (min-width: 900px) { .contact { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.05rem; }
.field label { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.field input, .field textarea, .field select { font-family: var(--sans); font-size: 1rem; color: var(--cream); background: var(--espresso-2); border: 1px solid var(--line-2); padding: 0.75rem 0.85rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(224,138,60,0.18); }
.info .row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-block: 0.85rem; border-bottom: 1px solid var(--line); }
.info dt { font-family: var(--mono); font-size: var(--fs-mark); letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.info dd { margin: 0; }
.info .big { font-family: var(--display); font-weight: 700; font-size: 1.6rem; transition: color 0.2s var(--ease); }
.info .big:hover { color: var(--ember); }
.map { border: 1px solid var(--line-2); aspect-ratio: 3/2; margin-top: 1.25rem; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ---- CTA band ---- */
.band { background: linear-gradient(120deg, var(--espresso-3), var(--espresso-2)); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(239,230,216,0.07); padding: clamp(2rem, 1.5rem + 3vw, 3.5rem); position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 85% 100%, rgba(224,138,60,0.10), transparent 65%); }
.band > * { position: relative; }
.band h2 { font-size: var(--fs-h2); max-width: 18ch; }
.band h2 .em { color: var(--ember); }
.band p { color: var(--cream-2); margin-top: 1rem; max-width: 44ch; }
.band .actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); }
.site-footer .shell { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.foot-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.foot-grid .blurb { color: var(--cream-2); max-width: 32ch; margin-top: 0.9rem; font-size: 0.95rem; }
.foot-col .mark { margin-bottom: 0.9rem; }
.foot-col li { padding-block: 0.3rem; }
.foot-col a, .foot-bar a { background-image: linear-gradient(currentColor, currentColor); background-repeat: no-repeat; background-size: 0 1px; background-position: 0 100%; transition: background-size 0.3s var(--ease), color 0.2s var(--ease); }
.foot-col a:hover, .foot-bar a:hover { color: var(--ember); background-size: 100% 1px; }
.foot-bar { border-top: 1px solid var(--line); }
.foot-bar .shell { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem; padding-block: 1.1rem; }

/* ---- Reveal ---- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].in-view { opacity: 1; transform: none; }
.js [data-stagger].in-view > * { animation: rise 0.6s var(--ease) both; }
.js [data-stagger] > * { opacity: 0; }
.js [data-stagger].in-view > *:nth-child(2) { animation-delay: 0.08s; }
.js [data-stagger].in-view > *:nth-child(3) { animation-delay: 0.16s; }
.js [data-stagger].in-view > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---- Reduced motion: every animation dies, states jump to final ---- */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-stagger] > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .js [data-hero], .js .hero h1 .hl > span { opacity: 1 !important; transform: none !important; animation: none !important; }
  .js .media img { clip-path: none; transform: none; }
  .js .gauge .fill { transition: none; }
  .heat::after { opacity: 0.35; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
