/* ============================================================================
   HOUSE OF FIRE COMMUNITY — house church, Moreno Valley CA
   Built by Web Ascension Pro. Warm firelit direction, built around the logo
   (flame #F4641B → #FCB029 → #FDD460, charcoal #231F1A, cream #F5EBD9).
   Engine plumbing (motion state, reveals, split, steps, cards, loader, embers)
   adapted from the house scroll-engine scaffold.
   ============================================================================ */

/* ---------------------------------------------------------------- tokens */
:root{
  /* flame (from the logo) */
  --flame:#F4641B;        /* primary ember/accent */
  --flame-deep:#D24A0E;
  --amber:#FCB029;
  --gold:#FDD460;
  --gold-soft:#F7C948;

  /* darks + creams */
  --char:#1B1310;         /* deepest firelit charcoal (bg for dark sections) */
  --char-2:#241914;
  --char-3:#2E211A;
  --ink:#231F1A;          /* body text on light */
  --ink-soft:#5A4B41;
  --cream:#FBF5EA;        /* light section bg */
  --cream-2:#F5EBD9;      /* sand section bg */
  --cream-line:#E7D9C2;
  --cream-ink:#F7EEDD;    /* text on dark */
  --cream-muted:#C9B9A4;  /* muted text on dark */

  --line:rgba(90,75,65,.16);
  --line-dark:rgba(247,225,190,.14);
  --glow:rgba(244,100,27,.45);
  --glow-soft:rgba(252,176,41,.35);

  --maxw:1220px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);

  --display:"Newsreader",Georgia,"Times New Roman",serif;
  --body:"Hanken Grotesk",system-ui,-apple-system,"Segoe UI",sans-serif;

  --shadow-card:0 24px 60px -32px rgba(45,25,10,.55);
  --shadow-lift:0 40px 80px -34px rgba(45,25,10,.6);
}

/* ---------------------------------------------------------------- base */
*,*::before,*::after{ box-sizing:border-box; }
html{ overflow-x:clip; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
html.reduce{ scroll-behavior:auto; }
body{
  margin:0; background:var(--cream); color:var(--ink); font-family:var(--body);
  font-size:clamp(1rem,.96rem + .28vw,1.14rem); line-height:1.66;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; overflow-x:clip;
}
img,canvas,svg,video{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; cursor:pointer; background:none; border:none; }
:focus-visible{ outline:2px solid var(--flame); outline-offset:3px; border-radius:4px; }
::selection{ background:var(--flame); color:#fff; }

h1,h2,h3,h4{ font-family:var(--display); font-weight:500; line-height:1.02; letter-spacing:-.015em; margin:0; text-wrap:balance; }
h1{ font-size:clamp(2.6rem,1.7rem + 4.4vw,5rem); }
h2{ font-size:clamp(2rem,1.4rem + 2.7vw,3.3rem); }
h3{ font-size:clamp(1.3rem,1.1rem + .9vw,1.7rem); }
p{ margin:0 0 1rem; }
p:last-child{ margin-bottom:0; }
em{ font-style:italic; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(20px,5vw,44px); }
.container--narrow{ max-width:760px; }
.section{ padding:clamp(4.5rem,3rem + 7vw,8rem) 0; position:relative; }
.section--tight{ padding:clamp(3rem,2rem + 4vw,5rem) 0; }
.center{ text-align:center; }
.measure{ max-width:56ch; }
.lead{ font-size:clamp(1.15rem,1.05rem + .5vw,1.4rem); line-height:1.6; color:var(--ink-soft); }

/* ---------------------------------------------------------------- eyebrow / roofline / arrows */
.eyebrow{
  display:inline-flex; align-items:center; gap:.6em; margin:0 0 1rem;
  font-family:var(--body); font-size:.76rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--flame-deep);
}
.eyebrow::before{ content:""; width:26px; height:1px; background:currentColor; opacity:.5; }
.eyebrow--center{ justify-content:center; }
.eyebrow--on-dark{ color:var(--gold); }
.head{ max-width:640px; margin-bottom:clamp(2.2rem,1.5rem + 2vw,3.4rem); }
.head.center{ margin-inline:auto; }
.head .lead{ margin-top:1rem; }

.roofline{ width:56px; height:28px; color:var(--flame); margin-bottom:1.2rem; }
.roofline--center{ margin-inline:auto; }

.link-arrow{
  display:inline-flex; align-items:center; gap:.5em; font-weight:600; color:var(--flame-deep);
  padding:.2em 0; position:relative;
}
.link-arrow svg{ width:1.05em; height:1.05em; transition:transform .5s var(--ease); }
.link-arrow::after{ content:""; position:absolute; left:0; bottom:-2px; width:100%; height:1.5px;
  background:currentColor; transform:scaleX(0); transform-origin:0 50%; transition:transform .5s var(--ease); }
.link-arrow:hover svg{ transform:translateX(6px); }
.link-arrow:hover::after{ transform:scaleX(1); }

/* ---------------------------------------------------------------- buttons */
.btn{
  --bg:var(--flame); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  padding:.85em 1.5em; border-radius:100px; font-weight:600; font-size:.98rem; letter-spacing:.01em;
  background:var(--bg); color:var(--fg); position:relative; overflow:hidden; isolation:isolate;
  border:1px solid transparent; transition:transform .45s var(--ease), box-shadow .45s var(--ease), color .4s var(--ease);
  will-change:transform;
}
.btn svg{ width:1.05em; height:1.05em; }
.btn::before{ /* glide-in fill, never a snap */
  content:""; position:absolute; inset:0; z-index:-1; background:var(--gold);
  transform:translateX(-101%); transition:transform .55s var(--ease-out);
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 16px 34px -14px var(--glow); }
.btn--primary:hover{ color:var(--ink); }
.btn:hover::before{ transform:translateX(0); }
.btn--lg{ padding:1.02em 1.85em; font-size:1.05rem; }
.btn--sm{ padding:.62em 1.15em; font-size:.9rem; }
.btn--ghost{ --bg:transparent; --fg:var(--ink); border-color:var(--cream-line); }
.btn--ghost::before{ background:var(--ink); }
.btn--ghost:hover{ color:var(--cream); border-color:var(--ink); }
.btn--on-dark{ --bg:transparent; --fg:var(--cream-ink); border-color:var(--line-dark); }
.btn--on-dark::before{ background:var(--cream); }
.btn--on-dark:hover{ color:var(--char); }
.btn-row{ display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.8rem; }
.btn-row--center{ justify-content:center; }

/* ---------------------------------------------------------------- kinetic type + reveal gating */
.js [data-split]{ visibility:hidden; }
.js [data-reveal]{ visibility:hidden; }
.word{ display:inline-block; overflow:hidden; vertical-align:top; padding:0 .03em 0 0; }
.word-i{ display:inline-block; will-change:transform; }
.word-em{ color:var(--flame); font-style:italic; }
[data-split].on-dark .word-em{ color:var(--gold); }

/* ---------------------------------------------------------------- ambient ember canvas (the "always something happening" layer) */
.embers{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:0; }
html.reduce .embers{ display:none; }

/* ---------------------------------------------------------------- loader */
.loader{ position:fixed; inset:0; z-index:300; background:var(--char); display:grid; place-items:center;
  transition:opacity .8s var(--ease), visibility .8s; }
.loader.done{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-inner{ display:flex; flex-direction:column; align-items:center; gap:20px; }
.loader-mark{ width:66px; height:80px; filter:drop-shadow(0 0 26px var(--glow)); animation:flicker 2.6s var(--ease) infinite; }
html.reduce .loader-mark{ animation:none; }
.loader-bar{ width:180px; height:2px; background:rgba(247,225,190,.16); border-radius:2px; overflow:hidden; }
.loader-bar span{ display:block; height:100%; width:0%; background:linear-gradient(90deg,var(--flame-deep),var(--gold)); }
.loader-pct{ font-family:var(--body); font-size:.72rem; letter-spacing:.28em; color:var(--cream-muted); }
@keyframes flicker{ 0%,100%{ opacity:.92; transform:translateY(0) scale(1); } 45%{ opacity:1; transform:translateY(-1px) scale(1.015); } 70%{ opacity:.85; } }

/* ---------------------------------------------------------------- scroll progress + top bar */
.progress{ position:fixed; top:0; left:0; right:0; height:2px; z-index:130; }
.progress-bar{ display:block; height:100%; width:100%; transform:scaleX(0); transform-origin:0 50%;
  background:linear-gradient(90deg,var(--flame-deep),var(--amber),var(--gold)); }

.topbar{ position:fixed; inset:0 0 auto 0; z-index:120; display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:16px clamp(18px,4vw,44px);
  padding-left:max(clamp(18px,4vw,44px),env(safe-area-inset-left)); padding-right:max(clamp(18px,4vw,44px),env(safe-area-inset-right));
  transition:background .45s var(--ease), backdrop-filter .45s var(--ease), border-color .45s var(--ease); }
.topbar::after{ content:""; position:absolute; inset:0; border-bottom:1px solid transparent; pointer-events:none; transition:border-color .45s var(--ease); }
.topbar.scrolled{ background:color-mix(in srgb, var(--cream) 82%, transparent); backdrop-filter:blur(12px) saturate(1.1); }
.topbar.scrolled::after{ border-bottom-color:var(--line); }
/* dark hero: top bar starts light-on-dark, flips on scroll */
.topbar .brand__name,.topbar .header-call{ color:var(--cream-ink); transition:color .45s var(--ease); }
.topbar.scrolled .brand__name,.topbar.scrolled .header-call{ color:var(--ink); }
.topbar .nav-link{ color:var(--cream-ink); }
.topbar.scrolled .nav-link{ color:var(--ink); }

.brand{ display:inline-flex; align-items:center; gap:.6rem; }
.brand__mark{ width:34px; height:41px; }
.brand__marks{ position:relative; width:34px; height:41px; flex:0 0 auto; }
.brand__marks img{ position:absolute; inset:0; width:34px; height:41px; transition:opacity .45s var(--ease); }
.brand__mark--flame{ opacity:0; }
.topbar.scrolled .brand__mark--cream{ opacity:0; }
.topbar.scrolled .brand__mark--flame{ opacity:1; }
.brand__name{ font-family:var(--display); font-weight:600; font-size:1.12rem; line-height:1; letter-spacing:-.01em; }
.brand__name .brand__sub{ display:block; font-family:var(--body); font-weight:600; font-size:.58rem; letter-spacing:.28em; text-transform:uppercase; opacity:.72; margin-top:.28em; }

.nav{ display:flex; align-items:center; gap:clamp(1rem,2vw,2rem); }
.nav-list{ display:flex; align-items:center; gap:clamp(1rem,1.7vw,1.9rem); list-style:none; margin:0; padding:0; }
.nav-link{ position:relative; font-size:.95rem; font-weight:500; padding:.3em 0; }
.nav-link::after{ content:""; position:absolute; left:0; bottom:-1px; width:100%; height:1.5px; background:currentColor; transform:scaleX(0); transform-origin:0 50%; transition:transform .45s var(--ease); }
.nav-link:hover::after,.nav-link[aria-current="page"]::after{ transform:scaleX(1); }
.nav-link[aria-current="page"]{ color:var(--flame); }
.topbar.scrolled .nav-link[aria-current="page"]{ color:var(--flame-deep); }

.nav-actions{ display:flex; align-items:center; gap:.9rem; }
.header-call{ display:inline-flex; align-items:center; gap:.45em; font-weight:600; font-size:.95rem; white-space:nowrap; }
.header-call svg{ width:1.05em; height:1.05em; color:var(--flame); }

/* motion toggle */
.motion-toggle{ display:inline-flex; align-items:center; gap:8px; padding:7px 13px; border-radius:40px;
  border:1px solid var(--line-dark); color:var(--cream-muted); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase;
  transition:border-color .4s var(--ease), color .4s var(--ease); }
.topbar.scrolled .motion-toggle{ border-color:var(--line); color:var(--ink-soft); }
.motion-toggle:hover{ color:var(--flame); border-color:color-mix(in srgb,var(--flame) 50%, transparent); }
.mt-dot{ width:7px; height:7px; border-radius:50%; background:var(--cream-muted); transition:background .4s var(--ease), box-shadow .4s var(--ease); }
.motion-toggle[aria-pressed="true"] .mt-dot{ background:var(--flame); box-shadow:0 0 10px var(--glow); }

/* hamburger */
.nav-toggle{ display:none; width:44px; height:44px; align-items:center; justify-content:center; }
.nav-toggle__box{ position:relative; width:24px; height:14px; }
.nav-toggle__bar,.nav-toggle__bar::before,.nav-toggle__bar::after{ content:""; position:absolute; left:0; width:100%; height:2px; border-radius:2px; background:currentColor; transition:transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease); }
.nav-toggle__bar{ top:6px; }
.nav-toggle__bar::before{ top:-6px; } .nav-toggle__bar::after{ top:6px; }
.topbar .nav-toggle{ color:var(--cream-ink); }
.topbar.scrolled .nav-toggle,.nav-open .topbar .nav-toggle{ color:var(--ink); }

/* skip link */
.skip-link{ position:absolute; left:12px; top:-60px; z-index:400; background:var(--flame); color:#fff; padding:.6em 1em; border-radius:8px; transition:top .3s var(--ease); }
.skip-link:focus{ top:12px; }

/* ---------------------------------------------------------------- HERO */
.hero{ position:relative; min-height:100svh; display:flex; align-items:center; overflow:hidden;
  background:radial-gradient(120% 90% at 70% 8%, #3a2113 0%, #24160f 42%, var(--char) 100%); color:var(--cream-ink); }
.hero__photo{ position:absolute; inset:0; z-index:0; background:#140d09 center 22%/cover no-repeat; opacity:.34; filter:saturate(1.05); }
.hero__scrim{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(20,13,9,.55) 0%, rgba(20,13,9,.2) 34%, rgba(20,13,9,.55) 78%, var(--char) 100%),
             radial-gradient(80% 60% at 62% 20%, rgba(244,100,27,.24), transparent 60%); }
.hero .embers{ z-index:2; }
.hero__inner{ position:relative; z-index:3; padding-top:clamp(6rem,10vh,9rem); padding-bottom:clamp(4rem,8vh,7rem); max-width:900px; }
.hero__mark{ width:64px; height:78px; margin-bottom:1.6rem; filter:drop-shadow(0 0 26px var(--glow)); }
.hero h1{ margin-bottom:1.4rem; }
.hero__verse{ font-family:var(--display); font-style:italic; font-size:clamp(1.1rem,1rem + .6vw,1.45rem); color:var(--gold); margin-bottom:1rem; }
.hero__sub{ font-size:clamp(1.08rem,1rem + .5vw,1.32rem); color:var(--cream-muted); max-width:56ch; }
.hero .btn--ghost{ --fg:var(--cream-ink); border-color:var(--line-dark); }
.hero .btn--ghost::before{ background:var(--cream); }
.hero .btn--ghost:hover{ color:var(--char); }

/* the "this week" ribbon inside hero */
.hero__times{ display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--line-dark); }
.hero__time{ display:flex; align-items:baseline; gap:.5rem; }
.hero__time b{ font-family:var(--display); font-weight:600; font-size:1.05rem; color:var(--gold); }
.hero__time span{ font-size:.92rem; color:var(--cream-muted); }

.hero__scroll{ position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:.4rem; color:var(--cream-muted); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; }
.hero__scroll svg{ width:20px; height:20px; animation:bob 2.4s var(--ease) infinite; }
html.reduce .hero__scroll svg{ animation:none; }

/* "keep scrolling" cue at the bottom of the pinned journey (same look as the hero cue) */
.journey__scroll{ position:absolute; left:50%; bottom:1.5rem; transform:translateX(-50%); z-index:6;
  display:flex; flex-direction:column; align-items:center; gap:.4rem; color:var(--flame-deep);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; pointer-events:none; }
.journey__scroll svg{ width:20px; height:20px; animation:bob 2.4s var(--ease) infinite; }
html.reduce .journey__scroll{ display:none; }
html.reduce .journey__scroll svg{ animation:none; }
@keyframes bob{ 0%,100%{ transform:translateY(0); opacity:.6; } 50%{ transform:translateY(6px); opacity:1; } }

/* ---------------------------------------------------------------- section variants */
.section--sand{ background:var(--cream-2); }
.band--night{ position:relative; overflow:hidden; color:var(--cream-ink);
  background:radial-gradient(120% 100% at 50% 0%, #33200f 0%, #201510 55%, var(--char) 100%); }
.band--night .eyebrow{ color:var(--gold); }
.band--night .lead{ color:var(--cream-muted); }
.band--night .embers{ z-index:0; }
.band--night .container{ position:relative; z-index:2; }

/* subhero (interior pages) */
.subhero{ position:relative; overflow:hidden; padding:clamp(8rem,14vh,11rem) 0 clamp(3.5rem,5vw,5.5rem);
  background:radial-gradient(120% 120% at 72% 0%, #33200f 0%, #20140f 55%, var(--char) 100%); color:var(--cream-ink); }
.subhero .embers{ z-index:0; }
.subhero__inner{ position:relative; z-index:2; max-width:820px; }
.subhero .eyebrow{ color:var(--gold); }
.subhero .lead{ color:var(--cream-muted); margin-top:1.2rem; }

/* ---------------------------------------------------------------- welcome / prose */
.welcome__body p{ font-size:clamp(1.08rem,1rem + .45vw,1.3rem); color:var(--ink-soft); line-height:1.68; }
.prose p{ color:var(--ink-soft); }
.band--night .prose p{ color:var(--cream-muted); }

/* ---------------------------------------------------------------- media / split feature */
.feature{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,4.5rem); align-items:center; }
.feature + .feature{ margin-top:clamp(3.5rem,4vw,6rem); }
.feature:nth-child(even) .feature__media{ order:2; }
.feature__media{ position:relative; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-card); background:var(--cream-2); aspect-ratio:4/3; }
.feature__media img{ width:100%; height:100%; object-fit:cover; }
.feature__media::after{ content:""; position:absolute; inset:0; box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); border-radius:20px; pointer-events:none; }

/* image placeholder (real photos wanted) */
.ph{ position:relative; display:grid; place-items:center; color:var(--flame-deep);
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(252,176,41,.22), transparent 70%),
    repeating-linear-gradient(135deg, var(--cream-2) 0 14px, #efe2cd 14px 28px); }
.ph span{ position:relative; z-index:1; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600; text-align:center; padding:1em; opacity:.8; }
.ph svg{ width:34px; height:34px; margin-bottom:.4rem; opacity:.65; }

/* ---------------------------------------------------------------- TIMES cards (conversion core) */
.times{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:clamp(1rem,2vw,1.6rem); }
.time-card{ position:relative; padding:clamp(1.6rem,1.2rem + 1.5vw,2.4rem); border-radius:18px; overflow:hidden;
  background:var(--cream); border:1px solid var(--cream-line); box-shadow:var(--shadow-card);
  transition:transform .22s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease); }
.time-card__glow{ position:absolute; inset:auto -30% -60% -30%; height:70%; z-index:0;
  background:radial-gradient(60% 100% at 50% 100%, var(--glow), transparent 70%); opacity:.5; transition:opacity .55s var(--ease); }
.time-card > *{ position:relative; z-index:1; }
.time-card.is-lit{ transform:translateY(-6px); }  /* scroll-active lift; hover tilt is JS-driven */
.time-card:hover,.time-card.is-lit{ box-shadow:var(--shadow-lift); border-color:color-mix(in srgb,var(--flame) 45%, var(--cream-line)); }
.time-card:hover .time-card__glow,.time-card.is-lit .time-card__glow{ opacity:1; }
.time-card__badge{ display:inline-flex; align-items:center; gap:.5em; font-size:.72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--flame-deep); margin-bottom:1rem; }
.time-card__day{ font-family:var(--display); font-size:clamp(1.7rem,1.3rem + 1.6vw,2.3rem); margin-bottom:.1rem; }
.time-card__hour{ font-family:var(--display); font-size:1.15rem; color:var(--flame-deep); margin-bottom:.9rem; font-variant-numeric:tabular-nums; }
.time-card p{ color:var(--ink-soft); font-size:.98rem; }
.time-card__foot{ margin-top:1.2rem; }

/* small flame icon */
.flame-ico{ width:1em; height:1em; }

/* ---------------------------------------------------------------- triad step accordion (Restored/Equipped/Sent) */
.journey{ position:relative; }
.journey-inner{ display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(2rem,4vw,4rem); align-items:center; width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(20px,5vw,44px); }
.journey h2{ font-size:clamp(1.7rem,1.3rem + 1.4vw,2.45rem); }
.steps{ list-style:none; margin:0; padding:0; }
.step{ border-top:1px solid var(--line); }
.step:first-child{ border-top:0; }
.step-row{ display:flex; align-items:center; gap:1rem; padding:.72rem 0; cursor:default; }
.step-num{ flex:0 0 auto; display:grid; place-items:center; width:40px; height:40px; border-radius:11px;
  font-family:var(--display); font-size:.9rem; font-variant-numeric:tabular-nums; color:var(--flame-deep);
  background:color-mix(in srgb,var(--flame) 12%, transparent); transition:all .5s var(--ease); }
.step-title{ font-size:clamp(1.35rem,1.05rem + 1.4vw,1.85rem); color:var(--ink-soft); transition:color .5s var(--ease); }
.step-title b{ font-weight:500; }
.step-body{ display:grid; grid-template-rows:0fr; opacity:0; padding-left:56px; position:relative;
  transition:grid-template-rows .6s var(--ease), opacity .5s var(--ease); }
.step-body > *{ min-height:0; }
.step-body p{ margin:0 0 .8rem; color:var(--ink-soft); max-width:44ch; overflow:hidden; }
.step-ref{ display:block; font-size:.82rem; letter-spacing:.06em; color:var(--flame-deep); margin-bottom:.7rem; overflow:hidden; }
.step-line{ position:absolute; left:19px; top:2px; width:2px; height:calc(100% - 22px); background:var(--line); border-radius:2px; overflow:hidden; }
.step-line i{ position:absolute; inset:0 0 auto 0; height:100%; display:block; transform:scaleY(0); transform-origin:top; background:linear-gradient(180deg,var(--gold),var(--flame)); }
.step.is-active .step-num{ color:#fff; background:var(--flame); box-shadow:0 0 24px -6px var(--glow); }
.step.is-active .step-title{ color:var(--ink); }
.step.is-active .step-body{ grid-template-rows:1fr; opacity:1; }
.step.is-active .step-line i{ transform:scaleY(1); }

.journey-media{ position:relative; aspect-ratio:4/5; width:min(100%, 53svh); justify-self:center; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-card); background:var(--char-2); }
.jm{ position:absolute; inset:0; margin:0; opacity:0; transform:scale(1.06); transition:opacity .8s var(--ease), transform 1.3s var(--ease); }
.jm img{ width:100%; height:100%; object-fit:cover; }
.jm.is-active{ opacity:1; transform:scale(1); }
.jm .ph{ position:absolute; inset:0; }

/* ---------------------------------------------------------------- pillars */
.pillars{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1.2rem,2vw,1.8rem); }
.pillar{ display:flex; gap:1.1rem; padding:clamp(1.4rem,1rem + 1vw,1.9rem); border-radius:16px;
  background:var(--cream); border:1px solid var(--cream-line); box-shadow:var(--shadow-card);
  transition:transform .22s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.pillar:hover{ box-shadow:var(--shadow-lift); border-color:color-mix(in srgb,var(--flame) 30%, var(--cream-line)); }
.pillar__icon{ flex:0 0 auto; display:grid; place-items:center; width:48px; height:48px; border-radius:12px; color:var(--flame-deep);
  background:color-mix(in srgb,var(--flame) 12%, transparent); }
.pillar__icon svg{ width:24px; height:24px; }
.pillar h3{ font-size:1.16rem; margin-bottom:.35rem; }
.pillar p{ color:var(--ink-soft); font-size:.98rem; margin:0; }
.section--sand .pillar{ background:var(--cream); }

/* ---------------------------------------------------------------- expect / faq accordion (native) */
.expect{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; align-items:start; }
/* two independent columns: opening an item in one column never stretches or shifts the other */
.expect__col{ display:flex; flex-direction:column; gap:1rem; min-width:0; }
.qa{ border:1px solid var(--cream-line); border-radius:14px; background:var(--cream); overflow:hidden;
  transition:border-color .45s var(--ease), box-shadow .45s var(--ease); }
.qa.is-open{ border-color:color-mix(in srgb,var(--flame) 34%, var(--cream-line)); box-shadow:var(--shadow-card); }
.qa__q{ width:100%; display:flex; align-items:center; gap:.8rem; padding:1.05rem 1.3rem;
  font-family:var(--display); font-size:1.12rem; color:var(--ink); text-align:left; cursor:pointer;
  transition:background .4s var(--ease); }
.qa__q:hover{ background:var(--cream-2); }
.qa__q .q-ico{ flex:0 0 auto; width:22px; height:22px; color:var(--flame); transition:transform .45s var(--ease); }
.qa.is-open .qa__q .q-ico{ transform:rotate(90deg); }
/* smooth glide-open: JS animates the wrapper height (measured), so it eases open/closed.
   Defaults to open (height:auto) so answers stay readable with JS off; JS collapses the closed ones. */
.qa__wrap{ overflow:hidden; transition:height .5s var(--ease); }
.qa__body p{ margin:0; padding:0 1.3rem 1.15rem; color:var(--ink-soft);
  opacity:1; transform:none; transition:opacity .4s var(--ease) .06s, transform .4s var(--ease) .06s; }
.qa:not(.is-open) .qa__body p{ opacity:0; transform:translateY(-5px); }
html.reduce .qa__wrap, html.reduce .qa__body p{ transition:none; }

/* ---------------------------------------------------------------- how-to steps (3 easy) */
.how{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,2vw,2rem); counter-reset:how; }
.how__item{ position:relative; padding:clamp(1.5rem,1rem + 1.4vw,2.2rem); border-radius:16px; background:var(--cream); border:1px solid var(--cream-line); box-shadow:var(--shadow-card); }
.how__badge{ display:grid; place-items:center; width:46px; height:46px; border-radius:50%; margin-bottom:1rem;
  font-family:var(--display); font-size:1.15rem; color:#fff; background:var(--flame); box-shadow:0 0 24px -8px var(--glow); }
.how__item h3{ font-size:1.2rem; margin-bottom:.4rem; }
.how__item p{ color:var(--ink-soft); margin:0; }

/* ---------------------------------------------------------------- scripture moment */
.scripture{ text-align:center; max-width:820px; margin-inline:auto; position:relative; z-index:2; }
.scripture__mark{ width:44px; height:76px; margin:0 auto 1.6rem; filter:drop-shadow(0 0 22px var(--glow)); }
.scripture blockquote{ font-family:var(--display); font-style:italic; font-weight:400; font-size:clamp(1.5rem,1.1rem + 2.2vw,2.7rem); line-height:1.28; margin:0; color:var(--cream-ink); }
.scripture cite{ display:block; margin-top:1.4rem; font-style:normal; font-size:.85rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }

/* ---------------------------------------------------------------- CTA band */
.cta-band{ text-align:center; max-width:760px; margin-inline:auto; position:relative; z-index:2; }
.cta-band .roofline{ color:var(--gold); }
.cta-band h2{ margin-bottom:1rem; }
.cta-band p{ color:var(--cream-muted); font-size:clamp(1.05rem,1rem + .4vw,1.25rem); margin-bottom:1.8rem; }

/* ---------------------------------------------------------------- callout */
.callout{ display:flex; gap:1rem; padding:1.3rem 1.5rem; border-radius:14px; background:var(--cream-2); border:1px solid var(--cream-line); }
.callout svg{ flex:0 0 auto; width:24px; height:24px; color:var(--flame); margin-top:.15rem; }
.callout p{ margin:0; color:var(--ink-soft); }
.callout a{ color:var(--flame-deep); font-weight:600; text-decoration:underline; text-underline-offset:2px; }

/* ---------------------------------------------------------------- forms */
.form{ display:grid; gap:1.1rem; }
.form__row{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.field{ display:grid; gap:.4rem; }
.field label{ font-size:.85rem; font-weight:600; letter-spacing:.02em; color:var(--ink); }
.field input,.field textarea,.field select{ font:inherit; padding:.85em 1em; border-radius:12px; border:1px solid var(--cream-line); background:var(--cream); color:var(--ink); transition:border-color .35s var(--ease), box-shadow .35s var(--ease); }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--flame); box-shadow:0 0 0 3px color-mix(in srgb,var(--flame) 18%, transparent); }
.field textarea{ resize:vertical; min-height:130px; }
.field--error input,.field--error textarea{ border-color:#c0392b; }
.field__err{ font-size:.8rem; color:#c0392b; min-height:1em; }
.form__note{ font-size:.86rem; color:var(--ink-soft); }
.form__status{ padding:1rem 1.2rem; border-radius:12px; background:color-mix(in srgb,var(--flame) 10%, var(--cream)); border:1px solid var(--cream-line); font-size:.95rem; }
.form__status[hidden]{ display:none; }

/* contact split */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,4rem); align-items:start; }
.contact-info{ display:grid; gap:1.4rem; }
.contact-line{ display:flex; gap:.9rem; align-items:flex-start; }
.contact-line svg{ flex:0 0 auto; width:22px; height:22px; color:var(--flame); margin-top:.2rem; }
.contact-line b{ display:block; font-family:var(--display); font-size:1.05rem; }
.contact-line a{ color:var(--flame-deep); }

/* ---------------------------------------------------------------- give */
.give-options{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.2rem; }
.give-card{ position:relative; padding:1.8rem; border-radius:16px; background:var(--cream); border:1px solid var(--cream-line); box-shadow:var(--shadow-card);
  transform-origin:center; will-change:transform;
  transition:box-shadow .4s var(--ease), border-color .4s var(--ease); }
/* tilt + pop-out on hover (transform driven by JS; shadow/border/glow by CSS) */
.give-card:hover{ z-index:3; background:var(--cream);
  box-shadow:0 40px 80px -24px rgba(20,13,9,.6), 0 4px 16px rgba(20,13,9,.16),
    0 0 0 1px color-mix(in srgb,var(--flame) 30%, transparent);
  border-color:color-mix(in srgb,var(--flame) 60%, var(--cream-line)); }
.give-card:hover h3{ color:var(--flame-deep); }
@media (hover:none){ .give-card{ will-change:auto; } }
.give-card h3{ font-size:1.2rem; margin-bottom:.5rem; }
.give-card p{ color:var(--ink-soft); font-size:.96rem; }
.give-card--online{ border-color:color-mix(in srgb,var(--flame) 32%, var(--cream-line)); box-shadow:var(--shadow-lift); }
.give-handle{ display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; margin:.7rem 0 .5rem; }
.give-handle code{ font-family:var(--body); font-weight:600; font-size:.95rem; background:var(--cream-2); border:1px solid var(--cream-line); border-radius:8px; padding:.5em .7em; color:var(--ink); word-break:break-all; }
.give-copy{ display:inline-flex; align-items:center; gap:.35em; font-size:.8rem; font-weight:600; color:var(--flame-deep); border:1px solid var(--cream-line); border-radius:8px; padding:.5em .8em; transition:background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.give-copy svg{ width:14px; height:14px; }
.give-copy:hover{ background:var(--cream-2); border-color:var(--flame); }
.give-copy.copied{ color:#2e7d32; border-color:#2e7d32; }
.give-sub{ font-size:.88rem; color:var(--ink-soft); margin-top:.5rem; }
.tag{ display:inline-block; font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--flame-deep); background:color-mix(in srgb,var(--flame) 12%, transparent); padding:.3em .7em; border-radius:40px; margin-bottom:.8rem; }

/* fire cursor — a glowing ember trail follows the pointer (desktop only, JS-drawn) */
.fire-cursor{ position:fixed; inset:0; width:100%; height:100%; pointer-events:none; z-index:9999; }
@media (hover:none), (pointer:coarse){ .fire-cursor{ display:none; } }

/* ---------------------------------------------------------------- footer */
.site-footer{ position:relative; overflow:hidden; color:var(--cream-ink); background:radial-gradient(120% 120% at 50% -20%, #2c1c11 0%, #1f140f 60%, var(--char) 100%); padding:clamp(3.5rem,3rem + 3vw,5.5rem) 0 2rem; }
.site-footer .embers{ z-index:0; opacity:.7; }
.footer-inner{ position:relative; z-index:2; }
.footer-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:clamp(1.6rem,3vw,3rem); padding-bottom:2.6rem; border-bottom:1px solid var(--line-dark); }
.footer-brand .brand__name{ color:var(--cream-ink); }
.footer-tag{ color:var(--cream-muted); max-width:32ch; margin:1rem 0 1.2rem; }
.footer-social{ display:flex; gap:.7rem; }
.footer-social a{ display:grid; place-items:center; width:40px; height:40px; border-radius:50%; border:1px solid var(--line-dark); color:var(--cream-muted); transition:color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease); }
.footer-social a:hover{ color:var(--gold); border-color:var(--gold); transform:translateY(-2px); }
.footer-social svg{ width:18px; height:18px; }
.footer-col h4{ font-family:var(--body); font-size:.76rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin:0 0 1rem; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:.55rem; }
.footer-col a,.footer-col p{ color:var(--cream-muted); font-size:.95rem; margin:0; transition:color .35s var(--ease); }
.footer-col a:hover{ color:var(--cream-ink); }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; justify-content:space-between; align-items:center; padding-top:1.6rem; font-size:.85rem; color:var(--cream-muted); }
.footer-bottom a{ color:var(--cream-muted); text-decoration:underline; text-underline-offset:2px; }
.footer-bottom a:hover{ color:var(--gold); }
.footer-verse{ font-family:var(--display); font-style:italic; }
.footer-made{ display:flex; gap:.4em; }

/* ---------------------------------------------------------------- 404 */
.err-wrap{ min-height:100svh; display:grid; place-items:center; text-align:center; position:relative; overflow:hidden;
  background:radial-gradient(120% 100% at 50% 0%, #33200f 0%, #20140f 55%, var(--char) 100%); color:var(--cream-ink); }
.err-wrap .embers{ z-index:0; }
.err-inner{ position:relative; z-index:2; padding:2rem; max-width:560px; }
.err-inner .hero__mark{ margin-inline:auto; }
.err-code{ font-family:var(--display); font-size:clamp(4rem,3rem + 8vw,7rem); line-height:1; color:var(--gold); }

/* ============================================================ REDUCED MOTION */
html.reduce [data-split], html.reduce [data-reveal]{ visibility:visible !important; }
html.reduce .step-body{ grid-template-rows:1fr; opacity:1; }
html.reduce .step-num{ color:#fff; background:var(--flame); }
html.reduce .step-title{ color:var(--ink); }
html.reduce .step-line i{ transform:scaleY(1); }
html.reduce .jm{ position:relative; opacity:1; transform:none; }
html.reduce .jm + .jm{ display:none; }
html.reduce *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; }

/* ============================================================ WELCOME (premium treatment) */
.welcome-lux{ position:relative; overflow:hidden; background:linear-gradient(180deg,var(--cream) 0%,#fdf7ee 55%,var(--cream) 100%); }
.welcome-lux::before{ content:""; position:absolute; left:50%; top:14%; width:min(820px,94vw); height:min(480px,60vh); transform:translateX(-50%); z-index:0; pointer-events:none;
  background:radial-gradient(closest-side, rgba(244,100,27,.11), rgba(252,176,41,.05) 55%, transparent 74%); }
.welcome-lux .container{ position:relative; z-index:1; }
.welcome-lux .roofline{ animation:floaty 5.5s var(--ease) infinite; filter:drop-shadow(0 6px 14px rgba(244,100,27,.22)); }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
html.reduce .welcome-lux .roofline{ animation:none; }
/* drifting sparks (light-bg friendly) */
.welcome-lux .spark{ position:absolute; z-index:0; width:5px; height:5px; border-radius:50%; background:radial-gradient(circle,var(--amber),rgba(244,100,27,0)); opacity:.5; animation:sparkRise 7s linear infinite; }
.welcome-lux .spark:nth-child(1){ left:16%; bottom:8%; animation-delay:0s; }
.welcome-lux .spark:nth-child(2){ left:82%; bottom:12%; width:4px; height:4px; animation-delay:1.6s; }
.welcome-lux .spark:nth-child(3){ left:28%; bottom:4%; width:6px; height:6px; animation-delay:3.1s; }
.welcome-lux .spark:nth-child(4){ left:70%; bottom:6%; animation-delay:4.5s; }
.welcome-lux .spark:nth-child(5){ left:48%; bottom:2%; width:4px; height:4px; animation-delay:2.3s; }
@keyframes sparkRise{ 0%{ transform:translateY(0) scale(.6); opacity:0; } 12%{ opacity:.6; } 88%{ opacity:.5; } 100%{ transform:translateY(-440px) scale(1); opacity:0; } }
html.reduce .welcome-lux .spark{ display:none; }
.welcome-lux h2 .word-em, .welcome-lux h2 em{ color:var(--flame); font-style:italic; }

/* ============================================================ TIME CARDS (more alive) */
.time-card__glow{ animation:cardGlowPulse 5s var(--ease) infinite; }
@keyframes cardGlowPulse{ 0%,100%{ opacity:.42; } 50%{ opacity:.72; } }
html.reduce .time-card__glow{ animation:none; }
.time-card__badge .flame-ico{ transform-origin:50% 85%; animation:flameFlicker 3.4s var(--ease) infinite; }
@keyframes flameFlicker{ 0%,100%{ transform:scale(1) rotate(0deg); } 28%{ transform:scale(1.1) rotate(-3deg); } 55%{ transform:scale(.94) rotate(2deg); } 78%{ transform:scale(1.05) rotate(-1deg); } }
html.reduce .time-card__badge .flame-ico{ animation:none; }
.time-card{ transform-style:preserve-3d; }
.time-card__day{ transition:color .55s var(--ease); }
.time-card.is-lit .time-card__day{ color:var(--flame-deep); }
.time-card.is-lit .time-card__badge{ color:var(--flame); }
/* a light sweep that crosses the card the first time it lights up */
.time-card__shine{ position:absolute; inset:0; z-index:2; pointer-events:none; overflow:hidden; border-radius:inherit; opacity:0; }
.time-card__shine::before{ content:""; position:absolute; top:-30%; left:-60%; width:45%; height:160%; transform:rotate(12deg);
  background:linear-gradient(90deg, transparent, rgba(255,247,235,.55), transparent); }
.time-card.shined .time-card__shine{ opacity:1; animation:cardShine 1.15s var(--ease) 1; }
@keyframes cardShine{ 0%{ transform:translateX(0); } 100%{ transform:translateX(320%); } }
html.reduce .time-card__shine{ display:none; }

/* ============================================================ HEALING & DELIVERANCE */
.healing{ position:relative; }
.healing .lead{ color:var(--cream-muted); }
.heal-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1.2rem,2.5vw,2rem); margin-top:clamp(2rem,3vw,3rem); }
.heal-card{ position:relative; padding:clamp(1.6rem,1.2rem + 1.4vw,2.3rem); border-radius:18px; overflow:hidden;
  background:linear-gradient(180deg, rgba(60,36,20,.55), rgba(30,20,15,.45)); border:1px solid var(--line-dark);
  transition:transform .22s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease); }
.heal-card:hover{ border-color:color-mix(in srgb,var(--flame) 45%, transparent); box-shadow:0 30px 60px -34px rgba(0,0,0,.7); }
.heal-card__glow{ position:absolute; inset:auto -20% -50% -20%; height:70%; z-index:0; background:radial-gradient(60% 100% at 50% 100%, var(--glow), transparent 72%); opacity:.5; transition:opacity .55s var(--ease); }
.heal-card:hover .heal-card__glow{ opacity:.9; }
.heal-card > *{ position:relative; z-index:1; }
.heal-card__icon{ display:grid; place-items:center; width:52px; height:52px; border-radius:14px; margin-bottom:1.1rem; color:var(--gold);
  background:color-mix(in srgb,var(--flame) 20%, transparent); }
.heal-card__icon svg{ width:26px; height:26px; }
.heal-card h3{ color:var(--cream-ink); font-size:1.3rem; margin-bottom:.5rem; }
.heal-card p{ color:var(--cream-muted); margin:0; }
.heal-card__ref{ display:block; margin-top:.9rem; font-size:.8rem; letter-spacing:.08em; color:var(--gold); }

/* ============================================================ GIVE — "watch the fire spread" */
.spread{ position:relative; }
.spread .lead{ color:var(--cream-muted); }
.spread-field{ display:flex; flex-wrap:wrap; justify-content:center; align-items:flex-end;
  gap:clamp(.9rem,3vw,2.4rem); max-width:840px; margin:clamp(2.4rem,4vw,3.8rem) auto 0; position:relative; z-index:2; }
.home{ position:relative; display:grid; place-items:center; }
.home::before{ content:""; position:absolute; inset:-34% -34% -20% -34%; z-index:0; border-radius:50%;
  background:radial-gradient(circle, var(--glow), transparent 66%); opacity:0; transform:scale(.5);
  transition:opacity .7s var(--ease), transform .7s var(--ease); }
.home.lit::before{ opacity:.85; transform:scale(1); }
.home svg{ position:relative; z-index:1; width:clamp(40px,6.2vw,58px); height:auto; overflow:visible; }
.home-house,.home-cross{ fill:none; stroke:var(--cream-muted); stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
  opacity:.45; transition:stroke .7s var(--ease), opacity .7s var(--ease); }
.home.lit .home-house,.home.lit .home-cross{ stroke:var(--gold); opacity:1; }
.home-flame{ fill:var(--flame); opacity:0; transform-box:fill-box; transform-origin:50% 100%; transform:scale(.3);
  transition:opacity .55s var(--ease), transform .6s var(--ease); }
.home.lit .home-flame{ opacity:1; transform:scale(1); filter:drop-shadow(0 0 7px var(--glow)); }
.home-flame-in{ fill:var(--gold); opacity:0; transform-box:fill-box; transform-origin:50% 100%; transform:scale(.2);
  transition:opacity .6s var(--ease) .05s, transform .65s var(--ease) .05s; }
.home.lit .home-flame-in{ opacity:1; transform:scale(1); }
.spread-caption{ max-width:46ch; margin:clamp(2.2rem,3.2vw,3.2rem) auto 0; text-align:center; position:relative; z-index:2;
  font-family:var(--display); font-style:italic; font-size:clamp(1.2rem,1rem + .8vw,1.6rem); color:var(--gold); line-height:1.42; }
html.reduce .home::before{ opacity:.85; transform:scale(1); }
html.reduce .home-house, html.reduce .home-cross{ stroke:var(--gold); opacity:1; }
html.reduce .home-flame, html.reduce .home-flame-in{ opacity:1; transform:scale(1); }

/* ============================================================ GIVE — flame scroll-scrub */
.flame-scrub{ position:relative; }
.flame-scrub [data-scrub-pin]{ position:relative; height:100svh; overflow:hidden; background:var(--char); }
.flame-canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.flame-scrim{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    /* warm ember bloom lifting the darkness near the flame */
    radial-gradient(62% 50% at 46% 70%, rgba(244,100,27,.14) 0%, rgba(244,100,27,.05) 34%, transparent 62%),
    /* cinematic vignette: crush the edges to near-black so the negative space reads intentional, not blotchy */
    radial-gradient(104% 96% at 50% 56%, transparent 30%, rgba(12,8,5,.5) 64%, rgba(7,4,3,.93) 100%),
    /* top + bottom gradients keep the eyebrow, heading and scroll cue legible */
    linear-gradient(180deg, rgba(9,6,4,.66) 0%, transparent 24%, transparent 58%, rgba(7,4,3,.84) 100%); }
.flame-caps{ position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center;
  justify-content:center; text-align:center; padding:0 clamp(1.4rem,7vw,4rem); gap:clamp(1rem,2vw,1.6rem); }
/* the heading: split into LETTERS, each dim by default; JS lights them one-by-one on scroll (Watch pattern) */
.flame-eyebrow{ margin:0; color:var(--gold); font-family:var(--body); font-size:.76rem; font-weight:600;
  letter-spacing:.24em; text-transform:uppercase; }
.flame-head{ margin:0; max-width:15ch; color:var(--cream-ink); font-family:var(--display); font-weight:500;
  font-size:clamp(2.3rem,1.5rem + 3.8vw,5rem); line-height:1.03; letter-spacing:-.015em;
  text-shadow:0 2px 36px rgba(20,13,9,.82); }
.flame-head .rl{ display:inline-block; opacity:0; will-change:opacity; }
.flame-sub{ margin:0; max-width:30ch; color:var(--gold); font-family:var(--display); font-style:italic; font-weight:500;
  font-size:clamp(1.05rem,.9rem + .9vw,1.5rem); line-height:1.42; text-shadow:0 2px 22px rgba(20,13,9,.72); opacity:0; }
html.reduce .flame-head .rl{ opacity:1; }
html.reduce .flame-sub{ opacity:1; }
.flame-scrub__cue{ position:absolute; left:50%; bottom:1.4rem; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:.4rem; color:var(--cream-muted);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; }
.flame-scrub__cue svg{ width:20px; height:20px; animation:bob 2.4s var(--ease) infinite; }
html.reduce .flame-scrub__cue{ display:none; }
/* reduced motion: not pinned, so collapse the tall scroll track to a single screen (poster still) */
html.reduce .flame-scrub{ min-height:100svh !important; }
html.reduce [data-phase]{ position:relative; opacity:1; }
html.reduce [data-phase] + [data-phase]{ display:none; }

/* ============================================================ RESPONSIVE */
@media (max-width:1000px){
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:860px){
  .nav{ position:fixed; inset:0; width:auto; flex-direction:column; align-items:flex-start; justify-content:flex-start;
    gap:1.4rem; padding:6rem 2rem 2rem; background:var(--char); color:var(--cream-ink);
    transform:translateX(101%); transition:transform .5s var(--ease); box-shadow:-30px 0 60px -30px rgba(0,0,0,.7); z-index:118; }
  .nav-open .nav{ transform:translateX(0); }
  .nav-list{ flex-direction:column; align-items:flex-start; gap:1.1rem; }
  .topbar .nav-link,.nav-link{ color:var(--cream-ink); font-size:1.15rem; }
  .topbar.scrolled .nav-link{ color:var(--cream-ink); }
  .nav-actions{ flex-direction:column; align-items:flex-start; gap:1.1rem; width:100%; }
  .header-call,.topbar.scrolled .header-call{ color:var(--cream-ink); font-size:1.05rem; }
  .nav-toggle{ display:flex; z-index:125; }
  .nav-open .nav-toggle__bar{ background:transparent; }
  .nav-open .nav-toggle__bar::before{ transform:translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle__bar::after{ transform:translateY(-6px) rotate(-45deg); }
  .nav-open .topbar .nav-toggle{ color:var(--cream-ink); }
  .nav-scrim{ position:fixed; inset:0; background:rgba(15,10,7,.8); opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s; z-index:114; }
  .nav-open .nav-scrim{ opacity:1; visibility:visible; }

  .feature{ grid-template-columns:1fr; gap:1.6rem; }
  /* mobile: text/title first, image below (flip the desktop image-left layout) */
  .feature__body{ order:1; }
  .feature__media,.feature:nth-child(even) .feature__media{ order:2; }
  /* mobile: journey is NOT pinned (steps activate on scroll) — drop the desktop 300vh/100dvh sizing */
  .journey[data-steps]{ min-height:0 !important; }
  .journey [data-steps-pin]{ height:auto !important; display:block !important; padding:3.5rem 0 !important; }
  .journey__scroll{ display:none; }
  /* the on-page hero logo is redundant with the top-left brand on small screens */
  .hero__mark{ display:none; }
  .hero__inner{ padding-top:clamp(5rem,11vh,7rem); }
  .hero__scroll{ bottom:1rem; }
  .heal-grid{ grid-template-columns:1fr; }
  .spread-field{ gap:1rem 1.3rem; }
  .journey-inner{ grid-template-columns:1fr; gap:2rem; }
  /* mobile: the single crossfade box is hidden; each photo is moved into its own step (see main.js) */
  .journey-media{ display:none; }
  .step .jm{ position:relative; display:block; opacity:1; transform:none; margin:1.15rem 0 .3rem;
    border-radius:16px; overflow:hidden; aspect-ratio:16/10; box-shadow:var(--shadow-card); background:var(--char-2); }
  .step .jm .ph{ position:absolute; inset:0; }
  /* on mobile every step is shown expanded (sticky visual) so nothing is hidden without a pin */
  .step-body{ grid-template-rows:1fr; opacity:1; }
  .step-line i{ transform:scaleY(1); }
  .pillars{ grid-template-columns:1fr; }
  .expect{ grid-template-columns:1fr; }
  .how{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form__row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .btn-row .btn{ width:100%; }
  .hero__times{ gap:.6rem 1rem; }
}
