/* ==========================================================================
   EverGlow Christmas Lighting — Design System
   Deep evergreen, clean white, warm Christmas gold, a touch of red.
   ========================================================================== */

/* --- 0. Fonts (self-hosted, SIL Open Font License: see assets/fonts/OFL-*.txt) --- */
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* Evergreen */
  --evergreen-950: #05120D;
  --evergreen-900: #0A1D16;
  --evergreen-800: #0F281E;
  --evergreen-700: #153527;
  --evergreen-600: #1C4633;
  --evergreen-500: #2A6049;
  --evergreen-300: #8CB2A1;

  /* Gold */
  --gold-300: #F2D796;
  --gold-400: #E6BF6A;
  --gold-500: #D6A548;
  --gold-600: #A87B25;

  /* Red — accent only */
  --red-500: #C3323A;
  --red-600: #A5242C;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FBF8F1;
  --cream-2: #F3EDE0;
  --ink: #0E1D17;
  --ink-soft: #4A5D54;
  --text-on-dark: #EEF3EE;
  --muted-on-dark: #A6B9AF;
  --line-dark: rgba(255, 255, 255, .10);
  --line-light: rgba(14, 29, 23, .10);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space + shape */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --maxw: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Effects */
  --shadow-card: 0 1px 2px rgba(14, 29, 23, .05), 0 14px 34px -12px rgba(14, 29, 23, .16);
  --shadow-lift: 0 2px 6px rgba(14, 29, 23, .06), 0 30px 60px -20px rgba(14, 29, 23, .28);
  --glow-gold: 0 10px 30px -10px rgba(214, 165, 72, .75);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .15vw, 1.07rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 1.5rem + 4.6vw, 5.4rem); line-height: 1.0; }
h2 { font-size: clamp(2.05rem, 1.35rem + 2.7vw, 3.4rem); }
h3 { font-size: clamp(1.22rem, 1.1rem + .5vw, 1.5rem); line-height: 1.2; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; border-radius: 6px; }

/* --- 3. Layout ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3.25rem, 6vw, 5rem); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--evergreen-900); color: var(--text-on-dark);
}
.section--dark h2, .section--dark h3 { color: #fff; }

/* Kept for the quote page */
.section--light { background: var(--cream); color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600); margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500); box-shadow: 0 0 0 4px rgba(214, 165, 72, .18), 0 0 12px rgba(214, 165, 72, .8);
}
.section--dark .eyebrow, .hero .eyebrow, .quote-hero .eyebrow, .ctaq .eyebrow { color: var(--gold-300); }

.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lede { font-size: clamp(1.06rem, 1rem + .35vw, 1.25rem); color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; }
.section--dark .lede, .quote-hero .lede { color: var(--muted-on-dark); }

/* --- 4. Buttons ---------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.6rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 700; font-size: .84rem; line-height: 1;
  letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
a[href^="mailto:"] { overflow-wrap: anywhere; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--gold, .btn--primary {
  background: linear-gradient(180deg, #EDCB78 0%, var(--gold-500) 55%, #C8923A 100%);
  color: var(--evergreen-950);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), var(--glow-gold);
}
.btn--gold::after, .btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn--gold:hover, .btn--primary:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 18px 40px -12px rgba(214, 165, 72, .9); }
.btn--gold:hover::after, .btn--primary:hover::after { transform: translateX(120%); }

.btn--glass {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .38); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }
.btn--red { background: var(--red-600); color: #fff; box-shadow: 0 10px 24px -12px rgba(165, 36, 44, .8); }
.btn--red:hover { background: var(--red-500); }
.btn--outline { border-color: rgba(14, 29, 23, .22); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); background: rgba(14, 29, 23, .04); }
.btn--dark { background: var(--evergreen-800); color: #fff; }
.btn--dark:hover { background: var(--evergreen-700); }
.btn--outline-dark { border-color: rgba(14, 29, 23, .22); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--ink); background: rgba(14, 29, 23, .04); }
.btn--lg { padding: 1.2rem 2.05rem; font-size: .9rem; }
.btn--sm { padding: .78rem 1.2rem; font-size: .74rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* --- 5. Header ----------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem; padding-top: calc(1.1rem + env(safe-area-inset-top, 0px)); color: #fff;
  transition: background-color .35s var(--ease), padding .35s var(--ease), box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(8, 26, 19, .94);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-dark); padding-block: .65rem; padding-top: calc(.65rem + env(safe-area-inset-top, 0px));
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.header__inner { display: flex; align-items: center; gap: 1.75rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; color: #fff; }
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.42rem; letter-spacing: -.01em; }
.brand__name em { font-style: normal; color: var(--gold-400); }
.brand__sub { font-size: .58rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: .34rem; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2rem; }
.nav__link {
  text-decoration: none; font-size: .92rem; font-weight: 500; color: rgba(255, 255, 255, .85);
  position: relative; padding-block: .35rem; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--gold-400); transition: right .3s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { right: 0; }
.nav__cta { display: none; }
.header__cta { display: flex; align-items: center; gap: 1.15rem; }
.header__phone {
  text-decoration: none; font-weight: 600; font-size: .92rem; color: #fff;
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
}
.header__phone svg { width: 15px; height: 15px; color: var(--gold-400); }
.header__phone:hover { color: var(--gold-300); }
.navtoggle {
  display: none; background: rgba(255, 255, 255, .06); border: 1px solid var(--line-dark);
  width: 46px; height: 46px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; margin-left: auto;
}
.navtoggle span { display: block; width: 19px; height: 1.5px; background: #fff; position: relative; transition: background .2s; }
.navtoggle span::before, .navtoggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px; background: #fff;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.navtoggle span::before { top: -6px; }
.navtoggle span::after { top: 6px; }
.nav-open .navtoggle span { background: transparent; }
.nav-open .navtoggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .navtoggle span::after { top: 0; transform: rotate(-45deg); }

/* --- 6. Hero ------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(660px, 100svh, 980px);
  display: flex; align-items: center;
  background: var(--evergreen-950); color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 60%; }
.hero__snow { position: absolute; inset: 0; z-index: -1; pointer-events: none; width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 16, 11, .92) 0%, rgba(4, 16, 11, .82) 28%, rgba(4, 16, 11, .45) 45%, rgba(4, 16, 11, 0) 60%),
    linear-gradient(180deg, rgba(4, 16, 11, .6) 0%, rgba(4, 16, 11, 0) 20%, rgba(4, 16, 11, 0) 72%, rgba(4, 16, 11, .75) 100%);
}
.hero__inner { padding-top: clamp(7rem, 16vh, 9rem); padding-bottom: clamp(4rem, 10vh, 6rem); width: 100%; }
.hero__content { max-width: 620px; }
.hero h1 { color: #fff; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero h1 em {
  font-style: italic; font-weight: 400; color: var(--gold-300);
  text-shadow: 0 0 28px rgba(242, 215, 150, .55), 0 0 80px rgba(230, 191, 106, .35);
}
.hero__sub {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); color: rgba(238, 243, 238, .88);
  max-width: 25em; margin-bottom: 2.1rem; line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .75rem;
  font-size: .9rem; font-weight: 500; color: rgba(238, 243, 238, .85); letter-spacing: .01em;
}
.hero__trust span { white-space: nowrap; }
.hero__trust i { font-style: normal; color: var(--gold-400); margin-right: .45rem; }
.hero__caption {
  position: absolute; right: var(--gutter); bottom: 1.1rem; margin: 0;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .45);
}
.hero__caption a { color: inherit; text-underline-offset: 2px; }
.hero__caption a:hover { color: #fff; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 14px;
}
.hero__scroll::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: var(--gold-300); animation: scrollcue 2s var(--ease) infinite;
}
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* entrance */
.hero .rise { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.hero .rise:nth-child(2) { animation-delay: .1s; }
.hero .rise:nth-child(3) { animation-delay: .2s; }
.hero .rise:nth-child(4) { animation-delay: .3s; }
.hero .rise:nth-child(5) { animation-delay: .4s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* --- 7. Urgency banner --------------------------------------------------- */
.urgency {
  position: relative; background: var(--cream); color: var(--ink);
  border-bottom: 1px solid var(--line-light);
}
.urgency::before {                      /* a string of tiny bulbs along the top edge */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--evergreen-700), var(--gold-500) 30%, var(--red-600) 50%, var(--gold-500) 70%, var(--evergreen-700));
}
.urgency__inner { display: flex; align-items: center; gap: 1.1rem 1.4rem; padding-block: 1.15rem; }
.urgency__icon {
  position: relative; flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.45rem; line-height: 1;
  background: #fff; box-shadow: 0 6px 18px -8px rgba(14, 29, 23, .35), inset 0 0 0 1px var(--line-light);
}
.urgency__icon::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid rgba(165, 36, 44, .45); animation: ring 2.6s var(--ease) infinite;
}
@keyframes ring { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.25); opacity: 0; } }
.urgency__text { display: flex; flex-direction: column; gap: .1rem; }
.urgency__text strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); letter-spacing: -.01em; }
.urgency__text span { font-size: .95rem; color: var(--ink-soft); }
.urgency .btn { margin-left: auto; }

/* --- 8. Process ---------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; position: relative; }
.process::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 58px; height: 0;
  border-top: 1.5px dashed rgba(168, 123, 37, .45); z-index: 0;
}
.pcard {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg);
  padding: 1.6rem 1.35rem 1.6rem; box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(214, 165, 72, .5); }
.pcard__icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--evergreen-600), var(--evergreen-900));
  color: var(--gold-300); box-shadow: 0 12px 24px -12px rgba(10, 29, 22, .7), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.pcard__icon svg { width: 28px; height: 28px; }
.pcard__num {
  position: absolute; top: 1.45rem; right: 1.35rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: rgba(168, 123, 37, .7);
}
.pcard h3 { margin: 1.25rem 0 .45rem; }
.pcard p { font-size: .94rem; color: var(--ink-soft); line-height: 1.58; }

.never {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.75rem 2.5rem; align-items: center;
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border-radius: var(--r-xl); color: #fff; overflow: hidden; position: relative;
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(214, 165, 72, .22), transparent 60%),
    radial-gradient(50% 100% at 0% 100%, rgba(42, 96, 73, .5), transparent 70%),
    var(--evergreen-900);
  box-shadow: var(--shadow-lift);
}
.never h3 { color: #fff; font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-bottom: 1.1rem; }
.never__list { display: flex; flex-wrap: wrap; gap: .6rem; }
.never__item {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .62rem 1.05rem .62rem .75rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .13);
  font-size: .93rem; color: rgba(238, 243, 238, .92);
}
.never__item svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }

/* --- 9. Before / after --------------------------------------------------- */
.ba-section {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(42, 96, 73, .45), transparent 70%),
    radial-gradient(40% 40% at 85% 90%, rgba(214, 165, 72, .12), transparent 70%),
    var(--evergreen-900);
}
.ba {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-xl); overflow: hidden;
  background: #0b1424; user-select: none; -webkit-user-select: none; touch-action: pan-y;
  box-shadow: 0 0 0 1px rgba(242, 215, 150, .22), 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 80px -20px rgba(214, 165, 72, .25);
  --pos: 50%;
}
.ba picture, .ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba img { pointer-events: none; -webkit-user-drag: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.ba__label {
  position: absolute; top: 1.1rem; z-index: 2;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(5, 18, 13, .62); color: #fff; border: 1px solid rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); pointer-events: none;
}
.ba__label--before { left: 1.1rem; }
.ba__label--after { right: 1.1rem; color: var(--gold-300); border-color: rgba(242, 215, 150, .4); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; z-index: 2;
  background: linear-gradient(180deg, rgba(242, 215, 150, 0), var(--gold-300) 12%, var(--gold-300) 88%, rgba(242, 215, 150, 0));
  box-shadow: 0 0 18px rgba(242, 215, 150, .8); pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; width: 56px; height: 56px; transform: translate(-50%, -50%);
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, #F0D08A, var(--gold-500)); color: var(--evergreen-950);
  box-shadow: 0 0 0 6px rgba(242, 215, 150, .2), 0 10px 30px rgba(0, 0, 0, .5), 0 0 30px rgba(242, 215, 150, .6);
  transition: transform .25s var(--ease);
}
.ba__knob svg { width: 26px; height: 26px; }
.ba { cursor: ew-resize; }
/* the range input is there for keyboards and screen readers; pointer input is handled in JS */
.ba__range {
  position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; margin: 0;
  opacity: 0; pointer-events: none; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range:focus-visible ~ .ba__handle .ba__knob { transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 0 0 4px var(--gold-300), 0 10px 30px rgba(0, 0, 0, .5); }
.ba:hover .ba__knob { transform: translate(-50%, -50%) scale(1.06); }
.ba-caption { margin-top: 1.1rem; font-size: .84rem; color: var(--muted-on-dark); text-align: center; }
.ba-features { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: 2rem; }
.ba-features li {
  display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border-radius: var(--r-pill);
  font-size: .88rem; color: rgba(238, 243, 238, .9); background: rgba(255, 255, 255, .05); border: 1px solid var(--line-dark);
}
.ba-features li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 10px var(--gold-400); }
.center-cta { display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-top: clamp(2.25rem, 4vw, 3rem); text-align: center; }
.center-cta p { font-size: .88rem; color: var(--ink-soft); }
.section--dark .center-cta p, .ba-section .center-cta p { color: var(--muted-on-dark); }

/* --- 10. Services -------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.35rem; }
.svc {
  grid-column: span 2; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-light); box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc--wide { grid-column: span 3; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.svc__media { position: relative; aspect-ratio: 4 / 3; background: var(--evergreen-900); }
.svc__media picture { position: absolute; inset: 0; overflow: hidden; }
.svc--wide .svc__media { aspect-ratio: 16 / 9; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, rgba(5, 18, 13, 0), rgba(5, 18, 13, .45));
}
.svc__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  padding: .4rem .8rem; border-radius: var(--r-pill);
  font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--gold-500); color: var(--evergreen-950); box-shadow: var(--glow-gold);
}
.svc__icon {
  position: absolute; left: 1.35rem; bottom: -26px; z-index: 2;
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--evergreen-600), var(--evergreen-900)); color: var(--gold-300);
  box-shadow: 0 0 0 4px #fff, 0 12px 24px -10px rgba(10, 29, 22, .6);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__body { padding: 2.35rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: .5rem; }
.svc__body p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1rem; }
.svc__list { display: grid; gap: .38rem; margin-bottom: 1.35rem; }
.svc__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.svc__list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .28rem; color: var(--evergreen-500); }
.svc__link {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .45rem; text-decoration: none;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600);
}
.svc__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.svc__link:hover { color: var(--evergreen-700); }
.svc__link:hover svg { transform: translateX(4px); }

/* --- 11. Why EverGlow ---------------------------------------------------- */
.why-section {
  background:
    radial-gradient(60% 70% at 0% 0%, rgba(42, 96, 73, .4), transparent 70%),
    var(--evergreen-900);
}
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-dark); }
.why__item { background: var(--evergreen-900); padding: clamp(1.6rem, 3vw, 2.2rem); transition: background-color .3s; }
.why__item:hover { background: var(--evergreen-800); }
.why__icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-300); background: rgba(214, 165, 72, .1); border: 1px solid rgba(214, 165, 72, .28); margin-bottom: 1.15rem; }
.why__icon svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.why__item p { font-size: .94rem; color: var(--muted-on-dark); }

/* --- 12. Service area + FAQ ---------------------------------------------- */
.area { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .5rem 1rem; border-radius: var(--r-pill); font-size: .88rem; font-weight: 500;
  background: #fff; border: 1px solid var(--line-light); color: var(--ink);
}
.area__group { font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--evergreen-600); margin: 0 0 .7rem; }
.chips + .area__group { margin-top: 1.5rem; }
.area__note { margin-top: 1.1rem; font-size: .88rem; color: var(--ink-soft); }
.area__note a { color: var(--evergreen-600); font-weight: 600; }

.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__item:first-child { border-top: 1px solid var(--line-light); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 3rem 1.4rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.08rem, 1rem + .35vw, 1.28rem); font-weight: 500;
  color: var(--ink); transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--evergreen-600); }
.faq__item summary::after {
  content: ""; position: absolute; right: .2rem; top: 50%; width: 30px; height: 30px; margin-top: -15px;
  border-radius: 50%; border: 1px solid var(--line-light);
  background:
    linear-gradient(var(--evergreen-600), var(--evergreen-600)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--evergreen-600), var(--evergreen-600)) center / 1.5px 12px no-repeat;
  transition: transform .35s var(--ease), background-color .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); background-color: rgba(214, 165, 72, .15); }
.faq__answer { padding: 0 3rem 1.55rem 0; color: var(--ink-soft); font-size: 1rem; }
.faq__item[open] .faq__answer { animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --- 13. Quote CTA + form ------------------------------------------------ */
.ctaq {
  position: relative; overflow: hidden; color: var(--text-on-dark);
  background:
    radial-gradient(50% 60% at 15% 20%, rgba(214, 165, 72, .16), transparent 70%),
    radial-gradient(60% 60% at 100% 100%, rgba(42, 96, 73, .55), transparent 70%),
    var(--evergreen-950);
}
.ctaq__lights { position: absolute; top: 0; left: 0; right: 0; height: 90px; pointer-events: none; opacity: .9; }
.twinkle circle { animation: twinkle 3.8s ease-in-out infinite; }
.twinkle circle:nth-child(4n+1), .twinkle circle:nth-child(4n+2) { animation-delay: 1.3s; }
.twinkle circle:nth-child(6n+3), .twinkle circle:nth-child(6n+4) { animation-delay: 2.4s; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.ctaq__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; position: relative; }
.ctaq h2 { color: #fff; }
.ctaq .lede { color: var(--muted-on-dark); margin-bottom: 2rem; }
.steps-mini { display: grid; gap: 1.1rem; margin-bottom: 2.2rem; counter-reset: mini; }
.steps-mini li { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; }
.steps-mini li::before {
  counter-increment: mini; content: counter(mini);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-300);
  border: 1px solid rgba(242, 215, 150, .35); background: rgba(214, 165, 72, .08);
}
.steps-mini strong { display: block; color: #fff; font-weight: 600; margin-bottom: .1rem; }
.steps-mini span { font-size: .93rem; color: var(--muted-on-dark); }
.callcard {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line-dark); text-decoration: none; color: #fff;
  transition: border-color .25s, background-color .25s;
}
.callcard:hover { border-color: rgba(242, 215, 150, .5); background: rgba(255, 255, 255, .08); }
.callcard__icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-500); color: var(--evergreen-950); flex-shrink: 0; }
.callcard__icon svg { width: 20px; height: 20px; }
.callcard small { display: block; font-size: .78rem; color: var(--muted-on-dark); letter-spacing: .02em; }
.callcard strong { font-size: 1.15rem; font-weight: 600; letter-spacing: .01em; }

.lead {
  background: #fff; color: var(--ink); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .8), 0 0 0 1px rgba(242, 215, 150, .25);
  position: relative;
}
.lead__head { margin-bottom: 1.5rem; }
.lead__head h3 { font-size: clamp(1.45rem, 1.25rem + .8vw, 1.9rem); margin-bottom: .3rem; color: var(--ink); }
.lead__head p { font-size: .93rem; color: var(--ink-soft); }
.lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.field { margin-bottom: 1.05rem; }
.field > label, .field__legend {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .45rem;
}
.field__opt { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-soft); }
.input {
  width: 100%; padding: .85rem 1rem; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid transparent; border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.input::placeholder { color: #8a988f; }
.input:hover { border-color: rgba(14, 29, 23, .16); }
.input:focus { outline: none; background: #fff; border-color: var(--evergreen-500); box-shadow: 0 0 0 4px rgba(42, 96, 73, .14); }
select.input {
  appearance: none; cursor: pointer; padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5D54' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center; background-size: 17px;
}
textarea.input { min-height: 88px; resize: vertical; line-height: 1.5; }
fieldset.field { border: 0; padding: 0; margin: 0 0 1.05rem; min-width: 0; }
.field__legend { padding: 0; }
.pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span {
  display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .9rem; border-radius: var(--r-pill);
  font-size: .88rem; font-weight: 500; background: var(--cream); border: 1.5px solid transparent;
  transition: border-color .2s, background-color .2s, color .2s;
}
.pill span::before {
  content: ""; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid rgba(14, 29, 23, .3); background: #fff;
  transition: background-color .2s, border-color .2s;
}
.pill:hover span { border-color: rgba(14, 29, 23, .16); }
.pill input:checked + span { background: rgba(42, 96, 73, .1); border-color: var(--evergreen-500); color: var(--evergreen-700); }
.pill input:checked + span::before {
  border-color: var(--evergreen-600);
  background: var(--evergreen-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.pill input:focus-visible + span { outline: 3px solid var(--gold-400); outline-offset: 2px; }
.field > .consent { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .85rem; color: var(--ink-soft); margin-bottom: 0; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); cursor: pointer; margin: .3rem 0 1.25rem; }
.consent input { width: 18px; height: 18px; margin: .15rem 0 0; accent-color: var(--evergreen-600); flex-shrink: 0; }
.field.is-highlight .input { animation: fieldglow 1.8s var(--ease); }
@keyframes fieldglow { 0%, 60% { border-color: var(--gold-500); box-shadow: 0 0 0 5px rgba(214, 165, 72, .35); background: #fff; } 100% { box-shadow: 0 0 0 0 rgba(214, 165, 72, 0); } }
.field__error { display: none; margin: .4rem 0 0; font-size: .82rem; font-weight: 500; color: var(--red-600); }
.has-error .field__error { display: block; }
.has-error .input { border-color: var(--red-600); background: #fff; }
.lead__note { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: .9rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.lead__note svg { width: 14px; height: 14px; color: var(--evergreen-500); }
.lead__more { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line-light); font-size: .86rem; color: var(--ink-soft); text-align: center; }
.lead__more a { color: var(--evergreen-600); font-weight: 600; }
.lead__fallback, .lead__demo {
  display: none; margin-top: 1rem; padding: .95rem 1.1rem; border-radius: var(--r-sm);
  background: rgba(214, 165, 72, .14); border: 1px solid rgba(168, 123, 37, .35);
  font-size: .86rem; color: #5b420f;
}
.lead__fallback.is-visible, .lead__demo.is-visible { display: block; }
.lead__fallback a { color: #5b420f; font-weight: 700; }
.lead__done { display: none; text-align: center; padding: 1.5rem 0 .5rem; }
.lead__done.is-visible { display: block; animation: fadeUp .5s var(--ease); }
.lead__done-ring {
  width: 76px; height: 76px; margin: 0 auto 1.3rem; border-radius: 50%; display: grid; place-items: center;
  background: rgba(42, 96, 73, .1); border: 2px solid var(--evergreen-500); color: var(--evergreen-600);
}
.lead__done-ring svg { width: 34px; height: 34px; }
.lead__done h3 { color: var(--ink); }
.lead__done p { color: var(--ink-soft); max-width: 38ch; margin-inline: auto; }
.lead.is-done form { display: none; }

/* --- 13b. Legal pages --------------------------------------------------- */
.legal { background: var(--cream); padding-block: clamp(7.5rem, 14vh, 9rem) clamp(4rem, 8vw, 6rem); }
.legal__wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.3rem); margin-bottom: .6rem; }
.legal__date { font-size: .88rem; color: var(--ink-soft); margin-bottom: 2rem; }
.legal .lede { margin-bottom: 2.25rem; }
.legal h2 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.65rem); margin: 2.4rem 0 .7rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal strong { color: var(--ink); }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.1em; display: grid; gap: .4rem; }
.legal a, .consent a, .qopt__meta a { color: var(--evergreen-600); font-weight: 600; }
.legal__contact { font-style: normal; line-height: 1.8; color: var(--ink); }

/* --- 14. Footer ---------------------------------------------------------- */
.footer { background: var(--evergreen-950); color: var(--muted-on-dark); padding-block: 4rem 2rem; border-top: 1px solid var(--line-dark); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2.5rem 2rem; margin-bottom: 3rem; }
.footer__about p { font-size: .92rem; margin-top: 1.15rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.1rem; font-weight: 700; }
.footer__links { display: grid; gap: .6rem; font-size: .92rem; }
.footer__links a { color: #C7D4CC; text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: var(--gold-300); }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: #6F8479;
}
.footer__bottom a { color: #8FA498; text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom a:hover { color: var(--gold-300); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark); color: #C7D4CC; transition: all .25s;
}
.socials a:hover { border-color: var(--gold-400); color: var(--gold-300); background: rgba(214, 165, 72, .08); }
.socials svg { width: 16px; height: 16px; }

/* --- 15. Mobile action bar ----------------------------------------------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(6, 20, 14, .92); border-top: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.mobilebar.is-visible { transform: none; }
.mobilebar .btn { flex: 1; padding-inline: .8rem; }
.mobilebar .btn--glass { flex: 0 0 auto; }

/* --- 16. Scroll reveal --------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* --- 17. Responsive ------------------------------------------------------ */
@media (max-width: 1100px) {
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .navtoggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 auto 0; padding: 5.75rem var(--gutter) 1.75rem; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6, 20, 14, .97); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-104%); transition: transform .4s var(--ease); z-index: -1;
  }
  .nav-open .nav { transform: none; }
  .nav__link { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { display: flex; margin-top: 1.25rem; }
  .header__cta { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .svc, .svc--wide { grid-column: span 1; }
  .svc--wide:last-child { grid-column: span 2; }
  .why { grid-template-columns: repeat(2, 1fr); }
  .area, .ctaq__grid { grid-template-columns: minmax(0, 1fr); }
  .never { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  .footer { padding-bottom: calc(2rem + 76px + env(safe-area-inset-bottom)); }
}
@media (max-width: 720px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process .pcard:last-child { grid-column: span 2; }
  .urgency__inner { flex-wrap: wrap; }
  .urgency .btn { margin-left: 0; width: 100%; }
  .urgency__text { flex: 1; min-width: 200px; }
  .ba { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
  .ba__knob { width: 48px; height: 48px; }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
  .svc--wide:last-child { grid-column: span 1; }
  .why { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process .pcard:last-child { grid-column: span 1; }
  .lead__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .brand__sub { letter-spacing: .2em; }
  .faq__answer { padding-right: 0; }
}
/* Very small phones: long button labels wrap instead of pushing the page sideways */
@media (max-width: 380px) {
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .btn--lg { padding-inline: 1.4rem; }
}
/* Tall viewports: poster layout on the portrait render — headline in the sky, buttons on the snow */
@media (max-aspect-ratio: 5/6) {
  .hero { align-items: stretch; min-height: 100svh; }
  .hero__media img { object-position: 50% 50%; }
  .hero__inner { display: flex; padding-top: 6.25rem; padding-bottom: 2.25rem; }
  .hero__content { display: flex; flex-direction: column; max-width: none; width: 100%; }
  .hero__lower { margin-top: auto; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(4, 16, 11, .82) 0%, rgba(4, 16, 11, .55) 30%, rgba(4, 16, 11, 0) 46%, rgba(4, 16, 11, 0) 64%, rgba(4, 16, 11, .82) 86%, rgba(4, 16, 11, .95) 100%);
  }
  .hero h1 { font-size: clamp(2.4rem, 9.6vw, 4.2rem); }
  .hero__sub { margin-bottom: 0; }
  .hero__trust { justify-content: center; font-size: .82rem; }
  .hero__caption, .hero__scroll { display: none; }
}

/* --- 18. Motion preferences ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .js .reveal, .hero .rise { opacity: 1; transform: none; }
  .hero__snow { display: none; }
}

/* --- 19. Utilities ------------------------------------------------------- */
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -60px; left: var(--gutter); z-index: 200;
  background: var(--gold-500); color: var(--evergreen-950); padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); text-decoration: none; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
body.nav-open { overflow: hidden; }
