/* ==========================================================================
   Good Fortune Agency — main stylesheet
   ========================================================================== */

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

:root {
  --red: #f72b2b;
  --red-dark: #c41f1f;
  --bg: #000;
  --border: #151515;
  --white: #fff;
  --text: #fff;
  --muted: #aaa;
  --dim: #777;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { max-width: 100%; display: block; }

/* ── CURSOR ── */
#cur {
  position: fixed; width: 12px; height: 12px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.18s ease, height 0.18s ease;
  mix-blend-mode: difference;
}
#cur.big { width: 56px; height: 56px; }
a, button, .wc, .sr, .play-o, .sc { cursor: none; }
@media (max-width: 768px) {
  body { cursor: auto; }
  #cur { display: none; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}
nav.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  /* Creates its own stacking context so the cursor's mix-blend-mode
     doesn't invert/negate the brand logo when hovering over it. */
  isolation: isolate;
}
.logo-img { height: 56px; width: auto; transition: opacity 0.15s; }
.logo-link:hover .logo-img { opacity: 0.85; }
@media (max-width: 768px) { .logo-img { height: 56px; } }
.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 10px 24px;
  text-decoration: none; transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
#hero {
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 64px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Hero background: static cover image (B&W) as primary visual.
   Video sits on top as progressive enhancement — if it plays, it
   covers the image. If not, the image carries the hero. */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: #000;
}

/* Static cover image — B&W, always visible behind video */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/herocover.webp') center 30% / cover no-repeat;
  filter: grayscale(100%) brightness(0.45) contrast(1.25);
}

/* Video overlays the static image — starts invisible so the black
   rectangle of a paused/unloaded video doesn't cover the ::before image.
   JS adds .playing once the video actually starts. */
.hero-bg video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: grayscale(10%) brightness(0.5) contrast(1.2) saturate(1.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-bg video.playing { opacity: 1; }
/* Hide any native controls/chrome (Safari / iOS inject these) */
.hero-bg video::-webkit-media-controls { display: none !important; }
.hero-bg video::-webkit-media-controls-panel { display: none !important; }
.hero-bg video::-webkit-media-controls-start-playback-button { display: none !important; }

/* Red tint + bottom gradient for text legibility — on top of everything */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(135deg, rgba(247,43,43,0.22) 0%, rgba(247,43,43,0.04) 40%, transparent 60%),
    linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.hero-slash {
  position: absolute; top: 0; right: 0;
  width: 8px; height: 100%;
  background: var(--red); z-index: 4;
  box-shadow: -4px 0 40px rgba(247,43,43,0.6);
}

.h-we {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(100px, 21vw, 220px); line-height: 0.80; letter-spacing: -0.02em;
  color: #fff; display: block; position: relative; z-index: 3;
  opacity: 0; animation: fup 0.8s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}
.bold-row {
  display: flex; align-items: center;
  position: relative; z-index: 3; opacity: 0;
  animation: fup 0.8s cubic-bezier(0.16,1,0.3,1) 0.18s forwards;
}
.bold-c {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(100px, 21vw, 220px); line-height: 0.80; letter-spacing: -0.02em;
  color: #fff;
}

.play-o {
  width: clamp(72px, 12vw, 148px); height: clamp(72px, 12vw, 148px);
  border-radius: 50%; border: 5px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin: 0 clamp(4px, 0.5vw, 8px);
  position: relative; top: 2px;
  transition: background 0.15s, transform 0.2s;
  animation: rpulse 2.4s ease-in-out infinite;
}
.play-o:hover { background: var(--red); transform: scale(1.06); animation: none; }
.play-o:hover .tri { border-left-color: #fff; }
@keyframes rpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(247,43,43,0); }
  50% { box-shadow: 0 0 0 18px rgba(247,43,43,0.12); }
}
.tri {
  border-left: clamp(16px, 2.8vw, 32px) solid var(--red);
  border-top: clamp(10px, 1.7vw, 19px) solid transparent;
  border-bottom: clamp(10px, 1.7vw, 19px) solid transparent;
  margin-left: 6px; transition: border-left-color 0.15s;
}

.hero-foot {
  margin-top: 20px; position: relative; z-index: 3;
  opacity: 0; animation: fup 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.brands-w {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(56px, 9vw, 108px); color: var(--red);
  line-height: 0.88; display: block; margin-bottom: 20px; letter-spacing: -0.02em;
}
.fort-line {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); opacity: 0.9;
}

/* ── TICKER ── */
.ticker { overflow: hidden; border-bottom: 1px solid var(--border); background: #000; padding: 28px 0; }
.ticker-track {
  display: flex; width: max-content;
  animation: tick 36s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Each .tl is a fixed-width cell so every logo occupies the same
   horizontal space regardless of aspect ratio. Logos scale inside
   via object-fit: contain — narrow logos get more breathing room,
   wide logos use more of the cell, but the rhythm stays even. */
.ti { display: flex; align-items: center; }
.tl {
  display: flex; align-items: center; justify-content: center;
  width: 140px; height: 48px;
  margin: 0 24px;
  flex-shrink: 0;
}
.tl img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.6;
  transition: opacity 0.2s, filter 0.2s;
}
.tl-lg { width: 220px; }
.ts { color: #1f1f1f; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 900; margin: 0 4px; }

@media (max-width: 768px) {
  .ticker { padding: 16px 0; }
  .tl { width: 100px; height: 36px; margin: 0 16px; }
  .ts { font-size: 13px; }
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
#stats { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--border); }
.sc {
  padding: 48px 40px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.2s;
}
.sc:last-child { border-right: none; }
.sc:hover { background: #080808; }
.sc::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.45s ease;
}
.sc:hover::after { width: 100%; }
.sn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(40px, 5vw, 64px); color: #fff; line-height: 1; margin-bottom: 8px;
}
.sn em { color: var(--red); font-style: normal; }
.sl {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
}

/* ── SERVICES ── */
#services { border-bottom: 1px solid var(--border); }
.sec-h {
  padding: 72px 48px 56px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.sec-t {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(44px, 7vw, 84px); letter-spacing: -0.01em; color: #fff; line-height: 1;
}
.sec-t em { color: var(--red); font-style: normal; }
.sec-c {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
}

.sr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px; border-bottom: 1px solid var(--border);
  transition: background 0.2s; position: relative; overflow: hidden;
}
.sr::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--red);
  transition: width 0.45s ease;
}
.sr:hover { background: #060606; }
.sr:hover::after { width: 100%; }
.sr:hover .sr-n { color: var(--red); }
.sr:hover .sr-name { color: var(--red); }
.sr-l { display: flex; align-items: baseline; gap: 24px; }
.sr-n {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  color: #2a2a2a; transition: color 0.2s; min-width: 24px;
}
.sr-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(30px, 4.5vw, 56px); color: #fff; line-height: 1;
  transition: transform 0.3s ease, color 0.2s;
}
.sr-tag {
  font-size: 10px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim);
}

/* ── WORK ── */
#work { border-bottom: 1px solid var(--border); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.wc {
  position: relative; overflow: hidden; background: #060606;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  aspect-ratio: 3/4;
}
/* Wide card spans 2 cols at aspect 3/2 so its height matches a
   normal card's (3/4 × colWidth) height in the same row.
   Math: 2·colW × 2/3 = 4·colW/3 = same as normal at 3/4. */
.wc.wide { grid-column: span 2; aspect-ratio: 3/2; }

/* ── Work card layers ────────────────────────────────────────────
   Default: image is dark + desaturated, overlays + info visible.
   Hover:   everything fades out, leaving just the clean full-colour image.
   This gives a cinematic "reveal" feel.
*/

.wc-img { position: absolute; inset: 0; z-index: 0; }
.wc-img img {
  width: 100%; height: 100%; object-fit: cover;
  /* Default focal point biased toward the top — most portfolio images
     have their logo/hero content in the upper third. Override per-card
     with an inline style="object-position:..." when needed. */
  object-position: center 25%;
  filter: grayscale(15%) contrast(1.1) brightness(0.6);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.5s ease;
}
/* Hover → full colour, slight zoom, full brightness */
.wc:hover .wc-img img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05) brightness(1);
}

.wc-ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; pointer-events: none; overflow: hidden;
  transition: opacity 0.4s ease;
}
.wc-gn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(64px, 11vw, 130px); color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.07);
  letter-spacing: -0.01em; text-transform: uppercase; white-space: nowrap;
}
/* Hover → ghost text disappears */
.wc:hover .wc-ghost { opacity: 0; }

/* Gradient overlay (dark bottom for text legibility) */
.wc-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 45%, transparent 100%);
  z-index: 2;
  transition: opacity 0.45s ease;
}
/* Hover → overlay fades away */
.wc:hover .wc-ov { opacity: 0; }

/* Top red sweep bar */
.wc-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease; z-index: 4;
}
/* No red bar on hover — keep it clean */

/* ── Video cards (e.g. Dan Crenshaw case study) ── */
.wc.has-video { cursor: none; }
.wc.has-video:focus-visible { outline: 2px solid var(--red); outline-offset: -4px; }
.wc-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 6vw, 80px); height: clamp(56px, 6vw, 80px);
  border-radius: 50%; border: 3px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 5; pointer-events: none;
  transition: opacity 0.35s ease, background 0.2s, transform 0.25s;
}
.wc-play-tri {
  border-left: clamp(14px, 1.6vw, 20px) solid #fff;
  border-top: clamp(9px, 1vw, 12px) solid transparent;
  border-bottom: clamp(9px, 1vw, 12px) solid transparent;
  margin-left: 4px; transition: border-left-color 0.2s;
}
/* Hover → play button stays visible (different from the other layers) */
.wc.has-video:hover .wc-play {
  background: var(--red); border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}
.wc.has-video:hover .wc-play-tri { border-left-color: #fff; }

/* ── Info layer (cat, name, stat, desc) ── */
.wc-info {
  position: relative; z-index: 3;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wc-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.wc-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 34px; color: #fff; line-height: 1; margin-bottom: 5px;
}
.wc-stat { font-size: 12px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.wc-desc {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6;
  max-width: 360px;
}
/* Hover → info slides down + fades out, leaving only the image */
.wc:hover .wc-info { opacity: 0; transform: translateY(12px); }

/* ── CTA SECTION ── */
#cta { padding: 120px 48px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
#cta::before {
  content: 'BOLD.'; position: absolute;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(160px, 28vw, 320px); color: #090909;
  right: -20px; bottom: -40px; line-height: 1; pointer-events: none; letter-spacing: -0.02em;
}
.cta-pre {
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--red); margin-bottom: 24px;
}
.cta-hl {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(56px, 10vw, 120px); line-height: 0.88; color: #fff;
  margin-bottom: 48px; max-width: 800px; position: relative; z-index: 1; letter-spacing: -0.01em;
}
.cta-btn {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 16px 40px;
  text-decoration: none; display: inline-block;
  position: relative; z-index: 1; transition: background 0.15s;
}
.cta-btn:hover { background: var(--red-dark); }

/* ── FOOTER ── */
footer {
  padding: 48px; display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
}
.foot-l { display: flex; align-items: center; gap: 20px; }
.foot-logo { width: clamp(180px, 22vw, 280px); height: auto; display: block; opacity: 0.9; transition: opacity 0.15s; }
.foot-logo:hover { opacity: 1; }
.foot-tag { font-size: 11px; color: var(--muted); font-weight: 300; letter-spacing: 0.08em; }
.foot-r { text-align: right; }
.foot-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border-bottom: 1px solid #fff; padding-bottom: 2px;
  display: inline-block; margin-bottom: 16px; transition: opacity 0.15s;
}
.foot-cta:hover { opacity: 0.6; }
.foot-copy { font-size: 10px; color: #2a2a2a; font-weight: 300; }

/* ── REEL MODAL ── */
#reel-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.98); z-index: 1000;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
#reel-modal.open { display: flex; }
.reel-wrap { width: 90%; max-width: 960px; aspect-ratio: 16/9; background: #000; position: relative; }
.reel-wrap iframe { width: 100%; height: 100%; border: none; }
.reel-close-row {
  display: flex; justify-content: space-between; align-items: center;
  width: 90%; max-width: 960px;
}
.reel-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 18px; color: var(--red); letter-spacing: 0.06em;
}
.reel-x {
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300;
  color: #fff; background: none; border: none; padding: 8px 12px;
  transition: color 0.15s; line-height: 1;
}
.reel-x:hover { color: var(--red); }

/* ── CONTACT MODAL ── */
#contact-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97); z-index: 1000;
  align-items: center; justify-content: center;
}
#contact-modal.open { display: flex; }
.cbox {
  background: #080808; border: 1px solid #1e1e1e;
  width: 100%; max-width: 520px; margin: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.35s, transform 0.35s;
}
.chead {
  padding: 36px 36px 0; display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 8px;
}
.ctop-pre {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 6px;
}
.ctit {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 44px; color: #fff; line-height: 1;
}
.cxbtn {
  background: none; border: none; color: #444;
  font-size: 20px; line-height: 1; padding: 4px; transition: color 0.15s;
}
.cxbtn:hover { color: #fff; }
.cbody { padding: 24px 36px 36px; display: flex; flex-direction: column; gap: 16px; }
.fl {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
  margin-bottom: 6px; display: block;
}
.fi {
  width: 100%; background: #000; border: 1px solid #1e1e1e; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300;
  padding: 12px 14px; outline: none; transition: border-color 0.15s;
  appearance: none; -webkit-appearance: none;
}
.fi:focus { border-color: var(--red); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fsub {
  width: 100%; background: var(--red); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px; border: none; margin-top: 4px; transition: background 0.15s;
}
.fsub:hover { background: var(--red-dark); }
.csuc { display: none; padding: 72px 36px; text-align: center; }
.csuc-big {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 72px; color: #fff; margin-bottom: 8px; line-height: 1;
}
.csuc-big em { color: var(--red); font-style: normal; }
.csuc-sub { font-size: 14px; color: var(--muted); font-weight: 300; }

/* ── REEL NOTIF TEASER ── */
#reel-notif {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111; border: 1px solid #222; border-left: 3px solid var(--red);
  padding: 14px 20px 14px 16px;
  display: flex; align-items: center; gap: 14px;
  z-index: 500;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
  opacity: 0; pointer-events: none; white-space: nowrap;
  cursor: none;
}
#reel-notif.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: all; }
.rn-play {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rn-play::after {
  content: ''; border-left: 10px solid var(--red);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.rn-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 2px;
}
.rn-sub { font-size: 12px; font-weight: 300; color: #aaa; }
.rn-x {
  background: none; border: none; color: #444;
  font-size: 16px; margin-left: 8px;
  transition: color 0.15s; cursor: none;
}
.rn-x:hover { color: #fff; }

/* ── REVEAL ── */
@keyframes fup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.v { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ── */
.mob-menu { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.mob-menu span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.2s; }
.mob-drawer {
  display: none; position: fixed; inset: 0; background: #000; z-index: 99;
  flex-direction: column; justify-content: center; align-items: center; gap: 48px;
}
.mob-drawer.open { display: flex; }
.mob-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 56px; color: #fff; text-decoration: none;
  letter-spacing: -0.01em; transition: color 0.15s;
}
.mob-link:hover { color: var(--red); }
.mob-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: #fff; font-size: 28px;
}

/* ── RESPONSIVE ──
   Breakpoints:
     >1100  → 3-col work grid, full desktop
     900–1100 → snug desktop (a bit less padding)
     600–900 → 2-col work grid (tablet / small laptop)
     <=600   → 1-col work grid (mobile)
*/

/* Snug desktop — slightly reduce horizontal padding so wide cards breathe */
@media (max-width: 1100px) {
  nav, #hero, .sec-h, .sr, #cta { padding-left: 36px; padding-right: 36px; }
  #hero { padding-bottom: 56px; }
  .sc { padding: 40px 28px; }
}

/* Tablet — 2-col work grid, stats go 2×2 */
@media (max-width: 900px) {
  #stats { grid-template-columns: 1fr 1fr; }
  .sc:nth-child(2n) { border-right: none; }
  .sc:nth-child(n+3) { border-top: 1px solid var(--border); }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .wc { aspect-ratio: 4/5; }
  /* 2·colW × 5/8 = 10·colW/8 = 5·colW/4 → same height as normal (colW × 5/4) */
  .wc.wide { grid-column: span 2; aspect-ratio: 8/5; }
}

/* Small tablet / large phone — swap to 1-col work grid */
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .wc, .wc.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* Phone — mobile-specific sizing */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-cta { display: none; }
  .mob-menu { display: flex; }

  /* Hero — compact, content pushed toward lower third */
  #hero {
    height: 75svh; height: 75vh; min-height: 440px;
    padding: 0 20px 60px;
    justify-content: flex-end;
  }
  .h-we, .bold-c { font-size: clamp(80px, 24vw, 140px); }
  .play-o { width: 56px; height: 56px; border-width: 3px; }
  .tri {
    border-left: 15px solid var(--red);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .brands-w { font-size: clamp(44px, 13vw, 72px); }
  .fort-line { font-size: 10px; letter-spacing: 0.18em; }
  .hero-foot { margin-top: 10px; }

  /* Ticker — no separators, bigger logos, tighter */
  .ticker { padding: 14px 0; }
  .ts { display: none; }
  .tl { width: 120px; height: 42px; margin: 0 14px; }
  .tl-lg { width: 160px; }

  /* Stats — tighter */
  .sc { padding: 28px 20px; }
  .sn { font-size: clamp(32px, 9vw, 48px); }

  /* Services — compact */
  .sec-h { padding: 40px 20px 32px; }
  .sec-t { font-size: clamp(36px, 9vw, 56px); }
  .sr { padding: 18px 20px; }
  .sr-tag { display: none; }
  .sr-l { gap: 14px; }
  .sr-name { font-size: clamp(26px, 7vw, 40px); }

  /* Portfolio cards */
  .wc { padding: 18px; }
  .wc-name { font-size: 24px; }
  .wc-desc { display: none; }
  .wc-cat { font-size: 8px; letter-spacing: 0.18em; }

  /* CTA — less vertical padding */
  #cta { padding: 56px 20px; }
  .cta-hl { font-size: clamp(40px, 11vw, 64px); margin-bottom: 28px; }
  .cta-btn { padding: 14px 32px; font-size: 11px; }

  /* Footer */
  footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .foot-r { text-align: left; }
  .foot-l { flex-direction: column; align-items: flex-start; gap: 12px; }
  .foot-logo { width: clamp(180px, 55vw, 260px); }
  .foot-tag { font-size: 10px; }
  .foot-cta { font-size: 10px; }
  .foot-copy { font-size: 9px; }

  /* Reel notification — above the safe area, below hero content */
  #reel-notif {
    bottom: auto; top: auto;
    position: fixed; bottom: 24px; left: 12px; right: 12px;
    transform: translateX(0) translateY(80px);
    white-space: normal; padding: 10px 14px 10px 12px;
    font-size: 0.9em;
  }
  #reel-notif.show { transform: translateX(0) translateY(0); }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg video { display: none; }
}
