/* ==========================================================================
   4MEDIACARIBBEAN — SITE STYLESHEET
   Palette : ink / charcoal / bone / gold, with a single whisper of deep sea
   Type    : Archivo (display, expanded caps) · Manrope (body) · JetBrains Mono (slate)
   Idea    : the site is a screening room. Labels read like camera metadata;
             the dark holds everything else back and the media carries the page.
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root{
  --ink:        #08090A;
  --ink-2:      #0D0E11;
  --surface:    #141519;
  --surface-2:  #1B1C22;
  --bone:       #F3F0E9;
  --plate:      #FFFFFF;   /* pure white: white-background JPG logos blend in seamlessly */
  --bone-dim:   #A8A69F;
  --mute:       #6E6D69;

  --gold:       #C8A250;
  --gold-lite:  #E7D3A3;
  --gold-deep:  #7A5E22;
  --sea:        #0E4E4C;

  --line:       rgba(200,162,80,.22);
  --line-soft:  rgba(243,240,233,.10);

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Manrope", system-ui, -apple-system, sans-serif;
  --f-slate:   "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --pad:  clamp(20px, 5vw, 64px);
  --gap:  clamp(16px, 2.4vw, 32px);
  --sec:  clamp(76px, 9vw, 152px);
  --max:  1440px;

  --ease: cubic-bezier(.22,.68,.32,1);
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--ink); color:var(--bone);
  font-family:var(--f-body); font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-display); font-weight:700; line-height:.95; letter-spacing:-.01em; }
p{ margin:0; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }

/* ---------- ATOMS ---------- */
.wrap{ width:100%; max-width:var(--max); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding-block:var(--sec); position:relative; }
.section--tight{ padding-top:clamp(28px,4vw,56px); }

/* inner-page header — sits below the fixed nav, which the hero doesn't need to */
.phead{ padding:calc(var(--sec) * .72 + 64px) 0 clamp(20px,3vw,40px); position:relative; }
.phead::after{
  content:""; position:absolute; inset:auto 0 0; height:1px;
  background:linear-gradient(90deg,var(--line),transparent 60%);
}
.phead h1{ margin:14px 0 18px; }
.phead .lede{ max-width:60ch; }

/* end-of-page hand-off to the next page */
.nextup{
  display:flex; align-items:center; justify-content:space-between;
  gap:clamp(16px,3vw,40px); flex-wrap:wrap;
  margin-top:clamp(40px,5vw,72px); padding-top:clamp(28px,3.5vw,48px);
  border-top:1px solid var(--line-soft);
}
.nextup .lede{ margin:0; }
.nextup--wide{ margin-top:0; border-top:0; padding-top:0; }

.slate{                                   /* camera-metadata label */
  font-family:var(--f-slate); font-size:11px; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold);
}
.slate--dim{ color:var(--mute); }

.h-xl{ font-size:clamp(2.6rem, 9vw, 7.5rem); font-stretch:118%; text-transform:uppercase; letter-spacing:-.02em; }
.h-lg{ font-size:clamp(2rem, 5.6vw, 4.4rem);  font-stretch:114%; text-transform:uppercase; }
.h-md{ font-size:clamp(1.4rem, 2.6vw, 2.2rem); font-stretch:110%; text-transform:uppercase; }
.lede{ color:var(--bone-dim); font-size:clamp(1rem,1.3vw,1.15rem); max-width:56ch; }

.rule{ height:1px; background:linear-gradient(90deg,var(--line),transparent); border:0; margin:0; }

.sec-head{ display:flex; flex-direction:column; gap:14px; margin-bottom:clamp(36px,5vw,72px); }
.sec-head .lede{ margin-top:4px; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.7em;
  min-height:52px; padding:0 26px;
  font-family:var(--f-slate); font-size:12px; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; white-space:nowrap;
  border:1px solid var(--line); background:transparent; color:var(--bone);
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.btn:active{ transform:translateY(1px); }
.btn--solid{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.btn--solid:hover{ background:var(--gold-lite); border-color:var(--gold-lite); }
.btn--ghost{ border-color:var(--line-soft); color:var(--bone-dim); }
.btn--ghost:hover{ background:transparent; border-color:var(--gold); color:var(--gold); }
.btn--wide{ width:100%; }
/* last-resort guard: on the narrowest screens a long label wraps rather than
   pushing the page sideways */
@media (max-width:420px){
  .btn{ white-space:normal; text-align:center; padding:10px 16px; line-height:1.4; }
}

/* ---------- LOGO PLATE ----------
   Supplied artwork is a mix of transparent PNG and white-background JPG.
   The plate gives every logo the same lit surface so nothing shows a
   white box on black — and no artwork is ever altered to achieve it. */
.plate{
  display:flex; align-items:center; justify-content:center;
  background:var(--plate); padding:clamp(14px,2.2vw,26px);
  position:relative; overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(200,162,80,.18);
}
.plate picture{ display:block; width:100%; height:100%; transform-origin:center; }
.plate img{ width:100%; height:100%; min-height:0; object-fit:contain; }

/* Artwork with a real alpha channel needs no plate at all — it sits directly on
   the page. The glow is the logo's own neon, lifted a little off the black. */
.plate--bare{
  background:none !important; box-shadow:none; padding:0;
}
.plate--bare img{ filter:drop-shadow(0 0 26px rgba(232,49,143,.22)); }
.nav__mark .plate--bare img{ filter:none; }

.plate--dark{ background:var(--surface); border:1px solid var(--line-soft); }


.missing{                                 /* shown only until artwork is added */
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; width:100%; height:100%; min-height:64px; padding:12px;
  border:1px dashed rgba(8,9,10,.28); color:rgba(8,9,10,.55);
  font-family:var(--f-slate); font-size:9px; letter-spacing:.14em;
  text-transform:uppercase; text-align:center; line-height:1.5;
}
.missing b{ font-weight:500; color:rgba(8,9,10,.75); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:60;
  display:flex; align-items:center; gap:var(--gap);
  padding:14px var(--pad);
  background:rgba(8,9,10,0); border-bottom:1px solid transparent;
  transition:background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.nav.is-stuck{
  background:rgba(8,9,10,.86); backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px); border-bottom-color:var(--line-soft);
}
.nav__brand{ display:flex; align-items:center; gap:12px; margin-right:auto; }
.nav__mark{ width:38px; height:38px; flex:none; }
.nav__mark .plate{ width:100%; height:100%; padding:5px; }
.nav__name{ font-family:var(--f-display); font-stretch:112%; font-weight:700; font-size:14px; letter-spacing:.14em; text-transform:uppercase; }
.nav__links{ display:flex; align-items:center; gap:clamp(14px,1.8vw,28px); }
.nav__links a{
  font-family:var(--f-slate); font-size:11px; letter-spacing:.15em;
  text-transform:uppercase; color:var(--bone-dim); transition:color .3s var(--ease);
}
.nav__links a:hover{ color:var(--gold); }
.nav__links a.is-here{ color:var(--bone); }
.nav__links a.is-here::after{
  content:""; display:block; height:1px; margin-top:5px; background:var(--gold);
}
@media (max-width:960px){ .nav__links a.is-here{ color:var(--gold); } .nav__links a.is-here::after{ display:none; } }
.nav__cta{ margin-left:6px; min-height:42px; padding:0 18px; font-size:11px; }
.nav__burger{ display:none; width:44px; height:44px; align-items:center; justify-content:center; }
.nav__burger span{ display:block; width:22px; height:1px; background:var(--bone); position:relative; transition:background .2s; }
.nav__burger span::before,.nav__burger span::after{
  content:""; position:absolute; left:0; width:22px; height:1px; background:var(--bone);
  transition:transform .35s var(--ease), top .35s var(--ease);
}
.nav__burger span::before{ top:-7px; } .nav__burger span::after{ top:7px; }
.nav.is-open .nav__burger span{ background:transparent; }
.nav.is-open .nav__burger span::before{ top:0; transform:rotate(45deg); }
.nav.is-open .nav__burger span::after{ top:0; transform:rotate(-45deg); }

@media (max-width:960px){
  .nav__burger{ display:flex; }
  .nav__links{
    position:fixed; inset:0; z-index:-1;
    flex-direction:column; align-items:flex-start; justify-content:center;
    gap:22px; padding:96px var(--pad) var(--pad);
    background:var(--ink-2);
    clip-path:inset(0 0 100% 0); transition:clip-path .55s var(--ease);
  }
  .nav.is-open .nav__links{ clip-path:inset(0 0 0 0); }
  .nav__links a{ font-family:var(--f-display); font-stretch:112%; font-weight:600; font-size:1.6rem; letter-spacing:.02em; color:var(--bone); }
  .nav__cta{ margin:8px 0 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; }
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img,.hero__bg video{ width:100%; height:100%; object-fit:cover; }
.hero__atmos{                             /* used when no footage is supplied */
  position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 78% 8%,  rgba(200,162,80,.16), transparent 55%),
    radial-gradient(100% 70% at 8% 92%,  rgba(14,78,76,.30),  transparent 60%),
    linear-gradient(180deg, #0B0C0F 0%, #08090A 60%, #060607 100%);
}
.hero__atmos::after{                      /* horizon band — Willemstad at night, abstracted */
  content:""; position:absolute; left:0; right:0; top:52%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(200,162,80,.5) 30%,rgba(200,162,80,.18) 62%,transparent);
}
.hero__scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(8,9,10,.72) 0%,rgba(8,9,10,.15) 38%,rgba(8,9,10,.92) 100%); }
.grain{
  position:absolute; inset:0; z-index:2; pointer-events:none; opacity:.5;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hero__inner{ position:relative; z-index:3; width:100%; padding-block:clamp(40px,8vh,90px) clamp(48px,9vh,110px); }
.hero h1{ margin-bottom:.28em; }
.hero__tag{
  font-family:var(--f-display); font-stretch:108%; font-weight:600;
  font-size:clamp(1.05rem,2.1vw,1.7rem); letter-spacing:.04em;
  text-transform:uppercase; color:var(--gold-lite); margin-bottom:.9em;
}
.hero__lede{ margin-bottom:clamp(28px,3.4vw,44px); }
.hero__acts{ display:flex; flex-wrap:wrap; gap:12px; }
.hero__meta{
  position:absolute; z-index:3; right:var(--pad); bottom:clamp(48px,9vh,110px);
  display:flex; flex-direction:column; align-items:flex-end; gap:6px; text-align:right;
}
@media (max-width:860px){ .hero__meta{ display:none; } }

.scrollcue{ display:flex; align-items:center; gap:10px; margin-top:26px; }
.scrollcue i{ display:block; width:52px; height:1px; background:var(--gold); transform-origin:left; animation:cue 2.6s var(--ease) infinite; }
@keyframes cue{ 0%,100%{ transform:scaleX(.25); opacity:.4 } 50%{ transform:scaleX(1); opacity:1 } }

/* ==========================================================================
   POWERED BY — parent brand bar
   ========================================================================== */
.powered{ border-block:1px solid var(--line-soft); background:var(--ink-2); }
.powered__in{
  display:flex; align-items:center; gap:clamp(20px,4vw,52px);
  padding-block:clamp(26px,3.6vw,44px); flex-wrap:wrap;
}
.powered__mark{ width:clamp(66px,8vw,104px); flex:none; }
.powered__mark{ position:relative; aspect-ratio:1/1; }
.powered__mark .plate{ position:absolute; inset:0; }
.powered__txt{ display:flex; flex-direction:column; gap:6px; margin-right:auto; }
.powered__name{ font-family:var(--f-display); font-stretch:116%; font-weight:700; font-size:clamp(1.3rem,2.6vw,2rem); text-transform:uppercase; letter-spacing:.01em; }

/* ==========================================================================
   PROMO BANNER
   A campaign flyer running the full width of the page, in the slot the logo
   strip otherwise occupies.
   ========================================================================== */
.promo{ background:var(--ink-2); border-block:1px solid var(--line-soft); }
.promo[hidden]{ display:none; }
.promo__in{ width:100%; }
.promo__frame{
  display:block; position:relative; width:100%; line-height:0;
  transition:opacity .35s var(--ease);
}
.promo__frame img{ width:100%; height:auto; }
a.promo__frame:hover{ opacity:.92; }
a.promo__frame::after{                 /* keeps a clickable banner legible as a link */
  content:""; position:absolute; inset:0;
  box-shadow:inset 0 0 0 1px rgba(200,162,80,0);
  transition:box-shadow .35s var(--ease);
}
a.promo__frame:hover::after{ box-shadow:inset 0 0 0 1px var(--line); }

/* ==========================================================================
   NETWORK STRIP
   Every mark in one row, spanning the full viewport — the way the brands sit
   together on printed promo material.
   ========================================================================== */
.strip[hidden]{ display:none; }
.strip{
  background:var(--ink-2);
  border-block:1px solid var(--line-soft);
  padding-block:clamp(26px,3.6vw,52px);
}
.strip__in{
  display:flex; align-items:center; justify-content:center;
  gap:clamp(14px,1.9vw,32px); flex-wrap:wrap;
  width:100%; max-width:1560px; margin-inline:auto;
  padding-inline:clamp(16px,3vw,44px);
}
.strip__brand{ display:flex; align-items:center; gap:clamp(12px,1.5vw,20px); flex:none; margin-right:clamp(2px,.6vw,12px); }
.strip__mark{ width:clamp(64px,7.6vw,116px); flex:none; }
.strip__line{
  font-family:var(--f-display); font-stretch:112%; font-weight:700;
  font-size:clamp(.9rem,1.5vw,1.3rem); line-height:1.12;
  letter-spacing:.02em; text-transform:uppercase; white-space:nowrap;
}
.strip__logos{
  display:flex; align-items:center; justify-content:center;
  gap:clamp(12px,1.7vw,30px); flex-wrap:wrap;
}
.strip__logo{
  height:clamp(56px,8vw,124px);
  flex:none;                       /* never let flex squeeze a logo tile */
  border:1px solid var(--line-soft);
  transition:border-color .35s var(--ease), transform .35s var(--ease);
}
.strip__logo:hover{ border-color:var(--line); transform:translateY(-3px); }
.strip__logo .plate{ height:100%; width:auto; padding:clamp(4px,.6vw,9px); }

@media (max-width:860px){
  .strip__logos{ justify-content:center; gap:14px; }
  .strip__logo{ height:74px; }
}
@media (max-width:600px){
  .strip__in{ flex-direction:column; gap:24px; }
  .strip__brand{ flex-direction:column; text-align:center; }
  .strip__line{ white-space:normal; text-align:center; }
  .strip__mark{ width:96px; }
}
@media (prefers-reduced-motion: reduce){ .strip__logo:hover{ transform:none; } }

/* ==========================================================================
   TEAM CARDS
   ========================================================================== */
.team{ display:grid; gap:var(--gap); grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr)); }
.card{
  display:flex; flex-direction:column; position:relative;
  background:var(--surface); border:1px solid var(--line-soft);
  transition:border-color .4s var(--ease), transform .5s var(--ease), background .4s var(--ease);
}
.card:hover{ border-color:var(--line); transform:translateY(-6px); background:var(--surface-2); }
.card__logo{ position:relative; aspect-ratio:16/10; }
.card__logo .plate{ position:absolute; inset:0; }
.card__body{ display:flex; flex-direction:column; gap:12px; padding:clamp(20px,2.4vw,30px); flex:1; }
.card__name{ font-family:var(--f-display); font-stretch:112%; font-weight:700; font-size:clamp(1.25rem,2vw,1.6rem); text-transform:uppercase; }
.card__desc{ color:var(--bone-dim); font-size:.92rem; flex:1; }
.card__acts{ display:flex; flex-wrap:wrap; gap:10px; margin-top:6px; }
.card__acts .btn{ min-height:46px; padding:0 18px; font-size:11px; }

/* ==========================================================================
   COLLECTIVE — filters + gallery
   ========================================================================== */
.filters{ display:flex; flex-direction:column; gap:18px; margin-bottom:clamp(30px,4vw,52px); }
.filter{ display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; }
.filter__label{ flex:none; width:78px; }
.filter__set{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  min-height:38px; padding:0 15px;
  font-family:var(--f-slate); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--bone-dim); border:1px solid var(--line-soft);
  transition:color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.chip:hover{ color:var(--bone); border-color:var(--line); }
.chip.is-on{ color:var(--ink); background:var(--gold); border-color:var(--gold); }

.grid{ columns:3; column-gap:var(--gap); }
@media (max-width:900px){ .grid{ columns:2; } }
@media (max-width:520px){ .grid{ columns:1; } }
.tile{
  break-inside:avoid; margin-bottom:var(--gap); position:relative;
  background:var(--surface); border:1px solid var(--line-soft); overflow:hidden;
  opacity:0; transform:translateY(18px);
  transition:opacity .5s var(--ease), transform .5s var(--ease), border-color .35s var(--ease);
}
.tile.is-in{ opacity:1; transform:none; }
.tile:hover{ border-color:var(--line); }
.tile__media{ position:relative; width:100%; background:var(--ink-2); }
.tile__media img{ width:100%; height:100%; object-fit:cover; }
.tile__empty{
  display:flex; align-items:center; justify-content:center; width:100%; height:100%;
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(200,162,80,.08), transparent 60%),
    linear-gradient(160deg,#111216,#0A0B0D);
}
.tile__empty span{ font-family:var(--f-slate); font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--mute); }
.tile__cap{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 16px; border-top:1px solid var(--line-soft); }
.tile__who{ font-family:var(--f-display); font-stretch:108%; font-weight:600; font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; }
.tile__what{ font-family:var(--f-slate); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--mute); }
.play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  width:100%; background:rgba(8,9,10,.28); transition:background .35s var(--ease);
}
.tile:hover .play{ background:rgba(8,9,10,.12); }
.play i{
  width:58px; height:58px; border:1px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center; background:rgba(8,9,10,.5);
  transition:background .35s var(--ease), transform .35s var(--ease);
}
.play i::after{ content:""; border-left:11px solid var(--gold); border-block:7px solid transparent; margin-left:3px; }
.tile:hover .play i{ background:var(--gold); transform:scale(1.06); }
.tile:hover .play i::after{ border-left-color:var(--ink); }
.empty-note{ padding:40px 0; color:var(--mute); font-family:var(--f-slate); font-size:11px; letter-spacing:.16em; text-transform:uppercase; }

/* ==========================================================================
   FEATURED WORK — editorial rows
   ========================================================================== */
.feat{ display:flex; flex-direction:column; }
.feat__row{
  display:grid; gap:clamp(18px,3vw,48px); align-items:center;
  grid-template-columns:1fr; padding-block:clamp(28px,4vw,56px);
  border-top:1px solid var(--line-soft);
}
.feat__row:last-child{ border-bottom:1px solid var(--line-soft); }
@media (min-width:820px){
  .feat__row{ grid-template-columns:minmax(0,1.25fr) minmax(0,1fr); }
  .feat__row:nth-child(even) .feat__media{ order:2; }
}
.feat__media{ aspect-ratio:16/10; background:var(--surface); border:1px solid var(--line-soft); position:relative; overflow:hidden; }
.feat__media img{ width:100%; height:100%; object-fit:cover; }
.feat__txt{ display:flex; flex-direction:column; gap:14px; }
.feat__num{ font-family:var(--f-slate); font-size:11px; letter-spacing:.22em; color:var(--gold); }
.feat__title{ font-family:var(--f-display); font-stretch:114%; font-weight:700; font-size:clamp(1.6rem,3.4vw,2.8rem); text-transform:uppercase; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ display:grid; gap:clamp(28px,4vw,72px); grid-template-columns:1fr; }
@media (min-width:900px){ .about{ grid-template-columns:minmax(0,1.1fr) minmax(0,1fr); } }
.about__body{ display:flex; flex-direction:column; gap:20px; color:var(--bone-dim); max-width:60ch; }
.disciplines{ display:grid; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); grid-template-columns:repeat(2,1fr); }
.disciplines div{ background:var(--ink); padding:22px 20px; font-family:var(--f-slate); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--bone-dim); }
.disciplines div:hover{ color:var(--gold); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ display:grid; gap:clamp(26px,4vw,64px); grid-template-columns:1fr; align-items:end; }
@media (min-width:820px){ .contact{ grid-template-columns:1.3fr 1fr; } }
.contact__mail{ font-family:var(--f-display); font-stretch:112%; font-weight:700; font-size:clamp(1.3rem,3.4vw,2.6rem); text-transform:none; letter-spacing:-.01em; color:var(--bone); word-break:break-word; }
.contact__mail:hover{ color:var(--gold); }
.contact__meta{ display:flex; flex-direction:column; gap:10px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot{ border-top:1px solid var(--line-soft); background:var(--ink-2); }
.foot__in{ display:flex; flex-direction:column; gap:clamp(24px,3vw,38px); padding-block:clamp(44px,6vw,80px); align-items:center; text-align:center; }
.foot__mark{ width:clamp(74px,9vw,110px); }
.foot__mark{ position:relative; aspect-ratio:1/1; }
.foot__mark .plate{ position:absolute; inset:0; }
.foot__pow{ font-family:var(--f-display); font-stretch:114%; font-weight:700; font-size:clamp(1.1rem,2.4vw,1.7rem); text-transform:uppercase; }
.foot__line{ font-family:var(--f-slate); font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
.foot__nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:clamp(14px,2vw,28px); }
.foot__nav a{
  font-family:var(--f-slate); font-size:11px; letter-spacing:.15em;
  text-transform:uppercase; color:var(--bone-dim); transition:color .3s var(--ease);
}
.foot__nav a:hover{ color:var(--gold); }
.foot__legal{ font-family:var(--f-slate); font-size:10px; letter-spacing:.12em; color:var(--mute); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lb{ position:fixed; inset:0; z-index:90; display:none; align-items:center; justify-content:center; padding:var(--pad); background:rgba(6,6,7,.94); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.lb.is-open{ display:flex; }
.lb__box{ width:min(1200px,100%); }
.lb__frame{ position:relative; aspect-ratio:16/9; background:#000; border:1px solid var(--line-soft); }
.lb__frame iframe,.lb__frame video,.lb__frame img{ position:absolute; inset:0; width:100%; height:100%; border:0; object-fit:contain; }
.lb__cap{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:14px; }
.lb__close{ position:absolute; top:16px; right:16px; width:48px; height:48px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line-soft); color:var(--bone); font-family:var(--f-slate); font-size:16px; }
.lb__close:hover{ border-color:var(--gold); color:var(--gold); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.rev{ opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.rev.is-in{ opacity:1; transform:none; }

/* ==========================================================================
   REDUCED MOTION
   Transitions stay, but nothing travels, scales or loops.
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; }
  .rev,.tile{ opacity:1 !important; transform:none !important; transition:none; }
  .card:hover,.tile:hover .play i{ transform:none; }
  .scrollcue i{ animation:none; transform:scaleX(1); }
}
