/* ════════════════════════════════════════════════════════════
   IMPULSE ART PRODUÇÕES — Sistema Editorial Dark-Refinado
   Utilitarismo premium + monochrome quente + pastéis de spot
   Display: Instrument Serif / Newsreader · UI: Helvetica Neue
   Meta: JetBrains Mono · Acento: brass (latão) + 4 pastéis
   Bordas 1px · raio 6px/8px · sem sombras pesadas
   ════════════════════════════════════════════════════════════ */

:root {
  /* Monochrome quente, escuro */
  --bg: #131311;
  --bg-2: #191917;
  --bg-3: #1E1E1B;
  --card: #181816;
  --ink: #F2EFE7;
  --ink-2: #B7B2A6;
  --mute: #8A8577;
  --line: rgba(242, 239, 231, 0.09);
  --line-strong: rgba(242, 239, 231, 0.18);

  /* Acento de assinatura — brass desaturado */
  --accent: #C9A05E;
  --accent-hi: #DDB874;

  /* Pastéis de spot (adaptados ao escuro) */
  --red-bg: rgba(253, 235, 236, 0.09);  --red-t: #E79A92;
  --blue-bg: rgba(225, 243, 254, 0.08); --blue-t: #8FC4E8;
  --green-bg: rgba(237, 243, 236, 0.08);--green-t: #A6C69D;
  --yellow-bg: rgba(251, 243, 219, 0.09);--yellow-t: #D3B878;

  /* Tipografia */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --serif-d: "Instrument Serif", "Newsreader", Georgia, serif;
  --sans: "Helvetica Neue", -apple-system, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
  --r: 8px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ─── Camada ambiente fixa (drift lento, nunca em scroll) ─── */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 32% at 84% -6%, rgba(201, 160, 94, 0.045) 0%, transparent 62%),
    radial-gradient(34% 30% at 6% 104%, rgba(201, 160, 94, 0.035) 0%, transparent 60%);
  animation: ambientDrift 26s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2.5%, 1.5%, 0) scale(1.06); }
}

/* ─── Acessibilidade ─── */
.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 300;
  padding: 10px 16px; background: var(--accent); color: var(--bg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px;
  transform: translateY(-260%); transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: none; }
a:focus, button:focus, [tabindex]:focus { outline: none; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 1px solid var(--accent); outline-offset: 3px;
}

/* ─── Utilidades ─── */
.wrap { width: min(1220px, calc(100% - 9vw)); margin-inline: auto; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); }

.title-big, .title-case {
  font-family: var(--serif); font-weight: 340;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: balance;
}
.title-big em, .title-case em { font-style: italic; color: var(--accent); }

.cap-mono {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
}

/* ─── Chips / badges (pill) ─── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 999px;
  padding: 6px 12px; white-space: nowrap;
}
.chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.chip--red    { background: var(--red-bg);    color: var(--red-t); }
.chip--blue   { background: var(--blue-bg);   color: var(--blue-t); }
.chip--green  { background: var(--green-bg);  color: var(--green-t); }
.chip--yellow { background: var(--yellow-bg); color: var(--yellow-t); }
.chip--line   { background: transparent; border: 1px solid var(--line-strong); color: var(--ink-2); }
.chip--line::before { background: var(--accent); }
.chip--accent { background: rgba(201, 160, 94, 0.14); color: var(--accent-hi); }

/* ─── Botões — planos, raio 6, scale active ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  padding: 15px 22px;
  border: 1px solid var(--line-strong); border-radius: 6px;
  cursor: pointer; white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { border-color: var(--ink-2); color: var(--ink); }
.btn:active { transform: scale(0.98); }
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--sol { background: var(--ink); border-color: var(--ink); color: var(--bg); font-weight: 500; }
.btn--sol:hover { background: #fff; border-color: #fff; color: var(--bg); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); }
.btn--big { padding: 19px 28px; font-size: 12px; }
.btn-sm { padding: 10px 14px; font-size: 10px; }

.more-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2);
  padding-bottom: 4px; border-bottom: 1px solid var(--line-strong);
  transition: color 0.25s, border-color 0.25s;
}
.more-link:hover { color: var(--accent); border-color: var(--accent); }
.more-link .arrow { transition: transform 0.25s var(--ease); }
.more-link:hover .arrow { transform: translate(3px, -2px); }

/* ─── Grão ─── */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 3; opacity: 0.05;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(19, 19, 17, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  width: min(1220px, calc(100% - 9vw)); margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 34px; width: auto; display: block; flex: none; }
.brand-text {
  font-family: var(--serif); font-style: italic; font-weight: 480;
  font-size: 21px; letter-spacing: -0.01em; color: var(--ink);
}
.brand-text em { color: var(--accent); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 1.5px; background: var(--ink);
  margin: 5.5px 0; transition: transform 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  padding: 16px 26px 30px; background: var(--bg);
  border-top: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif); font-size: 24px; font-weight: 360;
  padding: 16px 2px; color: var(--ink); border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--accent); padding-left: 10px; }
.nav-mobile a:last-child { border-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero, .case-hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  z-index: 1;
}
.hero-media, .case-hero-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 18% 10%, rgba(201, 160, 94, 0.1) 0%, transparent 48%),
    radial-gradient(120% 90% at 88% 100%, rgba(38, 76, 70, 0.55) 0%, transparent 58%),
    linear-gradient(168deg, #151b19 0%, #0f1413 40%, #131311 100%);
}
.hero-media::before, .case-hero-media::before {
  content: ""; position: absolute; inset: -3% 0;
  background-image:
    repeating-linear-gradient(182deg, transparent 0 24px, rgba(242, 239, 231, 0.05) 24px 26px, transparent 26px 52px),
    repeating-linear-gradient(2deg, transparent 0 74px, rgba(201, 160, 94, 0.04) 74px 75px);
  animation: waterDrift 28s linear infinite;
}

.hero .hero-media {
  background:
    linear-gradient(180deg, rgba(19, 19, 17, 0.10) 0%, rgba(19, 19, 17, 0.10) 38%, rgba(19, 19, 17, 0.0) 60%, rgba(19, 19, 17, 0.62) 100%),
    radial-gradient(80% 60% at 50% 0%, rgba(19, 19, 17, 0.12) 0%, transparent 60%),
    url("../herobackground.avif") center / cover no-repeat,
    linear-gradient(168deg, #151b19 0%, #0f1413 40%, #131311 100%);
  background-size: cover, auto, cover, auto;
}
@keyframes waterDrift {
  from { transform: translate3d(-2%, -1%, 0); }
  to   { transform: translate3d(2%, 1.5%, 0); }
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 19, 17, 0.5) 0%, rgba(19, 19, 17, 0.08) 42%, rgba(19, 19, 17, 0.94) 92%);
}
.hero-scrim::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 50% 8%, rgba(201, 160, 94, 0.06) 0%, transparent 60%);
}

.hero-inner {
  position: relative; z-index: 4;
  width: min(1220px, calc(100% - 9vw)); margin-inline: auto;
  padding: 130px 0 88px;
}
.hero-meta {
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
  padding-bottom: 20px; margin-bottom: 52px;
  border-bottom: 1px solid var(--line-strong);
}
.hero-meta-l::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  margin-right: 12px; background: var(--accent); vertical-align: 1px;
}

.hero-kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif-d); font-weight: 400;
  font-size: clamp(4rem, 15vw, 11.5rem);
  line-height: 0.88; letter-spacing: -0.012em;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--accent-hi); }
.hero-cat {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink);
  margin-top: 26px;
}
.hero-flag { margin-top: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 42px; flex-wrap: wrap; }

.hero-foot {
  position: absolute; left: clamp(20px, 5vw, 60px); bottom: 30px; z-index: 4;
  display: flex; align-items: center; gap: 14px;
}
.hero-foot-line { width: 60px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-foot-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: footScroll 2.6s var(--ease) infinite;
}
@keyframes footScroll { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.hero-foot-scroll { font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute); }

/* ════════════════════════════════════════════════════════════
   SEÇÕES
   ════════════════════════════════════════════════════════════ */
.section { padding: clamp(110px, 13vw, 170px) 0; position: relative; z-index: 1; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 64px;
}
.section-lede {
  max-width: 54ch; color: var(--ink-2); font-size: 17px; line-height: 1.7;
  margin: -32px 0 72px; border-left: 1px solid var(--accent); padding-left: 22px;
}

/* ─── Manifesto ─── */
.tagline {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.tagline-title {
  font-family: var(--serif); font-weight: 330;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.05; letter-spacing: -0.025em; color: var(--ink);
  text-wrap: balance;
}
.tagline-title em { font-style: italic; color: var(--accent); }
.tagline-media {
  display: grid; grid-template-columns: 0.62fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(44px, 5.5vw, 72px);
  position: relative; z-index: 2;
  max-width: 860px;
}
.tmedia {
  margin: 0; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line-strong);
  background: var(--bg-3);
  position: relative;
}
.tmedia img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.75) brightness(0.9);
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}
.tmedia:hover img { transform: scale(1.035); filter: saturate(1) brightness(1); }
.tmedia--mic { aspect-ratio: 4 / 3; }
.tmedia--studio { aspect-ratio: 16 / 9; }
.tmedia figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: var(--ink-2); font-size: 10px;
}
.tagline-meta {
  display: flex; flex-wrap: wrap; gap: 10px 42px; margin-top: 40px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mute);
}
.tagline-inner { position: relative; z-index: 2; }
.tagline .section-scrim {
  background: linear-gradient(180deg, rgba(19, 19, 17, 0.7) 0%, rgba(19, 19, 17, 0.52) 52%, var(--bg-2) 110%);
}

/* ─── Mídia de fundo de seção ─── */
.section-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.section-media img { width: 100%; height: 100%; object-fit: cover; }
.section-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ─── Filmografia (lista editorial com imagens) ─── */
.film-list { position: relative; }

.film {
  display: grid; grid-template-columns: clamp(120px, 16vw, 168px) 84px 1fr auto 64px auto;
  gap: clamp(16px, 2.4vw, 26px); align-items: center;
  width: 100%; text-align: left;
  padding: clamp(24px, 3.4vw, 38px) 4px;
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.film:last-child { border-bottom: 1px solid var(--line); }
.film:hover { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 40%, transparent); }
.film-thumb {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: 6px;
  background: var(--bg-3);
}
.film-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.82);
  transition: transform 0.7s var(--ease), filter 0.45s var(--ease);
}
.film:hover .film-thumb img { transform: scale(1.05); filter: saturate(1); }
.film-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--mute); }
.film-t { display: grid; gap: 7px; }
.film-title {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.02; letter-spacing: -0.015em; color: var(--ink);
  transition: color 0.25s;
}
.film:hover .film-title { color: var(--accent-hi); }
.film-dir { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.film-cat { justify-self: end; }
.film-year { font-family: var(--mono); font-size: 12px; color: var(--ink-2); text-align: right; }
.film-flag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-hi); text-align: right; }
.film-arrow {
  font-family: var(--mono); font-size: 14px; color: var(--mute);
  text-align: right; transition: color 0.25s, transform 0.25s var(--ease);
}
.film:hover .film-arrow { color: var(--accent-hi); transform: translate(2px, -2px); }

/* ─── Destaque Mãe D'Água ─── */
.destaque { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.destaque-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(44px, 6vw, 100px);
  align-items: start;
}
.destaque-poster {
  position: sticky; top: calc(var(--nav-h) + 32px);
  aspect-ratio: 16 / 10; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--bg-3);
  border: 1px solid var(--line-strong); border-radius: var(--r);
}
.poster-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.9);
}
.poster-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 19, 0.18) 0%, rgba(16, 20, 19, 0) 36%, rgba(16, 20, 19, 0.68) 100%);
}
.poster-face {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  height: 100%;
}
.poster-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.poster-title {
  font-family: var(--serif-d); font-weight: 400; font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 0.9;
  letter-spacing: -0.01em; color: var(--ink);
}
.poster-rule { width: 100%; height: 1px; background: var(--line-strong); margin: 18px 0; }
.poster-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  margin-top: 16px;
}

.destaque-body .title-case { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
.case-credit {
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--accent-hi);
  margin-top: 12px;
}
.case-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-2); margin-top: 18px;
}
.case-desc { margin-top: 26px; color: var(--ink-2); max-width: 56ch; font-size: 16px; line-height: 1.75; }
.case-credits {
  display: flex; flex-direction: column; gap: 10px; margin-top: 26px;
  font-size: 14px; color: var(--ink-2);
}
.case-credits em { font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); display: block; }
.destaque-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ─── Sobre ─── */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.about-text .title-big { margin-bottom: 44px; }
.about-p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 400; color: var(--ink-2); max-width: 46ch; }
.about-p + .about-p { margin-top: 20px; }
.about-loc {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  margin-top: 54px;
  font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  color: var(--ink); letter-spacing: -0.01em;
}
.about-loc i { color: var(--accent); font-style: normal; }
.about-media { display: grid; gap: 18px; }
.about-photo { margin: 0; overflow: hidden; border-radius: var(--r); }
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.55) contrast(1.05) brightness(0.9);
  transition: transform 1.1s var(--ease), filter 0.5s var(--ease);
}
.about-photo:hover img { transform: scale(1.035); filter: saturate(0.85) contrast(1) brightness(1); }
.about-photo--main { aspect-ratio: 16 / 10; }
.about-photo--alt {
  aspect-ratio: 4 / 3; margin-left: clamp(24px, 7vw, 84px); margin-top: -64px;
  position: relative; z-index: 2; border: 1px solid var(--line-strong);
  background: var(--bg); padding: 10px;
}
.about-photo--alt img { border-radius: 4px; }
.about-photo--alt figcaption { padding: 12px 2px 2px; }

/* ─── Herança musical / Nordeste ─── */
.heranca { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.heranca-head { max-width: 76ch; }
.heranca-statement {
  font-family: var(--serif); font-weight: 330;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.18; letter-spacing: -0.02em;
  color: var(--ink); max-width: 30ch; text-wrap: balance;
}
.heranca-statement em { font-style: italic; color: var(--accent); }
.heranca-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(48px, 7vw, 110px);
  margin-top: clamp(44px, 6vw, 84px); align-items: start;
}
.heranca-copy p { color: var(--ink-2); font-size: 16px; line-height: 1.8; max-width: 52ch; }
.heranca-copy p + p { margin-top: 18px; }
.heranca-copy .copy-lead { color: var(--ink); font-family: var(--serif); font-size: 1.18em; font-weight: 400; letter-spacing: -0.01em; }
.heranca-copy .copy-lead em { font-style: italic; color: var(--accent-hi); }
.heranca-photo {
  margin: 30px 0 0; max-width: 460px; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line-strong);
  background: var(--bg-3);
}
.heranca-photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%;
  filter: saturate(0.35) contrast(1.05) brightness(0.88);
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}
.heranca-photo:hover img { transform: scale(1.035); filter: saturate(0.85) contrast(1) brightness(1); }
.heranca-photo figcaption { padding: 14px 2px 2px; }
.heranca-genres { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.heranca-nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  margin-top: 38px;
}
.heranca-cell { padding: 26px 18px 24px; border-left: 1px solid var(--line); }
.heranca-cell:first-child { border-left: 0; padding-left: 0; }
.heranca-cell .num {
  display: block; font-family: var(--serif); font-weight: 330;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 0.95; color: var(--accent-hi);
}
.heranca-cell .label { display: block; margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }

/* Marquee de artistas */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  margin-top: clamp(52px, 7vw, 88px);
}
.marquee-track { display: flex; align-items: baseline; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-weight: 360;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--ink); white-space: nowrap;
  opacity: 0.85; transition: color 0.3s;
}
.marquee-track span:hover { color: var(--accent-hi); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Perguntas da casa (02 — Música & história) ─── */
.heranca-qa {
  margin-top: clamp(56px, 7vw, 92px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-strong);
  display: grid; gap: clamp(30px, 4vw, 48px);
}
.qa-title {
  font-family: var(--serif); font-weight: 330;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink); max-width: 34ch; text-wrap: balance;
}
.qa-title em { font-style: italic; color: var(--accent); }
.qa-list { display: grid; gap: 14px; }
.qa-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 clamp(18px, 2.4vw, 28px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.qa-item:hover, .qa-item[open] { border-color: var(--line-strong); background: var(--bg-3); }
.qa-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 0;
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.25;
  color: var(--ink);
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "+"; flex: none;
  font-family: var(--mono); font-size: 15px; color: var(--accent-hi);
  transition: transform 0.3s var(--ease);
}
.qa-item[open] summary::after { transform: rotate(45deg); }
.qa-item p {
  padding: 0 0 20px;
  color: var(--ink-2); font-size: 15px; line-height: 1.75; max-width: 58ch;
}

/* ─── Marcas e instituições na seção de música ─── */
.heranca-partners {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid var(--line-strong);
}
.heranca-partners .logo-grid { margin-top: 26px; }
.heranca-partners .logo-grid--inst { margin-top: 14px; }

/* ─── Parceiros (somente gente da casa) ─── */
.parceiros .p-group { margin-top: 0; }

/* ─── Estúdios (bento assimétrico) ─── */
.estudios { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.estudios-note { max-width: 34ch; color: var(--ink-2); font-size: 15px; }
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px;
}
.cap {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(28px, 3.4vw, 40px);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s;
}
.cap:hover { border-color: var(--line-strong); transform: translateY(-2px); background: var(--bg-3); }
.cap--lg { grid-column: span 7; }
.cap--sm { grid-column: span 5; }
.cap-head { display: flex; align-items: center; gap: 16px; }
.cap-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 11px;
}
.cap-title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1; letter-spacing: -0.015em; color: var(--ink);
}
.cap-line { color: var(--ink-2); font-size: 15px; max-width: 40ch; }
.cap-list { display: grid; gap: 10px; }
.cap-list li {
  position: relative; font-family: var(--mono); font-size: 12px; color: var(--ink-2);
  padding-left: 20px;
}
.cap-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 1px; background: var(--accent); }
.cap-img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: 6px; filter: saturate(0.85); margin-bottom: 26px;
}

/* ─── Showreel ─── */
.showreel {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; z-index: 1;
}
.showreel-strip {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  width: max-content;
  animation: stripPan 70s linear infinite;
}
.showreel-strip:hover { animation-play-state: paused; }
.showreel.is-off .showreel-strip { animation-play-state: paused; }
.showreel-frame {
  flex: 0 0 auto;
  height: clamp(170px, 46vh, 400px);
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  filter: saturate(0.85) brightness(0.92);
}
@keyframes stripPan {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.showreel-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 17, 0.6) 0%, rgba(19, 19, 17, 0.82) 100%);
}
.showreel-ghost {
  position: absolute; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--serif-d); font-style: italic; font-weight: 400;
  font-size: clamp(5rem, 18vw, 16rem); line-height: 0.8; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(242, 239, 231, 0.12);
}
.showreel-inner { position: relative; z-index: 3; text-align: center; padding: 0 24px; }
.showreel-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-hi); margin-bottom: 20px;
}
.showreel-tag { color: var(--ink); font-size: 17px; max-width: 40ch; margin: 0 auto 30px; }
.showreel-inner .btn { margin-inline: auto; }

/* ─── Parceiros ─── */
.parceiros { border-top: 1px solid var(--line); }
.p-group { margin-top: 64px; }
.p-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 30px;
  display: flex; align-items: center; gap: 14px;
}
.p-label::after { content: ""; height: 1px; flex: 1 1 0; background: var(--line); }
.logo-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center;
}
.logo-grid--inst { grid-template-columns: repeat(5, 1fr); margin-top: 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.logo-grid img {
  width: 100%; height: 44px; object-fit: contain;
  filter: saturate(0) brightness(1.5) contrast(0.85); opacity: 0.55;
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}
.logo-grid img:hover { opacity: 1; filter: saturate(0) brightness(1.8) contrast(1); }

.team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.person { margin: 0; }
.person img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(0.35) contrast(1.05) brightness(0.88);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.person:hover img { transform: scale(1.025); filter: saturate(0.85) contrast(1) brightness(1); }
.person figcaption { padding: 16px 2px 0; display: grid; gap: 6px; }
.person figcaption .cap-mono { color: var(--accent); }
.person strong { font-family: var(--serif); font-weight: 380; font-size: 1.45rem; color: var(--ink); }
.person p { font-size: 14px; color: var(--mute); max-width: 34ch; }

/* ─── Contato ─── */
.contact {
  min-height: 100dvh; display: flex; align-items: center;
  position: relative; overflow: hidden; z-index: 1;
  padding: 120px 0;
}
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 46% at 82% 8%, rgba(201, 160, 94, 0.06) 0%, transparent 62%),
    repeating-linear-gradient(0deg, transparent, transparent 68px, rgba(242, 239, 231, 0.03) 69px);
}
.contact-inner { position: relative; z-index: 1; }
.title-contact {
  font-family: var(--serif-d); font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 7.6rem); line-height: 0.94;
  letter-spacing: -0.012em; color: var(--ink);
}
.contact-sub {
  font-family: var(--serif); font-style: italic; font-weight: 350;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); color: var(--ink-2);
  margin-top: 14px;
}
.contact-sub::after { content: "."; color: var(--accent); }
.contact-actions { margin-top: 48px; }
.contact-links {
  display: flex; flex-wrap: wrap; gap: 12px 42px;
  margin-top: 76px; padding-top: 34px; border-top: 1px solid var(--line-strong);
}
.contact-links a {
  font-family: var(--serif); font-size: clamp(1.05rem, 2.1vw, 1.5rem); color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.contact-links a:hover { color: var(--accent-hi); border-color: var(--accent); }
.contact-addr { margin-top: 52px; display: grid; gap: 6px; }
.contact-addr .cap-mono { letter-spacing: 0.14em; }

/* ════════════════════════════════════════════════════════════
   PÁGINAS DE OBRA (MÃE D'ÁGUA E DEDICADAS)
   ════════════════════════════════════════════════════════════ */
.case-hero { align-items: flex-end; }

/* Capa de Mãe D'Água no hero da página dedicada */
.case-hero-media {
  background-image:
    linear-gradient(180deg, rgba(19, 19, 17, 0.18) 0%, rgba(19, 19, 17, 0) 42%, rgba(19, 19, 17, 0.74) 92%),
    url("https://i.ytimg.com/vi/rWxPAGwhSs0/maxresdefault.jpg");
  background-size: cover, cover;
  background-position: center;
}

/* Hero compacto das páginas dedicadas de obra */
.case-hero--compact { min-height: clamp(500px, 68vh, 700px); }
.case-hero--compact .hero-inner { padding-bottom: clamp(52px, 7vw, 88px); }
.case-hero--compact .hero-title { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.case-hero--compact .hero-media { background-size: cover; background-position: center; }

/* ═══ Página de obra — detalhe em catálogo (2 colunas) ═══ */
.obra-detail {
  padding: calc(var(--nav-h) + clamp(40px, 5vw, 88px)) 0 clamp(64px, 7vw, 108px);
  position: relative; z-index: 1;
}
.obra-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 84px); align-items: start;
}
.obra-hero-grid > * { min-width: 0; }
.obra-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  background: var(--bg-3);
}
.obra-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.obra-frame-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(19, 19, 17, 0.5) 100%); }
.obra-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 2; }
.obra-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 68px; height: 68px; border-radius: 50%;
  border: 1px solid rgba(242, 239, 231, 0.45);
  background: rgba(19, 19, 17, 0.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--ink); display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.obra-play:hover { background: var(--accent); color: var(--bg); transform: translate(-50%, -50%) scale(1.06); }
.obra-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-hi); }
.obra-title {
  font-family: var(--serif); font-weight: 330;
  font-size: clamp(2.4rem, 4.8vw, 3.7rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin-top: 18px; text-wrap: balance;
}
.obra-dir { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-top: 16px; }
.obra-lead { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-top: 30px; max-width: 48ch; }
.obra-sinopse-kick { margin-top: 38px; }
.obra-sinopse { color: var(--ink); font-size: 15px; line-height: 1.85; margin-top: 14px; max-width: 52ch; }
.obra-meta { margin-top: 36px; border-top: 1px solid var(--line-strong); }
.m-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 12px 2px; border-bottom: 1px solid var(--line); }
.m-row dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.m-row dd { font-family: var(--serif); font-weight: 380; font-size: 1.05rem; color: var(--ink); }
.obra-info .ficha-credits { margin-top: 24px; }
.obra-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

.sinopse-grid { display: grid; grid-template-columns: 0.26fr 1fr; gap: clamp(30px, 5vw, 70px); }
.title-case.script {
  font-weight: 360;
  font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.18; letter-spacing: -0.018em;
  color: var(--ink); max-width: 34ch;
}
.title-case.script em { font-style: italic; color: var(--accent); }
.sinopse-p { margin-top: 34px; color: var(--ink-2); max-width: 56ch; font-size: 16px; line-height: 1.8; }

.trailer-frame {
  aspect-ratio: 16 / 9; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  background: var(--bg);
}
.trailer-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.78); }

.ficha { border-top: 1px solid var(--line); }
.ficha-list { max-width: 860px; border-top: 1px solid var(--line-strong); }
.ficha-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 24px;
  padding: 20px 2px; border-bottom: 1px solid var(--line);
}
.ficha-row dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
}
.ficha-row dd {
  font-family: var(--serif); font-weight: 380; font-size: 1.3rem; color: var(--ink);
}
.ficha-row dd em { color: var(--accent); font-style: italic; }
.ficha-credits {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none;
  margin-top: 26px; padding: 0;
}
.ficha-credits li {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
  padding: 7px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
}

/* Corpo compacto das páginas dedicadas de obra */
.case-body { padding-top: clamp(56px, 7vw, 104px); padding-bottom: clamp(56px, 7vw, 104px); }
.case-body-grid { display: grid; gap: clamp(48px, 6vw, 76px); }
.case-row { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.case-row > .kicker { padding-top: 10px; }
.case-main { min-width: 0; max-width: 780px; }
.case-desc { color: var(--ink-2); font-size: 16px; line-height: 1.8; max-width: 62ch; margin-top: 6px; }
.case-main .ficha-list { margin-top: 6px; }
.case-main .ficha-row { padding: 13px 2px; }
.case-main .ficha-row dd { font-size: 1.1rem; }
.case-main .ficha-credits { margin-top: 22px; }
.case-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* Tira de "mais produções" (compacta) */
.more-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px; }
.more-item { display: block; }
.more-item img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border: 1px solid var(--line-strong); border-radius: 6px;
  filter: saturate(0.82); transition: transform 0.6s var(--ease), filter 0.45s var(--ease);
}
.more-item:hover img { transform: scale(1.04); filter: saturate(1); }
.more-item-title {
  display: block; margin-top: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
}
.more-item:hover .more-item-title { color: var(--accent-hi); }
.more-item-meta {
  display: block; margin-top: 5px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
}
.more-item:hover .more-item-meta { color: var(--ink-2); }

.watch { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.watch-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.watch-links { display: flex; flex-wrap: wrap; gap: 14px; }

.more-cases { padding-bottom: 0; }
.more-cases .section-head { margin-bottom: 40px; }

/* ════════════════════════════════════════════════════════════
   FOOTER / EXTRAS
   ════════════════════════════════════════════════════════════ */
.footer { padding: 72px 0 30px; border-top: 1px solid var(--line); background: var(--bg); position: relative; z-index: 1; }
.footer .wave { margin-bottom: 44px; opacity: 0.4; }
.footer-grid {
  display: flex; justify-content: space-between; gap: 40px; align-items: flex-start;
  flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer-tag { color: var(--mute); font-size: 14px; margin-top: 16px; max-width: 36ch; }
.footer-soc { display: grid; gap: 10px; }
.footer-soc a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2); transition: color 0.25s, padding-left 0.3s var(--ease);
}
.footer-soc a:hover { color: var(--accent-hi); padding-left: 8px; }
.footer-bottom {
  margin-top: 30px; font-size: 13px; color: var(--mute);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--mute); font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent-hi); }

.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 150;
  max-width: 330px; padding: 20px 22px;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  background: var(--bg-3); border: 1px solid var(--line-strong); border-radius: var(--r);
}
.cookie[hidden] { display: none; }
.cookie p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* ─── Reveal — entrada editorial ─── */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--index, 0) * 70ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .destaque-grid, .about-grid, .heranca-grid, .sinopse-grid, .watch-grid, .obra-hero-grid { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; }
  .destaque-poster { position: relative; top: auto; }
  .about-photo--alt { margin-left: 0; margin-top: 0; }
  .ficha-row { grid-template-columns: 1fr; gap: 6px; }
  .cap--lg, .cap--sm { grid-column: span 12; }
  .bento { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .logo-grid--inst { grid-template-columns: repeat(3, 1fr); }
  .more-strip { grid-template-columns: repeat(3, 1fr); }
  .team { grid-template-columns: 1fr 1fr 1fr; }
  .heranca-nums { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: none; }
  .nav-mobile.open { display: flex; }
  .hero-meta { flex-direction: column; gap: 8px; margin-bottom: 36px; }
  .hero-inner { padding-top: 110px; }
  .team { grid-template-columns: 1fr; }
  .film { grid-template-columns: 1fr auto; gap: 10px 16px; }
  .film-thumb { grid-column: 1 / -1; width: 100%; }
  .film-num { grid-column: 1; }
  .film-t { grid-column: 1; }
  .film-cat, .film-year { grid-column: 1; }
  .film-arrow { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); }
  .film { position: relative; }
  .section-lede { margin-bottom: 52px; }
  .section-head { margin-bottom: 44px; }
  .m-row { grid-template-columns: 1fr; gap: 4px; }
  .obra-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .obra-frame .obra-play { width: 56px; height: 56px; }
  .more-strip { row-gap: 26px; }
  .tagline-media { grid-template-columns: 1fr; }
  .qa-item summary { font-size: 1.05rem; }
}
@media (max-width: 560px) {
  .wrap, .hero-inner { width: calc(100% - 40px); }
  .logo-grid, .logo-grid--inst { grid-template-columns: 1fr 1fr; }
  .more-strip { grid-template-columns: 1fr 1fr; }
  .heranca-nums { grid-template-columns: 1fr; }
  .heranca-cell { border-left: 0; border-top: 1px solid var(--line); }
  .heranca-cell:first-child { border-top: 0; padding-left: 18px; }
  .contact-links { flex-direction: column; align-items: flex-start; }
  .brand-text { font-size: 19px; }
  .poster-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .poster-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-flag .chip, .poster-face .chip, .poster-foot .chip { white-space: normal; }
  .hero .hero-title, .case-hero .hero-title { font-size: clamp(2.6rem, 12vw, 4.2rem); }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .showreel-strip { animation: none; }
}