:root {
  --ink: #0a0a0b;
  --panel: #131417;
  --panel-2: #1a1c20;
  --paper: #f4f2ed;
  --white: #f4f2ed;
  --steel: #9ba0a8;
  --steel-dark: #5c6068;
  --muted: #9ba0a8;
  --orange: #e85b2a;
  --orange-dark: #c8481e;
  --ember: #ff8a4c;
  --line: rgba(232, 91, 42, 0.22);
  --hair: rgba(244, 242, 237, 0.09);
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Barlow Condensed', 'Segoe UI', sans-serif;
  --max: 1180px;
  --radius: 4px;
  --shadow: 0 22px 60px -20px rgba(232, 91, 42, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(232, 91, 42, .08), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(232, 91, 42, .05), transparent 60%),
    var(--ink);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1rem; }
ul { margin: 0; padding-left: 1.25rem; }
li + li { margin-top: 0.4rem; }
::selection { background: var(--orange); color: var(--ink); }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.1rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.narrow { max-width: 790px; }
.orange { color: var(--orange); }
.muted { color: var(--steel); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--orange); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- preloader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .5s, visibility .5s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#loader img { width: 96px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ filter:drop-shadow(0 0 14px rgba(232,91,42,.3)) } 50%{ filter:drop-shadow(0 0 40px rgba(232,91,42,.8)) } }
#loader .l-text { font-family: var(--display); font-size: 18px; letter-spacing: .4em; color: var(--steel); text-indent: .4em; }
#loader .l-bar { width: 160px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
#loader .l-bar i { display: block; height: 100%; width: 0; background: var(--orange); transition: width .3s; }

/* ---------- custom cursor ---------- */
#cursor, #cursorRing { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; border-radius: 50%; transform: translate(-50%,-50%); will-change: transform; }
#cursor { width: 8px; height: 8px; background: var(--ember); }
#cursorRing { width: 36px; height: 36px; border: 1.5px solid rgba(232,91,42,.6); transition: width .25s, height .25s, border-color .25s, background .25s; }
#cursorRing.hov { width: 58px; height: 58px; background: rgba(232,91,42,.12); border-color: var(--ember); }
@media (pointer: coarse) { #cursor, #cursorRing { display: none; } }
body.no-cursor, body.no-cursor a, body.no-cursor button { cursor: none; }

/* ---------- scroll progress ---------- */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--orange), var(--ember)); box-shadow: 0 0 12px rgba(232,91,42,.7); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(rgba(10,10,11,.94), rgba(10,10,11,.8));
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: 5vw;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand img { width: 40px; height: 40px; object-fit: contain; transition: transform .3s; }
.brand:hover img { transform: rotate(-6deg) scale(1.08); }
.brand span {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.site-nav a {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--orange); transition: width .25s; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .12em;
  padding: 9px 16px;
  cursor: pointer;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: var(--orange);
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 0 0 rgba(232,91,42,0);
}
.button:hover, .button:focus-visible,
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--ember);
  box-shadow: 0 0 34px rgba(255,138,76,.45);
}
.nav-cta::after { display: none; }

.button.secondary {
  border: 1px solid var(--orange);
  background: rgba(232,91,42,.08);
  color: var(--white) !important;
}
.button.secondary:hover, .button.secondary:focus-visible {
  background: rgba(232,91,42,.2);
  box-shadow: none;
}
.button.disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.breadcrumbs {
  padding: 20px 0 0;
  color: var(--steel-dark);
  font-size: 0.82rem;
  letter-spacing: .03em;
}
.breadcrumbs a { color: var(--steel); text-underline-offset: 3px; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { padding-inline: 8px; opacity: 0.6; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 12vw, 148px) 0 clamp(80px, 11vw, 132px);
  border-bottom: 1px solid var(--hair);
  background:
    radial-gradient(1000px 480px at 82% -10%, rgba(232, 91, 42, .16), transparent 55%),
    linear-gradient(140deg, #0c0c0d 15%, #131417 70%, #0a0a0b);
}
.hero.compact { padding-block: clamp(64px, 9vw, 108px); }
.hero h1 {
  max-width: 1040px;
  background: linear-gradient(178deg, #e9e7e2 20%, #8d9199 60%, #3c3f45 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .orange { background: none; -webkit-text-fill-color: var(--orange); color: var(--orange); }
.hero .lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--steel);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.6fr);
  align-items: center;
  gap: clamp(36px, 7vw, 95px);
}

.hero-logo {
  width: min(100%, 400px);
  margin-inline: auto;
  filter: drop-shadow(0 0 50px rgba(232,91,42,.3));
}

.trust-strip { border-bottom: 1px solid var(--hair); background: var(--panel); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item {
  padding: 20px 26px;
  border-left: 1px solid var(--hair);
  color: var(--steel);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.trust-item:last-child { border-right: 1px solid var(--hair); }

/* ---------- sections ---------- */
.section { padding: clamp(74px, 10vw, 124px) 0; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(232,91,42,.04), transparent); }
.section.paper { background: var(--paper); color: #221f1a; }
.section.paper h2, .section.paper h3 { color: #15120f; }
.section.paper .eyebrow { color: var(--orange-dark); }
.section.paper .eyebrow::before { background: var(--orange-dark); }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading p { max-width: 680px; margin: 16px 0 0; color: var(--steel); font-size: 1.1rem; }
.paper .section-heading p { color: #55504a; }

.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 8vw, 100px);
}

/* ---------- cards ---------- */
.card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--hair);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s, transform .25s;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), transparent 70%); opacity: .9; }
.card:hover { border-color: var(--line); transform: translateY(-3px); }

.card.light { border-color: rgba(0,0,0,.1); background: var(--paper); color: #2a251f; box-shadow: 0 18px 50px rgba(0,0,0,.1); }
.card.light::before { background: linear-gradient(90deg, var(--orange-dark), transparent 70%); }
.card.light p, .card.light li { color: #574f45; }
.card.light h3 { color: #1b1712; }

.card h3 { margin-bottom: 14px; font-size: 1.7rem; }
.card p { color: var(--steel); }
.card ul { margin-bottom: 20px; color: var(--steel); }
.card .text-link { margin-top: auto; }
.card .tag { align-self: flex-start; }

.text-link {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-underline-offset: 5px;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.text-link:hover { color: var(--ember); }

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose h2 { margin: 2.6rem 0 1.1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--steel); }
.paper .prose p, .paper .prose li { color: #4c463e; }

.facts {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  border: 1px solid var(--hair);
  overflow: hidden;
  background: var(--hair);
}
.fact { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 18px 22px; background: var(--panel); }
.fact strong { color: var(--orange); font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

.price {
  margin: 8px 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 20px 22px; border: 1px solid var(--hair); background: var(--panel); }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.faq-list details p { margin: 14px 0 0; color: var(--steel); }

.cta-band { padding: clamp(64px, 9vw, 100px) 0; background: var(--orange); color: var(--ink); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { max-width: 760px; color: var(--ink); }
.cta-band .button { flex: 0 0 auto; background: var(--ink); color: var(--white) !important; }
.cta-band .button:hover { background: #000; box-shadow: none; }

.contact-list { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--hair); }
.contact-item strong { color: var(--orange); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.contact-item a { overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--orange); }

.event-date { display: inline-flex; flex-direction: column; margin-top: 22px; padding: 20px 24px; border-left: 4px solid var(--orange); background: rgba(232,91,42,.06); }
.event-date strong { font-family: var(--display); font-size: 1.6rem; letter-spacing: .02em; }

.schedule-item { display: grid; grid-template-columns: 140px 1fr; gap: 26px; padding: 26px 0; border-top: 1px solid var(--hair); }
.schedule-time { color: var(--orange); font-weight: 700; font-family: var(--display); letter-spacing: .04em; font-size: 1.15rem; }

.legal-note { padding: 18px 22px; border-left: 4px solid var(--orange); background: var(--panel); color: var(--steel); }

/* ---------- marquee (optional per page) ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(232,91,42,.07), rgba(232,91,42,.02), rgba(232,91,42,.07)); padding: 20px 0; white-space: nowrap; }
.marquee .mq-track { display: inline-flex; align-items: center; gap: 52px; padding-right: 52px; animation: mq 26s linear infinite; will-change: transform; }
.marquee.rev .mq-track { animation-direction: reverse; }
.marquee:hover .mq-track { animation-play-state: paused; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); letter-spacing: .08em; color: var(--steel); display: inline-flex; align-items: center; gap: 52px; }
.mq-item .hl { color: var(--white); }
.mq-item img { height: 44px; width: auto; filter: drop-shadow(0 0 10px rgba(232,91,42,.5)); }
.mq-item .x { color: var(--orange); font-size: .7em; }

/* ---------- full-bleed homepage hero ---------- */
.hero.full {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 5vw 90px;
}
#embers { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero.full .hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero.full .hero-logo-lg {
  width: min(300px, 54vw);
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 60px rgba(232,91,42,.35));
  animation: logoIn 1.1s .1s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes logoIn { from { opacity: 0; transform: translateY(30px) scale(.94); } to { opacity: 1; transform: none; } }
.hero.full h1 { max-width: none; font-size: clamp(48px, 9vw, 112px); }
.hero.full h1 .w { display: inline-block; opacity: 0; transform: translateY(.6em) rotate(3deg); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.hero.full h1.in .w { opacity: 1; transform: none; }
.hero.full .sub {
  margin-top: 10px;
  color: var(--orange);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero.full .lead { max-width: 640px; margin: 22px auto 0; text-align: center; }
.hero.full .hero-verse { margin-top: 40px; color: var(--steel-dark); font-size: 15px; letter-spacing: .18em; text-transform: uppercase; }
.hero.full .hero-verse b { color: var(--orange); font-weight: 600; }
.hero.full .hero-actions { justify-content: center; }
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--steel-dark); font-size: 13px; letter-spacing: .3em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- scroll-fill verse ---------- */
.verse-fill { padding: clamp(90px, 14vw, 150px) 5vw; text-align: center; position: relative; }
.vf-stage { max-width: 940px; margin: 0 auto; position: relative; }
.vf-text { font-family: var(--display); font-size: clamp(30px, 5vw, 58px); line-height: 1.16; color: rgba(244,242,237,.14); position: relative; }
.vf-fill { position: absolute; inset: 0; color: transparent; background: linear-gradient(90deg, var(--ember), var(--orange)); -webkit-background-clip: text; background-clip: text; clip-path: inset(0 100% 0 0); }
.vf-ref { margin-top: 24px; color: var(--orange); letter-spacing: .3em; text-transform: uppercase; font-weight: 600; font-size: 15px; }

/* ---------- horizontal scroll-snap card row ---------- */
.scroll-row { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 18px; margin: 0 -5vw; padding-inline: 5vw; }
.scroll-row .card { flex: 0 0 min(400px, 82vw); scroll-snap-align: center; }
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--line); }
.card .c-num { position: absolute; top: 20px; right: 24px; font-family: var(--display); font-size: 44px; color: rgba(232,91,42,.18); line-height: 1; }
.card .c-verse { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel-dark); margin-bottom: 12px; max-width: 82%; }
.card .c-coach { color: var(--orange); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.card .c-badge { display: inline-block; background: rgba(232,91,42,.14); border: 1px solid var(--line); color: var(--ember); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: 5px 12px; margin-top: 10px; }

/* ---------- founding 50 spot meter ---------- */
.f50-count { display: flex; justify-content: center; gap: 6px; margin: 26px 0; flex-wrap: wrap; }
.f50-count span { width: 12px; height: 20px; background: rgba(232,91,42,.15); border: 1px solid rgba(232,91,42,.28); clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%); transition: background .3s, box-shadow .3s; }
.f50-count span.lit { background: var(--orange); box-shadow: 0 0 10px rgba(232,91,42,.7); }

/* ---------- footer ---------- */
.site-footer { padding: 70px 0 34px; border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(232,91,42,.05)); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-brand { max-width: 470px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--steel); }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 6px; color: var(--orange); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: var(--steel); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--hair); color: var(--steel-dark); font-size: .8rem; }
.footer-verse { text-align: center; margin-top: 18px; color: var(--orange); letter-spacing: .26em; text-transform: uppercase; font-size: 12.5px; }

@media (max-width: 970px) {
  .nav-wrap { min-height: auto; padding-block: 14px; }
  .menu-btn { display: block; }
  .site-nav {
    position: fixed; top: 73px; right: 0; left: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,11,.98); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .35s;
  }
  .site-nav.open { max-height: 480px; overflow-y: auto; }
  .site-nav a { padding: 16px 5vw; border-top: 1px solid var(--hair); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { clip-path: none; margin: 12px 5vw 18px; text-align: center; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-logo { width: min(70vw, 340px); }
  .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand span { display: none; }
  .hero { padding-block: 70px 78px; }
  .hero.full { padding-top: 120px; }
  .hero.full .hero-logo-lg { display: none; }
  .grid.two, .grid.three, .grid.four, .split, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border: 0; border-bottom: 1px solid var(--hair); }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .fact, .contact-item, .schedule-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  #cursor, #cursorRing { display: none; }
  #embers { display: none; }
  .hero.full h1 .w { opacity: 1; transform: none; }
  .vf-fill { clip-path: none !important; }
}
