/* Static editorial imagery; the page uses ordinary document scrolling. */
.hero-image img { filter:saturate(.45) brightness(.67); }
.hero-atmosphere { background:radial-gradient(ellipse at 70% 30%,#b08bd530,transparent 48%); }
.hero .live-pill span,.hero .label::before { background:#d9ae86; }
.hero h1 { text-shadow:0 5px 35px #0003; }
.hero-scroll-note { display:flex; gap:13px; align-items:center; color:#dccce7; font:8px var(--mono); text-transform:uppercase; letter-spacing:.1em; }
.hero-scroll-note::before { content:''; width:40px; height:1px; background:#dccce76b; }
.kpi:nth-child(4) .n { color:#7b6554; }
.editorial-feature { padding:0; margin-top:85px; }
.editorial-card { position:relative; min-height:620px; padding:40px 44px; background:#291c38; color:#f7f6f0; border-radius:24px; overflow:hidden; isolation:isolate; display:flex; flex-direction:column; justify-content:space-between; gap:55px; }
.editorial-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:60% center; z-index:-2; }
.editorial-card::after { content:''; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,#25172fcf,transparent 90%),linear-gradient(0deg,#25172f85,transparent 65%); }
.editorial-card>.label { color:#e0d3e9; }
.editorial-copy h2 { font-size:clamp(58px,7vw,112px); line-height:.98; font-weight:500; letter-spacing:-.065em; }
.editorial-copy h2 span { color:#dec8f2; }
.editorial-copy p { font-size:15px; line-height:1.65; max-width:330px; color:#e9e0ef; margin-top:28px; }
.editorial-copy .text-link { font-size:12px; border-color:#d3bde57a; }
.editorial-credit { font:7px var(--mono); color:#d1bfdc; text-transform:uppercase; letter-spacing:.08em; }
@media(max-width:760px) {
 .editorial-feature { margin-top:60px; }
 .editorial-card { min-height:600px; padding:28px 24px; border-radius:18px; gap:24px; }
 .editorial-image { object-position:68% center; }
 .editorial-card::after { background:linear-gradient(0deg,#21142ef2,#2a1b3920 95%); }
 .editorial-copy { margin-top:auto; }
 .editorial-copy h2 { font-size:clamp(43px,10.8vw,72px); }
 .editorial-copy p { font-size:13px; max-width:280px; margin-top:22px; }
 .editorial-credit { font-size:6px; }
}

/* Scroll reveals for section copy and cards. Content stays visible until the observer is ready. */
.motion-ready .reveal {
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.2,.65,.3,1),transform .7s cubic-bezier(.2,.65,.3,1);
  transition-delay:var(--reveal-delay,0ms);
}
.motion-ready .reveal.is-visible { opacity:1; transform:translateY(0); }
@media(prefers-reduced-motion:reduce) {
  .motion-ready .reveal,.motion-ready .reveal.is-visible { opacity:1; transform:none; transition:none; }
}
