@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ============================================================
   JAMES BLAKE: GLOBAL STYLESHEET
   ============================================================ */

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

:root {
  --yellow:      #F5E642;
  --yellow-dim:  rgba(245,230,66,0.12);
  --dark-brown:  #1A0F00;
  --black:       #0D0D0D;
  --black2:      #111111;
  --black3:      #0a0a0a;
  --off-white:   #F0EDE6;
  --grey:        rgba(240,237,230,0.55);
  --border:      rgba(245,230,66,0.12);
  --pad:         110px 80px;
  --pad-sm:      70px 28px;
  --radius:      14px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: auto; font-size: 16px; } /* Lenis handles smooth scroll */

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Bebas Neue for all major display headings */
h1, h2, .display, .section-title, .nav-logo {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif !important;
  letter-spacing: 1.5px;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--yellow);
}
.display-white { color: var(--off-white); }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif !important;
  font-size: clamp(3.5rem, 7vw, 7rem);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 40px;
  word-break: break-word;
  letter-spacing: 1px;
}
.section-title .accent { color: var(--yellow); }
.body-text {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 640px;
}

/* ── GLOBAL / INTERNATIONAL DISTRIBUTION ─────────────────── */
.global-section {
  background: #080808;
  padding: 120px 80px;
  overflow: hidden;
}
.global-inner { max-width: 1400px; margin: 0 auto; }
.global-header {
  text-align: center;
  margin-bottom: 80px;
}
.global-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.8;
}
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Globe */
.globe-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.globe-svg {
  width: 100%;
  max-width: 380px;
  animation: globe-spin-slow 30s linear infinite;
  filter: drop-shadow(0 0 40px rgba(245,230,66,0.12));
}
@keyframes globe-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.globe-label {
  position: absolute;
  background: rgba(13,13,13,0.9);
  border: 1px solid rgba(245,230,66,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--off-white);
  white-space: nowrap;
  pointer-events: none;
}
.globe-label-uk  { top: 28%;  left: -10px; animation: globe-label-float 5s ease-in-out 0.5s infinite alternate both; }
.globe-label-no  { top: 14%;  right: 0px;  animation: globe-label-float 5s ease-in-out 1.0s infinite alternate both; }
.globe-label-au  { bottom: 18%; right: -10px; animation: globe-label-float 5s ease-in-out 1.5s infinite alternate both; }
.globe-label-us  { bottom: 30%; left: -10px; animation: globe-label-float 5s ease-in-out 2.0s infinite alternate both; }
@keyframes globe-label-float {
  0%   { opacity: 0; transform: translateY(6px); }
  15%  { opacity: 1; }
  50%  { opacity: 0.9; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0px); }
}

/* Distribution cards */
.dist-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dist-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.dist-card:first-child { border-top: 1px solid var(--border); }
.dist-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-top: 2px;
}
.dist-info { flex: 1; }
.dist-country {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--off-white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.dist-channels {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
}
.dist-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  transition: opacity 0.2s;
}
.dist-link:hover { opacity: 0.7; }
.dist-card-more { background: rgba(245,230,66,0.02); }

@media (max-width: 960px) {
  .global-grid { grid-template-columns: 1fr; gap: 60px; }
  .globe-wrap { order: -1; }
  .globe-svg { max-width: 280px; }
}
@media (max-width: 640px) {
  .global-section { padding: 70px 24px; }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,230,66,0.25); }
.btn-outline { border: 2px solid rgba(245,230,66,0.45); color: var(--yellow); background: transparent; }
.btn-outline:hover { border-color: var(--yellow); background: var(--yellow-dim); transform: translateY(-3px); }
.btn-dark { background: var(--black); color: var(--yellow); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-3px); }
.btn-arrow::after { content: '→'; font-size: 1.1rem; }

/* ── BADGE / PILL ───────────────────────────────────────── */
.badge {
  display: inline-block;
  border: 1px solid rgba(245,230,66,0.3);
  color: var(--yellow);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  padding: 16px 48px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,230,66,0.07);
}
.nav-logo {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--off-white);
  text-transform: uppercase;
  z-index: 401;
}
/* MENU BUTTON */
.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--off-white);
  z-index: 401;
  padding: 4px;
}
.menu-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--off-white);
}
.burger-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.burger-bars span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* SLIDE-IN PANEL */
.nav-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 42vw;
  min-width: 380px;
  max-width: 640px;
  background: var(--yellow);
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px 60px;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.nav-panel.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav-panel-close {
  position: absolute;
  top: 32px; right: 44px;
  background: none;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #000;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}
.nav-panel-close:hover { opacity: 0.5; }
.nav-panel-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-panel-links li { border: none; }
.nav-panel-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  display: block;
  padding: 6px 0;
  line-height: 1.05;
  transition: opacity 0.2s;
}
.nav-panel-links a:hover { opacity: 0.45; }
.nav-panel-links a.active {
  opacity: 0.25;
  position: relative;
}
.nav-panel-links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.25);
  margin-top: 2px;
}
.nav-panel-footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.nav-panel-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  display: block;
  padding: 6px 0;
  line-height: 1.05;
  transition: opacity 0.2s;
}
.nav-panel-cta:hover { opacity: 0.45; }
/* DARK OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── TICKER (dark Watch-On strip) ──────────────────────────────── */
.ticker {
  background: #0d0d0d;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(245,230,66,0.1);
  border-bottom: 1px solid rgba(245,230,66,0.1);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ticker-item .watch-on { color: var(--yellow); margin-right: 4px; }
.ticker-sep {
  color: var(--yellow);
  font-size: 1.4rem;
  margin: 0 20px;
  display: inline-block;
  line-height: 1;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── DIVIDER ───────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── IMAGE PLACEHOLDER ──────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #1a1200, #0d0d0d);
  border: 2px dashed rgba(245,230,66,0.3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(245,230,66,0.45);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.img-placeholder svg { opacity: 0.4; }

/* ── SECTION WRAPPER ────────────────────────────────────────── */
section { padding: 100px 80px; overflow: hidden; }
.inner { max-width: 100%; margin: 0; width: 100%; padding: 0; box-sizing: border-box; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── CARD ───────────────────────────────────────────────── */
.card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(245,230,66,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 64px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--yellow);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(240,237,230,0.25);
  text-align: center;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(240,237,230,0.4);
  transition: color 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-links a:hover { color: var(--yellow); }

/* ── FOOTER SMALL PRINT ─────────────────────────────────── */
.footer-smallprint {
  border-top: 1px solid rgba(240,237,230,0.05);
  padding: 10px 64px;
  background: var(--black);
}
.footer-smallprint p {
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.6rem;
  color: rgba(240,237,230,0.18);
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --pad: var(--pad-sm); }
  section { padding: 60px 20px; }
  .section-title { font-size: clamp(2.8rem, 10vw, 5rem); margin-bottom: 28px; }

  /* Nav mobile overrides */
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-logo { font-size: 1.2rem; }
  /* Panel goes full width on mobile */
  .nav-panel { width: 100vw; max-width: 100vw; min-width: unset; padding: 80px 36px 48px; }
  .nav-panel-links a { font-size: clamp(2.8rem, 12vw, 4rem); padding: 5px 0; }
  .nav-panel-cta { font-size: clamp(2.8rem, 12vw, 4rem); padding: 5px 0; }
  .nav-panel-close { font-size: 1.8rem; top: 24px; right: 28px; }

  /* Footer */
  .footer-inner { gap: 16px; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-smallprint { padding: 14px 24px; }
}

/* ── HERO CHAR ANIMATION ───────────────────────────────── */
@keyframes hero-char-in {
  from { opacity: 0; transform: translateY(50px) rotate(var(--rot, 0deg)); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ── REVEAL SCALE ───────────────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── SHIMMER ON YELLOW BANNERS ──────────────────────────── */
.cta-banner, .cta-band {
  position: relative;
  overflow: hidden;
}
.cta-banner::after, .cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: banner-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes banner-shimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* ── PLAY BUTTON PULSE RINGS ────────────────────────────── */
.play-pulse {
  position: relative;
}
.play-pulse::before,
.play-pulse::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(245,230,66,0.4);
  animation: play-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.play-pulse::after {
  inset: -24px;
  border-color: rgba(245,230,66,0.2);
  animation-delay: 0.8s;
}
@keyframes play-ring {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* ── DIST CARD HOVER ────────────────────────────────────── */
.dist-card {
  cursor: default;
}
.dist-card:hover {
  background: rgba(245,230,66,0.04);
  padding-left: 8px;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

/* ── SECTION TITLE UNDERLINE ANIMATION ─────────────────── */
.section-title {
  position: relative;
}

/* ── WID ICON GLOW PULSE ─────────────────────────────────── */
.wid-card:hover .wid-icon svg {
  filter: drop-shadow(0 0 8px rgba(245,230,66,0.6));
  transition: filter 0.3s ease;
}
.wid-icon svg {
  transition: filter 0.3s ease;
}

/* ── COLLAB SOCIAL CARD GLOW ON HOVER ───────────────────── */
.collab-social-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.collab-social-card:hover {
  border-color: rgba(245,230,66,0.3);
  box-shadow: 0 0 40px rgba(245,230,66,0.06);
}

/* ── PRESS QUOTE SECTION FADE ────────────────────────────── */
.press-quote-text {
  transition: color 0.3s ease;
}

/* ── FOOTER LOGO HOVER ───────────────────────────────────── */
.footer-logo {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  cursor: default;
}
.footer-logo:hover {
  color: var(--off-white);
  letter-spacing: 4px;
}

/* ── TICKER SEP ANIMATION ────────────────────────────────── */
.ticker-sep {
  animation: sep-pulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes sep-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ── HERO DOT ENHANCED PULSE ────────────────────────────── */
.hero-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(245,230,66,0.4);
  animation: dot-ring 2.5s ease-out infinite;
}
@keyframes dot-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── FILM GRAIN TEXTURE ───────────────────────────────────────────────── */
/* Subtle SVG noise overlay: makes dark backgrounds feel rich and analogue */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.038;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj4KICA8ZmlsdGVyIGlkPSJub2lzZSI+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPgogICAgPGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPgogIDwvZmlsdGVyPgogIDxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIxIi8+Cjwvc3ZnPg==");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}
/* Slightly stronger grain on the hero dark-brown section */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* must stay below hero elements at z-index 3 */
  opacity: 0.045;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj4KICA8ZmlsdGVyIGlkPSJub2lzZSI+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPgogICAgPGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPgogIDwvZmlsdGVyPgogIDxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIxIi8+Cjwvc3ZnPg==");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* ── SMALL MOBILE (iPhone SE / 375px) ─────────────────────── */
@media (max-width: 480px) {
  section { padding: 50px 16px; }
  .section-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .section-label { font-size: 0.65rem; letter-spacing: 2.5px; }
  .btn { padding: 13px 26px; font-size: 0.82rem; }
  .footer { padding: 36px 16px; }
}

/* PHOTO LAYOUT A: SPEAKING SPLIT PANEL */
.photo-layout-a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--black);
}
.photo-layout-a-photo { overflow: hidden; position: relative; }
.photo-layout-a-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform 0.9s ease; display: block;
}
.photo-layout-a:hover .photo-layout-a-photo img { transform: scale(1.04); }
.photo-layout-a-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px; background: var(--black);
}
.photo-layout-a-copy .section-label { margin-bottom: 20px; }
.photo-layout-a-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9; color: var(--off-white); margin-bottom: 24px;
}
.photo-layout-a-copy p {
  font-size: 1rem; line-height: 1.7;
  color: rgba(240,237,230,0.6); max-width: 420px; margin-bottom: 36px;
}

/* PHOTO LAYOUT B: 3-IMAGE BBC DOCUMENTARY COLLAGE */
.photo-layout-b { background: #0a0a0a; padding: 80px 80px 60px; }
.photo-layout-b-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 1300px; margin: 0 auto;
}
.photo-layout-b-top { grid-column: 1 / -1; overflow: hidden; }
.photo-layout-b-top img { width: 100%; height: auto; display: block; transition: transform 0.8s ease; }
.photo-layout-b-top:hover img { transform: scale(1.02); }
.photo-layout-b-bottom-left, .photo-layout-b-bottom-right { overflow: hidden; height: 340px; }
.photo-layout-b-bottom-left img, .photo-layout-b-bottom-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.8s ease; display: block;
}
.photo-layout-b-bottom-left:hover img, .photo-layout-b-bottom-right:hover img { transform: scale(1.04); }
.photo-layout-b-copy {
  grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 60px; padding-top: 32px;
}
.photo-layout-b-copy h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9; color: var(--off-white); flex-shrink: 0; margin: 0;
}
.photo-layout-b-copy-text { flex: 1; padding-top: 8px; }
.photo-layout-b-copy-text .section-label { margin-bottom: 12px; }
.photo-layout-b-copy-text .quote-italic {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  font-weight: 700; font-style: italic; color: rgba(240,237,230,0.85);
  line-height: 1.35; margin-bottom: 8px;
}
.photo-layout-b-copy-text .quote-source {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow);
}

/* PHOTO LAYOUT C: FULL BLEED + YAHOO QUOTE */
.photo-layout-c { position: relative; overflow: hidden; min-height: 600px; }
.photo-layout-c img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  display: block; filter: brightness(0.82); transition: transform 14s ease;
}
.photo-layout-c:hover img { transform: scale(1.04); }
.photo-layout-c-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.88) 100%);
  pointer-events: none;
}
.photo-layout-c-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 80px; }
.photo-layout-c-content .quote-mark {
  font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; line-height: 0.7;
  color: var(--yellow); display: block; margin-bottom: 10px;
}
.photo-layout-c-content blockquote {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700; font-style: italic; color: var(--off-white);
  line-height: 1.15; max-width: 820px; margin-bottom: 14px;
}
.photo-layout-c-content cite {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--yellow); font-style: normal;
}

@media (max-width: 768px) {
  .photo-layout-a { grid-template-columns: 1fr; }
  .photo-layout-a-photo { height: 380px; }
  .photo-layout-a-copy { padding: 48px 24px; }
  .photo-layout-b { padding: 50px 20px 40px; }
  .photo-layout-b-grid { grid-template-columns: 1fr; }
  .photo-layout-b-top { grid-column: 1; }
  .photo-layout-b-bottom-left, .photo-layout-b-bottom-right { height: 240px; }
  .photo-layout-b-copy { flex-direction: column; gap: 16px; }
  .photo-layout-c-content { padding: 40px 24px; }
  .photo-layout-c-content blockquote { font-size: 1.3rem; }
}
