/* ============================================================
   VOGEL KOLLING — Griffe Cinematográfico
   Dark premium · Poppins · GSAP + Lenis
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #070B14;
  --bg-2:     #0C1322;
  --bg-3:     #12203A;
  --ink:      #F0EFEC;
  --ink-2:    #B6BECB;
  --muted:    #6C7689;
  --line:     rgba(120,165,210,.10);
  --line-2:   rgba(120,165,210,.20);

  --accent:   #4576A1;
  --accent-l: #6FA3CC;
  --accent-d: #193B5D;
  --accent-s: rgba(69,118,161,.20);
  --accent-g: linear-gradient(135deg,#8ab5d4 0%,#4576A1 50%,#1d4e7a 100%);
  --navy-ovl: rgba(8,16,30,.82);

  --f: "Poppins", sans-serif;

  --nav-h: 72px;
  --r:     12px;
  --r-lg:  20px;
  --cont:  1280px;
  --ease:  cubic-bezier(.22,1,.36,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; overflow-x: clip; }
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: var(--f); }
details, summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-title--light { color: #fff; }
.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

/* ── CONTAINER ──────────────────────────────────────────── */
.container { max-width: var(--cont); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f); font-size: .9rem; font-weight: 600;
  border-radius: 100px;
  transition: background .25s, transform .25s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary:hover { background: #3a6892; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-family: var(--f); font-size: .9rem; font-weight: 500;
  border-radius: 100px;
  transition: border-color .25s, color .25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  font-family: var(--f); font-size: .9rem; font-weight: 500;
  border-radius: 100px;
  transition: border-color .25s, color .25s;
  cursor: pointer;
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }

.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor, .cursor-f {
  position: fixed; z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cursor { width: 8px; height: 8px; background: var(--accent); }
.cursor-f { width: 36px; height: 36px; border: 1px solid rgba(69,118,161,.5); }
@media (hover: none) { .cursor, .cursor-f { display: none; } }

/* ── PRELOADER ──────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s .1s var(--ease);
}
.preloader.done { opacity: 0; pointer-events: none; }
.pre-inner { text-align: center; width: 280px; }
.pre-mark {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  background: var(--accent-g);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 36px;
}
.pre-bar {
  height: 1px; background: var(--line-2); border-radius: 2px; overflow: hidden;
  margin-bottom: 12px;
}
.pre-fill {
  height: 100%; width: 0%;
  background: var(--accent);
  border-radius: 2px;
}
.pre-num { font-size: .7rem; color: var(--muted); font-weight: 400; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px;
  transition: background .35s, box-shadow .35s, transform .4s var(--ease);
}
.nav.scrolled {
  background: rgba(8,15,28,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: .85rem; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex; align-items: center;
  padding: 9px 22px;
  background: var(--accent); color: #fff;
  font-size: .82rem; font-weight: 600;
  border-radius: 100px;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #3a6892; transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 17px; flex-shrink: 0;
}
.nav-burger span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mm-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mm-link {
  display: block;
  font-size: 2rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink-2); padding: 8px 0;
  transition: color .2s;
}
.mm-link:hover { color: var(--ink); }
.mm-cta {
  display: inline-flex; align-items: center;
  margin-top: 32px; padding: 14px 32px;
  background: var(--accent); color: #fff;
  font-size: 1rem; font-weight: 600;
  border-radius: 100px;
  transition: background .25s;
  width: fit-content;
}
.mm-backdrop {
  position: fixed; inset: 0; z-index: 590;
  background: rgba(0,0,0,.5); opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mm-backdrop.show { opacity: 1; pointer-events: all; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(95% 85% at 50% 48%, rgba(8,16,30,.42) 0%, rgba(7,11,20,.78) 100%),
    linear-gradient(to top, rgba(7,11,20,.9) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(7,11,20,.6) 0%, transparent 30%),
    radial-gradient(70% 65% at 12% 90%, rgba(69,118,161,.3) 0%, transparent 55%),
    radial-gradient(70% 60% at 88% 8%, rgba(25,59,93,.42) 0%, transparent 55%);
}
.hero-body {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.12; letter-spacing: -.02em;
  color: #fff; margin-bottom: 26px;
}
.hero-sub {
  font-size: 1.08rem; font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px; line-height: 1.65;
  margin: 0 auto 38px;
  opacity: 0; transform: translateY(16px);
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  opacity: 0; transform: translateY(16px);
}

/* word split */
.word { overflow: hidden; display: inline-block; vertical-align: bottom; }
.word-in {
  display: inline-block;
  transform: translateY(105%); opacity: 0;
  will-change: transform, opacity;
}

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid var(--accent-s);
  background: linear-gradient(rgba(8,16,30,.32), rgba(8,16,30,.62));
  backdrop-filter: blur(12px);
  opacity: 0;
}
.stats-row { display: flex; align-items: center; padding: 20px 0; }
.stat-item { flex: 1; text-align: center; }
.stat-val { font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.stat-suf { font-size: 1.2rem; color: var(--accent-l); }
.stat-lbl { font-size: .67rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.stat-sep { width: 1px; height: 40px; background: var(--line-2); flex-shrink: 0; }

.hero-scroll-cue {
  position: absolute; bottom: 88px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}
.sc-track { width: 1px; height: 48px; background: var(--line-2); position: relative; overflow: hidden; }
.sc-dot {
  position: absolute; top: -8px; left: 0;
  width: 1px; height: 12px; background: var(--accent);
  animation: sc-fall 1.8s ease-in-out infinite;
}
@keyframes sc-fall { 0%{transform:translateY(-8px);opacity:0} 40%{opacity:1} 100%{transform:translateY(56px);opacity:0} }

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto {
  padding: 120px 0; position: relative;
  background: radial-gradient(70% 90% at 100% 0%, rgba(25,59,93,.22) 0%, transparent 55%);
}
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.manifesto-text .section-title { margin-bottom: 32px; }
.manifesto-p { color: var(--ink-2); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.values-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.values-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.values-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.video-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 9/16; max-height: 580px; background: var(--bg-2);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(8,16,30,.78); backdrop-filter: blur(12px);
  border: 1px solid var(--accent-s);
  border-radius: 10px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.video-tag strong { font-size: .88rem; font-weight: 600; color: #fff; }
.video-tag span { font-size: .72rem; color: var(--muted); }
.video-sound {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,16,30,.7); backdrop-filter: blur(10px);
  border: 1px solid var(--accent-s); color: #fff;
  transition: background .25s, border-color .25s, transform .25s;
}
.video-sound:hover { background: var(--accent-d); border-color: var(--accent); transform: scale(1.06); }
.video-sound .ico-sound { display: none; }
.video-sound.on .ico-muted { display: none; }
.video-sound.on .ico-sound { display: block; }
.video-sound.on { background: var(--accent); border-color: var(--accent); }

/* ── DIFERENCIAIS ────────────────────────────────────────── */
.diferenciais { padding: 100px 0; border-top: 1px solid var(--line); }
.dif-header { margin-bottom: 60px; }
.dif-list { display: flex; flex-direction: column; }
.dif-item {
  display: grid; grid-template-columns: 80px 1fr 40px;
  align-items: center; gap: 24px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--r);
  cursor: default;
  position: relative;
  transition: background .2s;
}
.dif-item::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 2px; border-radius: 2px; background: var(--accent);
  opacity: 0; transform: scaleY(.4); transform-origin: center;
  transition: opacity .25s, transform .25s;
}
.dif-item:first-child { border-top: 1px solid var(--line); }
.dif-item:hover { background: var(--bg-2); }
.dif-item:hover::before { opacity: 1; transform: scaleY(1); }
.dif-num { font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--accent-l); }
.dif-body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.dif-body p { font-size: .88rem; color: var(--ink-2); font-weight: 300; }
.dif-arrow { font-size: 1.1rem; color: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .2s, transform .2s; }
.dif-item:hover .dif-arrow { opacity: 1; transform: translateX(0); }

/* ── GALERIA ─────────────────────────────────────────────── */
.galeria { position: relative; overflow-x: clip; }
.gal-inner {
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  padding-top: 80px; overflow: hidden;
}
.gal-hdr { padding: 0 64px; margin-bottom: 40px; flex-shrink: 0; }
.gal-hdr .section-title { margin-top: 8px; }
.gal-viewport { flex: 1; overflow: hidden; min-height: 0; }
.gal-track {
  display: flex; gap: 16px;
  height: 100%; padding: 0 64px 64px;
  width: max-content; will-change: transform;
}
.gal-slide {
  flex-shrink: 0; width: 55vw;
  border-radius: var(--r-lg); overflow: hidden; position: relative;
}
.gal-slide--tall { width: 38vw; }
.gal-slide--wide { width: 65vw; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gal-slide:hover img { transform: scale(1.04); }
.gal-slide figcaption {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.9);
  background: rgba(8,16,30,.55); backdrop-filter: blur(8px);
  border: 1px solid var(--accent-s);
  padding: 8px 14px; border-radius: 100px;
}
.gal-slide figcaption span { font-size: .65rem; color: var(--accent-l); font-weight: 600; }

/* ── PROCESSO ─────────────────────────────────────────────── */
.processo { position: relative; padding: 120px 0; overflow: hidden; }
.proc-bg { position: absolute; inset: 0; }
.proc-bg img { width: 100%; height: 100%; object-fit: cover; }
.proc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(13,30,52,.92) 0%, rgba(8,16,30,.86) 55%, rgba(25,59,93,.78) 100%),
    radial-gradient(80% 70% at 85% 100%, rgba(69,118,161,.28) 0%, transparent 60%);
}
.proc-body { position: relative; z-index: 1; }
.proc-body .eyebrow { margin-bottom: 20px; }
.proc-body .section-title { margin-bottom: 60px; max-width: 600px; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.proc-item { padding: 32px 0; border-top: 1px solid rgba(255,255,255,.12); }
.proc-num { font-size: .7rem; font-weight: 600; letter-spacing: .12em; color: var(--accent); margin-bottom: 20px; }
.proc-item h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.proc-item p { font-size: .88rem; color: rgba(255,255,255,.58); font-weight: 300; line-height: 1.7; }

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
.depoimentos {
  padding: 120px 0; border-top: 1px solid var(--line); position: relative;
  background: radial-gradient(60% 80% at 0% 100%, rgba(25,59,93,.2) 0%, transparent 55%);
}
.depoimentos .eyebrow { margin-bottom: 16px; }
.depoimentos .section-title { margin-bottom: 60px; }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dep-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s;
}
.dep-card:hover { border-color: var(--line-2); }
.dep-card--featured { background: var(--accent-d); border-color: rgba(255,255,255,.12); }
.dep-quote-mark { font-size: 4rem; line-height: 1; color: var(--accent); font-weight: 900; margin-bottom: -16px; }
.dep-card--featured .dep-quote-mark { color: rgba(255,255,255,.3); }
.dep-text { font-size: .95rem; line-height: 1.72; color: var(--ink-2); font-weight: 300; flex: 1; }
.dep-card--featured .dep-text { color: rgba(255,255,255,.82); }
.dep-card footer { display: flex; flex-direction: column; gap: 4px; }
.dep-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 8px; }
.dep-name { font-size: .85rem; font-weight: 600; }
.dep-proj { font-size: .75rem; color: var(--muted); }
.dep-card--featured .dep-proj { color: rgba(255,255,255,.45); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { padding: 120px 0; border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-left .eyebrow { margin-bottom: 16px; }
.faq-left .section-title { margin-bottom: 20px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.faq-desc { font-size: .9rem; color: var(--ink-2); font-weight: 300; margin-bottom: 28px; line-height: 1.7; }
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 500; color: var(--ink);
  cursor: pointer; gap: 16px; user-select: none;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; font-size: .9rem; color: var(--ink-2); font-weight: 300; line-height: 1.75; }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final { position: relative; padding: 140px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(25,59,93,.86) 0%, rgba(8,16,30,.8) 50%, rgba(7,11,20,.82) 100%),
    radial-gradient(70% 80% at 15% 20%, rgba(69,118,161,.3) 0%, transparent 55%);
}
.cta-body { position: relative; z-index: 1; max-width: 700px; }
.cta-body .eyebrow { margin-bottom: 16px; }
.cta-body .section-title { margin-bottom: 20px; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.65); font-weight: 300; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-contact { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; font-size: .85rem; color: rgba(255,255,255,.45); }
.cta-contact a { color: rgba(255,255,255,.65); transition: color .2s; }
.cta-contact a:hover { color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: linear-gradient(var(--bg-2), var(--bg));
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
  padding-top: 80px; position: relative;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid var(--line);
}
.footer-logo { height: 26px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; color: var(--muted); font-weight: 300; margin-top: 16px; line-height: 1.65; max-width: 280px; }
.footer-col-title { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav li a { font-size: .88rem; color: var(--ink-2); font-weight: 300; transition: color .2s; }
.footer-nav li a:hover { color: var(--ink); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: var(--ink-2); font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-wordmark {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(111,163,204,.32);
  text-align: center; padding: 24px 0;
  user-select: none; pointer-events: none;
  overflow: hidden;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted); font-weight: 300;
}

/* ── DATA-RISE ───────────────────────────────────────────── */
[data-rise] { opacity: 0; transform: translateY(32px); will-change: opacity, transform; }
[data-rise].risen {
  opacity: 1; transform: translateY(0);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .video-frame { max-height: 460px; aspect-ratio: 4/3; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gal-hdr { padding: 0 32px; }
  .gal-track { padding: 0 32px 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-body { max-width: 100%; }
  .hero-scroll-cue { display: none; }
  .stats-row { flex-wrap: wrap; justify-content: center; }
  .stat-sep { display: none; }
  .stat-item { flex: 0 0 40%; padding: 12px 0; }
  .manifesto { padding: 80px 0; }
  .dif-item { grid-template-columns: 56px 1fr; }
  .dif-arrow { display: none; }
  .gal-inner { padding-top: 40px; }
  .gal-hdr { padding: 0 20px; }
  .gal-track { padding: 0 20px 32px; gap: 12px; }
  .gal-slide { width: 80vw; }
  .gal-slide--tall { width: 65vw; }
  .gal-slide--wide { width: 88vw; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dep-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; }
  .hero-actions { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .proc-grid { grid-template-columns: 1fr; }
  .footer-wordmark { font-size: 2.2rem; }
  .hero-title { font-size: 1.7rem; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-rise] { opacity: 1; transform: none; }
}
