/* =====================================================================
   LEOANDFILM — 2026
   Palette kept from the original: bg #0C0C0A · cream #F0EAD0 · gold #C4A84A
   ===================================================================== */

:root {
  --bg:        #0b0b09;
  --bg-2:      #100f0a;
  --panel:     #15140d;
  --panel-2:   #1b1910;
  --cream:     #f0ead0;
  --cream-dim: #cfc9b6;
  --gold:      #c4a84a;
  --gold-2:    #dcc06a;
  --muted:     #8b8578;
  --muted-2:   #625d52;
  --line:      rgba(240, 234, 208, 0.10);
  --line-2:    rgba(240, 234, 208, 0.06);

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #14130c; }

/* ---------- Film grain + vignette overlays ---------- */
.grain, .vignette { position: fixed; inset: 0; pointer-events: none; z-index: 900; }
.grain {
  opacity: 0.045; mix-blend-mode: overlay;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette { box-shadow: inset 0 0 240px 40px rgba(0,0,0,0.7); }

/* ---------- Preloader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-mark { width: 62px; height: 62px; opacity: 0; animation: markIn 1.1s var(--ease) forwards; }
.loader-mark svg { width: 100%; height: 100%; }
.loader-bar {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  animation: load 1.4s var(--ease-2) forwards;
}
@keyframes markIn { from { opacity: 0; transform: translateY(10px) scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes load { to { width: 100%; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
/* keep anchored sections clear of the fixed header when jumping via the menu */
section[id] { scroll-margin-top: 78px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 6vw, 4.2rem); line-height: 0.98; letter-spacing: -0.02em;
  margin-top: 18px;
}
.section-index { font-family: var(--font-display); color: var(--muted); font-size: 14px; letter-spacing: 0.1em; white-space: nowrap; }

/* =====================================================================
   NAV
   ===================================================================== */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(11, 11, 9, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding-top: 15px; padding-bottom: 15px;
  border-bottom: 1px solid var(--line-2);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .sym { width: 26px; height: 26px; }
.brand .sym svg { width: 100%; height: 100%; }
.brand .word { height: 15px; }
.brand .word svg { height: 100%; width: auto; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--cream-dim); position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 20px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); transition: all 0.35s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #14130c; border-color: var(--gold); }

.burger { display: none; width: 30px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--cream); transition: 0.35s var(--ease); }
.burger span:nth-child(1) { top: 0; } .burger span:nth-child(2) { top: 9px; } .burger span:nth-child(3) { top: 18px; }
body.menu-open .burger span:nth-child(1) { top: 9px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 790; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--pad);
  transform: translateY(-100%); transition: transform 0.6s var(--ease); pointer-events: none;
}
body.menu-open .mobile-menu { transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; color: var(--cream); padding: 6px 0; }
.mobile-menu a span { color: var(--gold); font-size: 0.8rem; font-family: var(--font-body); margin-right: 14px; letter-spacing: 0.1em; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; display: grid; place-items: center; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02) brightness(0.82); }
.hero-video-wrap::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,7,0.66) 0%, rgba(9,9,7,0.34) 32%, rgba(9,9,7,0.5) 56%, rgba(9,9,7,0.97) 100%),
    radial-gradient(130% 90% at 50% 46%, transparent 22%, rgba(9,9,7,0.62) 100%);
}

.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); width: 100%; }
.hero-tag {
  font-size: clamp(11px, 2.4vw, 14px); letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 500; margin-bottom: clamp(18px, 3vw, 30px);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 15vw, 11rem); line-height: 0.82; letter-spacing: -0.03em;
  color: var(--cream); display: block;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.62s forwards;
}
.wordmark em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-sub {
  margin-top: clamp(22px, 3.5vw, 34px); font-size: clamp(15px, 2.4vw, 20px); color: var(--cream-dim);
  line-height: 1.7; opacity: 0; animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--cream); animation: scrollDot 2s var(--ease-2) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 100% { top: 100%; } }

/* mute btn on hero */
.hero-mute {
  position: absolute; right: var(--pad); bottom: 30px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim);
  background: rgba(11,11,9,0.35); backdrop-filter: blur(6px); transition: all 0.3s;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-mute:hover { border-color: var(--gold); color: var(--cream); }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee { border-block: 1px solid var(--line-2); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3.4vw, 2.4rem); font-weight: 500;
  letter-spacing: -0.01em; color: var(--cream-dim); display: flex; align-items: center; gap: 40px; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 0.6em; }
.marquee-track span.g { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   MANIFESTO
   ===================================================================== */
.manifesto { padding: clamp(90px, 14vw, 190px) 0; }
.manifesto .wrap { display: grid; grid-template-columns: 1fr; gap: 40px; }
.manifesto h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 16ch;
}
.manifesto h2 em { font-style: italic; color: var(--gold); }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: end; }
.manifesto p { font-size: clamp(15px, 2vw, 18px); color: var(--cream-dim); max-width: 46ch; line-height: 1.8; }
.manifesto .stats { display: flex; gap: 40px; margin-top: 34px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; color: var(--cream); line-height: 1; }
.stat .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* =====================================================================
   TRABALHOS / YOUTUBE
   ===================================================================== */
.works { padding: clamp(70px, 10vw, 130px) 0; }
.yt-featured {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9;
  margin-bottom: 26px; cursor: pointer; border: 1px solid var(--line-2);
  background: var(--panel);
}
.yt-featured img, .yt-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.yt-featured:hover img { transform: scale(1.04); }
.yt-featured .overlay, .yt-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,9,0.05) 40%, rgba(11,11,9,0.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(20px, 4vw, 40px);
}
.yt-featured .meta-tag { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.yt-featured h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 4vw, 2.6rem); letter-spacing: -0.02em; max-width: 20ch; }

.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.yt-card { position: relative; border-radius: 13px; overflow: hidden; aspect-ratio: 16/9; cursor: pointer; background: var(--panel); border: 1px solid var(--line-2); }
.yt-card .overlay { padding: 18px; justify-content: space-between; }
.yt-card .num { align-self: flex-start; font-family: var(--font-display); font-size: 13px; color: var(--cream); background: rgba(11,11,9,0.5); border: 1px solid var(--line); border-radius: 50px; padding: 4px 11px; backdrop-filter: blur(4px); }
.yt-card h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--cream); line-height: 1.3; text-transform: uppercase; }
.yt-card:hover .thumb img { transform: scale(1.06); }

.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(196,168,74,0.16); border: 1px solid var(--gold);
  backdrop-filter: blur(6px); display: grid; place-items: center; transition: all 0.4s var(--ease); z-index: 2;
}
.play-btn::after { content: ""; width: 0; height: 0; margin-left: 3px; border-left: 15px solid var(--cream); border-top: 9px solid transparent; border-bottom: 9px solid transparent; transition: border-left-color 0.3s; }
.yt-card .play-btn { width: 48px; height: 48px; }
.yt-card .play-btn::after { border-left-width: 12px; border-top-width: 7px; border-bottom-width: 7px; }
.yt-featured:hover .play-btn, .yt-card:hover .play-btn { background: var(--gold); transform: translate(-50%, -50%) scale(1.08); }
.yt-featured:hover .play-btn::after, .yt-card:hover .play-btn::after { border-left-color: #14130c; }

.yt-card iframe, .yt-featured iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; }

.works-cta { margin-top: 40px; text-align: center; }

/* =====================================================================
   REELS
   ===================================================================== */
.reels { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg-2); border-block: 1px solid var(--line-2); }
.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel {
  position: relative; aspect-ratio: 9/16; border-radius: 13px; overflow: hidden; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line-2);
}
.reel video, .reel img.poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel .rv { opacity: 0; transition: opacity 0.6s var(--ease); }
.reel.playing .rv { opacity: 1; }
.reel .grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,9,0.85) 100%); z-index: 2; transition: opacity 0.4s; }
.reel .rnum { position: absolute; top: 12px; left: 12px; z-index: 3; font-family: var(--font-display); font-size: 12px; color: var(--cream); background: rgba(11,11,9,0.5); border: 1px solid var(--line); border-radius: 50px; padding: 3px 10px; backdrop-filter: blur(4px); }
.reel .expand { position: absolute; bottom: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(11,11,9,0.5); border: 1px solid var(--line); display: grid; place-items: center; backdrop-filter: blur(4px); transition: all 0.3s; }
.reel .expand svg { width: 15px; height: 15px; stroke: var(--cream); }
.reel:hover .expand { background: var(--gold); border-color: var(--gold); }
.reel:hover .expand svg { stroke: #14130c; }
.reel:hover video, .reel:hover img.poster { transform: scale(1.03); }
.reel video, .reel img.poster { transition: transform 0.7s var(--ease); }

/* =====================================================================
   DIFERENCIAIS
   ===================================================================== */
.diff { padding: clamp(70px, 10vw, 130px) 0; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.diff-card {
  position: relative; overflow: hidden; border-radius: 16px; padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-2);
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; transition: border-color 0.5s;
}
.diff-card:hover { border-color: rgba(196,168,74,0.4); }
.diff-card .big-num { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(240,234,208,0.14); position: absolute; top: 10px; right: 24px; }
.diff-card .spec { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.diff-card h3 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; margin: 14px 0 20px; }
.diff-card p { color: var(--cream-dim); max-width: 44ch; line-height: 1.8; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg-2); border-block: 1px solid var(--line-2); }
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 24px;
  padding: clamp(24px, 3.4vw, 40px) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease), background 0.45s; position: relative;
}
.svc-row::before { content: ""; position: absolute; left: -100%; top: 0; bottom: 0; right: 100%; background: rgba(196,168,74,0.05); transition: 0.5s var(--ease); z-index: -1; }
.svc-row:hover { padding-left: 20px; }
.svc-row:hover::before { left: -20px; right: -20px; }
.svc-num { font-family: var(--font-display); color: var(--muted); font-size: 15px; }
.svc-name { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.8rem); font-weight: 500; letter-spacing: -0.02em; transition: color 0.35s; }
.svc-row:hover .svc-name { color: var(--gold); }
.svc-desc { color: var(--muted); max-width: 40ch; font-size: 14.5px; text-align: right; }
@media (max-width: 720px) { .svc-desc { display: none; } .svc-row { grid-template-columns: 50px 1fr; } }

/* =====================================================================
   FOTOS
   ===================================================================== */
.fotos { padding: clamp(70px, 10vw, 130px) 0; }
/* Fixed-size tiles that cross-fade through all photos in an endless, subtle loop.
   Uniform cells + overflow:hidden = nothing ever spills out of frame. */
.foto-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.foto {
  position: relative; aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden;
  cursor: pointer; border: 1px solid var(--line-2); background: var(--panel);
}
.foto .layer {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04); transition: opacity 1.6s var(--ease);
  filter: saturate(1.02);
}
.foto .layer.show { opacity: 1; animation: kenburns 8s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.1); } }
.foto .fgrad { position: absolute; inset: 0; z-index: 2; opacity: 0; transition: opacity 0.4s var(--ease);
  background: linear-gradient(180deg, transparent 55%, rgba(11,9,6,0.55)); }
.foto::after { content: "↗"; position: absolute; top: 12px; right: 14px; z-index: 3; color: var(--cream);
  opacity: 0; transform: translateY(-6px); transition: 0.4s var(--ease); font-size: 17px; }
.foto:hover .fgrad { opacity: 1; }
.foto:hover::after { opacity: 1; transform: none; }
@media (max-width: 900px) { .foto-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .foto-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (prefers-reduced-motion: reduce) { .foto .layer.show { animation: none; } }

/* =====================================================================
   CONTATO
   ===================================================================== */
.contato { padding: clamp(90px, 14vw, 200px) 0 0; text-align: center; position: relative; overflow: hidden; }
.contato .sym-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); width: min(70vw, 640px); opacity: 0.035; z-index: 0; }
.contato .inner { position: relative; z-index: 2; }
.contato h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 20vw, 15rem);
  line-height: 0.84; letter-spacing: -0.04em;
}
.contato h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.contato .lead { color: var(--cream-dim); font-size: clamp(15px, 2.2vw, 19px); max-width: 40ch; margin: 30px auto 44px; line-height: 1.7; }
.contact-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(60px, 10vw, 120px); }
.contact-links a {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 100px;
  border: 1px solid var(--line); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: all 0.4s var(--ease);
}
.contact-links a.primary { background: var(--gold); color: #14130c; border-color: var(--gold); }
.contact-links a:hover { background: var(--cream); color: #14130c; border-color: var(--cream); transform: translateY(-3px); }
.contact-links a.primary:hover { background: var(--gold-2); transform: translateY(-3px); }
.contact-links svg { width: 17px; height: 17px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer .fword { height: 15px; opacity: 0.8; }
footer .fword svg { height: 100%; width: auto; }
footer .fmeta { font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
footer .fmeta strong { color: var(--cream-dim); font-weight: 600; }
footer .credit { font-size: 11px; color: var(--muted-2); letter-spacing: 0.08em; }

/* =====================================================================
   LIGHTBOX (reels + fotos)
   ===================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 950; background: rgba(6,6,4,0.92); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-inner { position: relative; max-width: 100%; max-height: 90svh; transform: scale(0.96); transition: transform 0.45s var(--ease); }
.lightbox.open .lb-inner { transform: none; }
.lightbox video { max-height: 90svh; max-width: 100%; width: auto; border-radius: 12px; background: #000; }
.lightbox img { max-height: 90svh; max-width: 100%; width: auto; border-radius: 12px; }
.lb-close {
  position: fixed; top: 22px; right: 24px; z-index: 960; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(11,11,9,0.5); display: grid; place-items: center; transition: 0.3s;
}
.lb-close:hover { background: var(--gold); border-color: var(--gold); }
.lb-close::before, .lb-close::after { content: ""; position: absolute; width: 18px; height: 1.5px; background: var(--cream); }
.lb-close:hover::before, .lb-close:hover::after { background: #14130c; }
.lb-close::before { transform: rotate(45deg); } .lb-close::after { transform: rotate(-45deg); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 960; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(11,11,9,0.4); display: grid; place-items: center; transition: 0.3s; color: var(--cream); font-size: 22px; }
.lb-nav:hover { background: var(--gold); color: #14130c; border-color: var(--gold); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .manifesto-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .diff-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .yt-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .manifesto .stats { flex-wrap: wrap; gap: 26px; }
  .lb-nav { width: 42px; height: 42px; }
}
