/*
Theme Name: Comedy Players Theme
Theme URI: https://www.almostfriday.com/
Author: Yex Apple
Description: Bold, maximalist comedy media brand theme. Features brand colors, massive impact typography, glowing text effects, and dynamic section layouts.
Version: 1.1.05
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: almost-friday
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* NL Brand Colors */
  --nl-orange-deep:   #c94e10;
  --nl-orange:        #e96a17;
  --nl-orange-bright: #f58a1f;
  --nl-yellow-warm:   #f7c84a;
  --nl-yellow-soft:   #ffd86d;
  --nl-cream:         #fff2c7;
  --nl-ink:           #1f160f;
  --nl-shadow:        rgba(80, 30, 0, 0.18);

  /* Legacy aliases used throughout the theme */
  --af-blue:        var(--nl-orange-deep);
  --af-blue-dark:   #a83c09;
  --af-blue-light:  var(--nl-orange-bright);
  --af-yellow:      var(--nl-yellow-warm);
  --af-white:       var(--nl-cream);
  --af-black:       var(--nl-ink);
  --af-gold:        var(--nl-yellow-warm);
  --af-beer:        var(--nl-orange-bright);

  /* Glows adjusted for warm palette */
  --glow-white:     0 0 30px rgba(255, 242, 199, 0.5), 0 0 80px rgba(255, 216, 109, 0.25);
  --glow-yellow:    0 0 20px rgba(247, 200, 74, 0.8),  0 0 60px rgba(247, 200, 74, 0.4);

  /* Typography */
  --font-display:   'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:      'Barlow', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad:    clamp(60px, 8vw, 140px);
  --container-max:  1400px;

  /* Transitions */
  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  min-height: 100%;
  /* Matches the body parchment fallback so iOS safe-area / overscroll
     never shows a different color through the page edges. */
  background-color: #e8cfa2;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--nl-cream);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  /* Aged-parchment background — covers the entire viewport at all times. */
  background:
    #e8cfa2
    url('img/parchment-bg.png')
    center center / cover
    no-repeat
    fixed;
}

/* Mobile fallback: iOS Safari ignores background-attachment:fixed.
   Use a position:fixed pseudo-element so the parchment also covers the viewport. */
@supports (-webkit-touch-callout: none) {
  body {
    background: #e8cfa2;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: url('img/parchment-bg.png') center center / cover no-repeat;
  }
}

/* Ensure all content sits above the fixed overlays */
.site, .site-content, #page, .wp-site-blocks,
header, main, footer, section, .container {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display-text {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(70px, 12vw, 200px);
}

.display-lg {
  font-size: clamp(50px, 9vw, 150px);
}

.display-md {
  font-size: clamp(36px, 6vw, 100px);
}

.display-sm {
  font-size: clamp(28px, 4vw, 64px);
}

.text-glow {
  text-shadow: var(--glow-white);
}

.text-yellow { color: var(--af-yellow); }
.text-white  { color: var(--nl-cream); }
.text-blue   { color: var(--af-blue); }
.text-black  { color: var(--nl-ink); }
.text-center { text-align: center; }

.body-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.65;
}

/* ============================================================
   HEADINGS & BODY TEXT
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: #2b170b;
  text-shadow: 0 2px 0 rgba(255, 236, 190, 0.20);
}

p, li, blockquote {
  color: #2a1b12;
}

a {
  color: #5a1e00;
  transition: var(--transition);
}

a:hover {
  color: #2e0f00;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.wp-block-button__link,
button,
input[type="button"],
input[type="submit"],
.btn {
  background: linear-gradient(180deg, #ffe08a 0%, #f6c548 100%);
  color: #2a180d;
  border: 2px solid rgba(84, 37, 6, 0.55);
  border-radius: 999px;
  box-shadow:
    0 3px 0 rgba(99, 40, 3, 0.28),
    0 8px 18px rgba(90, 30, 0, 0.12);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-decoration: none;
}

.wp-block-button__link:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 4px 0 rgba(99, 40, 3, 0.30),
    0 10px 20px rgba(90, 30, 0, 0.16);
  color: #2a180d;
}

/* Override specific button variants to keep their distinct look */
.btn--outline-white,
.btn--outline-black {
  background: transparent;
  border-color: var(--nl-ink);
  color: var(--nl-ink);
}

.btn--outline-white:hover,
.btn--outline-black:hover {
  background: var(--nl-ink);
  color: var(--nl-cream);
  filter: none;
}

/* ============================================================
   READABILITY CARDS / PANELS
   ============================================================ */
.wp-block-group.has-background,
.wp-block-cover__inner-container,
.card,
.panel,
.press-sticky,
.partner-card,
.case-study__content {
  background: rgba(255, 244, 214, 0.78);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(128, 74, 15, 0.16);
  box-shadow: 0 10px 30px rgba(82, 31, 0, 0.10);
  border-radius: 18px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--wide {
  max-width: 1600px;
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--blue {
  background-color: transparent;
}

.section--dark {
  background-color: rgba(31, 22, 15, 0.55);
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--yellow {
  background: var(--af-yellow);
  color: var(--af-black);
  border-color: var(--af-yellow);
}

.btn--yellow:hover {
  background: transparent;
  color: var(--af-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 226, 52, 0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--nl-cream);
  border-color: var(--nl-cream);
}

.btn--outline-white:hover {
  background: var(--af-white);
  color: var(--af-black);
  transform: translateY(-2px);
}

.btn--outline-black {
  background: transparent;
  color: var(--af-black);
  border-color: var(--af-black);
}

.btn--outline-black:hover {
  background: var(--af-black);
  color: var(--nl-cream);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.scrolled {
  background: transparent;
  padding: 10px clamp(16px, 3vw, 48px);
  border-bottom: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 20px);
  width: 100%;
}

.site-nav__btn {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav__btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Both buttons same height */
.site-nav__btn-img {
  height: clamp(32px, 3.2vw, 52px);
  width: auto;
  display: block;
}

/* Push hamburger to the right */
.site-nav .nav-hamburger {
  margin-left: auto;
}

/* Mobile: hide image buttons, show only hamburger on left */
@media (max-width: 600px) {
  .site-nav__btn--home,
  .site-nav__btn--cta {
    display: none;
  }
  .site-nav .nav-hamburger {
    margin-left: 0;
  }
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(31, 22, 15, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-cream);
  white-space: nowrap;
}

.site-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta {
  background: linear-gradient(180deg, #ffe08a 0%, #f6c548 100%);
  color: #2a180d;
  border: 2px solid rgba(84, 37, 6, 0.45);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  box-shadow: 0 2px 0 rgba(99, 40, 3, 0.22);
  white-space: nowrap;
}

.nav-cta:hover {
  filter: brightness(1.05);
  transform: scale(1.03);
  color: #2a180d;
}

.nav-hamburger {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2a1a0a;
  border: 3px solid #f5d77a;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-hamburger:hover,
.nav-hamburger:focus-visible {
  background: #3a2510;
  transform: scale(1.06);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #f5d77a;
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  /* Sit ABOVE the fixed site-header (z-index 1000) so the close button
     is clickable on every screen size and the hamburger is hidden while
     the menu is open. */
  z-index: 1100;
  background: var(--nl-orange-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.open {
  transform: translateX(0);
}

.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--nl-cream);
  transition: var(--transition);
}

.nav-overlay a:hover {
  color: var(--af-yellow);
  text-shadow: var(--glow-yellow);
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--nl-cream);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-overlay-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ============================================================
   EAGLE HERO — full viewport, first thing seen
   ============================================================ */

/* ============================================================
   SPLASH HERO — Logo + Eagle/Flag + Enlist Now
   Stacks vertically, scales on every viewport,
   parchment shows through.
   ============================================================ */
.hero-splash {
  position: relative;
  width: 100%;
  /* Original spacing (pre-logo-swap): clears the fixed header, comfortable gap. */
  padding: clamp(80px, 12vh, 140px) 0 clamp(48px, 6vh, 72px);
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-splash__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(12px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  /* tight stack — let negative margins on individual elements pull each other together */
}

/* Decorative rays overlay — same treatment as Section 2 decorations.
   Full width of section, anchored at top, faded with mix-blend-mode. */
.hero-splash__deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: multiply;
  /* Feather the edges into the parchment so it doesn't look pasted on */
  -webkit-mask-image:
    radial-gradient(ellipse 70% 80% at 50% 30%,
      #000 0%,
      rgba(0,0,0,0.85) 40%,
      rgba(0,0,0,0.5)  65%,
      rgba(0,0,0,0.18) 82%,
      transparent      100%);
  mask-image:
    radial-gradient(ellipse 70% 80% at 50% 30%,
      #000 0%,
      rgba(0,0,0,0.85) 40%,
      rgba(0,0,0,0.5)  65%,
      rgba(0,0,0,0.18) 82%,
      transparent      100%);
}

@media (max-width: 900px) {
  .hero-splash__deco { width: 130%; }
}
@media (max-width: 600px) {
  .hero-splash__deco { width: 150%; }
}

/* Logo — scaled +15% from prior baseline */
.hero-splash__logo {
  width: 93%;
  max-width: 1449px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

/* Eagle/flag with "Questionable Decisions" — pulls up under the logo
   so the blue EXPERIENCE letters land on the flag. */
.hero-splash__eagle {
  width: min(644px, 83%);
  height: auto;
  display: block;
  margin: clamp(-104px, -8vw, -58px) auto 0;
  position: relative;
  z-index: 1;                     /* behind logo so EXPERIENCE shows over flag */
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Enlist Now button — tight against the eagle */
.hero-splash__enlist {
  display: inline-block;
  margin: clamp(-8px, -1vw, 0px) auto 0;
  width: min(368px, 60%);
  position: relative;
  z-index: 4;
  transition: transform 0.18s ease, filter 0.18s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.hero-splash__enlist:hover,
.hero-splash__enlist:focus-visible {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}
.hero-splash__enlist-img {
  width: 100%;
  height: auto;
  display: block;
}

/* "(we could use the help)" line under the Enlist Now button */
.hero-splash__help-text {
  margin: clamp(6px, 1vh, 10px) 0 0;
  font-family: var(--font-display, 'Barlow Condensed', 'Oswald', sans-serif);
  font-style: italic;
  font-weight: 600;
  text-align: center;
  color: #2a1a0a;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.4);
  opacity: 0.85;
}

/* Scroll-down chevron */
.hero-splash__scroll-hint {
  position: absolute;
  bottom: clamp(16px, 3vh, 32px);
  left: 50%;
  transform: translateX(-50%);
  color: #2a1a0a;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  opacity: 0.7;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 10;
}
.hero-splash__chevron { display: block; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* Desktop — sized to taste, +15% from prior baseline */
@media (min-width: 901px) {
  .hero-splash__logo {
    width: 60%;
    max-width: 828px;
  }
  .hero-splash__eagle {
    width: min(828px, 73.6%);
    margin-top: clamp(-58px, -3.5vw, -28px);
  }
  .hero-splash__enlist {
    width: min(483px, 39%);
  }
  .hero-splash__help-text {
    font-size: clamp(21px, 1.7vw, 28px);
  }
}

/* Tablet refinements (+15% scale) */
@media (max-width: 900px) {
  .hero-splash {
    /* Fill the entire viewport so Section 2 is below the fold */
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(70px, 11vh, 110px) 0 clamp(40px, 6vh, 60px);
    justify-content: center;
  }
  .hero-splash__eagle {
    width: min(598px, 92%);
    margin-top: clamp(-80px, -9.2vw, -46px);
  }
  .hero-splash__enlist {
    width: min(322px, 73.6%);
  }
}

/* Phones (+15% scale) */
@media (max-width: 600px) {
  .hero-splash {
    /* Fill the entire viewport so Section 2 is below the fold */
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(64px, 10vh, 90px) 0 36px;
    justify-content: center;
  }
  .hero-splash__logo {
    width: 93%;
  }
  .hero-splash__eagle {
    width: 99%;
    margin-top: clamp(-58px, -11.5vw, -32px);
  }
  .hero-splash__enlist {
    width: min(276px, 80.5%);
    margin-top: -4px;
  }
}



/* ============================================================
   SECTION 03 — Spread the Word (Uncle Sam + 3M Troublemakers)
   ============================================================ */
.nl-social-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  clear: both;
  padding: clamp(40px, 6vh, 96px) clamp(16px, 4vw, 64px);
  /* Tighten the bottom edge so it sits close to the Army logo below */
  padding-bottom: clamp(8px, 1.2vw, 20px);
}

/* Inner wrapper:
   - Desktop: side-by-side, Sam on the left, stat block on the right
   - Tablet/mobile: stacked vertically with Sam on TOP */
.nl-social__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
}

.nl-social__sam {
  width: clamp(280px, 44%, 560px);
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
}

.nl-social__stat {
  width: clamp(280px, 44%, 540px);
  height: auto;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 95% 95% at center, #000 70%, rgba(0,0,0,0.4) 88%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 95% 95% at center, #000 70%, rgba(0,0,0,0.4) 88%, transparent 100%);
}

/* Desktop — Sam at 3/4 width (UNCHANGED).
   Stat block positioned ABSOLUTELY in the section so it lands directly
   below the I WANT YOU sign in Sam's image, in his transparent right area. */
@media (min-width: 901px) {
  .nl-social-section {
    padding: clamp(40px, 5vh, 80px) clamp(20px, 3vw, 48px);
    position: relative;
  }
  .nl-social__inner {
    max-width: 1600px;
    width: 100%;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-start;     /* Sam pinned to left */
    flex-wrap: nowrap;
    position: relative;
    /* Shift the entire row (Sam + stat) 40px right for centering */
    transform: translateX(40px);
  }
  .nl-social__sam {
    flex: 0 0 auto;
    width: 75%;
    max-width: none;
    align-self: flex-end;
  }
  /* Stat block: positioned in section's bottom-center area —
     below the sign, in the right portion of Sam's transparent canvas. */
  .nl-social__stat {
    position: absolute !important;
    /* +10px right of 62% center, +20px down from the 8%-from-bottom anchor */
    left: calc(62% + 10px) !important;
    bottom: calc(8% - 20px) !important;
    transform: translateX(-50%) !important;
    width: clamp(420px, 45%, 600px) !important;
    max-width: 600px !important;
    min-width: 0 !important;
    flex: none !important;
    align-self: auto !important;
    margin: 0 !important;
    z-index: 2;
  }
}

/* Tablet + mobile: stack Sam on top of the stat block */
@media (max-width: 900px) {
  .nl-social__inner {
    flex-direction: column;
    gap: clamp(16px, 3vh, 32px);
  }
  .nl-social__sam {
    width: clamp(240px, 64vw, 460px);
  }
  .nl-social__stat {
    width: clamp(240px, 78vw, 480px);
  }
}

.nl-social__combined {
  display: none;
}

/* Total followers line — sits directly below OUR REACH heading */
.nl-social__right {
  position: absolute;
  top: 18%;
  right: 0;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2% 4% 5% 2%;
  box-sizing: border-box;
}

/* 1,000,000 Followers — first item, centered under OUR REACH text */
.nl-social__total-followers {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(14px, 3vw, 48px);
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: clamp(16px, 4vw, 56px);
}

/* Three rows — compact, naturally spaced */
.nl-social__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3.5vw, 52px);
  width: 100%;
}

.nl-social__platform {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 24px);
}

/* Remove old absolute positioning */
.nl-social__platform--instagram,
.nl-social__platform--tiktok,
.nl-social__platform--youtube {
  position: static;
  transform: none;
}

.nl-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nl-social__icon--instagram,
.nl-social__icon--tiktok,
.nl-social__icon--youtube {
  width: clamp(36px, 7vw, 100px);
  height: clamp(36px, 7vw, 100px);
}
.nl-social__icon svg {
  width: 100%;
  height: 100%;
}
.nl-social__icon--instagram svg { color: #E1306C; }
.nl-social__icon--tiktok svg    { color: #000000; }
.nl-social__icon--youtube svg   { color: #FF0000; }

.nl-social__count {
  font-family: var(--font-display);
  font-size: clamp(12px, 3vw, 46px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  white-space: nowrap;
}


/* Suppress old wrapper elements — not used in this layout */
.nl-social__platforms,
.nl-social__platforms--youtube {
  display: none;
}

/* Each platform is individually absolutely positioned — do NOT set display:contents here */
.nl-social__platform {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .nl-social-section {
    padding: clamp(28px, 5vh, 56px) 16px;
    padding-bottom: 8px;       /* tight against Army logo below */
  }
  .nl-social__icon--instagram,
  .nl-social__icon--tiktok,
  .nl-social__icon--youtube {
    width: clamp(20px, 8vw, 40px);
    height: clamp(20px, 8vw, 40px);
  }
  .nl-social__count {
    font-size: clamp(10px, 3.5vw, 18px);
  }
}
.nl-campaign-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vh, 120px) clamp(16px, 4vw, 48px);
}

/* Decorative anchored overlays — faded, behind everything.
   `mix-blend-mode: multiply` drops the white PNG background.
   `mask-image` feathers the rectangular image edges into the parchment so
   nothing looks pasted on top — the soft-edged result feels printed. */
.nl-campaign__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
}
.nl-campaign__deco--rays {
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 110%);
  max-width: none;
  height: auto;
  /* Heavy oval feather centered around the middle so the TOP edge fades
     completely into Section 1 above and the BOTTOM/SIDES vanish softly. */
  -webkit-mask-image:
    radial-gradient(ellipse 60% 70% at 50% 55%,
      #000 0%,
      rgba(0,0,0,0.85) 35%,
      rgba(0,0,0,0.5)  60%,
      rgba(0,0,0,0.18) 80%,
      transparent      100%);
  mask-image:
    radial-gradient(ellipse 60% 70% at 50% 55%,
      #000 0%,
      rgba(0,0,0,0.85) 35%,
      rgba(0,0,0,0.5)  60%,
      rgba(0,0,0,0.18) 80%,
      transparent      100%);
}
.nl-campaign__deco--stars {
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 80%);
  height: auto;
  opacity: 0.12;
  -webkit-mask-image:
    radial-gradient(ellipse 70% 75% at 50% 70%, #000 30%, rgba(0,0,0,0.6) 60%, transparent 92%);
  mask-image:
    radial-gradient(ellipse 70% 75% at 50% 70%, #000 30%, rgba(0,0,0,0.6) 60%, transparent 92%);
}

/* Foreground content stacks vertically: headline → button */
.nl-campaign__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 40px);
  width: 100%;
  max-width: 720px;
}

/* "Proudly Celebrating 50 Years…" headline image
   `mix-blend-mode: multiply` makes the cream/parchment background of the PNG
   blend into the page parchment — the colored text remains, the box vanishes.
   `mask-image` softly feathers the rectangle edges so no hard border shows. */
.nl-campaign__headline {
  width: clamp(260px, 60vw, 560px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    radial-gradient(ellipse 90% 90% at center, #000 60%, rgba(0,0,0,0.4) 82%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 90% 90% at center, #000 60%, rgba(0,0,0,0.4) 82%, transparent 100%);
}

/* Button image + hover overlay — centered, container-relative sizing */
.nl-campaign__badge-wrap {
  position: relative;
  width: clamp(220px, 36vw, 460px);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  margin: 0 auto;
  /* Establish a container so the quote text can size relative
     to the badge itself (cqw = 1% of container width). */
  container-type: inline-size;
  container-name: badge;
}

@media (max-width: 900px) {
  .nl-campaign__deco--rays { width: min(1100px, 130%); }
  .nl-campaign__deco--stars { width: min(700px, 92%); }
}

@media (max-width: 600px) {
  .nl-campaign-section {
    padding: clamp(36px, 6vh, 60px) 16px;
  }
  .nl-campaign__badge-wrap {
    width: clamp(200px, 60vw, 320px);
  }
  .nl-campaign__headline {
    width: clamp(240px, 86vw, 480px);
  }
  .nl-campaign__deco--rays { width: 150%; }
  .nl-campaign__deco--stars { width: 110%; }
}

/* The button PNG itself — fills the wrap div */
.nl-campaign__badge-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hover overlay — appears on top of button image on hover */
.nl-campaign__badge-hover {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: rgba(15, 30, 70, 0.88);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: 22% 20%;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Social icon buttons inside the campaign badge — match the cast
   .creator-social-btn style exactly: brand-color fill, white frame
   ring, drop shadow, white icon inside. */
.nl-campaign__social-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: clamp(40px, 3.6vw, 52px) !important;
  height: clamp(40px, 3.6vw, 52px) !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 50% !important;
  background: var(--brand-color, #444) !important;
  border: 3px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  aspect-ratio: 1 / 1 !important;
}
.nl-campaign__social-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7) !important;
  filter: brightness(1.15);
  color: #ffffff !important;
}
.nl-campaign__social-btn__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50% !important;
  height: 50% !important;
  max-width: 50% !important;
  max-height: 50% !important;
  color: #ffffff !important;
  pointer-events: none;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}
.nl-campaign__social-btn__icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  object-fit: contain !important;
}
.nl-campaign__social-btn__icon svg path,
.nl-campaign__social-btn__icon svg circle {
  fill: #ffffff !important;
}

.nl-campaign__badge-wrap:hover .nl-campaign__badge-hover,
.nl-campaign__badge-wrap:focus-within .nl-campaign__badge-hover {
  opacity: 1;
  transform: scale(1);
}

/* Pulse ring on hover */
.nl-campaign__badge-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #f7c84a;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nl-campaign__badge-wrap:hover::before {
  opacity: 0.9;
  transform: scale(1);
}

/* Buttons inside badge overlay */
.nl-campaign__badge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  padding: 7px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
  width: 78%;
  text-align: center;
}

.nl-campaign__badge-btn:hover {
  background: #c8102e;
  border-color: transparent;
  color: #fff;
  transform: scale(1.06);
}

/* Mobile: scale down overlay buttons to fit smaller badge */
@media (max-width: 600px) {
  .nl-campaign__badge-hover {
    gap: 6px;
    padding: 18% 14%;
  }
  .nl-campaign__badge-btn {
    font-size: clamp(8px, 2.5vw, 11px);
    padding: 4px 10px;
    width: 85%;
  }
  .nl-campaign__social-btn {
    width: clamp(34px, 9vw, 46px) !important;
    height: clamp(34px, 9vw, 46px) !important;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

/* Character images — sergeant left, soldiers right, absolutely positioned */
.hero-character {
  position: absolute;
  bottom: 0;
  z-index: 100;
  pointer-events: none;
}

.hero-character--sergeant {
  left: 0;
}

.hero-character--soldiers {
  right: 0;
}

.hero-character__img {
  display: block;
  height: clamp(300px, 45vw, 560px);
  width: auto;
}

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

.hero-headline {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(180px, 22vw, 380px);
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #2b170b;
  font-size: clamp(80px, 14vw, 220px);
  text-shadow: 0 4px 0 rgba(255, 236, 190, 0.30), 0 2px 20px rgba(255, 200, 80, 0.25);
}

.hero-badge-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) 20px 0;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--nl-cream);
  border-radius: 12px;
  padding: 14px 22px;
  color: var(--nl-ink);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px var(--nl-shadow);
}

.stat-badge__emoji {
  font-size: 22px;
  flex-shrink: 0;
}

.stat-badge__number {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.stat-badge__label {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  opacity: 0.8;
}

/* Scroll indicators */
.hero-scroll-labels {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 2;
}

.scroll-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.5);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(6px); }
}

/* ============================================================
   PRELOADER / LOADING SCREEN
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--nl-orange-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  display: block;
  width: clamp(200px, 32vw, 420px);
  height: auto;
  margin: 0 auto;
  user-select: none;
  pointer-events: none;
}

.preloader-bar {
  width: 280px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--af-white);
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SECTION: OUR CREATORS
   ============================================================ */
/* ============================================================
   NL ARMY — CREATORS SECTION
   ============================================================ */
.nl-army-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: var(--section-pad) 0;
  /* Pull section 4 up tight against section 3 — kills ~80% of the
     dead space that was between Troublemakers and the Army logo. */
  padding-top: clamp(12px, 1.6vw, 28px);
}

.nl-army__bg {
  /* Per-section parchment removed — body's single fixed parchment
     paints behind the entire page so there are no seams. */
  display: none;
}

.nl-army__bg-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Frame image removed — no longer used */
.nl-army__frame,
.nl-army__frame-img {
  display: none;
}

.nl-army__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  text-align: center;
}

/* Section 4 heading: General + Army logo + Slackers in a single row.
   Logo sits IN FRONT (z-index 3); the flanks tuck BEHIND it (z-index 1)
   so when they slide toward center on scroll they disappear behind the logo. */
/* 3-column grid keeps the LOGO horizontally centered in the viewport
   regardless of asymmetric flank widths. The two `1fr` side columns
   absorb extra space symmetrically; the `auto` middle column hugs the
   logo. This puts the logo's bottom-center directly above the middle
   diamond avatar (which is also in the center column of its 3-col grid). */
.nl-army__heading-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(40px, 6vw, 80px);
  position: relative;
  overflow: visible;
}

.nl-army__heading--logo {
  grid-column: 2;
  display: block;
  width: clamp(220px, 46vw, 720px);
  height: auto;
  position: relative;
  z-index: 3;            /* in FRONT of the flanks */
}

.nl-army__heading-flank {
  display: block;
  height: auto;
  position: relative;
  z-index: 1;            /* BEHIND the logo */
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.4s ease;
  transform-origin: center;
  will-change: transform, opacity;
}

.nl-army__heading-flank--general {
  grid-column: 1;
  justify-self: end;           /* pin to right side of left column, toward logo */
  width: clamp(120px, 24vw, 372px);
  margin-right: -110px;        /* overlap logo by 110px */
}

.nl-army__heading-flank--slackers {
  grid-column: 3;
  justify-self: start;          /* pin to left side of right column, toward logo */
  width: clamp(140px, 28vw, 430px);
  margin-left: -50px;          /* overlap logo by 50px */
}

/* Animation on ALL screen sizes (mobile, tablet, desktop).
   As user scrolls past the heading, General slides RIGHT and Slackers
   slides LEFT — they meet BEHIND the logo just before going off-screen.
   JS writes --flank-progress (0 → 1). */
.nl-army__heading-flank--general {
  transform:
    translateX(calc(var(--flank-progress, 0) * 140%))
    scale(calc(1 - var(--flank-progress, 0) * 0.92));
  opacity: calc(1 - var(--flank-progress, 0) * 0.95);
}
.nl-army__heading-flank--slackers {
  transform:
    translateX(calc(var(--flank-progress, 0) * -140%))
    scale(calc(1 - var(--flank-progress, 0) * 0.92));
  opacity: calc(1 - var(--flank-progress, 0) * 0.95);
}

/* Tablet — overlap scales with viewport (proportional to the logo width)
   so the heading composition looks identical to desktop at smaller sizes.
   Desktop's hard-coded -110/-50 px overlaps would be too large on
   narrower screens; vw-units keep the ratios constant. */
@media (max-width: 1100px) and (min-width: 601px) {
  .nl-army__heading-flank--general {
    margin-right: -7vw;       /* ≈ 15% of 46vw logo width */
  }
  .nl-army__heading-flank--slackers {
    margin-left: -3.2vw;      /* ≈ 7%  of 46vw logo width */
  }
}

/* Phone tuning — flanks scaled up dramatically so they read at the
   same VISUAL weight as on tablet. Logo shrunk slightly to make room. */
@media (max-width: 600px) {
  .nl-army__heading-wrap {
    padding: 0 2vw;
  }
  .nl-army__heading--logo {
    width: clamp(130px, 38vw, 230px);
  }
  .nl-army__heading-flank--general {
    width: clamp(120px, 32vw, 200px);
    margin-right: -6vw;
  }
  .nl-army__heading-flank--slackers {
    width: clamp(140px, 38vw, 230px);
    margin-left: -3vw;
  }
}

.nl-army__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  max-width: 960px;
  margin: 0 auto;
}

.nl-army__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

/* Avatar circle */
.nl-army__avatar {
  position: relative;
  width: clamp(120px, 18vw, 240px);
  height: clamp(120px, 18vw, 240px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--nl-ink);
  background: #fff;
  box-shadow: 0 6px 24px rgba(80,30,0,0.22);
  margin: 0 auto;
}

.nl-army__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.nl-army__card:hover .nl-army__avatar img {
  transform: scale(1.06);
}

/* Name tag */
.nl-army__name {
  display: inline-block;
  background: #e8c97a;
  border: 2px solid #7a5a1a;
  border-radius: 6px;
  padding: 6px 20px;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--nl-ink);
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 2px 2px 0 rgba(80,40,0,0.18);
}

@media (max-width: 900px) {
  .nl-army__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .nl-army__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    justify-content: center;
    justify-items: center;
  }
  .nl-army__avatar {
    width: clamp(90px, 38vw, 160px);
    height: clamp(90px, 38vw, 160px);
  }
  .nl-army__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }
}

.creators-section {
  background: transparent;
  padding: var(--section-pad) 0;
}



.section-heading {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 96px);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 860px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 600px) {
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px;
    justify-content: center;
  }
  .creator-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }
  .creator-avatar {
    width: clamp(90px, 38vw, 150px);
    height: clamp(90px, 38vw, 150px);
  }
}

.creator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.creator-avatar {
  position: relative;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  border-radius: 50%;
  overflow: hidden;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

/* Initials placeholder for creators without a photo */
.creator-avatar__initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6914 0%, #c9a030 100%);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.creator-avatar::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 24px;
  background: rgba(100,130,255,0.25);
  border-radius: 50%;
  filter: blur(8px);
  transition: var(--transition);
}

.creator-card:hover .creator-avatar img {
  transform: scale(1.06);
  opacity: 0.18;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.creator-card:hover .creator-avatar::after {
  width: 90%;
  opacity: 1.4;
}

.creator-name {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--nl-cream);
  text-align: center;
}

/* Badge image replaces text name tag */
img.creator-badge {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: clamp(120px, 17vw, 240px);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Badge with name overlay */
.creator-badge-wrap {
  position: relative;
  display: inline-block;
  width: clamp(120px, 17vw, 240px);
  margin: 0 auto;
  /* Establish container so the name can size relative to the badge itself
     (cqw = 1% of badge width). Solves long names overflowing on mobile. */
  container-type: inline-size;
  container-name: badge;
}

.creator-badge-img {
  width: 100%;
  height: auto;
  display: block;
}

.creator-badge-name {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  font-family: var(--font-display);
  /* Font scales with the badge's actual width — never overflows on mobile.
     8.5cqw of a 120px badge = 10.2px, of a 240px badge = 20.4px. */
  font-size: clamp(8px, 8.5cqw, 19px);
  font-weight: 900;
  color: #000;
  text-align: center;
  text-shadow: none;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}

/* Older browsers without container query support — use viewport-tuned
   font that still stays inside the smallest expected badge. */
@supports not (container-type: inline-size) {
  .creator-badge-name {
    font-size: clamp(9px, 1.5vw, 19px);
  }
}

/* Per-badge vertical alignment — geometric center of parchment banner in each image */
.creator-badge-wrap[data-badge="01"] .creator-badge-name { top: 49%; }
.creator-badge-wrap[data-badge="02"] .creator-badge-name { top: 44%; }
.creator-badge-wrap[data-badge="03"] .creator-badge-name { top: 50%; }
.creator-badge-wrap[data-badge="04"] .creator-badge-name { top: 51%; }
.creator-badge-wrap[data-badge="05"] .creator-badge-name { top: 47%; }
.creator-badge-wrap[data-badge="06"] .creator-badge-name { top: 49%; }
.creator-badge-wrap[data-badge="07"] .creator-badge-name { top: 50%; }
.creator-badge-wrap[data-badge="08"] .creator-badge-name { top: 50%; }
.creator-badge-wrap[data-badge="09"] .creator-badge-name { top: 43%; }

/* ── HOVER OVERLAY (social icons on hover) ───────────────── */
.creator-card a.creator-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

/* Overlay container */
.creator-avatar__hover {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.55) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 18% !important;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.creator-card:hover .creator-avatar__hover,
.creator-card:focus-within .creator-avatar__hover {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ── Count-based layout ─────────────────────────────────── */

/* 1 icon — single, centered */
.creator-avatar__hover[data-count="1"] {
  padding: 30% !important;
}

/* 2 icons — side by side row */
.creator-avatar__hover[data-count="2"] {
  flex-direction: row !important;
  gap: 6px !important;
  padding: 22% 18% !important;
}

/* 3 icons — triangle: one on top, two below */
.creator-avatar__hover[data-count="3"] {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
  padding: 20% !important;
  justify-items: center;
  align-items: center;
}
.creator-avatar__hover[data-count="3"] .creator-social-btn:nth-child(1) {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
}

/* 4 icons — 2×2 square */
.creator-avatar__hover[data-count="4"] {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
  padding: 20% !important;
  justify-items: center;
  align-items: center;
}

/* 5–6 icons — 3-column grid */
.creator-avatar__hover[data-count="5"],
.creator-avatar__hover[data-count="6"] {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 4px !important;
  padding: 18% !important;
  justify-items: center;
  align-items: center;
}

/* ── Individual icon button — BIG, brand-colored, white icon ── */
.creator-social-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* FIXED size — identical across every card regardless of count */
  width: clamp(40px, 3.6vw, 52px) !important;
  height: clamp(40px, 3.6vw, 52px) !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 50% !important;
  background: var(--brand-color, #444) !important;
  border: 3px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  aspect-ratio: 1 / 1 !important;
}

.creator-social-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7) !important;
  filter: brightness(1.15);
  color: #ffffff !important;
}

.creator-social-btn__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50% !important;
  height: 50% !important;
  max-width: 50% !important;
  max-height: 50% !important;
  color: #ffffff !important;
  pointer-events: none;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.creator-social-btn__icon svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  object-fit: contain !important;
}

.creator-social-btn__icon svg path,
.creator-social-btn__icon svg circle {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Pulse ring on hover */
.creator-avatar::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--af-yellow);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.creator-card:hover .creator-avatar::before {
  opacity: 0.8;
  transform: scale(1);
}

/* ============================================================
   SECTION: FEATURED CONTENT (merged Channels + Podcasts & Shows)
   ============================================================ */
.featured-content-section {
  background: transparent;
  padding: var(--section-pad) 0;
}

.featured-content__heading-img {
  display: block;
  max-width: clamp(280px, 50vw, 540px);
  width: 100%;
  height: auto;
  margin: 0 auto clamp(40px, 5vw, 72px);
}

/* .channel-grid margin removed — unified .content-grid is used instead */

/* ============================================================
   UNIFIED CONTENT GRID (Featured Content — channels, podcasts, shows)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.content-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  cursor: pointer;
  transition: var(--transition);
}

.content-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* no circle */
  transition: var(--transition-slow);
  display: block;
}

.content-card:hover img {
  transform: scale(1.08);
}

.content-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.content-card:hover .content-card__overlay {
  opacity: 1;
}

/* "Coming Soon" overlay — appears on hover (desktop) or tap (mobile/tablet).
   Card image goes translucent; full dark overlay with centered text. */
.content-card--coming-soon {
  cursor: default;
}

.content-card__coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  color: #fff8e1;
  font-family: var(--font-display, 'Barlow Condensed', 'Oswald', sans-serif);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.content-card__coming-soon span {
  display: block;
  padding: 0 12%;
}

/* Hover (desktop with a mouse) */
@media (hover: hover) and (pointer: fine) {
  .content-card--coming-soon:hover .content-card__coming-soon,
  .content-card--coming-soon:focus-within .content-card__coming-soon {
    opacity: 1;
  }
  .content-card--coming-soon:hover img,
  .content-card--coming-soon:focus-within img {
    opacity: 0.4;
  }
}

/* Tap-toggle on touch (mobile + tablet). JS adds .is-revealed when tapped. */
.content-card--coming-soon.is-revealed .content-card__coming-soon {
  opacity: 1;
}
.content-card--coming-soon.is-revealed img {
  opacity: 0.4;
}

.content-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--nl-cream);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.content-card:hover .content-card__title {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION: OUR CHANNELS (kept for backwards compatibility)
   ============================================================ */
.channels-section {
  background: transparent;
  padding: var(--section-pad) 0;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 860px;
  margin: 0 auto;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.channel-card:hover {
  transform: translateY(-6px);
}

.channel-logo {
  position: relative;
  width: clamp(110px, 16vw, 200px);
  height: clamp(110px, 16vw, 200px);
}

.channel-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.channel-logo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 20px;
  background: rgba(80,110,255,0.3);
  border-radius: 50%;
  filter: blur(8px);
}

.channel-name {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--nl-cream);
  text-align: center;
}

/* ============================================================
   SECTION: PODCASTS & SHOWS
   ============================================================ */
.podcasts-section {
  background: transparent;
  padding: var(--section-pad) 0;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.podcast-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
}

.podcast-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.podcast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.podcast-card:hover img {
  transform: scale(1.08);
}

.podcast-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.podcast-card:hover .podcast-card__overlay {
  opacity: 1;
}

.podcast-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--nl-cream);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.podcast-card:hover .podcast-card__title {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION: ALMOST FRIDAY TV
   ============================================================ */
.aftv-section {
  background: transparent;
  padding: var(--section-pad) 0;
  text-align: center;
}

.tv-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 80px);
  background: #d4b896;
  border-radius: 32px;
  padding: 24px 24px 60px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.tv-screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--af-black);
}

.tv-screen iframe,
.tv-screen video {
  width: 100%;
  height: 100%;
  border: none;
}

.tv-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 12px;
}

.tv-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--nl-cream);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tv-arrow-btn:hover {
  background: rgba(31, 22, 15, 0.55);
  transform: scale(1.1);
}

.tv-soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.tv-soundwave span {
  display: block;
  width: 4px;
  background: transparent;
  border-radius: 4px;
  animation: soundwave 1s ease-in-out infinite alternate;
}

.tv-soundwave span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.tv-soundwave span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.tv-soundwave span:nth-child(3)  { height: 50%; animation-delay: 0.2s; }
.tv-soundwave span:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.tv-soundwave span:nth-child(5)  { height: 60%; animation-delay: 0.4s; }
.tv-soundwave span:nth-child(6)  { height: 80%; animation-delay: 0.15s; }
.tv-soundwave span:nth-child(7)  { height: 40%; animation-delay: 0.25s; }
.tv-soundwave span:nth-child(8)  { height: 100%; animation-delay: 0.05s; }
.tv-soundwave span:nth-child(9)  { height: 65%; animation-delay: 0.35s; }
.tv-soundwave span:nth-child(10) { height: 45%; animation-delay: 0.45s; }

@keyframes soundwave {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

.aftv-description {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   SECTION: WHO WE WORK WITH (Brand Logos)
   ============================================================ */
.brands-section {
  background: transparent;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.brands-marquee-wrapper {
  display: flex;
  gap: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-logo-item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-logo-item:hover {
  opacity: 1;
}

.brand-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Text-based brand logos fallback */
.brand-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo-text:hover {
  color: var(--nl-cream);
}

/* ============================================================
   SECTION: PRESS HITS
   ============================================================ */
.press-section {
  background: transparent;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.press-sticky-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.press-sticky {
  position: relative;
  background: #ffe99a;
  border-radius: 16px;
  padding: 28px 32px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

/* Offset cards to give sticky-note overlap feel */
.press-sticky:nth-child(3n+1) { margin-left: 0; }
.press-sticky:nth-child(3n+2) { margin-left: clamp(20px, 5vw, 60px); }
.press-sticky:nth-child(3n+3) { margin-left: clamp(10px, 3vw, 30px); }

.press-sticky:hover {
  transform: scale(1.02) rotate(0.5deg);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.press-sticky__pub {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--af-black);
  margin-bottom: 10px;
}

.press-sticky__title {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.45;
  color: rgba(0,0,0,0.75);
}

.press-sticky__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--af-black);
  margin-top: 16px;
  opacity: 0.6;
  transition: var(--transition);
}

.press-sticky:hover .press-sticky__link {
  opacity: 1;
}

/* Lined paper effect */
.press-sticky::before {
  content: '';
  position: absolute;
  inset: 38px 16px 16px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 26px,
    rgba(0,0,0,0.08) 26px,
    rgba(0,0,0,0.08) 27px
  );
  pointer-events: none;
}

/* ============================================================
   SECTION: CASE STUDIES
   ============================================================ */
.case-studies-section {
  background: transparent;
  padding: var(--section-pad) 0;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.case-study:nth-child(even) .case-study__media {
  order: 2;
}
.case-study:nth-child(even) .case-study__content {
  order: 1;
}

.case-study__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(128, 74, 15, 0.12);
}

.case-study__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: var(--transition);
  cursor: pointer;
}

.case-study__play-btn:hover {
  background: rgba(0,0,0,0.1);
}

.play-icon {
  width: 64px;
  height: 64px;
  background: var(--af-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-icon::after {
  content: '';
  border: 0 solid transparent;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left: 18px solid var(--af-blue);
  margin-left: 4px;
}

.case-study__play-btn:hover .play-icon {
  transform: scale(1.1);
  background: var(--af-yellow);
}

.case-study__play-btn:hover .play-icon::after {
  border-left-color: var(--af-black);
}

.case-study__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--af-yellow);
  margin-bottom: 16px;
}

.case-study__client {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--nl-cream);
  text-shadow: var(--glow-white);
  margin-bottom: 20px;
}

.case-study__desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.case-study__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--af-yellow);
  line-height: 1;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION: OVERVIEW STATS (Bottom of case studies)
   ============================================================ */
.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(128, 74, 15, 0.12);
  border-radius: 24px;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 80px);
}

.overview-stat {
  background: rgba(255, 244, 214, 0.40);
  padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
  text-align: center;
  transition: var(--transition);
}

.overview-stat:hover {
  background: rgba(255, 244, 214, 0.55);
}

.overview-stat__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
  color: var(--nl-cream);
  text-shadow: var(--glow-white);
  margin-bottom: 8px;
}

.overview-stat__label {
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* Suppress blue/white glow on parchment backgrounds */
.featured-content-section .text-glow,
.channels-section .text-glow,
.podcasts-section .text-glow,
.aftv-section .text-glow,
.brands-section .text-glow,
.press-section .text-glow,
.case-studies-section .section-heading .text-glow {
  text-shadow: 0 2px 0 rgba(255, 236, 190, 0.4);
}

/* ============================================================
   PARCHMENT SECTION TEXT OVERRIDES
   Channels, Podcasts, AFTV, Brands, Press, Case Studies all
   sit on the parchment background.png — override any white/cream
   text so it reads legibly on the warm tan texture.
   ============================================================ */
.featured-content-section .display-text,
.featured-content-section h2,
.channels-section .display-text,
.channels-section h2,
.podcasts-section .display-text,
.podcasts-section h2,
.aftv-section .display-text,
.aftv-section h2,
.brands-section .display-text,
.brands-section h2,
.press-section .display-text,
.press-section h2,
.case-studies-section .display-text,
.case-studies-section h2 {
  color: var(--nl-ink);
  text-shadow: none;
}

/* Channel/Podcast names on parchment */
.featured-content-section .channel-name,
.featured-content-section .text-white,
.featured-content-section .content-card__title,
.channels-section .channel-name,
.channels-section .text-white,
.podcasts-section .text-white {
  color: var(--nl-cream); /* keep titles light — they sit on the dark hover overlay */
}

/* AFTV description on parchment */
.aftv-section .aftv-description {
  color: rgba(31, 22, 15, 0.8);
}

/* Brands marquee text on parchment */
.brands-section .brand-logo-text {
  color: rgba(31, 22, 15, 0.55);
}
.brands-section .brand-logo-text:hover {
  color: var(--nl-ink);
}

/* Case study text on parchment — keep white since content box has dark bg */
.case-studies-section .case-study__client {
  color: var(--nl-cream);
}
.case-studies-section .case-study__desc {
  color: rgba(255, 255, 255, 0.85);
}
.case-studies-section .case-study__label {
  color: var(--nl-yellow-warm);
}

/* Overview stats on parchment — darken the stat boxes slightly */
.case-studies-section .overview-stat {
  background: rgba(31, 22, 15, 0.72);
}
.case-studies-section .overview-stat__number {
  color: var(--nl-yellow-warm);
  text-shadow: none;
}
.case-studies-section .overview-stat__label {
  color: rgba(255, 244, 214, 0.75);
}

/* ============================================================
   SECTION: FRIDAY BEERS (Full-bleed golden photo section)
   ============================================================ */
.beer-section {
  position: relative;
  background: #d4810a;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad) 0;
}

.beer-bg {
  position: absolute;
  inset: 0;
  background-image: var(--beer-bg-url);
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.beer-section .container {
  position: relative;
  z-index: 2;
}

.beer-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--af-black);
  margin-bottom: 20px;
}

.beer-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  margin-bottom: 40px;
  font-style: italic;
}

.beer-polaroids {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.polaroid {
  position: absolute;
  background: var(--af-white);
  padding: 12px 12px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-radius: 4px;
}

.polaroid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.polaroid:nth-child(1) { top: 10%; left: 5%;  transform: rotate(-6deg); }
.polaroid:nth-child(2) { top: 8%;  right: 8%; transform: rotate(5deg);  }
.polaroid:nth-child(3) { bottom: 15%; left: 8%; transform: rotate(3deg); }
.polaroid:nth-child(4) { bottom: 12%; right: 5%; transform: rotate(-4deg); }

/* ============================================================
   SECTION: ALMOST FRIDAY SPORTING CLUB
   ============================================================ */
.sporting-section {
  position: relative;
  background: var(--af-beer);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad) 0;
}

.sporting-section .beer-bg {
  opacity: 0.7;
}

/* ============================================================
   SECTION: THE PREGAME CARD GAME
   ============================================================ */
.pregame-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad) 0;
}

/* ============================================================
   SECTION: NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: transparent;
  padding: var(--section-pad) 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: clamp(24px, 3vw, 48px) auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(128, 74, 15, 0.30);
  background: rgba(255, 244, 214, 0.45);
  color: var(--nl-cream);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(42, 27, 18, 0.45);
}

.newsletter-input:focus {
  border-color: var(--af-yellow);
  background: rgba(255, 244, 214, 0.55);
}

/* ============================================================
   SECTION: CONTACT FORM
   ============================================================ */
.contact-section {
  background: transparent;
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255, 244, 214, 0.40);
  color: var(--nl-cream);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-select option {
  background: rgba(31, 22, 15, 0.55);
  color: var(--nl-cream);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--af-yellow);
  background: rgba(128, 74, 15, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(42, 27, 18, 0.40);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: transparent;
  border-top: none;
  padding: clamp(40px, 5vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 60px);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--nl-cream);
  text-decoration: none;
  display: inline-block;
  line-height: 1.15;
  padding: 4px 0;
  overflow: visible;
  white-space: normal;
  max-width: 100%;
}

.footer-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 40px);
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--nl-cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: clamp(20px, 2.5vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-email:hover {
  color: var(--af-yellow);
}

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3col       { grid-template-columns: repeat(2, 1fr); }
  .creator-grid    { grid-template-columns: repeat(3, 1fr); }
  .channel-grid    { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid    { grid-template-columns: repeat(2, 1fr); }
  .overview-stats  { grid-template-columns: repeat(2, 1fr); }
  .case-study      { grid-template-columns: 1fr; }
  .case-study__media { order: 1 !important; }
  .case-study__content { order: 2 !important; }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(48px, 10vw, 80px); }

  .creator-grid  { grid-template-columns: repeat(2, 1fr); justify-content: center; justify-items: center; }
  .channel-grid  { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid  { grid-template-columns: repeat(2, 1fr); }
  .overview-stats{ grid-template-columns: repeat(2, 1fr); }

  .hero-badge-row { gap: 10px; }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study__stats { gap: 16px; }

  .polaroid { display: none; }
}

@media (max-width: 480px) {
  .creator-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; justify-content: center; justify-items: center; }
  .creator-card:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: 50%; }
  .channel-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .podcast-grid  { grid-template-columns: 1fr; }
  .overview-stats{ grid-template-columns: 1fr; }
  .nav-pill      { padding: 4px 4px 4px 10px; gap: 4px; }
  .site-logo     { font-size: 10px; letter-spacing: 0.04em; }
  .nav-cta       { padding: 5px 8px; font-size: 10px; white-space: nowrap; letter-spacing: 0.02em; }
  .nav-hamburger { width: 46px; height: 46px; border-width: 2px; }
  .nav-hamburger span { width: 22px; height: 3px; }

  .press-sticky:nth-child(3n+1),
  .press-sticky:nth-child(3n+2),
  .press-sticky:nth-child(3n+3) {
    margin-left: 0;
  }
}

/* ============================================================
   WORDPRESS SPECIFIC OVERRIDES
   ============================================================ */
.wp-block-image img {
  border-radius: 16px;
}

.page-content p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2em;
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: transparent;
  clip: auto !important;
  clip-path: none;
  color: var(--nl-cream);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Skip link */
#skip-link {
  position: absolute;
  left: -9999px;
}

#skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99999;
  background: var(--af-yellow);
  color: var(--af-black);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
}

/* ============================================================
   SEAMLESS TRANSITIONS — sections 2 → 3 → 4
   All three share the same warm parchment palette (#d4b483).
   Gradient fades at shared edges blend the image seams away.
   ============================================================ */

/* Bottom-of-section-2 tan fade DELETED — body parchment shows through. */
.nl-campaign-section::after {
  content: none;
  display: none;
  background: none;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 2;
  pointer-events: none;
}

/* Section-edge fade gradients DELETED — they were tinted bands left over
   from the previous per-section backgrounds and were painting visible
   horizontal halos over the parchment. Body parchment now shows through cleanly. */
.nl-social-section::before,
.nl-social-section::after,
.nl-army-section::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ============================================================
   HIDDEN SECTIONS — not ready for public viewing
   To restore any section, remove its selector from this rule.
   ============================================================ */
.aftv-section,
.brands-section,
.press-section,
.case-studies-section,
.beer-section,
.sporting-section,
.pregame-section {
  display: none !important;
}

/* ============================================================
   DIAMOND AVATARS (rotated square with rounded corners)
   Uses the rotate-45 trick so corners are truly rounded arcs.
   Image is counter-rotated inside so the face shows upright.
   ============================================================ */
.creator-avatar,
.nl-army__avatar {
  position: relative !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  border-radius: clamp(14px, 1.6vw, 22px) !important;
  overflow: hidden !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  outline: none;
  /* Perfect square so rotate(45deg) yields a symmetrical diamond */
  width: clamp(135px, 14vw, 185px) !important;
  height: clamp(135px, 14vw, 185px) !important;
  transform: rotate(45deg);
  transform-origin: center center;
}

.creator-avatar img,
.nl-army__avatar img {
  border-radius: 0 !important;
  border: none !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  /* Counter-rotate and scale √2 so the photo fills the rotated square */
  transform: rotate(-45deg) scale(1.4142);
  transform-origin: center center;
}

.creator-avatar__initials {
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transform: rotate(-45deg);
  transform-origin: center center;
}

@media (max-width: 768px) {
  .creator-avatar,
  .nl-army__avatar {
    width: clamp(105px, 32vw, 155px) !important;
    height: clamp(105px, 32vw, 155px) !important;
  }
}

/* ── HOVER OVERLAY — fills the whole diamond (matches avatar shape)
   The outer overlay rotates WITH the parent (no transform of its own),
   so it paints the full rounded-diamond in dark translucent black.
   The inner wrapper counter-rotates and scales to the inscribed
   square so icons lay out upright in a normal grid. */
.creator-avatar__hover {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: rgba(0, 0, 0, 0.82) !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;   /* kill the 18% padding from earlier rule */
  gap: 0 !important;
  opacity: 0;
  transform: none !important;  /* kill any earlier scale */
  transition: opacity 0.2s ease;
  pointer-events: none;
  overflow: hidden !important;
  box-sizing: border-box !important;
  /* no transform — inherits parent's rotate(45deg) visually */
}

.creator-avatar__hover-inner {
  /* Inscribed screen-aligned square of the diamond = side ÷ √2.
     Icons flow as a centered, wrapping flex row — works for any count,
     always centered both horizontally and vertically. */
  width: 70.7% !important;
  height: 70.7% !important;
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: center !important;
  align-content: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 6% !important;
  box-sizing: border-box !important;
  transform: rotate(-45deg) scale(0.88);
  transform-origin: center center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.creator-card:hover .creator-avatar__hover,
.creator-card:focus-within .creator-avatar__hover,
.creator-avatar:hover .creator-avatar__hover,
.creator-avatar:focus .creator-avatar__hover,
.creator-avatar.is-open .creator-avatar__hover {
  opacity: 1;
  pointer-events: auto;
}
.creator-card:hover .creator-avatar__hover-inner,
.creator-card:focus-within .creator-avatar__hover-inner,
.creator-avatar:hover .creator-avatar__hover-inner,
.creator-avatar:focus .creator-avatar__hover-inner,
.creator-avatar.is-open .creator-avatar__hover-inner {
  transform: rotate(-45deg) scale(1);
}

/* Hide the glow pseudo — the rotation makes it awkward */
.creator-avatar::after,
.creator-avatar::before { display: none !important; }

/* ── Diamond spacing — card needs extra vertical room because
   a rotated 45° square's bounding box is √2 × its base size.
   Also pull the name badge right up to the bottom point. */
.creator-card {
  gap: 0 !important;
  padding-top: calc((1.4142 - 1) * clamp(135px, 14vw, 185px) / 2) !important;
  padding-bottom: calc((1.4142 - 1) * clamp(135px, 14vw, 185px) / 2) !important;
}
@media (max-width: 768px) {
  .creator-card {
    padding-top: calc((1.4142 - 1) * clamp(105px, 32vw, 155px) / 2) !important;
    padding-bottom: calc((1.4142 - 1) * clamp(105px, 32vw, 155px) / 2) !important;
  }
}
.creator-card .creator-badge-wrap {
  margin-top: -8px !important;   /* butt the nametag to the bottom point */
}

/* ============================================================
   BIO POP-UP — floats above the triangle on hover/tap
   Separate from the triangle so it doesn't get clipped.
   ============================================================ */
.creator-card {
  position: relative;
}

.creator-bio-popup {
  position: absolute;
  bottom: calc(100% - 12px);            /* sits above the avatar */
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: min(280px, 85vw);
  padding: 12px 14px;
  background: #fffbe8;
  color: #1a0f05;
  border: 2px solid #7a5a1a;
  border-radius: 10px;
  font-family: var(--font-body, 'Barlow', sans-serif);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 50;
  white-space: normal;
}

/* Speech-bubble tail pointing down at the avatar */
.creator-bio-popup::before,
.creator-bio-popup::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.creator-bio-popup::before {
  bottom: -12px;
  border-top: 12px solid #7a5a1a;
}
.creator-bio-popup::after {
  bottom: -9px;
  border-top: 10px solid #fffbe8;
}

/* Show popup when tapped open (mobile path) — works on every device */
.creator-avatar.is-open ~ .creator-bio-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.2s ease, visibility 0s linear 0s;
}

/* Hover/focus path — ONLY on hover-capable devices (desktops with mice).
   Excludes touch devices where iOS Safari fakes a sticky :hover on first tap. */
@media (hover: hover) and (pointer: fine) {
  .creator-avatar:hover ~ .creator-bio-popup,
  .creator-avatar:focus ~ .creator-bio-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.2s ease, visibility 0s linear 0s;
  }
}

/* ----------------------------------------------------------------
   Mobile / narrow viewports — break the popup out of the card so
   it can never be clipped by edges. Position it fixed at the
   bottom of the viewport, full-width with safe gutters.
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  /* On mobile, show bio as a centered modal-style card.
     Every property that matters is !important to defeat
     desktop rules above with same specificity. */
  .creator-bio-popup {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: 480px !important;
    max-height: calc(100vh - 32px) !important;
    transform: translate(-50%, -50%) scale(0.96) !important;
    padding: 18px 20px !important;
    font-size: clamp(11px, 3.6vw, 17px) !important;
    line-height: 1.4 !important;
    border-width: 2px !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6) !important;
    z-index: 10000 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: visible !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  /* Speech-bubble tail makes no sense for a centered modal */
  .creator-bio-popup::before,
  .creator-bio-popup::after {
    display: none !important;
  }

  /* Disable hover/focus triggers on mobile — only tap controls visibility */
  .creator-avatar:hover ~ .creator-bio-popup,
  .creator-avatar:focus ~ .creator-bio-popup {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -50%) scale(0.96) !important;
  }

  /* The actively-tapped avatar's popup shows centered */
  .creator-avatar.is-open ~ .creator-bio-popup {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  /* Lock body scroll while a bio is open so the modal stays centered */
  body.bio-open {
    overflow: hidden;
  }

  /* Backdrop dimmer behind the modal */
  #af-bio-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ============================================================
   WRITERS SECTION — text heading variant
   ============================================================ */
.nl-army__heading-text {
  display: block;
  text-align: center;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 96px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nl-ink, #2a1a0a);
  margin: 0 auto 40px;
  text-shadow: 0 2px 0 rgba(255, 240, 200, 0.4);
}

.nl-army-section--writers {
  padding-top: 40px;
}

/* ============================================================
   CAMPAIGN BADGE — QUOTE MODE
   ============================================================ */
.nl-campaign__badge-hover--quote {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8% !important;
  background: rgba(0, 0, 0, 0.86) !important;
}

.nl-campaign__quote {
  font-family: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #fff8e1;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.01em;
  /* Size relative to the badge container, not the viewport. cqw = 1% of badge width.
     5cqw of a 220px badge = 11px; 5cqw of a 460px badge = 23px. */
  font-size: clamp(10px, 5cqw, 22px);
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  word-break: break-word;
  hyphens: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

/* Browsers without container-query support fall back to viewport-based sizing,
   tuned to stay inside the smallest expected badge (~200px). */
@supports not (container-type: inline-size) {
  .nl-campaign__quote {
    font-size: clamp(10px, 1.6vw, 18px);
  }
}

.nl-campaign__quote.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nl-campaign__quote::before {
  content: '\201C';
  display: block;
  font-size: 1.6em;
  line-height: 0.4;
  margin-bottom: 0.25em;
  color: rgba(255, 240, 200, 0.55);
}

/* ============================================================
   TOUCH DEVICES — kill sticky :hover side-effects, re-route them
   through the JS-controlled .is-open class instead.
   ============================================================ */
@media (hover: none), (pointer: coarse) {
  /* :hover does NOTHING on touch — neither image fade, nor ring,
     nor social overlay. JS .is-open class is the single source of truth. */
  .creator-card:hover .creator-avatar img,
  .nl-army__card:hover .nl-army__avatar img {
    transform: none !important;
    opacity: 1 !important;
    border-color: inherit !important;
    box-shadow: none !important;
  }
  .creator-card:hover .creator-avatar::before,
  .creator-card:hover .creator-avatar::after {
    opacity: 0 !important;
    transform: none !important;
    width: auto !important;
  }
  .creator-card:hover .creator-avatar__hover,
  .creator-card:focus-within .creator-avatar__hover {
    opacity: 0 !important;
    transform: scale(0.96) !important;
    pointer-events: none !important;
  }

  /* When tapped open: fade image and reveal social overlay */
  .creator-avatar.is-open img {
    opacity: 0.18 !important;
    transform: scale(1.06) !important;
  }
  .creator-avatar.is-open .creator-avatar__hover {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
  }
}


