/* ================================================================
   birdiecrew v2 — style.css
   Cinematic broadcast aesthetic. DM Sans + Space Mono.
   Signal Red #E02020 is the only accent colour — brand law.
   No border-radius · No gradients · No shadows
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Space+Mono:wght@400;700&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:        #020202;   /* near-black  */
  --bg2:       #060504;   /* dark surface */
  --bg3:       #0b0a08;   /* card surface */
  --linen:     #f5f2ed;   /* warm white — slightly brighter */
  --linen-40:  rgba(245,242,237,.40);
  --linen-20:  rgba(245,242,237,.20);
  --linen-10:  rgba(245,242,237,.10);
  --linen-06:  rgba(245,242,237,.06);
  --stone:     #b8ac9e;   /* body/muted text — lifted from #6a6058 */
  --stone-40:  rgba(184,172,158,.40);
  --red:       #e02020;
  --red-40:    rgba(224,32,32,.40);
  --red-10:    rgba(224,32,32,.10);

  --sans: 'DM Sans', sans-serif;
  --mono: 'Space Mono', monospace;

  --nav-h: 64px;
  --pad-x: 60px;          /* horizontal padding — all sections */
  --pad-y: 120px;         /* vertical padding */
  --gap:   2px;           /* brand grid gap */
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--linen); font-family: var(--sans);
        font-weight: 300; line-height: 1.7; overflow-x: hidden;
        -webkit-font-smoothing: antialiased; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
img   { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ─── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes ticker  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes breathe { 0%,100% { opacity:.35; } 50% { opacity:.8; } }

/* Black background: stays solid until logo content is gone, then dissolves */
@keyframes intro-overlay-bg {
  from { opacity: 1; }
  to   { opacity: 0; }
}
/* Logo content (brand text + SVG wrap): fades out after blink */
@keyframes intro-content-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
/* SVG frame: fades in 200 ms after typing starts */
@keyframes intro-logo {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* REC + ON AIR: single smooth blink */
@keyframes intro-blink {
  0%, 100% { opacity: 1; }
  40%, 60% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ─── Scroll reveal ──────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity:1; transform:none; }

/* ─── Shared: section label + headline ──────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
}
.sec-label::before {
  content: '';
  display: block;
  width: 18px;
  height: .5px;
  background: var(--red);
  flex-shrink: 0;
}

.sec-hl {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -.03em;
  line-height: 1.0;
  color: var(--linen);
}

.sec-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 64px;
}

/* ─── Shared: buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--linen);
  border: .5px solid var(--linen-40);
  padding: 15px 32px;
  transition: border-color .2s, background .2s;
}
.btn-primary:hover { border-color: var(--linen); background: rgba(240,237,232,.04); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color .2s;
}
.btn-ghost:hover { color: var(--linen); }
.btn-ghost .arrow { display:inline-block; transition: transform .2s; }
.btn-ghost:hover  .arrow { transform: translateX(4px); }


/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset-block-start: 0;
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: .5px solid var(--linen-06);
  /* start hidden — JS slides it down after intro */
  opacity: 0;
  transform: translateY(calc(-1 * var(--nav-h)));
  transition: border-color .3s, opacity .6s ease, transform .6s ease;
}
#nav.scrolled { border-bottom-color: var(--linen-10); }
#nav.nav-visible { opacity: 1; transform: translateY(0); }

.nav-inner {
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Brand */
.nav-brand { display:flex; align-items:center; gap:18px; flex-shrink:0; }

.wm { font-size:20px; letter-spacing:-.04em; line-height:1; }
.wm-l { font-weight:300; color:rgba(240,237,232,.32); }
.wm-b { font-weight:500; color:var(--linen); }

.nav-onair { display:block; flex-shrink:0; }

/* Links */
.nav-links { display:flex; gap:28px; margin-left:auto; }
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color .2s;
}
.nav-links a:hover { color:var(--linen); }

/* End controls */
.nav-end { display:flex; align-items:center; gap:14px; }

.lang-btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--stone);
  border: .5px solid var(--stone-40);
  padding: 5px 10px;
  transition: color .2s, border-color .2s;
}
.lang-btn:hover { color:var(--linen); border-color:var(--stone); }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  border: .5px solid var(--red-40);
  padding: 8px 18px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-10); }

/* Mobile nav lang button — hidden on desktop, shown beside burger on mobile */
.lang-btn-mob-nav { display: none; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 24px;
  margin-left: auto;
  align-items: flex-end;
}
.burger span { display:block; height:.5px; background:var(--linen); transition:width .2s; }
.burger span:nth-child(1) { width:24px; }
.burger span:nth-child(2) { width:16px; }
.burger span:nth-child(3) { width:20px; }
.burger:hover span { width:24px; }

/* Mobile menu — must be a direct child of <body>, NOT inside the nav
   (backdrop-filter on the header would otherwise trap fixed positioning) */
.mob-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 300;            /* above nav (100) and everything else */
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 56px 24px 40px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mob-menu.open { opacity:1; pointer-events:all; }

.mob-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.mob-close span {
  position: absolute;
  width: 20px; height: .5px;
  background: var(--linen);
}
.mob-close span:first-child { transform:rotate(45deg); }
.mob-close span:last-child  { transform:rotate(-45deg); }

.mob-links { display:flex; flex-direction:column; align-items:center; gap:20px; }
.mob-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--linen);
  transition: color .2s;
}
.mob-links a:hover { color: var(--stone); }

.mob-foot { display:flex; flex-direction:column; align-items:center; gap:14px; }


/* ════════════════════════════════════════════════
   HERO INTRO
════════════════════════════════════════════════ */
/* Black background — stays solid while logo plays, then slow dissolve */
.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* delay 2.1s = after content has faded; 1.4s dissolve = smooth black → video */
  animation: intro-overlay-bg 0.7s cubic-bezier(.4,0,.2,1) 1.4s both;
}

/* Logo content: fades out after the blink settles */
.hero-intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* delay 1.8s, 0.5s fade — content is gone before black starts dissolving */
  animation: intro-content-out 0.5s ease-in-out 1.5s both;
}

/* birdiecrew typed text above the frame */
.hero-intro-brand {
  font-family: var(--sans);
  font-size: clamp(18px, 2.4vw, 34px);
  letter-spacing: -.04em;
  line-height: 1;
  min-height: 1.1em;
}
.hero-intro-brand .wm-l { font-weight: 300; color: rgba(240,237,232,.32); }
.hero-intro-brand .wm-b { font-weight: 500; color: var(--linen); }

/* SVG frame: fades in 200 ms after typing starts */
.hero-intro-svg {
  width: clamp(130px, 16vw, 230px);
  animation: intro-logo 0.35s ease-out 0.2s both;
}

/* REC + ON AIR: single smooth blink */
.hero-intro-blink {
  animation: intro-blink 1.0s cubic-bezier(.45,0,.55,1) 0.65s 1 both;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}

/* Film-grain noise overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .4;
  pointer-events: none;
}

/* Letterbox bars */
.bar {
  position: absolute;
  left: 0; right: 0;
  height: 7vh;
  background: var(--bg);
  z-index: 2;
}
.bar-t { top: 0; }
.bar-b { bottom: 0; }

/* Telemetry readout */
.hero-telemetry { display: none; }

/* Hero body */
.hero-body {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x) 56px;
  max-width: 820px;
}

/* Anim items start hidden */
.anim-item { opacity:0; transform:translateY(24px); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: .5px;
  background: var(--red);
}

.hero-hl {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(68px, 11vw, 148px);
  letter-spacing: -.045em;
  line-height: .93;
  color: var(--linen);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--stone);
  max-width: 480px;
  line-height: 2;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-ctas { display:flex; flex-wrap:wrap; gap:16px; }

/* Bottom spec strip */
.hero-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  border-top: .5px solid rgba(240,237,232,.08);
  background: rgba(10,10,10,.6);
  padding: 14px var(--pad-x);
  gap: 0;
  overflow: hidden;
}
.hero-strip-item {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}
.hero-strip-sep {
  display: block;
  width: .5px;
  height: 10px;
  background: #444;
  margin: 0 24px;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════ */
#ticker {
  overflow: hidden;
  border-top: .5px solid var(--linen-06);
  border-bottom: .5px solid var(--linen-06);
  background: var(--bg2);
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #706860;
  padding: 0 28px;
  gap: 28px;
}
.ticker-item::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
#services {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.svc-card {
  background: var(--bg2);
  padding: 52px 44px 44px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  transition: background .3s;
}
.svc-card:hover { background: #111009; }

/* Giant faded number */
.svc-num-bg {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: var(--mono);
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 700;
  color: rgba(240,237,232,.03);
  line-height: 1;
  user-select: none;
  transition: color .3s;
}
.svc-card:hover .svc-num-bg { color: rgba(240,237,232,.05); }

.svc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  border: .5px solid var(--red-40);
  padding: 3px 10px;
  margin-bottom: 40px;
}

.svc-name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.025em;
  color: var(--linen);
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.85;
  max-width: 340px;
}

.svc-num-label {
  position: absolute;
  top: 44px;
  right: 44px;
  font-family: var(--mono);
  font-size: 12px;
  color: #555;
  letter-spacing: .1em;
}


/* ════════════════════════════════════════════════
   REEL
════════════════════════════════════════════════ */
#reel {
  background: var(--bg2);
  border-top: .5px solid var(--linen-06);
  border-bottom: .5px solid var(--linen-06);
  padding: var(--pad-y) var(--pad-x);
}

.reel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.reel-text { flex: 1; }
.reel-text .sec-label { margin-bottom: 16px; }

.reel-hl {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 68px);
  letter-spacing: -.04em;
  line-height: 1.0;
  color: var(--linen);
}

/* Square play button — no border-radius (brand rule) */
.reel-play {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border: .5px solid var(--linen-20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, background .25s, transform .25s;
  cursor: pointer;
}
.reel-play:hover {
  border-color: var(--linen-40);
  background: rgba(240,237,232,.04);
  transform: scale(1.06);
}
.play-icon { width: 28px; height: 28px; }


/* ════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════ */
#stats {
  background: var(--bg3);
  border-bottom: .5px solid var(--linen-06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-cell {
  padding: 52px 40px;
  border-right: .5px solid var(--linen-06);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }

.stat-number {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -.04em;
  color: var(--linen);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix {
  font-size: .55em;
  color: var(--red);
  font-weight: 400;
}

.stat-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}


/* ════════════════════════════════════════════════
   CLIENTS
════════════════════════════════════════════════ */
#clients {
  border-bottom: .5px solid var(--linen-06);
  padding: 20px var(--pad-x);
  overflow: hidden;
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.clients-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
}

.clients-list {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.clients-list::-webkit-scrollbar { display:none; }

.client-name {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  color: #888;
  white-space: nowrap;
  transition: color .2s;
}
.client-name:hover { color: var(--linen); }


/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
#about {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-left .sec-label { margin-bottom: 16px; }
.about-left .sec-hl    { line-height: .95; }

.about-intro {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  padding-top: 6px;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 80px;
}

.why-cell {
  background: var(--bg2);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}

.why-num {
  font-family: var(--mono);
  font-size: 12px;
  color: #666;
  padding-top: 3px;
}

.why-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  color: var(--linen);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.why-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
}

/* Team */
.team-section {
  margin-top: 96px;
}

.team-headline {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--linen);
  margin-bottom: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-member {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  background: #141410;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo.no-photo::after {
  content: 'foto';
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #222;
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.03);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 40%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.team-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--linen);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.team-role {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 5px;
}

.team-bio {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,237,232,.5);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 280px;
}


/* ════════════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════════════ */
#portfolio {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

/* Asymmetric: row1 = 3:2, row2 = 2:3 */
.port-grid {
  display: grid;
  grid-template-areas:
    "p1 p1 p1 p2 p2"
    "p3 p3 p4 p4 p4";
  gap: var(--gap);
}
.port-item:nth-child(1) { grid-area: p1; }
.port-item:nth-child(2) { grid-area: p2; }
.port-item:nth-child(3) { grid-area: p3; }
.port-item:nth-child(4) { grid-area: p4; }

.port-item {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.port-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 16 / 9;
}

.port-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94), opacity .3s;
}
.port-img-ph {
  width: 100%; height: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  color: #555;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Square play — no border-radius */
.port-play {
  width: 52px;
  height: 52px;
  border: .5px solid rgba(240,237,232,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s, transform .3s, border-color .2s;
}
.port-play svg { width:16px; height:16px; }

.port-item:hover .port-img     { transform: scale(1.05); }
.port-item:hover .port-overlay { opacity: 1; }
.port-item:hover .port-play    { opacity:1; transform:scale(1); border-color:var(--linen); }

.port-meta {
  background: var(--bg2);
  padding: 20px 24px;
  border-top: .5px solid var(--linen-06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.port-client {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}

.port-title {
  font-size: 15px;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: -.01em;
}

.port-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
  margin-top: 4px;
}
.port-tag {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: .5px solid #333;
  padding: 3px 8px;
  color: #888;
}


/* ════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lightbox.open { opacity:1; pointer-events:all; }

.lb-wrap {
  width: 90%;
  max-width: 860px;
  position: relative;
  transform: scale(.95);
  transition: transform .25s;
}
.lightbox.open .lb-wrap { transform: scale(1); }

.lb-video { aspect-ratio:16/9; position:relative; }
.lb-iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }

.lb-info {
  background: var(--bg2);
  padding: 20px 24px;
}
.lb-client { font-family:var(--mono); font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--red); }
.lb-title  { font-size:20px; font-weight:300; color:var(--linen); margin:6px 0; letter-spacing:-.01em; }
.lb-desc   { font-size:13px; color:var(--stone); line-height:1.7; }
.lb-tags   { display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; }
.lb-tag    { font-family:var(--mono); font-size:7px; letter-spacing:.1em; border:.5px solid #333; padding:3px 8px; color:#888; }

.lb-close {
  position: absolute;
  top: -46px; right: 0;
  width: 36px; height: 36px;
  border: .5px solid var(--linen-20);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--stone);
  transition: border-color .2s, color .2s;
}
.lb-close:hover { border-color:var(--linen); color:var(--linen); }


/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
#contact {
  background: var(--bg2);
  border-top: .5px solid var(--linen-06);
  padding: var(--pad-y) var(--pad-x);
}

.con-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.con-left .sec-label { margin-bottom: 16px; }

.con-hl {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 64px);
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--linen);
  margin-bottom: 32px;
}

/* Contact details — left column */
.con-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
}

.con-detail-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--linen);
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.con-detail-link:hover { color: var(--red); }

/* Form */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(240,237,232,.03);
  border: .5px solid rgba(240,237,232,.1);
  color: var(--linen);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: #555; }
.field input:focus,
.field textarea:focus { border-color: rgba(240,237,232,.28); }
.field input.invalid,
.field textarea.invalid { border-color: rgba(224,32,32,.5); animation: shake .3s ease; }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

@keyframes shake {
  0%,100% { transform:translateX(0); }
  25%      { transform:translateX(-4px); }
  75%      { transform:translateX(4px); }
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border: .5px solid var(--red-40);
  color: var(--red);
  background: transparent;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s;
}
.btn-submit:hover { background: var(--red-10); }

.rec-dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.con-success {
  font-size: 16px;
  font-weight: 300;
  color: var(--linen);
  text-align: center;
  margin-top: 32px;
  display: none;
}
.con-success.show { display:block; }


/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
#footer {
  padding: 36px var(--pad-x);
  border-top: .5px solid var(--linen-06);
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-wm { font-size:18px; letter-spacing:-.03em; }

.foot-company {
  display: flex;
  flex-direction: column;
  line-height: 2;
}
.foot-company span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}
.foot-co-name { color: #444; text-transform: none; }
.foot-company span:not(.foot-co-name) { color: #333; }
.wm-l      { font-weight:300; color:rgba(245,242,237,.28); }
.wm-b-dim  { font-weight:400; color:#666; }

.foot-links { display:flex; gap:24px; }
.foot-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  transition: color .2s;
}
.foot-links a:hover { color: var(--stone); }

.foot-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: #555;
}


/* ════════════════════════════════════════════════
   RESPONSIVE — 768 px
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-x: 24px; --pad-y: 80px; }

  /* Nav */
  .nav-links, .nav-end { display:none; }
  .burger { display:flex; }
  .nav-onair { display:none; }
  .lang-btn-mob-nav { display:block; }

  /* Hero */
  .hero-hl { font-size: clamp(52px, 13vw, 96px); }
  .hero-telemetry { display:none; }
  .hero-strip { display:none; }
  .hero-body { padding: 0 var(--pad-x) 48px; }

  /* Ticker — slower on mobile */
  .ticker-track { animation-duration: 20s; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* Reel */
  .reel-inner { flex-direction:column; align-items:flex-start; gap:32px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right:none; }
  .stat-cell:nth-child(3) { border-top:.5px solid var(--linen-06); }
  .stat-cell:nth-child(4) { border-top:.5px solid var(--linen-06); border-right:none; }

  /* Clients */
  #clients { padding: 18px var(--pad-x); }
  .clients-label { display:none; }

  /* About */
  .about-top  { grid-template-columns:1fr; gap:32px; margin-bottom:48px; }
  .why-grid   { grid-template-columns:1fr; margin-bottom:48px; }
  .team-grid  { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 4 / 3; }
  .team-overlay { padding: 20px 18px; }
  .team-bio   { display: none; }

  /* Portfolio */
  #portfolio { padding: var(--pad-y) var(--pad-x); }
  .port-grid {
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4";
    grid-template-columns: 1fr;
  }

  /* Contact */
  .con-inner { grid-template-columns:1fr; gap:48px; }

  /* Footer */
  #footer { padding: 28px var(--pad-x); }
  .foot-inner { flex-direction:column; gap:20px; text-align:center; }
  .foot-links { flex-wrap:wrap; justify-content:center; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — 480 px
════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-hl { font-size: clamp(44px, 14vw, 80px); }
  .hero-ctas { flex-direction:column; align-items:flex-start; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-cell { border-right:none; border-top:.5px solid var(--linen-06); }
  .stat-cell:first-child { border-top:none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
