/* ============================================================
   VOGEL KOLLING — v2 · estilo "Amaterasu" para arquitetura/construção
   Whisper display · all-caps labels · pílulas outline · duas tintas
   Dark atmosférico alternando com Polar White · zero box-shadow
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* tintas — duas vozes: violeta cósmico + branco polar */
  --ink:        #1b2978;   /* cosmic violet — única voz cromática da UI */
  --ink-deep:   #19366c;   /* twilight indigo */
  --teal:       #75cdd6;   /* aurora teal — só luz atmosférica */
  --cyan:       #84cdee;
  --white:      #ffffff;
  --obsidian:   #0b0f1d;   /* base dark fotográfica */
  --obsidian-2: #11162a;
  --slate:      #7488a5;   /* cinza-azulado p/ traços e secundário (sobre dark) */
  --slate-text: #56607a;   /* secundário sobre fundo claro — AA (6.27:1) */
  --slate-soft: #aeb9cb;

  /* tipografia — dois registros (estilo amaterasu): Inter Tight whisper + Space Grotesk labels */
  --f: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-label: "Space Grotesk", "Inter Tight", ui-sans-serif, system-ui, sans-serif;

  /* radius — pílulas e cantos suaves */
  --r-pill: 100px;
  --r:      20px;

  /* layout */
  --wrap:  1240px;
  --pad:   48px;
  --nav-h: 76px;
  --ease:  cubic-bezier(.22,1,.36,1);
}

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

/* ── FOCUS (teclado, aditivo — sem remover outline default) ─ */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.content :focus-visible, .nav.on-light :focus-visible { outline-color: var(--ink); }
.pill:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; border-radius: var(--r-pill); }

/* ── TYPE UTILITIES ─────────────────────────────────────── */
/* label arquitetural — all-caps, tracking extremo */
.label {
  font-family: var(--f-label);
  font-size: .625rem;            /* 10px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  line-height: 1.8;
}
/* whisper display — peso 200, gigante, tracking negativo */
.display-lg {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 200; line-height: 1.02; letter-spacing: -.04em;
}
.display {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 200; line-height: 1.04; letter-spacing: -.03em;
}
.display-sm {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 200; line-height: 1; letter-spacing: -.025em;
}
.heading {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 300; line-height: 1.13; letter-spacing: -.02em;
  color: var(--ink);
}
.heading--light { color: var(--white); }
.body {
  font-size: 1rem; font-weight: 400; line-height: 1.7;
  color: #3a4254;
}

/* ── WRAP / SECTION ─────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
@media (max-width: 760px) { :root { --pad: 24px; } }

.section-label { display: block; color: var(--ink); margin-bottom: 22px; }
.section-label--light { color: rgba(255,255,255,.6); }
.sec-head { margin-bottom: 64px; max-width: 640px; }
.sec-head .heading { margin-top: 4px; }
.sec-head--dark .section-label { color: rgba(255,255,255,.6); }

/* ── PILL (outlined, nunca preenchido) ──────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  background: transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.pill .label { margin: 0; line-height: 1; }
/* sobre fundo claro: tinta violeta */
.pill--ink { border-color: var(--ink); color: var(--ink); }
.pill--ink:hover { border-color: var(--ink-deep); color: var(--ink-deep); transform: translateY(-2px); }
/* sobre fundo dark: hairline claro, texto branco */
.pill--light { border-color: rgba(255,255,255,.55); color: var(--white); }
.pill--light:hover { border-color: var(--white); transform: translateY(-2px); }
.pill--ghost { border-color: rgba(255,255,255,.22); color: var(--slate-soft); }
.pill--ghost:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* ── PRELOADER ──────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--obsidian);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity .7s .1s var(--ease);
}
.preloader.done { opacity: 0; pointer-events: none; }
.pre-mark { color: var(--white); }
.pre-bar { width: 180px; height: 1px; background: rgba(255,255,255,.18); overflow: hidden; }
.pre-fill { display: block; height: 100%; width: 0%; background: var(--white); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .45s var(--ease), height .4s var(--ease);
}
.nav.scrolled {
  height: 62px;
  background: rgba(11,15,29,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(117,205,214,.14);
}
.nav.hidden { transform: translateY(-100%); }
.nav-tag { color: rgba(255,255,255,.6); flex-shrink: 0; }
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 24px; width: auto;
  filter: brightness(0) invert(1);   /* branco sobre dark */
  transition: filter .35s var(--ease), height .4s var(--ease);
}
.nav.scrolled .nav-logo-img { height: 21px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.78); transition: color .25s, letter-spacing .25s; }
.nav-links a:hover { color: var(--white); letter-spacing: .32em; }
.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  width: 30px; align-items: flex-end;
}
.nav-burger span { display: block; height: 1px; background: var(--white); transition: width .3s, transform .3s, opacity .3s; }
.nav-burger span:first-child { width: 30px; }
.nav-burger span:last-child { width: 20px; }

/* nav fica escura quando sobre seções claras */
.nav.on-light:not(.scrolled) .nav-tag { color: var(--slate-text); }
.nav.on-light:not(.scrolled) .nav-logo-img { filter: none; }   /* logo escura sobre claro */
.nav.on-light:not(.scrolled) .nav-links a { color: #56607a; }
.nav.on-light:not(.scrolled) .nav-links a:hover { color: var(--ink); }
.nav.on-light:not(.scrolled) .nav-burger span { background: var(--ink); }

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: var(--obsidian);
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px var(--pad) 48px; gap: 8px;
  overflow-y: auto;
  transform: translateX(100%); visibility: hidden;
  transition: transform .5s var(--ease), visibility 0s linear .5s;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
.mm-close { position: absolute; top: 24px; right: calc(var(--pad) - 14px); color: rgba(255,255,255,.6); padding: 14px; }
.mm-links { display: flex; flex-direction: column; gap: 6px; }
.mm-link {
  font-size: 2rem; font-weight: 200; letter-spacing: -.02em; color: rgba(255,255,255,.78);
  padding: 12px 0; transition: color .25s, padding-left .3s var(--ease);
}
.mm-link:hover { color: var(--white); padding-left: 12px; }
.mm-cta { margin-top: 38px; width: fit-content; }

/* ── HERO ATMOSPHERE ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;        /* fallback */
  min-height: 100svh;       /* estável: não salta quando a barra do browser recolhe */
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; overflow: hidden;
  background: var(--obsidian);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}

/* luz teal "viva" à deriva — só transform (composição GPU), sem mix-blend */
.hero-glow {
  position: absolute; inset: -25%; z-index: 1; pointer-events: none; will-change: transform;
  background:
    radial-gradient(38% 46% at 30% 36%, rgba(117,205,214,.40) 0%, transparent 60%),
    radial-gradient(30% 38% at 62% 30%, rgba(132,205,238,.22) 0%, transparent 58%);
  animation: heroDrift 19s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1);    opacity: .85; }
  50%  { transform: translate3d(3%, 2%, 0)  scale(1.12);  opacity: 1; }
  100% { transform: translate3d(6%, -1%, 0) scale(1.06);  opacity: .9; }
}
.hero-atmos {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(56% 68% at 18% 30%, rgba(117,205,214,.26) 0%, transparent 56%),
    radial-gradient(52% 62% at 86% 84%, rgba(27,41,120,.6) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(7,12,22,.82) 0%, rgba(8,18,32,.6) 42%, rgba(7,11,20,.92) 100%),
    linear-gradient(rgba(11,24,40,.34), rgba(11,24,40,.34)); /* mute o dourado da foto, puxa frio */
}
/* grão fotográfico estático (sem animar — animar grão derruba FPS) */
.hero-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1000px; padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow { color: rgba(255,255,255,.8); margin-bottom: 34px; }
.hero-title { color: var(--white); max-width: 22ch; margin-bottom: 30px; text-wrap: balance; }
.hero-desc {
  font-size: 1.0625rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 42px;
}

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

.scroll-cue {
  position: absolute; bottom: max(38px, calc(env(safe-area-inset-bottom) + 20px)); left: var(--pad); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.72);
}
.scroll-cue svg { animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100%{transform:translateY(-2px);opacity:.5} 50%{transform:translateY(3px);opacity:1} }

/* ── ATMOSPHERIC TEAL PANEL ─────────────────────────────── */
.panel-atmos {
  position: relative;
  padding: 130px 0;
  background:
    radial-gradient(at 6% 30%, rgba(255,255,255,.9) 0%, rgba(132,205,238,.55) 55%, rgba(117,205,214,.4) 100%);
}
.panel-atmos-tag { display: block; color: var(--ink-deep); margin-bottom: 30px; }
.statement {
  color: var(--ink); max-width: 18ch;
}
.panel-atmos--steps { padding: 120px 0; }

/* ── CONTENT (Polar White) ──────────────────────────────── */
.content { padding: 130px 0; background: var(--white); }
.content--alt { background: #f6f8fb; }

/* SOBRE */
.sobre-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.sobre-text .section-label { margin-bottom: 18px; }
.sobre-text .heading { margin-bottom: 28px; }
.sobre-text .body + .body { margin-top: 16px; }
.metrics { display: flex; gap: 44px; margin: 44px 0; flex-wrap: wrap; }
.metric dt { color: var(--ink); display: flex; align-items: baseline; }
.metric-suf { font-size: .5em; color: var(--ink); margin-left: 2px; font-weight: 300; }
.metric dd { color: var(--slate-text); margin-top: 8px; }

.sobre-media { display: flex; flex-direction: column; gap: 18px; }
.video-frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 9/16; max-height: 620px; background: var(--obsidian-2);
  border: 1px solid rgba(27,41,120,.14);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-sound {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,15,29,.5); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4); color: var(--white);
  transition: background .25s, border-color .25s, transform .25s;
}
.video-sound:hover { background: rgba(27,41,120,.8); 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 { border-color: var(--white); }
.video-meta { display: flex; flex-direction: column; gap: 4px; padding-left: 4px; }
.video-meta .label { color: var(--ink); }
.video-role { font-size: .8rem; color: var(--slate-text); font-weight: 400; }

/* SERVIÇOS */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.svc-item {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 22px;
  align-items: start;
  padding: 36px 0; border-top: 1px solid rgba(27,41,120,.14);
}
.svc-num { color: var(--ink); padding-top: 6px; grid-row: span 2; }
.svc-name { font-size: 1.25rem; font-weight: 400; letter-spacing: -.01em; color: var(--ink); }
.svc-item .body { font-size: .92rem; }

/* ── PROJETOS (dark atmospheric) ────────────────────────── */
.projetos { padding: 130px 0 0; background: var(--obsidian); position: relative; }
.projetos::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 85% 10%, rgba(117,205,214,.12) 0%, transparent 60%);
  pointer-events: none;
}
.projetos .wrap { position: relative; }

/* galeria pinada — scroll horizontal */
.gal-pin {
  height: 100vh; height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  margin-top: 40px;
}
.gal-track { display: flex; gap: 20px; padding: 0 var(--pad); width: max-content; will-change: transform; }
.gal-slide {
  position: relative; flex-shrink: 0;
  width: 46vw; height: 66vh;
  border-radius: var(--r); overflow: hidden; background: var(--obsidian-2);
}
.gal-slide--tall { width: 34vw; }
.gal-slide--wide { width: 58vw; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gal-slide:hover img { transform: scale(1.05); }
.gal-slide figcaption {
  position: absolute; left: 20px; bottom: 20px; max-width: calc(100% - 40px);
  color: var(--white);
  background: rgba(11,15,29,.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(117,205,214,.22);
  padding: 8px 14px; border-radius: var(--r-pill);
}

/* reveal cinematográfico por clip-path (wipe pra cima) */
[data-clip] { clip-path: inset(0 0 100% 0); }
[data-clip].clipped { clip-path: inset(0 0 0% 0); transition: clip-path 1.15s var(--ease); }

/* cursor customizado */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9990;
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); will-change: transform;
}
.cursor { width: 7px; height: 7px; background: var(--teal); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(117,205,214,.6);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s;
}
.cursor-ring.grow { width: 64px; height: 64px; border-color: rgba(117,205,214,.9); background: rgba(117,205,214,.08); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none; } }
@media (hover: hover) { html.cursor-on, html.cursor-on a, html.cursor-on button, html.cursor-on summary, html.cursor-on [data-magnetic] { cursor: none; } }

/* ── PROCESSO grid ──────────────────────────────────────── */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.proc-step { padding-top: 28px; border-top: 1px solid rgba(27,41,120,.2); }
.proc-num { display: block; color: var(--ink-deep); margin-bottom: 18px; }
.proc-name { font-size: 1.3rem; font-weight: 300; letter-spacing: -.01em; color: var(--ink); margin-bottom: 12px; }
.proc-step .body { font-size: .9rem; color: #2c3346; }

/* ── DEPOIMENTOS ────────────────────────────────────────── */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dep {
  padding: 40px 36px; border: 1px solid rgba(27,41,120,.16);
  border-radius: var(--r); background: var(--white);
  display: flex; flex-direction: column; gap: 26px;
}
.dep-text { font-size: 1.05rem; font-weight: 300; line-height: 1.6; color: var(--ink-deep); letter-spacing: -.01em; }
.dep-by .label { color: var(--slate-text); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.faq-head .section-label { margin-bottom: 16px; }
.faq-item { border-top: 1px solid rgba(27,41,120,.16); }
.faq-item:last-child { border-bottom: 1px solid rgba(27,41,120,.16); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0; cursor: pointer;
  font-size: 1.0625rem; font-weight: 400; color: var(--ink); letter-spacing: -.01em;
  transition: color .25s;
}
.faq-item summary:hover { color: var(--ink-deep); }
.faq-item summary::after {
  content: ""; width: 11px; height: 11px; flex-shrink: 0;
  border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  transform: rotate(45deg) translateY(-2px); transition: transform .35s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq-item p { padding: 0 0 26px; max-width: 60ch; }

/* ── CTA FINAL (dark) ───────────────────────────────────── */
.cta { position: relative; padding: 150px 0; overflow: hidden; background: var(--obsidian); text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-atmos {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 20% 20%, rgba(117,205,214,.26) 0%, transparent 55%),
    linear-gradient(rgba(8,11,22,.82), rgba(8,11,22,.86));
}
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-inner .section-label { margin-bottom: 26px; }
.cta-title { color: var(--white); margin-bottom: 44px; max-width: 16ch; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--obsidian); padding: 90px 0 36px; border-top: 1px solid rgba(117,205,214,.12); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-logo-img { height: 26px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 18px; }
.footer-desc { font-size: .85rem; font-weight: 300; line-height: 1.7; color: var(--slate-soft); max-width: 300px; }
.footer-areas { font-size: .76rem; font-weight: 300; line-height: 1.6; color: var(--slate); max-width: 320px; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { color: rgba(255,255,255,.6); margin-bottom: 4px; }
.footer-link { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.72); transition: color .25s, padding-left .3s var(--ease); width: fit-content; }
.footer-link:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .label { color: var(--slate); }

/* ── REVEAL ─────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); will-change: opacity, transform; }
[data-reveal].in {
  opacity: 1; transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .video-frame { aspect-ratio: 9/16; max-height: 620px; max-width: 360px; width: 100%; margin: 0 auto; }
  .svc-list { grid-template-columns: 1fr; gap: 0; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .dep-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-tag, .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { left: 50%; transform: translateX(-50%); }
  .content, .panel-atmos, .projetos, .cta { padding: 96px 0; }
  .sec-head { margin-bottom: 44px; }
  .metrics { gap: 32px; }
  /* whisper 200 fica frágil sobre foto em telas pequenas: sobe peso/tamanho mínimo */
  .display-lg { font-weight: 300; font-size: clamp(2.3rem, 9vw, 3rem); }
  .display { font-weight: 300; }
  .gal-pin { height: auto; display: block; margin-top: 32px; }
  .gal-track { flex-direction: column; width: auto; padding: 0 var(--pad); gap: 14px; }
  .gal-slide, .gal-slide--tall, .gal-slide--wide { width: auto; height: auto; aspect-ratio: 4/3; }
  .proc-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-link { padding: 8px 0; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
@media (max-height: 640px) {
  .mm-link { font-size: 1.5rem; padding: 9px 0; }
  .mm-cta { margin-top: 24px; }
}

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