/*
Theme Name: Harris Family Fund
Theme URI: https://harrisfamilyfund.com
Author: Harris Family Fund
Description: Custom theme for Harris Family Fund — generational wealth and philanthropy platform
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Private
Text Domain: hff-theme
*/

/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════ */
:root {
  --black: #0D0D0D;
  --charcoal: #1C1C1E;
  --dark-grey: #2C2C2E;
  --red: #B22222;
  --red-glow: rgba(178, 34, 34, 0.12);
  --slate: #6B6B6B;
  --light-grey: #E5E5E5;
  --off-white: #F5F5F5;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.40);
  --border: rgba(255,255,255,0.07);

  --display: 'Big Shoulders Display', sans-serif;
  --serif: 'Libre Baskerville', Georgia, serif;
  --body: Calibri, 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpSm {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpXs {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   NAV (shared across all pages)
═══════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 48px;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(13,13,13,0.96);
  padding: 20px 48px;
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

/* Primary CTA button in nav (Enquiries on homepage) */
.nav-enquire {
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 11px 26px;
  transition: all 0.3s;
}
.nav-enquire:hover {
  background: var(--red); border-color: var(--red);
}

/* Back/contextual button in nav (subpages) */
.nav-back {
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 11px 26px; transition: all 0.3s;
}
.nav-back:hover { background: var(--red); border-color: var(--red); }

/* Mobile hamburger — hidden above 960px, shown below */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile overlay menu */
.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 850;
  background: rgba(13,13,13,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay .nav-mobile-links {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.nav-mobile-overlay .nav-mobile-links a {
  font-family: var(--display); font-size: 2rem; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color 0.25s;
}
.nav-mobile-overlay .nav-mobile-links a:hover { color: var(--red); }
.nav-mobile-overlay .nav-mobile-cta {
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 28px; transition: all 0.3s;
}
.nav-mobile-overlay .nav-mobile-cta:hover { background: var(--red); border-color: var(--red); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer; padding: 8px;
}

/* ═══════════════════════════════════════════════════
   FOOTER (shared)
═══════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: var(--display); font-weight: 900;
  font-size: 1rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--body); font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-family: var(--body); font-size: 0.62rem;
  color: rgba(255,255,255,0.18); letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   UNIVERSAL CONTENT FOOTER (template-part)
═══════════════════════════════════════════════════ */
#content-footer { border-top: 1px solid var(--border); }

/* Podcast bar */
.cf-podcast {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid var(--border);
}
.cf-podcast-art {
  width: 200px; aspect-ratio: 1/1;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cf-podcast-art::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.cf-podcast-art-text {
  font-family: var(--display); font-weight: 900;
  font-size: 1.1rem; text-transform: uppercase;
  color: var(--white); text-align: center; line-height: 1.05; z-index: 1;
}
.cf-podcast-art-text span { color: var(--red); }
.cf-podcast-body {
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.cf-podcast-info { display: flex; flex-direction: column; gap: 4px; }
.cf-podcast-label {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.cf-podcast-title {
  font-family: var(--display); font-weight: 800;
  font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
}
.cf-podcast-desc {
  font-family: var(--serif); font-size: 0.78rem;
  color: var(--muted); margin-top: 2px;
}
.cf-podcast-links-wrap {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cf-podcast-links { display: flex; gap: 10px; flex-shrink: 0; }
.cf-podcast-link {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; transition: all 0.25s;
}
.cf-podcast-link:hover {
  color: var(--white); border-color: var(--red);
  background: rgba(178,34,34,0.08);
}
.cf-listen-btn {
  font-family: var(--body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  background: var(--red); padding: 10px 22px;
  transition: opacity 0.25s; flex-shrink: 0;
}
.cf-listen-btn:hover { opacity: 0.85; }

/* Latest stories strip */
.cf-stories { padding: 36px 48px; }
.cf-stories-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
}
.cf-stories-header h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
}
.cf-stories-header a {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.cf-stories-header a:hover { color: var(--red); }
.cf-stories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border);
}
.cf-story-card {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.25s; cursor: pointer;
}
.cf-story-card:last-child { border-right: none; }
.cf-story-card:hover { background: rgba(255,255,255,0.015); }
.cf-story-card:hover .cf-story-title { color: var(--red); }
.cf-story-cat {
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
}
.cf-story-title {
  font-family: var(--display); font-weight: 700;
  font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.15; transition: color 0.2s;
}
.cf-story-date {
  font-family: var(--body); font-size: 0.5rem;
  color: var(--slate); letter-spacing: 0.06em; margin-top: auto;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL (shared)
═══════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sr.in { opacity: 1; transform: none; }
.sr-l {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sr-l.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.2s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.36s; }
.d6 { transition-delay: 0.44s; }

/* ═══════════════════════════════════════════════════
   PAGE: HOMEPAGE (01-homepage.html)
═══════════════════════════════════════════════════ */

/* Hero — full-bleed name stack */
#hero {
  position: relative; width: 100%; height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  background: var(--black);
  padding-top: 90px; padding-bottom: 60px;
}
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.dot-pattern { position: absolute; pointer-events: none; }
.dot-pattern svg circle { fill: rgba(255,255,255,0.06); }
.dot-pattern-tl {
  top: 60px; left: 0; width: 260px;
  opacity: 0; animation: fadeIn 1.2s ease 1.6s forwards;
}
.dot-pattern-br {
  bottom: 100px; right: 0; width: 200px;
  opacity: 0; animation: fadeIn 1.2s ease 1.8s forwards;
}
.hero-name {
  position: relative; z-index: 2;
  padding: 0 40px;
  line-height: 1; pointer-events: none;
}
.hero-name-row {
  display: block;
  font-family: var(--display);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 0.86;
  white-space: nowrap; overflow: hidden;
}
.hero-name-row.row1 {
  font-size: clamp(13vw, 18.5vw, 240px);
  color: var(--white);
  opacity: 0; animation: slideUp 1s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.hero-name-row.row2 {
  font-size: clamp(13vw, 18.5vw, 240px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.18);
  opacity: 0; animation: slideUp 1s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.hero-name-row.row3 {
  font-size: clamp(13vw, 18.5vw, 240px);
  color: var(--red);
  opacity: 0; animation: slideUp 1s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.hero-photo {
  position: absolute; bottom: 55px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  width: clamp(240px, 30vw, 440px);
  max-height: calc(100vh - 160px);
  display: flex; flex-direction: column; align-items: center;
  background: transparent;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-photo img {
  width: 100%; height: auto;
  max-height: calc(100vh - 200px);
  object-fit: cover; object-position: center top;
  background: var(--black);
  display: block;
}
.hero-photo-placeholder {
  width: 100%; aspect-ratio: 2/3;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 32px; position: relative;
}
.hero-photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, var(--red-glow), transparent);
}
.photo-initials {
  font-family: var(--display); font-weight: 900;
  font-size: 4.5rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.07);
}
.photo-label {
  font-family: var(--body); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-top: 8px;
}
.photo-badge {
  position: absolute; top: 24px; right: -16px;
  background: var(--red);
  font-family: var(--display); font-weight: 900;
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white);
  padding: 8px 14px;
  writing-mode: vertical-rl; text-orientation: mixed;
}
.hero-tagline {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(6px);
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-tagline-text {
  font-family: var(--body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.hero-tagline-text span { color: var(--red); }
.hero-scroll { display: flex; align-items: center; gap: 12px; }
.hero-scroll-line { width: 36px; height: 1px; background: var(--muted); }
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
}

/* Hero Video */
#hero-video {
  border: none;
  padding: 0;
  margin-top: 0; margin-bottom: 0;
  margin-left: calc(-50vw + 50%); margin-right: 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
}
.hero-video-container {
  position: relative; width: 100%; aspect-ratio: 16/7;
  background: var(--black);
  margin: 0; padding: 0; border: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-container img,
.hero-video-container iframe,
.hero-video-embed {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; overflow: hidden; pointer-events: none;
}
#hff-hero-player,
.hero-video-embed iframe {
  /* Scale slightly beyond container to crop YouTube letterbox bars */
  width: 110% !important; height: 110% !important;
  position: absolute !important; top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-video-container::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, var(--red-glow), transparent);
  z-index: 1;
}
.video-play-btn {
  width: 80px; height: 80px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: all 0.3s;
  cursor: pointer; background: none; color: var(--white);
}
.video-play-btn:hover {
  border-color: var(--red); background: var(--red);
  transform: scale(1.08);
}
.video-play-btn svg {
  width: 22px; height: 22px; margin-left: 3px; fill: var(--white);
}
.video-placeholder-label {
  z-index: 2; margin-top: 16px;
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.video-placeholder-sublabel {
  z-index: 2; margin-top: 6px;
  font-family: var(--serif); font-size: 0.78rem;
  font-style: italic; color: rgba(255,255,255,0.2);
}

/* Intro Bio */
#intro {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1300px; margin: 0 auto;
}
.intro-bio {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 400; line-height: 1.7;
  color: var(--white); max-width: 920px;
}
.intro-bio a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}
.intro-bio a:hover { color: var(--red); }
.intro-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 48px;
  font-family: var(--body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.intro-link-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s;
}
.intro-link:hover .intro-link-arrow {
  background: var(--red); border-color: var(--red);
  transform: translateX(4px);
}

/* Podcast Spotlight (homepage) */
#podcast {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.podcast-visual {
  position: relative;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.podcast-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.podcast-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--red-glow), transparent);
}
.podcast-artwork {
  position: relative; z-index: 1;
  width: clamp(200px, 60%, 340px); aspect-ratio: 1/1;
  background: var(--black);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.podcast-visual:hover .podcast-artwork { transform: scale(1.03); }
.podcast-artwork-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); text-align: center; line-height: 1.05; padding: 0 24px;
}
.podcast-artwork-title span { color: var(--red); }
.podcast-artwork-sub {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-top: 14px;
}
.podcast-artwork-label {
  font-family: var(--body); font-size: 0.5rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12); margin-top: 20px;
}
.podcast-content {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.podcast-eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.podcast-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.92; color: var(--white); margin-bottom: 28px;
}
.podcast-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.podcast-desc {
  font-family: var(--serif); font-size: 0.95rem;
  line-height: 1.8; color: var(--muted);
  max-width: 460px; margin-bottom: 36px;
}
.podcast-platforms { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.podcast-platform {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.25s;
}
.podcast-platform:hover {
  color: var(--white); border-color: var(--red);
  background: rgba(178,34,34,0.1);
}
.podcast-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none; width: fit-content;
}
.podcast-cta-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s;
}
.podcast-cta:hover .podcast-cta-arrow {
  background: var(--red); border-color: var(--red);
  transform: translateX(4px);
}

/* Venture Tiles */
#ventures { border-top: 1px solid var(--border); }
.ventures-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.venture-tile {
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; aspect-ratio: 4/3;
  display: block; text-decoration: none; cursor: pointer;
}
.venture-tile:nth-child(4),
.venture-tile:nth-child(5),
.venture-tile:nth-child(6) { border-bottom: none; }
.venture-tile-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.venture-tile:hover .venture-tile-bg { transform: scale(1.04); }
.tile-1 .venture-tile-bg { background: linear-gradient(135deg, #1a0808 0%, #2a0505 100%); }
.tile-2 .venture-tile-bg { background: linear-gradient(135deg, #0a0a12 0%, #12121e 100%); }
.tile-3 .venture-tile-bg { background: linear-gradient(135deg, #0a0d0a 0%, #0f160f 100%); }
.tile-4 .venture-tile-bg { background: linear-gradient(135deg, #100a0a 0%, #1a0e0e 100%); }
.tile-5 .venture-tile-bg { background: linear-gradient(135deg, #0d0a0f 0%, #160e1a 100%); }
.tile-6 .venture-tile-bg { background: linear-gradient(135deg, #0a0c10 0%, #0f1318 100%); }
.venture-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.05) 55%);
  z-index: 1;
}
.venture-tile-label {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.venture-tile-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.venture-tile-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--white); line-height: 1.1;
}
.venture-tile-arrow {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  transition: all 0.3s; margin-left: 16px;
}
.venture-tile:hover .venture-tile-arrow {
  background: var(--red); border-color: var(--red);
  transform: rotate(-45deg);
}
.tile-pattern {
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px; z-index: 1; opacity: 0.08;
}

/* Timeline */
#timeline {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1300px; margin: 0 auto;
}
.timeline-header { margin-bottom: 70px; }
.timeline-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.timeline-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.9; color: var(--white);
}
.timeline-header h2 span { color: var(--red); }
.timeline-entries { display: flex; flex-direction: column; }
.timeline-entry {
  display: grid; grid-template-columns: 130px 1px 1fr;
  gap: 0 40px; padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-entry:first-child { border-top: 1px solid var(--border); }
.timeline-year {
  font-family: var(--display); font-weight: 900;
  font-size: 2.8rem; color: var(--white);
  letter-spacing: -0.02em; line-height: 1; padding-top: 4px;
}
.timeline-line {
  width: 1px; background: rgba(255,255,255,0.1);
  align-self: stretch; margin-top: 8px; position: relative;
}
.timeline-line::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--black);
}
.timeline-location {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.timeline-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.timeline-desc {
  font-family: var(--serif); font-size: 0.88rem;
  line-height: 1.8; color: var(--muted); max-width: 560px;
}
.timeline-image {
  margin-top: 20px;
  width: 100%; max-width: 480px;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.timeline-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.timeline-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.timeline-image-label {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.15); z-index: 1;
}
.timeline-image-hint {
  font-family: var(--serif); font-size: 0.72rem;
  font-style: italic; color: rgba(255,255,255,0.1);
  margin-top: 6px; z-index: 1;
}

/* Photo Strip */
.photo-strip {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.photo-strip-slot {
  aspect-ratio: 1/1; background: var(--charcoal);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-strip-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.photo-strip-slot:last-child { border-right: none; }
.photo-strip-slot::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.5;
}
.photo-strip-label {
  font-family: var(--body); font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12); z-index: 1;
}
.photo-strip-hint {
  font-family: var(--serif); font-size: 0.68rem;
  font-style: italic; color: rgba(255,255,255,0.08);
  margin-top: 4px; z-index: 1;
}

/* Principles */
#principles {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  max-width: 1300px; margin: 0 auto;
}
.principles-header { margin-bottom: 60px; }
.principles-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.principles-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.92; color: var(--white);
}
.principles-header h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.principle-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  margin-top: -1px; margin-left: -1px;
  transition: background 0.3s;
}
.principle-card:hover { background: rgba(255,255,255,0.015); }
.principle-number {
  font-family: var(--display); font-weight: 900;
  font-size: 2.4rem; color: var(--red);
  opacity: 0.35; line-height: 1; margin-bottom: 20px;
}
.principle-title {
  font-family: var(--display); font-weight: 800;
  font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 14px; line-height: 1.15;
}
.principle-desc {
  font-family: var(--serif); font-size: 0.85rem;
  line-height: 1.75; color: var(--muted);
}

/* News / Stories */
#news { border-top: 1px solid var(--border); }
.news-header {
  padding: 60px 48px 40px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.news-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.news-header a {
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.news-header a:hover { color: var(--red); }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.news-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 32px;
  text-decoration: none; display: flex; flex-direction: column;
  gap: 14px; transition: background 0.3s; cursor: pointer;
}
.news-card:hover { background: rgba(255,255,255,0.02); }
.news-card:hover .news-card-arrow { background: var(--red); border-color: var(--red); }
.news-category {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.news-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.2; flex: 1;
}
.news-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.news-date {
  font-family: var(--body); font-size: 0.62rem;
  color: var(--muted); letter-spacing: 0.08em;
}
.news-card-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.82rem; transition: all 0.3s;
}

/* Impact */
#impact {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.impact-left {
  background: var(--red); padding: 80px 56px;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 48px;
}
.impact-left h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  text-transform: uppercase; color: var(--white);
  line-height: 0.88; letter-spacing: -0.01em;
}
.impact-left p {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.8); max-width: 480px;
}
.impact-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); text-decoration: none; width: fit-content;
}
.impact-cta-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s;
}
.impact-cta:hover .impact-cta-arrow { background: var(--white); color: var(--red); }
.impact-right { padding: 80px 56px; display: flex; flex-direction: column; }
.impact-right h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px;
}
.pillar-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  transition: border-color 0.25s;
}
.pillar-row:first-of-type { border-top: 1px solid var(--border); }
.pillar-row:hover { border-bottom-color: rgba(178,34,34,0.4); }
.pillar-label {
  font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.pillar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); transition: background 0.25s;
}
.pillar-row:hover .pillar-dot { background: var(--red); }

/* Thesis (homepage) */
#thesis {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.thesis-rule { width: 40px; height: 2px; background: var(--red); margin: 0 auto 28px; }
.thesis-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.7; color: var(--white);
  max-width: 900px; margin: 0 auto 36px;
}
.thesis-attr {
  font-family: var(--body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
}

/* ═══════════════════════════════════════════════════
   PAGE: PODCAST (02-podcast.html)
═══════════════════════════════════════════════════ */

/* Subpage hero — text-based */
.page-hero {
  position: relative; width: 100%;
  padding: 120px 6% 80px;
  display: flex; flex-direction: column;
  overflow: hidden; background: var(--black);
  min-height: auto;
  justify-content: flex-start;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeIn 0.8s ease 0.2s forwards;
}
.hero-title {
  position: relative; z-index: 1;
  font-family: var(--display); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.88;
  margin-bottom: 32px;
}
.hero-title-row { display: block; overflow: hidden; }
.hero-title-row:nth-child(1) {
  font-size: clamp(4rem, 10vw, 9rem); color: var(--white);
  opacity: 0; animation: slideUpSm 1s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.hero-title-row:nth-child(2) {
  font-size: clamp(4rem, 10vw, 9rem);
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.18);
  opacity: 0; animation: slideUpSm 1s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.hero-title-row:nth-child(3) {
  font-size: clamp(4rem, 10vw, 9rem); color: var(--red);
  opacity: 0; animation: slideUpSm 1s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.hero-subtitle {
  position: relative; z-index: 1;
  margin-top: 12px;
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeIn 0.8s ease 0.6s forwards;
}
.hero-scroll-cue {
  position: relative; z-index: 1;
  margin-top: 60px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s ease 0.9s forwards;
}
.hero-scroll-cue-line { width: 36px; height: 1px; background: var(--muted); }
.hero-scroll-cue span {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
}

/* About / Show Description */
#about {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.about-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 400; line-height: 1.75; color: var(--white);
}
.about-text a {
  color: var(--white); text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}
.about-text a:hover { color: var(--red); }
.about-aside { display: flex; flex-direction: column; gap: 28px; padding-top: 6px; }
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-label {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.about-stat-value {
  font-family: var(--display); font-weight: 800;
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
}
.about-platforms { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.about-platform-link {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.25s;
}
.about-platform-link:hover {
  color: var(--white); border-color: var(--red);
  background: rgba(178,34,34,0.1);
}

/* Guest Tile Grid */
#guest-grid {
  border-top: 1px solid var(--border);
  padding: 0; overflow: hidden;
}
.guest-grid-row { display: grid; grid-template-columns: repeat(6, 1fr); }
.guest-tile {
  aspect-ratio: 1/1; background: var(--charcoal);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.guest-tile:nth-child(6n) { border-right: none; }
.guest-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.4;
}
.guest-tile-label {
  font-family: var(--body); font-size: 0.48rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.1); z-index: 1;
}
.guest-tile:nth-child(2n) { background: #1a1a20; }
.guest-tile:nth-child(3n) { background: #1a1818; }
.guest-tile:nth-child(5n) { background: #18191a; }

/* Episodes */
#episodes {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1300px; margin: 0 auto;
}
.episodes-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 56px;
}
.episodes-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.episodes-header h2 span { color: var(--red); }
.episodes-header a {
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.episodes-header a:hover { color: var(--red); }
.episode-card {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start; text-decoration: none;
}
.episode-card:first-child { border-top: 1px solid var(--border); }
.episode-thumb {
  aspect-ratio: 16/10; background: var(--charcoal);
  border: 1px dashed rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.episode-card:hover .episode-thumb { transform: scale(1.02); }
.episode-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.episode-thumb-play {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: all 0.3s;
}
.episode-card:hover .episode-thumb-play { border-color: var(--red); background: var(--red); }
.episode-thumb-play svg { width: 14px; height: 14px; margin-left: 2px; fill: var(--white); }
.episode-thumb-label {
  position: absolute; bottom: 8px; left: 8px;
  font-family: var(--body); font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12); z-index: 1;
}
.episode-body { display: flex; flex-direction: column; gap: 10px; }
.episode-number {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.episode-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); line-height: 1.12; transition: color 0.2s;
}
.episode-card:hover .episode-title { color: var(--red); }
.episode-desc {
  font-family: var(--serif); font-size: 0.85rem;
  line-height: 1.75; color: var(--muted);
  max-width: 520px; margin-top: 4px;
}
.episode-meta { display: flex; align-items: center; gap: 20px; margin-top: 12px; }
.episode-watch {
  font-family: var(--body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.episode-watch:hover { color: var(--red); }
.episode-watch-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: all 0.25s;
}
.episode-watch:hover .episode-watch-arrow { background: var(--red); border-color: var(--red); }
.episode-platforms { display: flex; gap: 10px; }
.episode-platform-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.25s;
  font-family: var(--body); font-size: 0.45rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.02em;
}
.episode-platform-icon:hover {
  border-color: var(--red); color: var(--white);
  background: rgba(178,34,34,0.15);
}

/* Subscribe Bar */
#subscribe {
  border-top: 1px solid var(--border);
  padding: 72px 48px; text-align: center;
}
.subscribe-label {
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 36px;
}
.subscribe-platforms {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.subscribe-link {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 14px 28px; border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s; position: relative;
}
.subscribe-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.subscribe-link:hover { border-color: var(--red); background: rgba(178,34,34,0.06); }
.subscribe-link:hover::after { transform: scaleX(1); }

/* Clip Highlight */
#clip {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.clip-video {
  position: relative; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9; overflow: hidden;
}
.clip-video img,
.clip-video iframe,
.clip-video-embed {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.clip-video-embed iframe { width: 100%; height: 100%; }
.clip-video::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--red-glow), transparent);
}
.clip-play-btn {
  width: 72px; height: 72px;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; cursor: pointer; background: none; color: var(--white);
  transition: all 0.3s;
}
.clip-play-btn:hover { border-color: var(--red); background: var(--red); transform: scale(1.06); }
.clip-play-btn svg { width: 20px; height: 20px; margin-left: 3px; fill: var(--white); }
.clip-video-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.15); z-index: 1;
}
.clip-content {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.clip-eyebrow {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.clip-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.95; color: var(--white); margin-bottom: 20px;
}
.clip-desc {
  font-family: var(--serif); font-size: 0.88rem;
  line-height: 1.75; color: var(--muted);
  max-width: 440px; margin-bottom: 28px;
}
.clip-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none; width: fit-content;
}
.clip-cta-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.3s;
}
.clip-cta:hover .clip-cta-arrow {
  background: var(--red); border-color: var(--red);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════
   PAGE: FAMILY CIRCLE (03-family-circle.html)
═══════════════════════════════════════════════════ */

/* Family Circle hero variant */
.fc-hero {
  padding: 120px 6% 80px;
  min-height: auto;
  justify-content: flex-start;
}
.fc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(178,34,34,0.06), transparent);
}
.fc-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fc-hero .hero-eyebrow { margin-bottom: 20px; }
.hero-title.fc-title { margin-bottom: 32px; }
.hero-title.fc-title .hero-title-row:nth-child(1) { font-size: clamp(3.5rem, 9vw, 8rem); }
.hero-title.fc-title .hero-title-row:nth-child(2) { font-size: clamp(3.5rem, 9vw, 8rem); }
.hero-title.fc-title .hero-title-row:nth-child(3) { font-size: clamp(3.5rem, 9vw, 8rem); }
.hero-sub {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7; color: var(--muted);
  max-width: 620px;
  margin-top: 0; margin-bottom: 32px;
  opacity: 0; animation: fadeIn 0.8s ease 0.6s forwards;
}
.hero-disclaimer-bar {
  position: relative; z-index: 1;
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 24px;
  opacity: 0; animation: fadeIn 0.8s ease 0.9s forwards;
}
.hero-disclaimer-tag {
  font-family: var(--body); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); background: var(--red);
  padding: 5px 12px; white-space: nowrap;
}
.hero-disclaimer-text {
  font-family: var(--body); font-size: 0.58rem;
  color: rgba(255,255,255,0.25); line-height: 1.6;
}

/* Thesis (Family Circle) */
#thesis.fc-thesis {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1300px; margin: 0 auto;
}
.thesis-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.thesis-narrative {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.8; color: var(--muted);
}
.thesis-narrative strong { color: var(--white); }
.thesis-narrative p { margin-bottom: 20px; }
.thesis-aside { display: flex; flex-direction: column; gap: 0; }
.thesis-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.thesis-stat:first-child { border-top: 1px solid var(--border); }
.thesis-stat-value {
  font-family: var(--display); font-weight: 900;
  font-size: 2.2rem; color: var(--white);
  letter-spacing: -0.01em; line-height: 1; margin-bottom: 6px;
}
.thesis-stat-value span { color: var(--red); }
.thesis-stat-label {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate);
}

/* Sectors */
#sectors { border-top: 1px solid var(--border); }
.sectors-header {
  padding: 60px 48px 40px;
  max-width: 1300px; margin: 0 auto;
}
.sectors-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.sectors-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.sectors-header h2 span {
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.sector-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.sector-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom right, var(--red-glow), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.sector-card:hover::before { opacity: 1; }
.sector-card:hover { background: rgba(255,255,255,0.015); }
.sector-icon {
  font-family: var(--display); font-weight: 900;
  font-size: 3rem; color: var(--red); opacity: 0.25;
  line-height: 1; margin-bottom: 24px; position: relative; z-index: 1;
}
.sector-title {
  font-family: var(--display); font-weight: 800;
  font-size: 1.25rem; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--white);
  margin-bottom: 14px; position: relative; z-index: 1;
}
.sector-desc {
  font-family: var(--serif); font-size: 0.82rem;
  line-height: 1.7; color: var(--muted);
  position: relative; z-index: 1;
}

/* Story blocks */
#story {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1300px; margin: 0 auto;
}
.story-header { margin-bottom: 48px; }
.story-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.story-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.story-block {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 0 40px; padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.story-block:first-of-type { border-top: 1px solid var(--border); }
.story-label {
  font-family: var(--display); font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); padding-top: 4px;
}
.story-text {
  font-family: var(--serif); font-size: 0.92rem;
  line-height: 1.8; color: var(--muted); max-width: 680px;
}
.story-text strong { color: var(--white); }

/* Circle attributes */
#circle {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1300px; margin: 0 auto;
}
.circle-header { margin-bottom: 48px; }
.circle-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.circle-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.circle-intro {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.8; color: var(--muted);
  max-width: 780px; margin-bottom: 48px;
}
.circle-attributes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.circle-attr {
  padding: 32px 28px;
  border: 1px solid var(--border);
  margin-top: -1px; margin-left: -1px;
}
.circle-attr-number {
  font-family: var(--display); font-weight: 900;
  font-size: 1.8rem; color: var(--red);
  opacity: 0.3; margin-bottom: 14px;
}
.circle-attr-title {
  font-family: var(--display); font-weight: 800;
  font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px;
}
.circle-attr-desc {
  font-family: var(--serif); font-size: 0.8rem;
  line-height: 1.7; color: var(--muted);
}

/* Portfolio Grid */
#portfolio { border-top: 1px solid var(--border); }
.portfolio-header {
  padding: 60px 48px 40px;
  max-width: 1300px; margin: 0 auto;
}
.portfolio-header .eyebrow {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.portfolio-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; color: var(--white);
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.portfolio-tile {
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; aspect-ratio: 16/10;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; cursor: default; transition: background 0.3s;
}
.portfolio-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.3;
}
.portfolio-tile:hover { background: rgba(255,255,255,0.02); }
.portfolio-tile:nth-child(1) { background: #120808; }
.portfolio-tile:nth-child(2) { background: #0a0a12; }
.portfolio-tile:nth-child(3) { background: #0a0d0a; }
.portfolio-tile:nth-child(4) { background: #100a0e; }
.portfolio-tile:nth-child(5) { background: #0c0a08; }
.portfolio-tile:nth-child(6) { background: #08090d; }
.portfolio-tile-sector {
  font-family: var(--body); font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); opacity: 0.7;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.portfolio-tile-name {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); position: relative; z-index: 1;
}
.portfolio-tile-label {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--body); font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.1); z-index: 1;
}

/* CTA Section */
#cta {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.cta-left {
  background: var(--red); padding: 80px 56px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 28px;
}
.cta-left h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  text-transform: uppercase; color: var(--white); line-height: 0.9;
}
.cta-left p {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.8); max-width: 420px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  width: fit-content; margin-top: 8px;
}
.cta-btn-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s;
}
.cta-btn:hover .cta-btn-arrow { background: var(--white); color: var(--red); }
.cta-right {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.cta-right h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.cta-step {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cta-step:first-of-type { border-top: 1px solid var(--border); }
.cta-step-num {
  font-family: var(--display); font-weight: 900;
  font-size: 1.6rem; color: var(--red); opacity: 0.4; min-width: 32px;
}
.cta-step-text {
  font-family: var(--serif); font-size: 0.88rem;
  line-height: 1.6; color: var(--muted);
}

/* Disclaimer */
#disclaimer {
  border-top: 1px solid var(--border);
  padding: 48px; max-width: 1300px; margin: 0 auto;
}
.disclaimer-text {
  font-family: var(--body); font-size: 0.62rem;
  line-height: 1.8; color: rgba(255,255,255,0.2); max-width: 900px;
}
.disclaimer-text strong { color: rgba(255,255,255,0.3); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   PAGE: STORIES LISTING (04-stories-listing.html)
═══════════════════════════════════════════════════ */

/* Stories hero */
.stories-hero {
  padding: 180px 48px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.stories-hero::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stories-hero .hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white); margin-bottom: 24px;
  opacity: 0; animation: slideUpXs 1s ease 0.1s forwards;
}
.stories-hero .hero-title span { color: var(--red); }
.hero-desc {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75; color: var(--muted); max-width: 640px;
  opacity: 0; animation: fadeIn 0.8s ease 0.5s forwards;
}

/* Filter bar */
.filter-bar {
  padding: 20px 48px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 24px; overflow-x: auto;
}
.filter-btn {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: none;
  border: 1px solid transparent; padding: 8px 16px;
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.12); }
.filter-btn.active { color: var(--white); border-color: var(--red); background: rgba(178,34,34,0.08); }

/* Featured post */
#featured { border-bottom: 1px solid var(--border); }
.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr; min-height: 480px;
}
.featured-image {
  background: var(--charcoal); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.featured-image-label {
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12); z-index: 1;
}
.featured-content {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-category {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.featured-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 1.05; color: var(--white); margin-bottom: 18px;
  transition: color 0.2s;
}
.featured-card:hover .featured-title { color: var(--red); }
.featured-excerpt {
  font-family: var(--serif); font-size: 0.9rem;
  line-height: 1.75; color: var(--muted);
  max-width: 480px; margin-bottom: 24px;
}
.featured-meta { display: flex; align-items: center; gap: 20px; }
.featured-date {
  font-family: var(--body); font-size: 0.6rem;
  color: var(--slate); letter-spacing: 0.08em;
}
.featured-read {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.featured-read-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: all 0.25s;
}
.featured-card:hover .featured-read-arrow { background: var(--red); border-color: var(--red); }

/* Post Grid */
#posts { padding: 0; }
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.post-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; transition: background 0.3s; cursor: pointer;
}
.post-card:hover { background: rgba(255,255,255,0.015); }
.post-card:hover .post-card-title { color: var(--red); }
.post-card:hover .post-card-arrow { background: var(--red); border-color: var(--red); }
.post-card-image {
  aspect-ratio: 16/10; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.post-card-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.4;
}
.post-card-image-label {
  font-family: var(--body); font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.1); z-index: 1;
}
.post-card:nth-child(2n) .post-card-image { background: #1a1a20; }
.post-card:nth-child(3n) .post-card-image { background: #1a1818; }
.post-card:nth-child(5n) .post-card-image { background: #18191a; }
.post-card-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.post-card-category {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.post-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.15; flex: 1; transition: color 0.2s;
}
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.post-card-date {
  font-family: var(--body); font-size: 0.58rem;
  color: var(--slate); letter-spacing: 0.06em;
}
.post-card-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; transition: all 0.25s;
}
.load-more {
  padding: 48px; text-align: center;
  border-top: 1px solid var(--border);
}
.load-more-btn {
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 36px; cursor: pointer; transition: all 0.3s;
}
.load-more-btn:hover { background: var(--red); border-color: var(--red); }

/* ═══════════════════════════════════════════════════
   PAGE: STORY POST (05-story-post.html)
═══════════════════════════════════════════════════ */

.post-hero {
  padding: 180px 48px 0;
  max-width: 860px; margin: 0 auto;
}
.post-hero-back {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px; transition: color 0.2s;
  opacity: 0; animation: fadeIn 0.6s ease 0.1s forwards;
}
.post-hero-back:hover { color: var(--red); }
.post-hero-category {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  opacity: 0; animation: fadeIn 0.6s ease 0.2s forwards;
}
.post-hero-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 0.95; color: var(--white); margin-bottom: 24px;
  opacity: 0; animation: slideUpXs 0.8s ease 0.15s forwards;
}
.post-hero-excerpt {
  font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.75; color: var(--muted); margin-bottom: 28px;
  opacity: 0; animation: fadeIn 0.8s ease 0.4s forwards;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 20px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
  opacity: 0; animation: fadeIn 0.8s ease 0.5s forwards;
}
.post-hero-author {
  font-family: var(--body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
.post-hero-date {
  font-family: var(--body); font-size: 0.62rem;
  color: var(--slate); letter-spacing: 0.08em;
}
.post-hero-read-time {
  font-family: var(--body); font-size: 0.62rem;
  color: var(--slate); letter-spacing: 0.08em;
}
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate); }

.post-image {
  max-width: 960px; margin: 0 auto; padding: 40px 48px;
}
.post-image-container {
  aspect-ratio: 16/8; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.post-image-container::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.post-image-label {
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12); z-index: 1;
}

.post-body {
  max-width: 720px; margin: 0 auto; padding: 0 48px 80px;
}
.post-body p {
  font-family: var(--serif); font-size: 1.02rem;
  line-height: 1.85; color: rgba(255,255,255,0.7); margin-bottom: 28px;
}
.post-body p:first-child::first-letter {
  font-family: var(--display); font-size: 3.5rem;
  font-weight: 900; color: var(--red);
  float: left; line-height: 0.8;
  margin-right: 10px; margin-top: 6px;
}
.post-body h2 {
  font-family: var(--display); font-weight: 800;
  font-size: 1.6rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  margin: 48px 0 20px; line-height: 1.1;
}
.post-body blockquote {
  border-left: 3px solid var(--red); padding-left: 24px;
  margin: 36px 0; font-family: var(--serif);
  font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--white);
}
.post-body .pullquote {
  text-align: center; padding: 48px 0; margin: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.post-body .pullquote p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; line-height: 1.65;
  color: var(--white); margin-bottom: 12px;
}
.post-body .pullquote p::first-letter {
  font-size: inherit; float: none; margin: 0; color: inherit;
}
.post-body .pullquote cite {
  font-family: var(--body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); font-style: normal;
}

.post-share {
  max-width: 720px; margin: 0 auto;
  padding: 32px 48px 48px;
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--border);
}
.post-share-label {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}
.post-share-btn {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; transition: all 0.25s;
}
.post-share-btn:hover { color: var(--white); border-color: var(--red); }

.related {
  border-top: 1px solid var(--border);
  padding: 48px; max-width: 1300px; margin: 0 auto;
}
.related-header {
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--border);
}
.related-card {
  padding: 28px 24px; border-right: 1px solid var(--border);
  text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.25s;
}
.related-card:last-child { border-right: none; }
.related-card:hover { background: rgba(255,255,255,0.015); }
.related-card:hover .related-title { color: var(--red); }
.related-cat {
  font-family: var(--body); font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
}
.related-title {
  font-family: var(--display); font-weight: 700;
  font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.15; transition: color 0.2s;
}
.related-date {
  font-family: var(--body); font-size: 0.52rem;
  color: var(--slate); margin-top: auto;
}

/* ═══════════════════════════════════════════════════
   IMPACT PAGE
═══════════════════════════════════════════════════ */

/* Shared: section-title (reusable across impact sections) */
.section-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase; color: var(--white);
  line-height: 0.92; letter-spacing: -0.01em; margin-bottom: 24px;
}

/* Impact Hero */
.impact-hero {
  align-items: flex-end; justify-content: flex-end;
  min-height: 100vh; padding: 0;
}
.impact-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--charcoal);
}
.impact-hero .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(13,13,13,0.6) 40%, rgba(13,13,13,0.2) 100%);
}
.hero-bg-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.08);
}
.impact-hero .hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 80px; width: 100%;
}
.impact-hero .hero-title {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--white); margin-bottom: 28px;
}
.impact-hero .hero-title .accent { color: var(--red); }
.impact-hero .hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.9;
  color: rgba(255,255,255,0.6); max-width: 580px;
}

/* Mosaic Grid */
#mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  border-top: 1px solid var(--border);
}
.mosaic-cell {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
  display: flex; align-items: flex-end;
}
.mosaic-cell::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 60%);
  z-index: 1;
}
.mosaic-cell:nth-child(2n) { background: #1a1a20; }
.mosaic-cell:nth-child(3n) { background: #1a1818; }
.mosaic-cell:nth-child(5n) { background: #18191a; }
.mosaic-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.mosaic-cell-content { position: relative; z-index: 2; padding: 28px; }
.mosaic-cell-label {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.mosaic-cell-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--white); line-height: 1.15;
}
.mosaic-placeholder {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--body); font-size: 0.4rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.06);
}

/* Position (split) */
#position {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.position-left {
  background: var(--red);
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.position-left h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-transform: uppercase; color: var(--white); line-height: 0.92;
}
.position-left p {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(255,255,255,0.8); max-width: 460px;
}
.position-right {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 0;
}

/* Architecture (2 panels) */
#architecture {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.arch-panel {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 20px;
  border-right: 1px solid var(--border);
}
.arch-panel:last-child { border-right: none; }
.arch-panel h3 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase; color: var(--white); line-height: 0.95;
}
.arch-panel p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 440px;
}
.arch-label {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-top: 8px; line-height: 2;
}

/* Icons of Impact */
#icons { border-top: 1px solid var(--border); }
.icons-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.icons-visual {
  background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.icons-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.icons-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 1;
}
.icons-visual-placeholder {
  font-family: var(--body); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.08); z-index: 1;
}
.icons-content {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.icons-content p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 480px;
}
.stat-bar {
  display: flex; gap: 0; margin-top: 24px;
  border: 1px solid var(--border);
}
.stat-item {
  flex: 1; padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--display); font-weight: 900;
  font-size: 1.5rem; color: var(--red); line-height: 1;
}
.stat-label {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.stat-context {
  font-family: var(--body); font-size: 0.6rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); padding: 12px 0 0;
}
.icons-partners {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.partner-cell {
  aspect-ratio: 1/1; background: var(--charcoal);
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.partner-cell:last-child { border-right: none; }
.partner-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 50%);
}
.partner-cell:nth-child(2n) { background: #1a1a20; }
.partner-cell:nth-child(3n) { background: #1a1818; }
.partner-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.partner-cell-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-family: var(--display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.partner-placeholder {
  font-family: var(--body); font-size: 0.4rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.06);
}

/* Partnerships */
#partnerships {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.partnerships-header { max-width: 700px; margin-bottom: 56px; }
.partnerships-header p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-top: 16px;
}
.partnerships-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.partnership-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s;
}
.partnership-card:hover { background: rgba(255,255,255,0.02); }
.partnership-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 900;
  font-size: 1rem; color: var(--red);
}
.partnership-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.partnership-card-desc {
  font-family: var(--body); font-size: 0.85rem; line-height: 1.7;
  color: var(--muted);
}

/* PME (Philanthropic Media Engine) */
#pme {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.pme-content {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.pme-content p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 480px;
}
.pme-flow {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 0;
}
.pme-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.pme-step:first-child { border-top: 1px solid var(--border); }
.pme-step-num {
  font-family: var(--display); font-weight: 900;
  font-size: 1.6rem; color: var(--red); line-height: 1;
}
.pme-step-body { display: flex; flex-direction: column; gap: 4px; }
.pme-step-title {
  font-family: var(--display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.pme-step-desc {
  font-family: var(--body); font-size: 0.82rem; line-height: 1.6;
  color: var(--muted);
}

/* DAF Flow */
#daf {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.daf-header { max-width: 700px; margin-bottom: 56px; }
.daf-header p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-top: 16px;
}
.daf-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.daf-step {
  padding: 40px 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.daf-step::after {
  content: ''; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); z-index: 2;
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid var(--red);
}
.daf-step:last-child::after { display: none; }
.daf-step-num {
  font-family: var(--display); font-weight: 900;
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--red);
}
.daf-step-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.daf-step-desc {
  font-family: var(--body); font-size: 0.8rem; line-height: 1.6;
  color: var(--muted);
}

/* Impact Stories */
#impact-stories { border-top: 1px solid var(--border); }
.stories-header {
  padding: 48px 48px 28px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.stories-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase; color: var(--white); letter-spacing: 0.01em;
}
.stories-header a {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.25s;
}
.stories-header a:hover { color: var(--red); }
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.story-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; transition: background 0.3s; cursor: pointer;
}
.story-card:hover { background: rgba(255,255,255,0.015); }
.story-card:hover .story-card-title { color: var(--red); }
.story-card:hover .story-card-arrow { background: var(--red); border-color: var(--red); }
.story-card-image {
  aspect-ratio: 16/10; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.story-card-image::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.4;
}
.story-card-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.story-card-image-label {
  font-family: var(--body); font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.1); z-index: 1;
}
.story-card:nth-child(2n) .story-card-image { background: #1a1a20; }
.story-card:nth-child(3n) .story-card-image { background: #1a1818; }
.story-card-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.story-card-category {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.story-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.15; flex: 1; transition: color 0.2s;
}
.story-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.story-card-date {
  font-family: var(--body); font-size: 0.58rem;
  color: var(--slate); letter-spacing: 0.06em;
}
.story-card-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; transition: all 0.25s;
}

/* ═══════════════════════════════════════════════════
   PRESS PAGE
═══════════════════════════════════════════════════ */

/* Press Hero */
.press-hero {
  padding: 200px 48px 100px;
  border-bottom: 1px solid var(--border);
  position: relative; min-height: auto;
  height: auto; overflow: hidden;
  display: block;
}
.press-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.press-hero .hero-title {
  font-size: clamp(4rem, 8vw, 7.5rem);
  margin-bottom: 0;
}
.hero-title-outline {
  display: block; color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.18);
}
.hero-right { opacity: 0; animation: fadeIn 0.8s ease 0.6s forwards; }
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.9;
  color: rgba(255,255,255,0.55); margin-bottom: 28px;
}
.hero-titles { display: flex; flex-direction: column; gap: 6px; }
.hero-title-item {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); line-height: 1.6;
}

/* Bio Split */
#bio {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 400px 1fr; min-height: 0;
}
.headshot-panel {
  background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; padding: 60px 40px;
  border-right: 1px solid var(--border);
}
.headshot-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
}
.headshot-img {
  width: 220px; max-height: 280px;
  object-fit: cover; z-index: 1;
  border: 1px solid var(--border);
}
.headshot-box {
  width: 220px; height: 280px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.08); z-index: 1; background: rgba(0,0,0,0.2);
}
.headshot-download {
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.25s; z-index: 1;
}
.headshot-download:hover {
  color: var(--white); border-color: var(--red);
  background: rgba(178,34,34,0.08);
}
.bio-content {
  padding: 60px 56px;
  display: flex; flex-direction: column; gap: 16px;
}
.bio-content .bio-short {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,0.6);
}
.bio-content p {
  font-family: var(--body); font-size: 0.9rem;
  line-height: 1.8; color: rgba(255,255,255,0.45);
}

/* At A Glance */
#glance {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.glance-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.glance-card:last-child { border-right: none; }
.glance-value {
  font-family: var(--display); font-weight: 900;
  font-size: 2rem; color: var(--red); line-height: 1;
}
.glance-label {
  font-family: var(--body); font-size: 0.75rem;
  line-height: 1.55; color: var(--muted);
}

/* Gallery Carousel */
#gallery {
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.gallery-header {
  padding: 0 48px 36px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.gallery-header h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase; color: var(--white); letter-spacing: 0.01em;
}
.gallery-controls { display: flex; gap: 8px; }
.gallery-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: none; color: var(--white); font-size: 1rem;
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-btn:hover { background: var(--red); border-color: var(--red); }
.gallery-track-wrapper { overflow: hidden; position: relative; }
.gallery-track {
  display: flex; gap: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 33.333%; aspect-ratio: 3/2;
  background: var(--charcoal);
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.gallery-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 40%);
}
.gallery-slide:nth-child(2n) { background: #1a1a20; }
.gallery-slide:nth-child(3n) { background: #1a1818; }
.gallery-slide:nth-child(5n) { background: #18191a; }
.gallery-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.gallery-slide-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gallery-slide-placeholder {
  font-family: var(--body); font-size: 0.4rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.06);
}
.gallery-dots {
  padding: 24px 48px;
  display: flex; gap: 8px; justify-content: center;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  cursor: pointer; transition: background 0.25s;
  border: none;
}
.gallery-dot.active { background: var(--red); }

/* Speaking Topics */
#speaking {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.speaking-left {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.speaking-left p {
  font-family: var(--body); font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 440px;
}
.speaking-right {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 0;
}
.topic-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  transition: border-color 0.25s;
}
.topic-row:first-child { border-top: 1px solid var(--border); }
.topic-row:hover { border-bottom-color: rgba(178,34,34,0.4); }
.topic-label {
  font-family: var(--display); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.topic-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); transition: background 0.25s;
}
.topic-row:hover .topic-dot { background: var(--red); }

/* Featured Episodes Grid */
#featured-episodes { border-top: 1px solid var(--border); }
.episodes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}
.episode-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; transition: background 0.3s; cursor: pointer;
}
.episode-card:hover { background: rgba(255,255,255,0.015); }
.episode-card:hover .episode-card-title { color: var(--red); }
.episode-card:hover .episode-card-arrow { background: var(--red); border-color: var(--red); }
.episode-card-thumb {
  aspect-ratio: 16/9; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.episode-card-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent);
  opacity: 0.4;
}
.episode-card-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.episode-card:nth-child(2n) .episode-card-thumb { background: #1a1a20; }
.episode-card:nth-child(3n) .episode-card-thumb { background: #1a1818; }
.episode-card-play {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: all 0.3s;
}
.episode-card:hover .episode-card-play {
  border-color: var(--red); background: rgba(178,34,34,0.2);
}
.episode-card-play svg { width: 18px; height: 18px; }
.episode-card-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.episode-card-num {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.episode-card-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.15; flex: 1; transition: color 0.2s;
}
.episode-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.episode-card-date {
  font-family: var(--body); font-size: 0.55rem;
  color: var(--slate); letter-spacing: 0.06em;
}
.episode-card-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.7rem; transition: all 0.25s;
}

/* Press Features */
#features {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 48px;
}
.feature-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.02); }
.feature-outlet {
  font-family: var(--body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.feature-title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--white); line-height: 1.15;
}
.feature-desc {
  font-family: var(--body); font-size: 0.82rem;
  line-height: 1.6; color: var(--muted);
}
.feature-placeholder {
  font-family: var(--body); font-size: 0.58rem;
  color: var(--slate); font-style: italic;
  margin-top: auto; padding-top: 8px;
}

/* Downloadable Assets */
#assets {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.asset-card {
  padding: 48px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
  transition: background 0.3s; cursor: pointer; text-decoration: none;
}
.asset-card:last-child { border-right: none; }
.asset-card:hover { background: rgba(255,255,255,0.02); }
.asset-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--red); transition: all 0.3s;
}
.asset-card:hover .asset-icon { background: var(--red); color: var(--white); }
.asset-name {
  font-family: var(--display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white);
}
.asset-format {
  font-family: var(--body); font-size: 0.55rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}

/* Press Contact */
#contact {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left {
  background: var(--red); padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.contact-left h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-transform: uppercase; color: var(--white); line-height: 0.92;
}
.contact-left p {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(255,255,255,0.8); max-width: 420px;
}
.contact-right {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label {
  font-family: var(--body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}
.contact-item-value {
  font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--white);
}
.contact-item-note {
  font-family: var(--body); font-size: 0.78rem;
  color: var(--slate); line-height: 1.5; margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 960px breakpoint
═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Nav */
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-enquire { display: none; }
  .nav-back { display: none; }
  .nav-hamburger { display: flex; }

  /* Homepage hero */
  #hero { height: 100vh; padding-top: 70px; padding-bottom: 50px; }
  .hero-name { padding: 0 20px; }
  .hero-tagline { padding: 16px 24px; }
  .hero-video-container { aspect-ratio: 16/9; }

  /* Podcast spotlight */
  #podcast { grid-template-columns: 1fr; }
  .podcast-visual { min-height: 360px; }
  .podcast-content { padding: 56px 28px; }

  /* Intro */
  #intro { padding: 64px 24px; }

  /* Ventures */
  .ventures-grid { grid-template-columns: 1fr 1fr; }
  .venture-tile:nth-child(5),
  .venture-tile:nth-child(6) { border-bottom: 1px solid var(--border); }

  /* Timeline */
  #timeline { padding: 64px 24px; }
  .timeline-entry { grid-template-columns: 80px 1px 1fr; gap: 0 20px; }
  .timeline-year { font-size: 2rem; }

  /* Photo strip */
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip-slot:nth-child(1),
  .photo-strip-slot:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* Principles */
  #principles { padding: 64px 24px; }
  .principles-grid { grid-template-columns: 1fr; }

  /* Impact */
  #impact { grid-template-columns: 1fr; }
  .impact-left { padding: 56px 28px; }
  .impact-right { padding: 56px 28px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }
  .news-header { padding: 48px 24px 28px; }

  /* Thesis */
  #thesis { padding: 64px 24px; }

  /* Footer */
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }

  /* Podcast page */
  .page-hero { padding: 100px 24px 56px; }
  #about { padding: 56px 24px; grid-template-columns: 1fr; gap: 40px; }
  .guest-grid-row { grid-template-columns: repeat(3, 1fr); }
  #episodes { padding: 56px 24px; }
  .episode-card { grid-template-columns: 1fr; gap: 20px; }
  .episode-thumb { max-width: 360px; }
  #subscribe { padding: 56px 24px; }
  #clip { grid-template-columns: 1fr; }
  .clip-content { padding: 40px 24px; }

  /* Family Circle page */
  .fc-hero { padding: 100px 24px 48px; }
  #thesis.fc-thesis { padding: 56px 24px; }
  .thesis-content { grid-template-columns: 1fr; gap: 40px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sectors-header { padding: 48px 24px 28px; }
  #story { padding: 56px 24px; }
  .story-block { grid-template-columns: 1fr; gap: 8px; }
  #circle { padding: 56px 24px; }
  .circle-attributes { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-header { padding: 48px 24px 28px; }
  #cta { grid-template-columns: 1fr; }
  .cta-left { padding: 56px 28px; }
  .cta-right { padding: 56px 28px; }
  #disclaimer { padding: 32px 24px; }

  /* Impact page */
  .impact-hero .hero-content { padding: 0 24px 56px; }
  #mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  #position { grid-template-columns: 1fr; }
  .position-left { padding: 56px 28px; }
  .position-right { padding: 56px 28px; }
  #architecture { grid-template-columns: 1fr; }
  .arch-panel { padding: 56px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .icons-hero { grid-template-columns: 1fr; }
  .icons-visual { min-height: 400px; }
  .icons-content { padding: 56px 28px; }
  .stat-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .icons-partners { grid-template-columns: 1fr 1fr; }
  .partner-cell:nth-child(2) { border-right: none; }
  #partnerships { padding: 64px 24px; }
  .partnerships-grid { grid-template-columns: 1fr; }
  #pme { grid-template-columns: 1fr; }
  .pme-content { padding: 56px 28px; }
  .pme-flow { padding: 0 28px 56px; }
  #daf { padding: 64px 24px; }
  .daf-flow { grid-template-columns: 1fr 1fr; }
  .daf-step::after { display: none; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .stories-header { padding: 36px 24px 20px; }
  #impact-stories .stories-header { padding: 36px 24px 20px; }

  /* Press page */
  .press-hero { padding: 140px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  #bio { grid-template-columns: 1fr; }
  .headshot-panel { padding: 48px 28px; min-height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .headshot-box { width: 180px; height: 220px; }
  .headshot-img { width: 180px; max-height: 220px; }
  .bio-content { padding: 48px 28px; }
  #glance { grid-template-columns: 1fr 1fr; }
  .glance-card { border-bottom: 1px solid var(--border); }
  .glance-card:nth-child(2n) { border-right: none; }
  .gallery-slide { flex: 0 0 50%; }
  .gallery-header { padding: 0 24px 28px; }
  #gallery { padding: 64px 0 0; }
  .gallery-dots { padding: 20px 24px; }
  #speaking { grid-template-columns: 1fr; }
  .speaking-left { padding: 56px 28px; }
  .speaking-right { padding: 0 28px 56px; }
  .episodes-grid { grid-template-columns: 1fr 1fr; }
  .episodes-header { padding: 36px 24px 20px; }
  #features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  #assets { grid-template-columns: repeat(3, 1fr); }
  .asset-card:nth-child(3) { border-right: none; }
  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 56px 28px; }
  .contact-right { padding: 56px 28px; }

  /* Stories listing */
  .stories-hero { padding: 140px 24px 48px; }
  .filter-bar { padding: 16px 24px; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 280px; }
  .featured-content { padding: 36px 24px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }

  /* Content footer */
  .cf-podcast { grid-template-columns: 1fr; }
  .cf-podcast-art { width: 100%; aspect-ratio: 3/1; border-right: none; border-bottom: 1px solid var(--border); }
  .cf-podcast-body { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .cf-stories { padding: 28px 24px; }
  .cf-stories-grid { grid-template-columns: 1fr 1fr; }
  .cf-story-card:nth-child(2) { border-right: none; }
  .cf-story-card:nth-child(1),
  .cf-story-card:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* Story post */
  .post-hero { padding: 140px 24px 0; }
  .post-image { padding: 28px 24px; }
  .post-body { padding: 0 24px 56px; }
  .post-share { padding: 24px 24px 36px; }
  .related { padding: 36px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { border-right: none; border-bottom: 1px solid var(--border); }
  .related-card:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 640px breakpoint
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Homepage */
  .ventures-grid { grid-template-columns: 1fr; }
  .venture-tile:nth-child(n) { border-bottom: 1px solid var(--border); }
  .venture-tile:last-child { border-bottom: none; }
  .hero-photo { width: clamp(180px, 55vw, 280px); }

  /* Podcast page */
  .guest-grid-row { grid-template-columns: repeat(3, 1fr); }
  .subscribe-platforms { gap: 12px; }
  .subscribe-link { font-size: 0.85rem; padding: 12px 20px; }

  /* Family Circle */
  .sectors-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Impact page */
  .impact-hero { min-height: 80vh; }
  .impact-hero .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  #mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .stat-bar { flex-direction: column; }
  .stat-item { flex: auto; }
  .icons-visual { min-height: 320px; }
  .icons-partners { grid-template-columns: 1fr 1fr; }
  .daf-flow { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }

  /* Press page */
  .press-hero .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  #glance { grid-template-columns: 1fr; }
  .glance-card { border-right: none; }
  .gallery-slide { flex: 0 0 100%; }
  .episodes-grid { grid-template-columns: 1fr; }
  #assets { grid-template-columns: 1fr 1fr; }
  .asset-card { border-bottom: 1px solid var(--border); }

  /* Stories listing */
  .posts-grid { grid-template-columns: 1fr; }

  /* Content footer */
  .cf-stories-grid { grid-template-columns: 1fr; }
  .cf-story-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .cf-story-card:last-child { border-bottom: none; }
}
