/* ============================================================
   THIRST WEBSITE — Components
   Cinematic scroll-driven storytelling
   ============================================================ */

/* ---- UTILITIES ---- */
.c-red { color: var(--red); }

/* ---- FILM GRAIN ---- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: var(--grain-opacity-local);
  mix-blend-mode: var(--grain-blend);
}
/* Global grain overlay (from grain-overlay.js) */
.grain-overlay-svg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: var(--z-overlay);
  opacity: var(--grain-opacity-global);
  mix-blend-mode: var(--grain-blend);
  transition: opacity 0.8s ease;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav--scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav__wordmark-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 0.03em;
  opacity: 0.6;
  line-height: 1;
}
.nav__wordmark-main {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245, 240, 235, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.4s;
  text-decoration: none;
  position: relative;
}
.nav__link:hover {
  color: var(--white);
}
.nav__link--active {
  color: var(--white);
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--red);
}

/* ============================================================
   SECTION 1: HERO
   Full viewport. Darkness. Grain. Silence. Then the title.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 0;
}

/* Background video — dark, atmospheric, low opacity */
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  will-change: transform;
}

/* Dark gradient overlay — ensures text readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 0;
}

/* Sound toggle */
.hero-sound {
  position: absolute;
  top: 28px; left: 28px;
  z-index: 10;
  color: var(--mid-grey);
  opacity: 0.3;
  transition: opacity 0.4s;
  padding: 8px;
}
.hero-sound:hover { opacity: 0.7; }

/* Content wrapper — GSAP animates this */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  will-change: transform, opacity;
}

/* "A S P E C T  F I L M S  presents" */
.hero__presents {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--mid-grey);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 72px;
}

/* Wordmark container */
.hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__worlds {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 38px);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: -2px;
}

.hero__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(72px, 15vw, 220px);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.82;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* Taglines — stacked, GSAP handles opacity crossfade */
.hero__taglines {
  position: relative;
  height: 80px;
  margin-top: 56px;
  text-align: center;
}
.hero__tagline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  text-align: center;
}
.hero__tagline--active {
  opacity: 1;
}

/* Own voice taglines */
.hero__tagline--own {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Quote taglines */
.hero__tagline--quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__tagline--quote em {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--mid-grey);
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.hero__source {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 240, 235, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: white;
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   SECTION 2: THE HOOK
   Cinematic scroll-driven VO — GSAP ScrollTrigger scrub.
   Each line fades in/out independently via scroll position.
   ============================================================ */
.hook {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 0;
}

.hook__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Spacing between lines — this creates the scroll distance */
.hook__spacer-top {
  height: 40vh;
}
.hook__gap {
  height: 70vh;
}
.hook__gap-accent {
  height: 80vh;
}
.hook__spacer-bottom {
  height: 30vh;
}

/* Hook lines — full width, generous padding, GPU compositing */
.hook-line {
  will-change: transform, opacity;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 0 6vw;
}

/* Large white headlines */
.hook-line--large {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
}

/* RED accent: "Not a drop less." — massive */
.hook-line--red {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(72px, 12vw, 160px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--red);
}

/* Closing: CTA — why THIRST needs to exist */
.hook-line--closing {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  position: relative;
  padding: 140px 80px;
}
.section--dark {
  background: var(--black);
}
.section--dark-alt {
  background: var(--near-black);
}
.section--light {
  background: var(--light-grey);
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
}
.section--light .section__title { color: var(--dark-grey); }

.section__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--mid-grey);
  margin-bottom: 72px;
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION 3: CHAPTERS — light atlas map + dark cards
   ============================================================ */
.chapters-map {
  margin-bottom: 72px;
  position: relative;
}
.map-svg-wrapper {
  width: 100%;
  background: #E8E4E0;
  border-radius: 4px;
  overflow: hidden;
}
.map-svg-wrapper svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- CHAPTER SLIDER (Netflix-style) ---- */
.chapter-slider {
  width: 100%;
  position: relative;
  background: var(--black);
  padding: 32px 0 48px;
}
.chapter-slider__track {
  display: flex;
  gap: 14px;
  padding: 0 48px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-start;
}
.chapter-slider__track::-webkit-scrollbar { display: none; }

/* Edge fade gradients */
.chapter-slider::before,
.chapter-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
}
.chapter-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.chapter-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

/* Card wrapper: poster + expandable panel */
.chapter-card {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  height: 500px;
  cursor: pointer;
}

/* Poster: tall cinematic ratio */
.chapter-card__poster {
  position: relative;
  width: 340px;
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
  transition: box-shadow 0.4s ease;
}
.chapter-card:hover .chapter-card__poster {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.chapter-card--active .chapter-card__poster {
  box-shadow: 0 0 0 2px var(--red), 0 16px 48px rgba(0, 0, 0, 0.7);
  border-radius: 6px 0 0 6px;
}

/* Full-bleed poster image */
.chapter-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.chapter-card:hover .chapter-card__img {
  transform: scale(1.05);
}

/* Bottom gradient for label */
.chapter-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

/* Label on poster: number + title */
.chapter-card__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
}
.chapter-card__number {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  display: block;
}
.chapter-card__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

/* ---- Expandable info panel (slides out right) ---- */
.chapter-card__panel {
  width: 0;
  height: 500px;
  overflow: hidden;
  opacity: 0;
  background: var(--near-black);
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.4s ease,
              padding 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.chapter-card--active .chapter-card__panel {
  width: 300px;
  opacity: 1;
  padding: 32px 28px;
}

.chapter-card__panel-number {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
  white-space: nowrap;
}
.chapter-card__panel-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 8px;
  white-space: nowrap;
}
.chapter-card__panel-location {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245, 240, 235, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
  white-space: nowrap;
}
.chapter-card__panel-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.55;
  margin: 0 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chapter-card__panel-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--red);
  padding: 12px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}
.chapter-card__panel-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

/* ============================================================
   SECTION 4: THE SERIES — inverted funnel
   ============================================================ */
/* ============================================================
   SECTION 4: THE ECOSYSTEM
   Horizontal funnel: 80+ social → 8 films → 1 series
   ============================================================ */
.eco-section { overflow: hidden; }

/* Radial glow at convergence point (right side) */
.eco-glow {
  position: absolute;
  right: -5%;
  top: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.06) 0%, rgba(255,0,0,0.02) 35%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

/* Main grid: funnel proportions */
.eco {
  display: grid;
  grid-template-columns: 3fr auto 2fr auto 1.5fr;
  align-items: start;
  gap: 0;
  margin: 72px 0 64px;
}

/* Each tier */
.eco__tier {
  padding: 0 8px;
}

.eco__head {
  margin-bottom: 20px;
}

.eco__count {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--white);
}
.eco__tier--series .eco__count { color: var(--red); }

.eco__label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 4px;
}

.eco__sublabel {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  margin-top: 4px;
}

.eco__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* SVG flow connectors */
.eco__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  min-width: 60px;
  align-self: center;
}
.eco__flowsvg {
  width: 100%;
  height: 120px;
}
.eco__flowlabel {
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  opacity: 0.5;
  margin-top: 8px;
  white-space: nowrap;
}

/* Dense social content grid (tiny squares) */
.eco__grid--dense {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
  gap: 3px;
}
.eco__grid--dense .eco__thumb {
  aspect-ratio: 1;
  background: rgba(245, 240, 235, 0.04);
  border: 1px solid rgba(245, 240, 235, 0.06);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}
.eco__grid--dense .eco__thumb:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.3);
}

/* Film poster grid (2 columns) */
.eco__grid--posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.eco__poster {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.eco__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.8);
  transition: filter 0.4s, transform 0.4s;
}
.eco__poster:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}
.eco__poster-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.eco__poster:hover .eco__poster-name { opacity: 1; }

/* Main series poster (single, large) */
.eco__poster-main {
  margin-top: 8px;
}
.eco__poster-frame {
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,0,0,0.06) 0%, rgba(0,0,0,0.4) 100%);
  position: relative;
  overflow: hidden;
}
.eco__poster-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,0,0,0.08);
  margin: 8px;
  border-radius: 1px;
}
.eco__poster-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.3;
}
.eco__poster-title span {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.04em;
  color: var(--red);
  margin-top: 2px;
}
.eco__poster-meta {
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  margin-top: 16px;
  opacity: 0.5;
}

.series-essay {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: var(--max-width-text);
  margin-top: 48px;
}

/* ============================================================
   SECTION 5: TIMELINE
   ============================================================ */
.timeline {
  margin-top: 56px;
  display: flex;
  gap: 0;
}
.timeline__labels {
  flex-shrink: 0;
  width: 140px;
  padding-top: 52px;
  display: flex;
  flex-direction: column;
}
.timeline__label {
  height: 80px;
  display: flex;
  align-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.timeline__label--red   { color: var(--red); }
.timeline__label--white { color: var(--white); }
.timeline__label--grey  { color: var(--mid-grey); }

.timeline__scroll {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.timeline__scroll::-webkit-scrollbar { height: 2px; }
.timeline__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); }

.timeline__inner {
  position: relative;
  min-width: 1100px;
  padding: 0 24px;
}
.timeline__years {
  position: relative;
  height: 48px;
  border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}
.timeline__years span {
  position: absolute;
  top: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* SVG lines for stroke-draw animation */
.timeline__svg {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 240px;
  pointer-events: none;
}

.timeline__track {
  position: relative;
  height: 80px;
}

.timeline__dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.timeline__dot::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.timeline__dot:hover::before { transform: scale(1.6); }
.timeline__dot--red::before   { background: var(--red); }
.timeline__dot--white::before { background: var(--white); }
.timeline__dot--grey::before  { background: var(--mid-grey); }
.timeline__dot span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 240, 235, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.3s;
}
.timeline__dot:hover span { color: var(--white); }

.timeline__statement {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--mid-grey);
  text-align: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 235, 0.04);
  opacity: 0.5;
}

/* ============================================================
   SECTION 6: TEAM
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(245, 240, 235, 0.04);
}
.team__card {
  padding: 48px 40px 56px;
  background: var(--near-black);
  position: relative;
}
.team__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(255, 0, 0, 0.2) 100%);
}
.team__portrait {
  width: 72px; height: 72px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(245, 240, 235, 0.04) 100%);
  border: 1px solid rgba(255, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.team__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
}
.team__role {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.team__bio {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.75;
}
.team__join {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 235, 0.06);
}
.team__join-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--mid-grey);
}
.team__join-link {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transition: all 0.4s;
}
.team__join-link:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: var(--red);
}

/* ============================================================
   SECTION 7: PRESS
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(245, 240, 235, 0.04);
}
.press__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 52px 28px;
  background: var(--black);
  text-decoration: none;
  border: 1px solid rgba(245, 240, 235, 0.06);
  transition: border-color 0.4s, background 0.4s;
  text-align: center;
  position: relative;
}
.press__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(245, 240, 235, 0.01) 8px,
    rgba(245, 240, 235, 0.01) 9px
  );
  pointer-events: none;
}
.press__card:hover {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.03);
}
.press__icon {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  opacity: 0.4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 240, 235, 0.08);
  border-radius: 2px;
}
.press__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
.press__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(245, 240, 235, 0.35);
  line-height: 1.6;
}
.press__action {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.press__contact-block {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 235, 0.06);
  text-align: center;
}
.press__contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid-grey);
  opacity: 0.5;
  margin-bottom: 12px;
}
.press__contact-email {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s;
}
.press__contact-email:hover {
  color: var(--red);
}
.press__contact-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--mid-grey);
  opacity: 0.5;
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   SECTION 8: GET INVOLVED
   ============================================================ */
.involve__statement {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 800px;
}
.involve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
  background: rgba(245, 240, 235, 0.04);
}
.involve__card {
  padding: 48px 36px;
  background: var(--near-black);
  position: relative;
  border-top: 3px solid var(--red);
}
.involve__heading {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.involve__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}
.involve__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid rgba(245, 240, 235, 0.15);
  text-decoration: none;
  transition: all 0.4s;
}
.involve__cta:hover {
  border-color: var(--red);
  color: var(--red);
}
.involve__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.involve__social a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.3s;
}
.involve__social a:hover { color: var(--red); }

/* Newsletter */
.involve__newsletter {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 240, 235, 0.06);
  text-align: center;
}
.involve__newsletter-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid-grey);
  opacity: 0.5;
  margin-bottom: 20px;
}
.involve__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.involve__newsletter-input {
  flex: 1;
  background: rgba(245, 240, 235, 0.04);
  border: 1px solid rgba(245, 240, 235, 0.1);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}
.involve__newsletter-input::placeholder {
  color: var(--mid-grey);
  opacity: 0.4;
}
.involve__newsletter-input:focus {
  border-color: rgba(255, 0, 0, 0.4);
}
.involve__newsletter-btn {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.involve__newsletter-btn:hover {
  background: transparent;
  color: var(--red);
}

/* ============================================================
   SECTION 9: FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 0 80px 40px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red) 0%, rgba(255, 0, 0, 0.3) 50%, transparent 100%) 1;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 36px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(245, 240, 235, 0.04);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer__nav-link {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--mid-grey);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  transition: all 0.3s;
}
.footer__nav-link:hover {
  color: var(--white);
  opacity: 1;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 32px;
}
.footer__brand {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer__statement {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  font-style: italic;
  opacity: 0.8;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer__links > a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer__links > a:hover { opacity: 1; }
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: all 0.3s;
}
.footer__social a:hover { color: var(--red); opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 235, 0.04);
}
.footer__copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.footer__location {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
  opacity: 0.6;
}

/* ============================================================
   SKIP LINK — Accessibility
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--red);
  color: var(--pure-white);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 16px;
}

/* ============================================================
   FOCUS STATES — Keyboard navigation
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.nav__link:focus-visible {
  outline-offset: 8px;
}
.chapter-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--open .nav__burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav--open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav--open .nav__burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
  }
  .nav--open .nav__links {
    opacity: 1;
    pointer-events: auto;
  }
  .nav--open .nav__links .nav__link {
    font-size: 18px;
    letter-spacing: 0.15em;
  }

  .section { padding: 100px 24px; }
  .nav { padding: 16px 24px; }

  .hero__presents { margin-bottom: 48px; font-size: 9px; }
  .hero__taglines { height: 90px; }
  .hero__tagline--own { font-size: 15px; }
  .hero__tagline--quote em { font-size: 15px; }

  .hook-line { padding: 0 5vw; }
  .hook-line--large { font-size: clamp(28px, 6vw, 48px); }
  .hook-line--red { font-size: clamp(48px, 12vw, 80px); }
  .hook-line--closing { font-size: clamp(36px, 7vw, 64px); }
  .hook__gap { height: 50vh; }
  .hook__gap-accent { height: 60vh; }

  .chapter-card__poster { width: 220px; height: 330px; }
  .chapter-card--active .chapter-card__panel { width: 260px; padding: 24px 20px; }
  .team { grid-template-columns: 1fr; }
  .involve { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }

  .eco { grid-template-columns: 1fr; gap: 48px; }
  .eco__flow { flex-direction: row; min-width: unset; padding: 0; }
  .eco__flowsvg { width: 80px; height: 40px; transform: rotate(90deg); }
  .eco__grid--dense { grid-template-columns: repeat(auto-fill, minmax(28px, 1fr)); }
  .eco__grid--posters { grid-template-columns: repeat(4, 1fr); }

  .timeline__labels { width: 100px; }
  .timeline__label { font-size: 11px; }

  .footer { padding: 0 24px 32px; }
  .footer__nav { gap: 20px; flex-wrap: wrap; padding: 28px 0; }
  .footer__inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer__links { align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .team__join { flex-direction: column; align-items: flex-start; gap: 12px; }
  .involve__social { flex-direction: column; }
  .involve__newsletter-form { flex-direction: column; }
  .involve__newsletter-input { border-right: 1px solid rgba(245, 240, 235, 0.1); }
}

/* ---- WHY NOW: Data stats section ---- */
.why-now { padding: var(--section-pad-y) var(--section-pad-x); background: var(--near-black); position: relative; overflow: hidden; }
.why-now .grain { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.why-now__inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.why-now__intro { font-family: var(--font-body); font-weight: 300; font-size: var(--text-body-lg); line-height: var(--leading-relaxed); color: rgba(245,240,235,0.8); max-width: var(--max-width-text); margin: 0 auto 80px; text-align: center; }
.why-now__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 80px; }
.why-now__stat { text-align: center; padding: 32px 16px; }
.why-now__number { font-family: var(--font-cond); font-weight: 700; font-size: clamp(48px, 8vw, 96px); line-height: 0.9; color: var(--red); margin-bottom: 12px; }
.why-now__unit { font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: 0.1em; color: rgba(245,240,235,0.5); margin-bottom: 12px; text-transform: uppercase; }
.why-now__label { font-family: var(--font-body); font-weight: 300; font-size: var(--text-body); line-height: var(--leading-normal); color: rgba(245,240,235,0.7); }
.why-now__gap { font-family: var(--font-body); font-weight: 300; font-size: var(--text-body-lg); line-height: var(--leading-relaxed); color: rgba(245,240,235,0.7); max-width: var(--max-width-text); margin: 0 auto; text-align: center; }

@media (max-width: 1024px) { .why-now__stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .why-now { padding: 80px 24px; }
  .why-now__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) { .why-now__stats { grid-template-columns: 1fr; } }

/* ---- THE VOICE: 3-tab section ---- */
.voice { padding: var(--section-pad-y) var(--section-pad-x); background: var(--dark-grey); position: relative; }
.voice__inner { max-width: var(--max-width-text); margin: 0 auto; }
.voice__tabs { display: flex; gap: 0; margin-bottom: 48px; border-bottom: 1px solid rgba(245,240,235,0.1); }
.voice__tab {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.4);
  background: none;
  border: none;
  padding: 16px 24px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.voice__tab:hover { color: rgba(245,240,235,0.7); }
.voice__tab--active { color: var(--white); border-bottom-color: var(--red); }
.voice__panel { display: none; }
.voice__panel--active { display: block; }
.voice__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body-lg);
  line-height: var(--leading-loose);
  color: rgba(245,240,235,0.85);
}
.voice__topic {
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.3);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .voice { padding: 80px 24px; }
  .voice__tab { padding: 12px 16px; font-size: 10px; }
}

/* ---- TEAM: Guided By + On the Ground + Why This Team ---- */
.team__section-label {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 80px;
  margin-bottom: 32px;
}
.team--advisors { grid-template-columns: repeat(2, 1fr); }
.team--ground { grid-template-columns: 1fr; max-width: 600px; }

.why-team { padding: var(--section-pad-y) var(--section-pad-x); background: var(--near-black); position: relative; }
.why-team__inner { max-width: var(--max-width-text); margin: 0 auto; }
.why-team__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body-lg);
  line-height: var(--leading-loose);
  color: rgba(245,240,235,0.85);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .team--advisors { grid-template-columns: 1fr; }
  .why-team { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hook-line--large { font-size: 22px; }
  .hook-line--red { font-size: 36px; }
  .hook-line--closing { font-size: 28px; }
  .chapter-card__poster { width: 180px; height: 270px; }
  .chapter-card--active .chapter-card__panel { width: 220px; padding: 20px 16px; }
  .chapter-card__panel-title { font-size: 22px; }
  .chapter-card__panel-tagline { font-size: 12px; }
  .section { padding: 80px 16px; }
  .nav { padding: 14px 16px; }
  .hero__presents { font-size: 8px; letter-spacing: 0.2em; margin-bottom: 36px; }
  .hero__taglines { height: 80px; }
  .hero__tagline--own { font-size: 13px; }
  .hero__tagline--quote em { font-size: 13px; }
  .eco__grid--posters { grid-template-columns: repeat(2, 1fr); }
  .timeline__labels { width: 80px; }
  .timeline__label { font-size: 9px; width: 80px; }
  .footer__nav { gap: 14px; }
  .footer__nav-link { font-size: 8px; }
  .section__title { margin-bottom: 12px; }
  .section__sub { margin-bottom: 48px; }
  .why-now__number { font-size: 48px; }
  .voice__tabs { flex-wrap: wrap; }
}
