/* =========================================================
   Bonad Marketing — Cinematic dark + media
   Pure CSS, no frameworks.
   ========================================================= */

:root {
  --bg:        #0a0908;
  --bg-2:      #100f0d;
  --text:      #F3EFE8;
  --muted:     #8b867c;
  --muted-2:   #5c584f;
  --accent:    #E2543B;   /* subtle warm ember */
  --accent-2:  #ff6a4d;
  --line:      rgba(243,239,232,.13);
  --line-soft: rgba(243,239,232,.06);

  --maxw: 1480px;
  --pad:  clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-o: cubic-bezier(.16,1,.3,1);
  --reveal-ease: cubic-bezier(.19,1,.22,1);

  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  line-height: 1.5; font-size: 16px; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
sup { font-size: .4em; vertical-align: super; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------------- Loader ---------------- */
.loader { position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: grid; place-items: center;
  animation: loaderOut .9s var(--ease) 1.25s forwards; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader__brand { font: 800 clamp(2rem,7vw,3.4rem)/1 var(--sans); letter-spacing: -.03em; }
.loader__bar { width: 180px; max-width: 50vw; height: 2px; background: var(--line); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--accent); animation: loaderFill 1.25s var(--ease-o) forwards; }
@keyframes loaderFill { to { width: 100%; } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; transform: translateY(-101%); } }

/* ---------------- Grain ---------------- */
.grain { position: fixed; inset: -50%; z-index: 900; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite; }
@keyframes grainShift { 0%{transform:translate(0,0)} 25%{transform:translate(-4%,2%)} 50%{transform:translate(3%,-3%)} 75%{transform:translate(-2%,4%)} 100%{transform:translate(2%,-2%)} }

/* ---------------- Cursor ---------------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 950; pointer-events: none; width: 12px; height: 12px;
  border-radius: 50%; border: 1px solid var(--text); transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .3s; opacity: 0; }
.cursor__label { position: absolute; inset: 0; display: grid; place-items: center; font: 600 .6rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--bg); opacity: 0; transition: opacity .25s; }
.cursor.is-hover { width: 46px; height: 46px; background: var(--text); }
.cursor.is-media { width: 88px; height: 88px; background: var(--accent); border-color: var(--accent); }
.cursor.is-media .cursor__label { opacity: 1; color: #fff; }
.cursor.is-down { transform: translate(-50%,-50%) scale(.85); }
@media (hover: none),(pointer: coarse){ .cursor { display: none; } }

/* ---------------- Scroll progress ---------------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 940; }

/* ---------------- Cinematic film blocks ---------------- */
.film { position: relative; overflow: hidden; background: #0c0b0a; }
.film::before { content: ""; position: absolute; inset: -25%; background:
  radial-gradient(40% 50% at 25% 30%, var(--c1, #5a2418), transparent 60%),
  radial-gradient(45% 55% at 78% 35%, var(--c2, #7a3a1c), transparent 62%),
  radial-gradient(50% 60% at 55% 80%, var(--c3, #2a2622), transparent 60%);
  filter: blur(8px) saturate(115%); animation: drift 18s var(--ease) infinite alternate; }
.film::after { content: ""; position: absolute; inset: 0; background:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: .08; mix-blend-mode: overlay; }
@keyframes drift { 0%{ transform: translate(0,0) scale(1.05); } 100%{ transform: translate(-4%,-3%) scale(1.18); } }

/* film palettes */
.film--hero { --c1:#6e2e16; --c2:#8a3d1a; --c3:#241f1b; }
.film--reel { --c1:#3a2a44; --c2:#7a3a1c; --c3:#1c1a18; }
.film--cta  { --c1:#7a3219; --c2:#4a2330; --c3:#1a1714; }
.film--w1   { --c1:#7a3a1c; --c2:#9c5a2a; --c3:#241c16; }
.film--w2   { --c1:#23323a; --c2:#3a5560; --c3:#161a1c; }
.film--w3   { --c1:#5a2236; --c2:#8a3550; --c3:#1e1418; }

/* ---------------- Shared section bits ---------------- */
.section { position: relative; padding: clamp(90px, 13vw, 200px) 0; }
.sec-tag { display: inline-block; font: 500 .8rem/1 var(--sans); letter-spacing: .04em; color: var(--muted); margin-bottom: 30px; }
.sec-title { font-family: var(--sans); font-weight: 600; font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.04em; }
.sec-title i { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -.01em; }
.accent { color: var(--accent); }

/* reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--reveal-ease), transform 1s var(--reveal-ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* line reveal (mask) */
.ln { display: block; overflow: hidden; }
.ln > span { display: block; transform: translateY(105%); transition: transform 1s var(--reveal-ease); }
.is-in .ln > span, .ln.is-in > span { transform: none; }
.reveal-line { display: block; opacity: 0; transform: translateY(40px); transition: opacity .9s var(--reveal-ease), transform .9s var(--reveal-ease); }
.reveal-line.is-in { opacity: 1; transform: none; }

/* =========================================================
   HEADER
   ========================================================= */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad); transition: transform .5s var(--ease), background .4s, backdrop-filter .4s, padding .4s; }
.header.is-scrolled { background: rgba(10,9,8,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding-block: 14px; }
.header.is-hidden { transform: translateY(-100%); }
.brand { font: 800 1.5rem/1 var(--sans); letter-spacing: -.03em; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link { padding: 9px 16px; font: 500 .95rem/1 var(--sans); color: var(--muted); border-radius: 100px; transition: color .25s, background .25s; }
.nav__link:hover { color: var(--text); }
.nav__link--cta { color: var(--text); border: 1px solid var(--line); margin-left: 8px; }
.nav__link--cta:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.burger { display: none; width: 46px; height: 46px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 1.8px; background: var(--text); transition: transform .35s var(--ease), opacity .25s; }
.burger.is-open span:nth-child(1){ transform: translateY(3.9px) rotate(45deg); }
.burger.is-open span:nth-child(2){ transform: translateY(-3.9px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 199; background: var(--bg); display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link { font: 600 clamp(2.6rem,12vw,4.5rem)/1.05 var(--sans); letter-spacing: -.03em; padding: 8px 0; color: var(--text);
  opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s; }
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1){ transition-delay:.08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2){ transition-delay:.14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3){ transition-delay:.20s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4){ transition-delay:.26s; }
.mobile-menu__link:active { color: var(--accent); }
.mobile-menu__foot { position: absolute; bottom: 40px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; gap: 16px; font: 500 .9rem/1 var(--sans); color: var(--muted); flex-wrap: wrap; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 0 0 clamp(36px,5vw,64px); overflow: hidden; }
.hero__film { position: absolute; inset: -8% -2% -2%; z-index: -2; }
.hero__vignette { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.1) 35%, rgba(10,9,8,.75) 85%, var(--bg) 100%),
  radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(10,9,8,.5) 100%); }
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.hero__eyebrow { display: inline-block; font: 500 .9rem/1 var(--sans); letter-spacing: .02em; color: var(--text); margin-bottom: clamp(20px,3vw,36px); }
.hero__eyebrow em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.hero__title { font-weight: 600; font-size: clamp(2.7rem, 9.4vw, 9.5rem); line-height: .92; letter-spacing: -.045em; }
.hero__title i { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -.01em; }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: clamp(28px,4vw,48px); flex-wrap: wrap; }
.hero__sub { font-size: clamp(1rem,1.3vw,1.25rem); color: var(--text); max-width: 440px; opacity: .85; }

.cta-pill { display: inline-flex; align-items: center; gap: 14px; padding: 16px 26px; border: 1px solid var(--line); border-radius: 100px;
  font: 500 1rem/1 var(--sans); white-space: nowrap; transition: background .35s var(--ease), color .35s, border-color .35s, transform .3s var(--ease); }
.cta-pill i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; transition: transform .35s var(--ease); }
.cta-pill:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.cta-pill:hover i { transform: translateX(3px) rotate(-8deg); background: var(--bg); color: var(--text); }
.cta-pill--lg { padding: 20px 34px; font-size: 1.15rem; }
.cta-pill--lg i { width: 30px; height: 30px; }

.hero__scroll { position: absolute; left: var(--pad); bottom: clamp(36px,5vw,64px); display: none; }
.hero__reel { position: absolute; right: var(--pad); top: 42%; }
.hero__reel-k { font: 500 .8rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
@media (max-width: 860px){ .hero__reel { display: none; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding: 26px 0; }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee__track span { font-weight: 500; font-size: clamp(1.6rem, 4vw, 3rem); letter-spacing: -.02em; white-space: nowrap; }
.marquee__track b { color: var(--accent); font-size: 1.2rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =========================================================
   STATEMENT
   ========================================================= */
.statement__big { font-weight: 500; font-size: clamp(1.8rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -.03em; max-width: 17ch; }
.statement__big strong { font-weight: 600; }
.statement__big i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--muted); }
.statement__meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(50px,7vw,90px); padding-top: 32px; border-top: 1px solid var(--line); }
.statement__meta div { display: flex; flex-direction: column; gap: 6px; }
.statement__meta .num { font-weight: 600; font-size: clamp(2rem,3.4vw,3.2rem); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.statement__meta span:last-child { font-size: .9rem; color: var(--muted); }

/* =========================================================
   SERVICES (interactive list + peek)
   ========================================================= */
.services__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px,6vw,72px); flex-wrap: wrap; }
.svc-list { border-top: 1px solid var(--line); }
.svc { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: clamp(16px,4vw,50px);
  padding: clamp(22px,3.4vw,40px) 0; border-bottom: 1px solid var(--line); position: relative; transition: padding-left .45s var(--ease), color .35s; }
.svc::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: scaleY(0); transform-origin: bottom; z-index: -1; transition: transform .45s var(--ease); }
.svc__no { font: 500 .9rem/1 var(--sans); color: var(--muted); transition: color .35s; }
.svc__name { font-weight: 600; font-size: clamp(1.7rem,4.6vw,4rem); letter-spacing: -.035em; transition: transform .45s var(--ease); }
.svc__tags { font: 500 .85rem/1.3 var(--sans); color: var(--muted); text-align: right; transition: color .35s; }
.svc__arrow { font-size: 1.6rem; color: var(--muted); transition: transform .45s var(--ease), color .35s; }
.svc:hover { padding-left: clamp(14px,2vw,34px); color: var(--bg); }
.svc:hover::before { transform: scaleY(1); }
.svc:hover .svc__no, .svc:hover .svc__tags { color: rgba(10,9,8,.7); }
.svc:hover .svc__name { transform: translateX(6px); }
.svc:hover .svc__arrow { color: var(--bg); transform: translate(6px,-6px) rotate(0); }
@media (max-width: 760px){ .svc { grid-template-columns: auto 1fr auto; } .svc__tags { display: none; } }

.peek { position: fixed; top: 0; left: 0; z-index: 120; width: clamp(220px, 24vw, 340px); aspect-ratio: 4/3; border-radius: 6px; overflow: hidden;
  transform: translate(-50%,-50%) scale(.7); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease), transform .45s var(--ease); }
.peek.is-on { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.peek__film { position: absolute; inset: 0; }
@media (hover: none),(pointer: coarse){ .peek { display: none; } }

/* =========================================================
   SELECTED WORK
   ========================================================= */
.work__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px,6vw,80px); flex-wrap: wrap; }
.cases { display: flex; flex-direction: column; }
.case { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px,4vw,68px); align-items: center; padding: clamp(34px,4.5vw,64px) 0; border-top: 1px solid var(--line); }
.case:last-child { border-bottom: 1px solid var(--line); }

.case__media { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; }
.case--flip .case__media { order: 2; }
.case__media .film { position: absolute; inset: -14%; will-change: transform; z-index: 0; }
.case__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,9,8,.45), transparent 30%, transparent 60%, rgba(10,9,8,.55)); }
.case__bar { position: absolute; left: 0; right: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: clamp(16px,2vw,24px) clamp(18px,2.2vw,26px); font: 500 .82rem/1 var(--sans); letter-spacing: .04em; }
.case__bar--top { top: 0; }
.case__bar--bot { bottom: 0; }
.case__idx { color: rgba(243,239,232,.9); }
.case__year { color: rgba(243,239,232,.55); }
.case__sector { color: rgba(243,239,232,.85); }
.case__title { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; font-weight: 600; font-size: clamp(2.4rem,5vw,4.4rem); letter-spacing: -.04em; color: rgba(243,239,232,.95); transition: transform .5s var(--ease); }
.case__view { display: inline-flex; align-items: center; gap: 9px; color: var(--text); }
.case__view i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(243,239,232,.12); transition: background .35s var(--ease), transform .35s var(--ease), color .35s; }
.case__media:hover .case__view i { background: var(--accent); color: #fff; transform: translateX(3px); }
.case__media:hover .case__title { transform: scale(1.03); }

.case__info { max-width: 540px; }
.case--flip .case__info { order: 1; }
.case__metric { font-weight: 600; font-size: clamp(3.4rem,9vw,7.5rem); line-height: .85; letter-spacing: -.05em; color: var(--accent); font-variant-numeric: tabular-nums; }
.case__metric-cap { display: block; margin-top: 14px; font: 500 .9rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.case__cap { margin-top: clamp(20px,2.4vw,30px); font-size: clamp(1rem,1.4vw,1.25rem); color: var(--text); opacity: .92; }
.case__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: clamp(22px,2.6vw,32px); }
.case__tags li { font: 500 .78rem/1 var(--sans); letter-spacing: .02em; color: var(--muted); padding: 9px 14px; border: 1px solid var(--line); border-radius: 100px; transition: color .3s, border-color .3s; }
.case:hover .case__tags li { border-color: rgba(243,239,232,.22); }

/* =========================================================
   PROCESS
   ========================================================= */
.process__head { margin-bottom: clamp(40px,6vw,80px); }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: minmax(80px,140px) 1fr; gap: clamp(20px,5vw,80px); align-items: start; padding: clamp(28px,4vw,52px) 0; border-bottom: 1px solid var(--line); transition: background .4s; }
.step:hover { background: var(--bg-2); }
.step__no { font: 500 1rem/1 var(--sans); color: var(--accent); padding-top: 10px; }
.step__body { display: grid; grid-template-columns: 1fr; gap: 12px; }
.step__body h3 { font-weight: 600; font-size: clamp(1.8rem,4.4vw,3.4rem); letter-spacing: -.035em; }
.step__body p { color: var(--muted); font-size: clamp(1rem,1.4vw,1.2rem); max-width: 560px; }
@media (min-width: 861px){ .step__body { grid-template-columns: 1fr 1fr; align-items: baseline; gap: clamp(20px,4vw,60px); } }

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; text-align: center; overflow: hidden; }
.cta__film { position: absolute; inset: -10% -4%; z-index: -2; opacity: .5; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 70% at 50% 50%, transparent, var(--bg) 78%); }
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta__title { font-weight: 600; font-size: clamp(2.2rem,6.4vw,6rem); line-height: .98; letter-spacing: -.045em; margin: 6px 0 clamp(34px,4vw,52px); }
.cta__title i { font-family: var(--serif); font-weight: 400; font-style: italic; }
.cta__note { margin-top: 24px; font: 500 .85rem/1 var(--sans); letter-spacing: .04em; color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding-top: clamp(50px,7vw,90px); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px 40px; }
.footer__mail { display: inline-block; font-weight: 600; font-size: clamp(1.5rem,3.6vw,2.8rem); letter-spacing: -.03em; border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: color .25s, border-color .25s; }
.footer__mail:hover { color: var(--accent); border-color: var(--accent); }
.footer__lead p { color: var(--muted); margin-top: 22px; max-width: 360px; font-size: 1.05rem; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; justify-items: start; align-self: start; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__h { font: 500 .78rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.footer__col a { color: var(--muted); transition: color .25s; width: fit-content; }
.footer__col a:hover { color: var(--text); }
.footer__word { font-weight: 800; font-size: clamp(4rem, 22vw, 22rem); line-height: .8; letter-spacing: -.05em; margin: clamp(40px,6vw,80px) 0 0; white-space: nowrap; }
.footer__word sup { font-size: .25em; color: var(--accent); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 0; margin-top: 10px; border-top: 1px solid var(--line); font: 500 .85rem/1 var(--sans); color: var(--muted); flex-wrap: wrap; }
.footer__status { display: inline-flex; align-items: center; gap: 9px; }
.footer__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px){
  .nav { display: none; }
  .burger { display: flex; }
  .statement__meta { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .case { grid-template-columns: 1fr; gap: 26px; }
  .case--flip .case__media, .case--flip .case__info { order: 0; }
  .case__media { aspect-ratio: 16/10; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step__no { padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px){
  .footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  .loader { animation: none; display: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .reveal-line { opacity: 1; transform: none; }
  .ln > span { transform: none; }
  .cursor, .grain { display: none; }
}
