/* =============================================
   MARCH OR DIE — Theme Styles
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal !important;
}
html { scroll-behavior: smooth; }
body {
  background: #0d0d0d;
  color: #f0ede8;
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── ACCESSIBILITY: Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 0 0 4px 4px;
  z-index: 10000; transition: top 0.15s;
}
.skip-link:focus {
  top: 0; outline: none;
}

/* ── ACCESSIBILITY: Keyboard Focus Indicators ── */
*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.btn-primary:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 2px;
}

:root {
  --black:      #0d0d0d;
  --dark:       #141414;
  --surface:    #1e1e1e;
  --border:     #2a2a2a;
  --gray:       #888;
  --gray-light: #bbb;
  --off-white:  #f0ede8;
  --white:      #ffffff;
  --orange:     #c85418;
  --orange-h:   #e06020;
  --bm-body:    #dfc0b4;
  --bm-muted:   #a68b80;
  --bm-outline: #584239;

  /* Content Hub design tokens */
  --ch-bg:          #131313;
  --ch-surface:     #1c1b1b;
  --ch-surface-alt: #201f1f;
  --ch-border:      #2a2a2a;
  --ch-accent:      #e96c30;
  --ch-accent-dark: #5b1b00;
  --ch-accent-mid:  #f95e14;
  --ch-text:        #e5e2e1;
  --ch-body:        #e3bfb2;
  --ch-muted:       #78716c;
  --ch-light:       #a8a29e;
  --ch-warm:        #fed7aa;
  --ch-warm-light:  #ffb59a;
  --ch-warm-border: rgba(90,65,56,0.3);
  --ch-max-width:   1536px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; transition: background 0.2s; cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--orange-h); }
.btn-outline {
  display: inline-block; background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--off-white);
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 3px; transition: border-color 0.2s, color 0.2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.eyebrow {
  font-family: 'Oxanium', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 5px;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(13,13,13,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 40px; max-width: 1200px; margin: 0 auto;
}
.nav-logo img,
.nav-logo .nav-logo-img { height: 48px !important; width: auto !important; max-height: 48px !important; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light); transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* Nav Dropdowns */
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links .sub-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 220px; padding: 12px 0; margin: 12px 0 0 0;
  background: rgba(28,27,27,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(90,65,56,0.25); border-radius: 4px;
  list-style: none; z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-links .sub-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-links > li:hover > .sub-menu { display: block; }
.nav-links .sub-menu,
.nav-links .sub-menu li { padding-left: 0; margin-left: 0; list-style: none; list-style-type: none; }
.nav-links .sub-menu li { padding: 0; }
.nav-links .sub-menu a {
  display: block; padding: 10px 24px;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--gray-light); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-links .sub-menu a:hover {
  color: #fff; background: rgba(233,108,48,0.1);
}

.nav-cta { display: flex; align-items: center; gap: 20px; margin-left: 36px; }
.nav-yt {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); transition: color 0.2s;
}
.nav-yt:hover { color: #fff; }
.yt-icon {
  width: 22px; height: 16px; background: #ff0000; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.yt-icon::after {
  content: ''; border-left: 7px solid #fff;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent; margin-left: 2px;
}
.nav-join {
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 3px; transition: background 0.2s;
}
.nav-join:hover { background: var(--orange-h); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--off-white);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* ── CONTENT HUB NAV ── */
.ch-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(12,10,9,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(67,20,7,0.1);
}
.ch-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--ch-max-width); margin: 0 auto;
  padding: 16px 32px;
}
.ch-nav-logo {
  font-family: 'Oxanium', sans-serif; font-weight: 700;
  font-size: 24px; letter-spacing: -1.2px; text-transform: uppercase;
  color: var(--ch-warm);
}
.ch-nav-center {
  display: flex; align-items: center; gap: 32px;
}
.ch-nav-link {
  font-family: 'Oxanium', sans-serif; font-size: 16px; font-weight: 400;
  color: var(--ch-light); transition: color 0.2s;
}
.ch-nav-link:hover { color: var(--ch-warm); }
.ch-nav-link--active {
  font-weight: 700; color: #fdba74;
  border-bottom: 2px solid #fdba74; padding-bottom: 6px;
}
.ch-nav-search {
  position: relative; width: 256px;
}
.ch-nav-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--ch-muted); pointer-events: none;
}
.ch-nav-search-input {
  width: 100%; background: var(--ch-surface-alt); border: none;
  border-radius: 2px; padding: 9px 16px 10px 40px;
  font-family: 'Oxanium', sans-serif; font-size: 14px;
  color: var(--ch-text); outline: none;
}
.ch-nav-search-input::placeholder { color: #6b7280; }
.ch-nav-right { display: flex; align-items: center; }
.ch-nav-user { color: var(--ch-light); transition: color 0.2s; }
.ch-nav-user:hover { color: var(--ch-warm); }
.ch-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.ch-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ch-text); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 40px 32px 32px;
  background: var(--black);
}
/* Default radial glow (no media) */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(200,84,24,0.11) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero background video */
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
/* Hide hero video on mobile to improve LCP and save bandwidth */
@media (max-width: 768px) {
  .hero-bg-video--desktop-only { display: none; }
}
/* When media is present, disable the default radial glow */
.hero--has-media::after { display: none; }

.hero-content { position: relative; z-index: 2; max-width: 840px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Oxanium', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--orange); margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--orange); opacity: 0.6;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 9vw, 108px);
  letter-spacing: 0.04em; line-height: 0.95; color: #fff; margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--orange); }
.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 44px; line-height: 1.7;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px;
}
.hero-mission {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-mission::before, .hero-mission::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gray); opacity: 0.4;
}

/* ── MISSION STRIP ── */
.mission-strip { background: var(--orange); padding: 18px 32px; text-align: center; }
.mission-strip p {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
}
.mission-strip a { text-decoration: underline; text-underline-offset: 3px; opacity: 0.85; }
.mission-strip a:hover { opacity: 1; }

/* ── LATEST EPISODE ── */
.latest-ep { padding: 40px 40px; position: relative; }
.latest-ep-inner { max-width: 1100px; margin: 0 auto; }
.ep-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.ep-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em; color: #fff; line-height: 1;
}
.ep-sub { font-size: 18px; color: var(--gray); margin-top: 8px; }
.yt-sub-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ff0000; color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 3px; white-space: nowrap; transition: background 0.2s;
}
.yt-sub-btn:hover { background: #cc0000; }
.video-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 6px; overflow: hidden;
  background: #111; border: 1px solid var(--border);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.play-mock {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,84,24,0.12); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.play-mock::after {
  content: ''; border-left: 28px solid var(--orange);
  border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px;
}
.video-placeholder p {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray);
}

/* ── EPISODE GRID ── */
.ep-grid-section { padding: 0 40px 40px; position: relative; }
.ep-grid-inner { max-width: 1100px; margin: 0 auto; }
.ep-grid-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.ep-grid-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.view-all {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); transition: opacity 0.2s;
}
.view-all:hover { opacity: 0.7; }
.ep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ep-card {
  background: var(--surface); border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s; cursor: pointer;
}
.ep-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.ep-thumb {
  width: 100%; padding-bottom: 56.25%; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1008, #1e1e1e);
}
.ep-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ep-play-wrap {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.ep-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(200,84,24,0.2); border: 1.5px solid rgba(200,84,24,0.5);
  display: flex; align-items: center; justify-content: center;
}
.ep-play::after {
  content: ''; border-left: 14px solid var(--orange);
  border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px;
}
.ep-info { padding: 18px; }
.ep-meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.ep-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; font-weight: 600;
  color: #fff; letter-spacing: 0.04em; line-height: 1.3; margin-bottom: 8px;
}
.ep-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── LISTEN BAR ── */
.listen-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 40px;
}
.listen-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.listen-label {
  font-family: 'Oxanium', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); white-space: nowrap;
}
.listen-div { width: 1px; height: 20px; background: var(--border); }
.platforms { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.platform {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--border); color: var(--gray-light);
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 3px; transition: background 0.2s, color 0.2s;
}
.platform:hover { background: #333; color: #fff; }
.pdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── MOA / PATREON ── */
.moa { padding: 40px 40px; position: relative; overflow: hidden; background: var(--black); }
.moa::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 60% at 50% 50%, rgba(200,84,24,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.moa-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.moa-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 84px);
  letter-spacing: 0.04em; color: #fff; line-height: 1; margin-bottom: 8px;
}
.moa-title em { font-style: normal; color: var(--orange); }
.moa-sub {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 32px;
}
.moa-body { font-size: 17px; color: var(--gray-light); line-height: 1.85; margin-bottom: 36px; }
.moa-benefits {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 0 auto 44px; max-width: 540px; text-align: left;
}
.moa-benefit {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--off-white);
}
.check {
  width: 22px; height: 22px; background: var(--orange); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 12px; color: #fff; font-weight: 700;
}
.moa-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.moa-fine { font-size: 12px; color: var(--gray); letter-spacing: 0.05em; }

/* ── ABOUT ── */
.about { padding: 40px 40px; background: var(--dark); position: relative; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 4px; object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  height: auto;
}
/* Force aspect ratio from inline style */
.about-img-wrap img[style*="aspect-ratio"] {
  height: unset;
}
.about-img-bar {
  position: absolute; bottom: -14px; left: -14px; right: 40px;
  height: 4px; background: var(--orange); border-radius: 2px;
}
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cred {
  background: var(--surface); border: 1px solid var(--border); color: var(--gray-light);
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 62px);
  letter-spacing: 0.04em; color: #fff; line-height: 1; margin-bottom: 20px;
}
.about-body { font-size: 16px; color: var(--gray-light); line-height: 1.85; margin-bottom: 32px; }
.about-stats { display: flex; gap: 36px; margin-bottom: 32px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 44px;
  letter-spacing: 0.04em; color: var(--orange); line-height: 1;
}
.stat-lbl {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
}

/* ── MEET THE HOSTS ── */
.hosts { padding: 40px 40px; background: var(--dark); position: relative; }
.hosts-inner { max-width: 1160px; margin: 0 auto; }
.hosts-header { text-align: center; margin-bottom: 72px; }
.hosts-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 80px);
  letter-spacing: 0.04em; color: #fff; line-height: 0.95; margin-top: 12px;
}
.hosts-title-accent { color: var(--orange); }
.hosts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.host-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: border-color 0.22s;
}
.host-card:hover { border-color: var(--orange); }
.host-img-wrap { position: relative; overflow: hidden; }
.host-img {
  width: 100%; display: block; object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
  transition: transform 0.4s ease;
}
.host-card:hover .host-img { transform: scale(1.03); }
.host-img--portrait { aspect-ratio: 4/5; }
.host-img--landscape { aspect-ratio: 4/3; }
.host-img-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
}
.host-info { padding: 32px 28px 36px; }
.host-name {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4vw, 50px);
  letter-spacing: 0.04em; color: #fff; line-height: 0.95;
  margin: 16px 0 6px;
}
.host-title-role {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.host-body {
  font-size: 15px; color: var(--gray-light); line-height: 1.8; margin-bottom: 24px;
}
.host-identity { display: flex; flex-wrap: wrap; gap: 8px; }
.identity-tag {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); border: 1px solid var(--orange);
  padding: 5px 12px; border-radius: 2px;
}

/* ── MIGHTY OAKS ── */
.mo { padding: 40px 40px; background: #090909; border-top: 1px solid var(--border); position: relative; }
.mo-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.mo-left { max-width: 560px; }
.mo-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0.04em; color: #fff; line-height: 1.05; margin-bottom: 16px;
}
.mo-title em { font-style: normal; color: var(--orange); }
.mo-body { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.mo-link {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.mo-link:hover { gap: 14px; }
.mo-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.mo-stat { text-align: center; }
.mo-stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  letter-spacing: 0.04em; color: var(--orange); line-height: 1;
}
.mo-stat-lbl {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
  margin-top: 4px; max-width: 110px;
}

/* ── EMAIL ── */
.email-sec {
  padding: 80px 40px; background: var(--surface);
  border-top: 1px solid var(--border); text-align: center;
}
.email-inner { max-width: 540px; margin: 0 auto; }
.email-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  letter-spacing: 0.04em; color: #fff; margin-bottom: 12px; line-height: 1;
}
.email-body { font-size: 15px; color: var(--gray-light); line-height: 1.7; margin-bottom: 32px; }
.email-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.email-input {
  flex: 1; background: var(--border); border: 1px solid #3a3a3a; color: var(--off-white);
  font-family: 'Oxanium', sans-serif; font-size: 14px; padding: 15px 20px;
  border-radius: 3px; outline: none; transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--orange); }
.email-input::placeholder { color: var(--gray); }
.email-btn {
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 3px; border: none; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.email-btn:hover { background: var(--orange-h); }
.email-note { font-size: 11px; color: var(--gray); margin-top: 14px; letter-spacing: 0.05em; }

/* Substack embed */
.substack-embed-wrap {
  max-width: 480px; margin: 0 auto;
}
.substack-embed-wrap iframe {
  max-width: 100%; border-radius: 6px;
}

/* ── FOOTER ── */
.footer { background: #080808; border-top: 1px solid var(--border); }
.footer-main {
  max-width: 1100px; margin: 0 auto; padding: 56px 40px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo-img { height: 52px !important; width: auto !important; max-height: 52px !important; margin-bottom: 16px; opacity: 0.9; }
.footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; max-width: 220px; }
.footer-social { display: flex; gap: 10px; }
.soc {
  width: 36px; height: 36px; border-radius: 3px; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 10px; font-weight: 700;
  color: var(--gray-light); transition: background 0.2s, color 0.2s;
}
.soc:hover { background: var(--orange); color: #fff; }
.footer-col-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; }
.footer-bottom-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-mission-line { font-size: 11px; color: var(--gray); letter-spacing: 0.05em; }
.footer-mission-line a { color: var(--orange); opacity: 0.8; }
.footer-mission-line a:hover { opacity: 1; }
.footer-legal { font-size: 11px; color: #444; }


/* ── Footer: Mighty Oaks Support ── */
.footer-mighty-oaks { border-top: 1px solid var(--border); }
.footer-mighty-oaks-inner {
  max-width: 1100px; margin: 0 auto; padding: 24px 40px;
  display: flex; align-items: center; gap: 20px;
}
.footer-mo-logo {
  height: 28px; width: auto; flex-shrink: 0;
  opacity: 0.25; filter: brightness(0.6) saturate(0);
  transition: opacity 0.3s;
}
.footer-mighty-oaks-inner:hover .footer-mo-logo { opacity: 0.4; }
.footer-mo-text {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-mo-text p {
  font-size: 11px; color: #555; line-height: 1.6; margin: 0;
  letter-spacing: 0.03em;
}
.footer-mo-text strong { color: var(--gray); font-weight: 600; }
.footer-mo-donate {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); opacity: 0.7; transition: opacity 0.2s;
  white-space: nowrap;
}
.footer-mo-donate:hover { opacity: 1; }

/* ── Footer: Contact ── */
.footer-contact { font-size: 11px; color: var(--gray); letter-spacing: 0.05em; }
.footer-contact a { color: var(--orange); opacity: 0.8; }
.footer-contact a:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hosts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* ── Reduce section padding on mobile ── */
  .latest-ep            { padding: 56px 20px; }
  .ep-grid-section      { padding: 0 20px 56px; }
  .moa                  { padding: 56px 20px; }
  .about                { padding: 56px 20px; }
  .hosts                { padding: 56px 20px; }
  .mo                   { padding: 56px 20px; }
  .email-sec            { padding: 56px 20px; }
  .listen-bar           { padding: 18px 20px; }
  .mission-strip        { padding: 14px 20px; }

  .about-inner { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* ── Mobile menu panel ── */
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98); padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 72px); overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active > li > a {
    display: flex; align-items: center;
    padding: 14px 0; min-height: 48px;
  }

  /* ── Submenu: hidden by default ── */
  .nav-links .sub-menu {
    display: none; position: static; transform: none;
    min-width: 0; margin: 0; padding: 0;
    background: transparent; border: none; box-shadow: none;
    backdrop-filter: none; list-style: none;
  }
  .nav-links .sub-menu::before { display: none; }

  /* ── Submenu replaces main menu ── */
  .nav-links.nav-links--submenu > li { display: none; }
  .nav-links.nav-links--submenu > li.menu-item-has-children.sub-open { display: block; }
  .nav-links.nav-links--submenu > li.menu-item-has-children.sub-open > a { display: none; }
  .nav-links.nav-links--submenu > li.menu-item-has-children.sub-open > .sub-menu {
    display: flex; flex-direction: column;
  }
  .nav-links .sub-menu a {
    display: flex; align-items: center;
    padding: 14px 0; min-height: 48px;
  }
  .mo-inner { flex-direction: column; text-align: center; }
  .mo-left { max-width: 100%; }
  .mo-stats { justify-content: center; }
  .moa-benefits { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .footer-mighty-oaks-inner { gap: 16px; }
  .footer-mo-text { flex-direction: column; gap: 8px; }

  /* ── Tighten inner spacing ── */
  .hero-subtitle        { margin-bottom: 28px; }
  .hero-btns            { margin-bottom: 32px; }
  .moa-body             { margin-bottom: 24px; }
  .ep-header            { margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px 48px; min-height: 70vh; }
  .hero-btns { flex-direction: column; align-items: center; }

  /* ── Further tighten on small phones ── */
  .latest-ep            { padding: 40px 16px; }
  .ep-grid-section      { padding: 0 16px 40px; }
  .moa                  { padding: 40px 16px; }
  .about                { padding: 40px 16px; }
  .hosts                { padding: 40px 16px; }
  .mo                   { padding: 40px 16px; }
  .email-sec            { padding: 40px 16px; }
  .listen-bar           { padding: 14px 16px; }
}

/* ── WP ADMIN BAR FIX ── */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ==============================================
   PAGES & BLOG TEMPLATES
   ============================================== */

/* ── PAGE (page.php) ── */
.page-single {
  padding: 120px 40px 80px;
}
.page-single-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-header {
  margin-bottom: 48px;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.page-content {
  color: var(--gray-light);
  line-height: 1.85;
  font-size: 17px;
}
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content h4 { font-size: 18px; }
.page-content p {
  margin-bottom: 20px;
}
.page-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover {
  color: var(--orange-h);
}
.page-content ul,
.page-content ol {
  margin: 16px 0 24px 24px;
}
.page-content li {
  margin-bottom: 8px;
}
.page-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--surface);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--off-white);
}
.page-content img {
  border-radius: 4px;
  margin: 24px 0;
}

/* ── CONTENT HUB FOOTER ── */
.ch-footer {
  background: #0c0a09; border-top: 1px solid rgba(41,37,36,0.3);
  padding: 81px 0 80px; text-align: center;
}
.ch-footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.ch-footer-links {
  display: flex; gap: 48px;
}
.ch-footer-links a {
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ch-muted); transition: color 0.2s;
}
.ch-footer-links a:hover { color: var(--ch-warm); }
.ch-footer-divider {
  width: 48px; height: 1px; background: rgba(253,186,116,0.3);
}
.ch-footer-copy {
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: #57534e;
}

/* ── SINGLE POST (single.php) ── */
.post-single {
  padding: 120px 40px 80px;
}
.post-single-inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-header {
  margin-bottom: 40px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-meta a {
  color: var(--orange);
  transition: color 0.2s;
}
.post-meta a:hover {
  color: var(--orange-h);
}
.meta-sep {
  color: var(--border);
}
.post-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.post-excerpt {
  font-size: 18px;
  color: var(--gray-light);
  margin-top: 16px;
  line-height: 1.7;
}
.post-featured-img {
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
}
.post-featured-img img {
  width: 100%;
  height: auto;
}
.post-content {
  color: var(--gray-light);
  line-height: 1.85;
  font-size: 17px;
}
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 22px; }
.post-content h4 { font-size: 18px; }
.post-content p { margin-bottom: 20px; }
.post-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--orange-h); }
.post-content ul,
.post-content ol {
  margin: 16px 0 24px 24px;
}
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--surface);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--off-white);
}
.post-content img {
  border-radius: 4px;
  margin: 24px 0;
}

/* Post footer */
.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.post-tags {
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--gray);
}
.post-tags a {
  color: var(--orange);
  transition: color 0.2s;
}
.post-tags a:hover { color: var(--orange-h); }
.tag-label {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-right: 4px;
}

/* Post navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  flex: 1;
}
.post-nav-link:hover {
  border-color: var(--orange);
}
.post-nav-next {
  text-align: right;
}
.post-nav-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
}
.post-nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ==============================================
   BLOG HUB — "The Arsenal" listing page
   ============================================== */

.bh-blog-hub {
  padding-top: 0px;
}

/* ── Hero ── */
.bh-hero {
  border-bottom: 1px solid #333;
  padding: 32px 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bh-hero__rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--ch-accent);
}
.bh-hero__label {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ch-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bh-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--off-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.bh-hero__subtitle {
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ch-light);
  line-height: 1.6;
  max-width: 560px;
}

/* ── Filter Bar ── */
.bh-filters {
  display: flex;
  gap: 12px;
  padding: 20px 60px;
  border-bottom: 1px solid #333;
  background: rgba(26, 26, 26, 0.5);
  flex-wrap: wrap;
}
.bh-chip {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ch-light);
  padding: 8px 16px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.bh-chip:hover {
  border-color: var(--ch-accent);
  color: var(--ch-accent);
}
.bh-chip--active {
  background: var(--ch-accent);
  border-color: var(--ch-accent);
  color: #fff;
}
.bh-chip--active:hover {
  color: #fff;
}

/* ── Featured Post ── */
.bh-featured {
  display: flex;
  border-bottom: 1px solid #333;
  padding: 0 31px;
}
.bh-featured__image-link {
  display: block;
  width: 50%;
  flex-shrink: 0;
}
.bh-featured__image {
  width: 100%;
  height: 450px;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.bh-featured__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.bh-featured__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--ch-accent);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  text-transform: uppercase;
}
.bh-featured__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 48px;
}
.bh-featured__cat {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--ch-accent);
}
.bh-featured__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--off-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}
.bh-featured__title a {
  color: inherit;
  transition: color 0.2s;
}
.bh-featured__title a:hover {
  color: var(--ch-accent);
}
.bh-featured__excerpt {
  font-family: 'Oxanium', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ch-light);
  line-height: 1.7;
}
.bh-featured__meta {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--ch-muted);
}
.bh-featured__link {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--ch-accent);
  transition: opacity 0.2s;
}
.bh-featured__link:hover {
  opacity: 0.8;
}

/* ── Posts Section ── */
.bh-posts {
  padding: 20px 60px 72px;
}
.bh-posts__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.bh-posts__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--off-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.bh-posts__rule {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--ch-accent);
}

/* ── Card Grid ── */
.bh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bh-card {
  display: flex;
  flex-direction: column;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.bh-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1f1f1f;
  overflow: hidden;
}
.bh-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.bh-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.bh-card__cat {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--ch-accent);
  text-transform: uppercase;
}
.bh-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--off-white);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.2;
}
.bh-card__excerpt {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-light);
  line-height: 1.6;
}
.bh-card__link {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--ch-accent);
}
.bh-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
}
.bh-card__episode {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ch-muted);
  cursor: pointer;
}
.bh-card__episode-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ch-accent);
}

/* ── Pagination ── */
.bh-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 40px 0 48px;
}
.bh-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-light);
  border: 1px solid #333;
  background: transparent;
  transition: all 0.2s;
}
.bh-page-btn:hover {
  border-color: var(--ch-accent);
  color: var(--ch-accent);
}
.bh-page-btn--active {
  background: var(--ch-accent);
  border-color: var(--ch-accent);
  color: var(--off-white);
  font-weight: 700;
}
.bh-page-btn--active:hover {
  color: var(--off-white);
}

/* ── Newsletter CTA (shared blog hub + single post) ── */
.bh-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 60px;
  background: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.bh-newsletter__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bh-newsletter__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 1.2;
}
.bh-newsletter__desc {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ch-light);
}
.bh-newsletter__form {
  width: 400px;
  flex-shrink: 0;
  overflow: visible;
}
.bh-newsletter__form iframe {
  min-height: 120px;
}


/* ==============================================
   SINGLE BLOG POST — redesigned per Figma
   ============================================== */

.bp-single {
  padding-top: 0px;
}

/* ── Breadcrumb ── */
.bp-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bp-breadcrumb a {
  color: var(--ch-muted);
  transition: color 0.2s;
}
.bp-breadcrumb a:hover {
  color: var(--ch-accent);
}
.bp-breadcrumb__sep {
  color: var(--ch-muted);
}
.bp-breadcrumb__current {
  color: var(--ch-light);
}

/* ── Article Header ── */
.bp-header {
  display: flex;
  justify-content: center;
  padding: 0 60px;
}
.bp-header__inner {
  width: 760px;
  max-width: 100%;
  padding: 56px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bp-header__rule {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ch-accent);
}
.bp-header__cats {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ch-accent);
  text-transform: uppercase;
}
.bp-header__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--off-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.15;
}
.bp-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bp-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.bp-header__meta-text {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-muted);
}
.bp-header__divider {
  width: 100%;
  height: 1px;
  background: #333;
}

/* ── Article Layout (body + sidebar) ── */
.bp-layout {
  display: flex;
  gap: 56px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 60px 60px 100px;
}

/* ── Article Body ── */
.bp-body {
  flex: 1;
  min-width: 0;
  padding-top: 40px;
}
.bp-content {
  color: var(--ch-light);
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.bp-content p {
  margin-bottom: 24px;
}
.bp-content h2,
.bp-content h3,
.bp-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.bp-content h2 { font-size: 32px; }
.bp-content h3 { font-size: 26px; }
.bp-content h4 { font-size: 22px; }
.bp-content a {
  color: var(--ch-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bp-content a:hover {
  color: var(--orange-h);
}
.bp-content ul,
.bp-content ol {
  margin: 16px 0 24px 24px;
}
.bp-content li {
  margin-bottom: 8px;
}
.bp-content blockquote {
  border-left: 3px solid var(--ch-accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(233, 108, 48, 0.04);
  font-style: normal;
  font-size: 18px;
  color: var(--off-white);
  line-height: 1.6;
}
.bp-content blockquote cite {
  display: block;
  margin-top: 8px;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.5px;
  color: var(--ch-accent);
}
.bp-content img {
  border-radius: 4px;
  margin: 24px 0;
}

/* ── Episode Callout ── */
.bp-callout {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 28px;
  margin: 32px 0;
}
.bp-callout__thumb {
  width: 200px;
  height: 113px;
  flex-shrink: 0;
  background: #2a2a2a;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.bp-callout__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-callout__label {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--ch-accent);
  text-transform: uppercase;
}
.bp-callout__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--off-white);
  text-transform: uppercase;
}
.bp-callout__desc {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-muted);
  line-height: 1.6;
}
.bp-callout__btn {
  display: inline-block;
  background: var(--ch-accent);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 10px 22px;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.bp-callout__btn:hover {
  opacity: 0.85;
}

/* ── Tags ── */
/* Author Bio Box */
.bp-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid #222;
  border-left: 3px solid var(--ch-accent, #c8702a);
  background: rgba(255,255,255,0.02);
}
.bp-author__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bp-author__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-author__label {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--ch-accent, #c8702a);
}
.bp-author__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}
.bp-author__role {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  color: var(--gray, #888);
  letter-spacing: 0.5px;
}
.bp-author__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray, #888);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .bp-author { flex-direction: column; align-items: center; text-align: center; }
}

.bp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 32px;
}
.bp-tag {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ch-light);
  border: 1px solid #333;
  padding: 6px 14px;
  transition: all 0.2s;
}
.bp-tag:hover {
  border-color: var(--ch-accent);
  color: var(--ch-accent);
}

/* ── Sidebar ── */
.bp-sidebar {
  width: 280px;
  flex-shrink: 0;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bp-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bp-sidebar__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 1.2;
}
.bp-sidebar__rule {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--ch-accent);
}
.bp-sidebar__rule--center {
  margin: 0 auto;
}
.bp-sidebar__text {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-light);
  line-height: 1.6;
}
.bp-sidebar__link {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--ch-accent);
  transition: opacity 0.2s;
}
.bp-sidebar__link:hover {
  opacity: 0.8;
}

/* ── Related Articles ── */
.bp-related {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  transition: opacity 0.2s;
}
.bp-related:hover {
  opacity: 0.8;
}
.bp-related__thumb {
  width: 80px;
  height: 50px;
  flex-shrink: 0;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
}
.bp-related__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.bp-related__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-related__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 1.2;
}
.bp-related__date {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ch-muted);
}

/* ── Men of Action CTA Box ── */
.bp-sidebar__cta {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.bp-sidebar__cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--off-white);
  text-transform: uppercase;
}
.bp-sidebar__cta-text {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ch-light);
  line-height: 1.6;
}
.bp-sidebar__cta-btn {
  display: inline-block;
  background: var(--ch-accent);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 12px 28px;
  transition: opacity 0.2s;
}
.bp-sidebar__cta-btn:hover {
  opacity: 0.85;
}


/* ── RESPONSIVE: Blog Hub + Single Post ── */
@media (max-width: 1024px) {
  .bh-hero { padding: 24px 32px 24px; }
  .bh-hero__title { font-size: 48px; }
  .bh-filters { padding: 16px 32px; }
  .bh-featured { flex-direction: column; padding: 0; }
  .bh-featured__image-link { width: 100%; }
  .bh-featured__image { height: 300px; }
  .bh-featured__content { width: 100%; padding: 32px; }
  .bh-featured__title { font-size: 32px; }
  .bh-posts { padding: 40px 32px 56px; }
  .bh-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-newsletter { flex-direction: column; gap: 24px; padding: 40px 32px; align-items: flex-start; }
  .bh-newsletter__form { width: 100%; }

  .bp-layout { flex-direction: column; padding: 0 32px 40px; }
  .bp-sidebar { width: 100%; }
  .bp-header { padding: 0 32px; }
  .bp-breadcrumb { padding: 16px 32px; }
  .bp-callout { flex-direction: column; }
  .bp-callout__thumb { width: 100%; height: 180px; }
}

@media (max-width: 640px) {
  .bh-hero { padding: 20px 20px 20px; }
  .bh-hero__title { font-size: 36px; }
  .bh-hero__subtitle { font-size: 14px; }
  .bh-filters { padding: 12px 20px; gap: 8px; }
  .bh-chip { font-size: 10px; padding: 6px 12px; }
  .bh-featured__content { padding: 24px 20px; }
  .bh-featured__title { font-size: 28px; }
  .bh-posts { padding: 32px 20px 48px; }
  .bh-grid { grid-template-columns: 1fr; }
  .bh-newsletter { padding: 32px 20px; }

  .bp-breadcrumb { padding: 12px 20px; font-size: 10px; }
  .bp-header { padding: 0 20px; }
  .bp-header__title { font-size: 32px; }
  .bp-layout { padding: 0 20px 32px; }
  .bp-callout { padding: 20px; }
}


/* ── ARCHIVE / BLOG LISTING (archive.php) ── */
.archive-page {
  padding: 120px 40px 80px;
}
.archive-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.archive-header {
  text-align: center;
  margin-bottom: 60px;
}
.archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-top: 8px;
}
.archive-desc {
  color: var(--gray-light);
  font-size: 17px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.archive-card {
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.archive-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.archive-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.archive-card-body {
  padding: 24px;
}
.archive-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.archive-card-meta a {
  color: var(--orange);
}
.archive-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.archive-card-title a { color: #fff; transition: color 0.2s; }
.archive-card-title a:hover { color: var(--orange); }
.archive-card-excerpt {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.archive-card-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: color 0.2s;
}
.archive-card-link:hover {
  color: var(--orange-h);
}

/* Pagination */
.archive-pagination {
  margin-top: 60px;
  text-align: center;
}
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--gray-light);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  border-color: var(--orange);
  color: var(--orange);
}
.archive-pagination .prev,
.archive-pagination .next {
  width: auto;
  padding: 0 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.no-posts {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  padding: 80px 0;
}

/* ── ARCHIVE RESPONSIVE ── */
@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
  .post-nav-next { text-align: left; }
  .page-single,
  .post-single,
  .archive-page { padding: 80px 16px 48px; }
}

/* ==============================================
   SINGLE EPISODE PAGE
   ============================================== */

/* ── Episode Hero ── */
.ep-single-hero {
  padding: 140px 40px 40px;
  background: var(--dark);
}
.ep-single-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ep-single-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ep-single-topics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ep-topic-tag {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--surface);
  padding: 5px 12px;
  border-radius: 3px;
}
.ep-single-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ep-single-details {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  color: var(--gray);
  flex-wrap: wrap;
}
.ep-single-details strong {
  color: var(--off-white);
}
.ep-single-sep {
  color: var(--border);
}

/* ── Video Embed ── */
.ep-single-video {
  background: var(--black);
  padding: 0 40px;
}
.ep-single-video-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ep-single-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}
.ep-single-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Platform Links ── */
.ep-single-platforms {
  background: var(--black);
  padding: 24px 40px;
}
.ep-single-platforms-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ep-single-listen-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.ep-platform-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--surface);
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.ep-platform-link:hover {
  background: var(--orange);
  color: #fff;
}

/* ── Show Notes / Content ── */
.ep-single-content {
  padding: 60px 40px;
  background: var(--dark);
}
.ep-single-content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.ep-single-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.ep-single-body {
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-light);
}
.ep-single-body h2,
.ep-single-body h3,
.ep-single-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 36px;
  margin-bottom: 14px;
}
.ep-single-body h2 { font-size: 22px; }
.ep-single-body h3 { font-size: 18px; }
.ep-single-body p {
  margin-bottom: 20px;
}
.ep-single-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ep-single-body a:hover {
  color: var(--orange-h);
}
.ep-single-body ul,
.ep-single-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.ep-single-body li {
  margin-bottom: 8px;
}
.ep-single-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--off-white);
}

/* ── More Episodes ── */
.ep-single-more {
  padding: 80px 40px;
  background: var(--black);
}
.ep-single-more-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ep-single-more-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

/* ── Subscribe CTA ── */
.ep-single-cta {
  padding: 80px 40px;
  background: var(--surface);
  text-align: center;
}
.ep-single-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.ep-single-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.ep-single-cta-sub {
  font-family: 'Oxanium', sans-serif;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}
.ep-single-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Episode Single Responsive ── */
@media (max-width: 768px) {
  .ep-single-hero { padding: 110px 20px 30px; }
  .ep-single-video { padding: 0 20px; }
  .ep-single-platforms { padding: 20px; }
  .ep-single-platforms-inner { gap: 12px; }
  .ep-single-content { padding: 40px 20px; }
  .ep-single-more { padding: 50px 20px; }
  .ep-single-more .ep-grid { grid-template-columns: 1fr; }
  .ep-single-cta { padding: 50px 20px; }
}

/* ==============================================
   MEN OF ACTION PAGE
   ============================================== */

/* ── MOA Hero ── */
.moa-hero {
  padding: 160px 40px 100px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
  position: relative;
}
.moa-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.moa-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.moa-hero-body {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
}
.moa-hero .btn-primary {
  font-size: 16px;
  padding: 18px 48px;
}

/* ── MOA Sections (shared) ── */
.moa-section {
  padding: 80px 40px;
}
.moa-section:nth-child(odd) {
  background: var(--dark);
}
.moa-section:nth-child(even) {
  background: var(--black);
}
.moa-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.moa-narrow {
  max-width: 780px;
}
.moa-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.moa-heading--center {
  text-align: center;
}
.moa-text {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.85;
}
.moa-text p {
  margin-bottom: 20px;
}
.moa-text strong {
  color: var(--off-white);
  font-weight: 600;
}

/* ── Who This Is For — Cards ── */
.moa-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.moa-who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: border-color 0.2s;
}
.moa-who-card:hover {
  border-color: var(--orange);
}
.moa-who-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.moa-who-card-body {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.75;
}
.moa-who-closing {
  text-align: center;
  font-size: 17px;
  color: var(--off-white);
  margin-top: 40px;
  font-style: italic;
  line-height: 1.7;
}

/* ── Membership Tier Cards ── */
.moa-tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.moa-tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.moa-tier-card:hover {
  border-color: rgba(200,84,24,0.4);
}
.moa-tier-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(200,84,24,0.1);
}
.moa-tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.moa-tier-header {
  margin-bottom: 28px;
}
.moa-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.moa-tier-price {
  margin-bottom: 12px;
}
.moa-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.moa-price-period {
  font-family: 'Oxanium', sans-serif;
  font-size: 15px;
  color: var(--gray);
}
.moa-tier-desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
}
.moa-tier-includes {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}
.moa-tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.moa-tier-benefits li {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}
.moa-tier-benefits li:last-child {
  border-bottom: none;
}
.moa-tier-benefits .check {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.moa-tier-btn {
  width: 100%;
  text-align: center;
  display: block;
}

/* ── Cost Section CTA ── */
.moa-cost .btn-primary {
  margin-top: 32px;
}

/* ── Hosts on MOA page ── */
.moa-hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.moa-host-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.moa-host-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--border);
}
.moa-host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moa-host-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
/* ── FAQ Accordion ── */
.moa-faq-list {
  margin-top: 40px;
}
.moa-faq-item {
  border-bottom: 1px solid var(--border);
}
.moa-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--off-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  gap: 16px;
}
.moa-faq-trigger:hover {
  color: var(--orange);
}
.moa-faq-icon {
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}
.moa-faq-item.active .moa-faq-icon {
  transform: rotate(45deg);
}
.moa-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.moa-faq-item.active .moa-faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.moa-faq-answer p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ── Final CTA ── */
.moa-final {
  background: linear-gradient(180deg, var(--dark) 0%, #0d0d0d 100%) !important;
  padding: 100px 40px;
}
.moa-final .moa-text {
  margin-bottom: 48px;
}
.moa-final-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.moa-final-btns .btn-primary {
  font-size: 16px;
  padding: 18px 48px;
}
.moa-final-secondary {
  text-align: center;
}
.moa-final-secondary p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}
.moa-substack-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.moa-substack-link:hover {
  color: var(--orange-h);
}
.moa-final-note {
  font-size: 13px !important;
  color: var(--gray) !important;
  margin-top: 8px;
  font-style: italic;
}

/* ── MOA Page Responsive ── */
@media (max-width: 900px) {
  .moa-who-grid { grid-template-columns: 1fr; }
  .moa-tiers-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .moa-hosts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .moa-hero { padding: 120px 24px 80px; }
  .moa-section { padding: 60px 24px; }
  .moa-host-block { flex-direction: column; align-items: center; text-align: center; }
  .moa-final { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .moa-hero { padding: 100px 20px 60px; }
  .moa-section { padding: 48px 20px; }
  .moa-hero-title { font-size: 36px; }
  .moa-tier-card { padding: 28px 20px; }
}

/* ==============================================
   WHY MARCH OR DIE PAGE
   ============================================== */

/* ── Hero ── */
.wmod-hero {
  position: relative;
  min-height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #131313;
  background-size: cover;
  background-position: center;
}
.wmod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #131313 0%, rgba(19,19,19,0.6) 40%, transparent 100%);
  z-index: 1;
}
.wmod-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 1000px;
}
.wmod-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 128px);
  color: var(--off-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
  margin-bottom: 24px;
}
.wmod-hero-title .accent,
.wmod-narrative-heading .accent {
  color: var(--orange);
}
.wmod-hero-body {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.wmod-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
.wmod-hero-arrow {
  color: var(--orange);
  font-size: 40px;
  line-height: 1;
  animation: wmod-bounce 2s infinite;
}
.wmod-hero-scroll-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gray);
  margin-top: 8px;
}
@keyframes wmod-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ── Narrative Blocks ── */
.wmod-narrative {
  padding: 96px 24px;
  background: #131313;
}
.wmod-narrative-inner {
  max-width: 720px;
  margin: 0 auto;
}
.wmod-narrative-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--off-white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.wmod-narrative-inner p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: rgba(229,226,225,0.9);
  font-weight: 300;
  margin-bottom: 40px;
}
.wmod-narrative-inner p:last-child {
  margin-bottom: 0;
}
.wmod-drop-cap::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5em;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--orange);
}

/* ── Pull Quotes ── */
.wmod-quote {
  padding: 120px 32px;
}
.wmod-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.wmod-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: var(--off-white);
}
.wmod-quote-orange {
  color: var(--orange);
}
.wmod-quote-bg-1 { background: #0e0e0e; }
.wmod-quote-bg-2 { background: #1c1b1b; }
.wmod-quote-bg-3 { background: #2a2a2a; }
.wmod-quote-border-left { border-left: 4px solid var(--orange); }
.wmod-quote-border-right { border-right: 4px solid var(--orange); }
.wmod-quote-ref {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 24px;
}

/* ── Closing CTA ── */
.wmod-closing-cta {
  padding: 120px 24px;
  background: #0e0e0e;
  text-align: center;
}
.wmod-closing-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wmod-closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.wmod-closing-body {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.wmod-closing-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  font-size: 16px !important;
  padding: 20px 44px !important;
}

/* ── Start Here Cards ── */
.wmod-start-cards {
  padding: 120px 24px;
  background: #131313;
}
.wmod-start-cards-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.wmod-start-cards-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.wmod-start-cards-heading {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  line-height: 1;
}
.wmod-start-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.wmod-start-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.wmod-start-card-1 {
  background: #1c1b1b;
  border-top: 2px solid rgba(200,84,24,0.2);
}
.wmod-start-card-2 {
  background: #2a2a2a;
  border-top: 2px solid rgba(200,84,24,0.3);
}
.wmod-start-card-3 {
  background: #353534;
  border-top: 2px solid rgba(229,226,225,0.15);
}
.wmod-start-card-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wmod-start-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.wmod-start-card-desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 28px;
}
.wmod-start-card-link {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.wmod-start-card-link:hover {
  color: var(--orange-h);
}

/* ── WMOD Responsive ── */
@media (max-width: 900px) {
  .wmod-start-cards-grid { grid-template-columns: 1fr; }
  .wmod-start-card { min-height: auto; }
}
@media (max-width: 768px) {
  .wmod-narrative { padding: 48px 20px; }
  .wmod-quote { padding: 48px 20px; }
  .wmod-closing-cta { padding: 48px 20px; }
  .wmod-start-cards { padding: 48px 20px; }
}
@media (max-width: 480px) {
  .wmod-hero-content { padding: 80px 16px 56px; }
  .wmod-closing-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; }
}


/* =============================================
   WHY MARCH OR DIE V2 — Figma Redesign
   ============================================= */

/* ── Hero overrides — uppercase subtitle, warmer tones ── */
.wmod-v2 .wmod-hero-title {
  font-size: clamp(56px, 12vw, 150px);
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(233,108,48,0.3);
}
.wmod-v2 .wmod-hero-body {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bm-body);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.35;
  max-width: 900px;
}

/* ── Narrative with orange left border (first block) ── */
.wmod-narrative-border {
  border-left: 4px solid var(--orange);
  padding-left: 36px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wmod-narrative-border p {
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 24px) !important;
  line-height: 1.35 !important;
  color: var(--off-white);
}

/* ── Pull quote — white text highlight inside orange quote ── */
.wmod-quote-white {
  color: #fff;
}

/* ── Heading displayed as a full-width pull-quote section ── */
.wmod-quote-heading {
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.wmod-quote-heading .accent {
  color: #e96c30;
}

/* ── Major pull quote — two-tier "MARCH OR DIE." treatment ── */
.wmod-quote--major {
  padding: 113px 96px;
}
.wmod-major-line1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  color: #e96c30;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}
.wmod-major-line2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 0.85;
  text-align: center;
  margin-top: 8px;
}

/* ── Closing CTA — white title, radial orange glow ── */
.wmod-v2 .wmod-closing-cta {
  position: relative;
  overflow: hidden;
}
.wmod-closing-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233,108,48,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.wmod-v2 .wmod-closing-title {
  color: var(--off-white);
  letter-spacing: 0.05em;
}
.wmod-v2 .wmod-closing-body {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bm-body);
}
.wmod-v2 .btn-primary.btn-lg {
  background: #e96c30;
  color: #581d00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.07em;
  border-radius: 0;
  padding: 20px 40px;
}
.wmod-v2 .btn-primary.btn-lg:hover {
  background: #f07838;
}
.wmod-v2 .btn-outline.btn-lg {
  border: 2px solid var(--bm-outline);
  color: var(--off-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.07em;
  border-radius: 0;
  padding: 20px 42px;
}
.wmod-v2 .btn-outline.btn-lg:hover {
  border-color: #e96c30;
  color: #e96c30;
}

/* ── Resource cards — ghost numbers, Figma card styling ── */
.wmod-v2 .wmod-start-cards-heading {
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: 0.04em;
}
.wmod-v2 .wmod-start-cards-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
}
.wmod-v2 .wmod-start-card {
  position: relative;
  overflow: hidden;
  border-top: none;
  min-height: 326px;
}
.wmod-v2 .wmod-start-card-1 { background: #201f1f; }
.wmod-v2 .wmod-start-card-2 { background: #2a2a2a; }
.wmod-v2 .wmod-start-card-3 { background: #201f1f; }

.wmod-start-card-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.wmod-v2 .wmod-start-card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.wmod-v2 .wmod-start-card-2 .wmod-start-card-label {
  color: var(--bm-muted);
}
.wmod-v2 .wmod-start-card-title {
  font-size: 40px;
  margin-bottom: 24px;
}
.wmod-v2 .wmod-start-card-desc {
  color: var(--bm-body);
  line-height: 1.65;
}
.wmod-v2 .wmod-start-card-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.07em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.wmod-v2 .wmod-start-card-2 .wmod-start-card-link {
  color: var(--off-white);
}
.wmod-v2 .wmod-start-card-2 .wmod-start-card-link:hover {
  color: #fff;
}
.wmod-link-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.wmod-start-card-link:hover .wmod-link-arrow {
  transform: translateX(4px);
}

/* ── V2 Responsive ── */
@media (max-width: 768px) {
  .wmod-quote--major { padding: 48px 20px; }
  .wmod-major-line2 { font-size: clamp(48px, 8vw, 80px); }
  .wmod-narrative-border { padding-left: 24px; }
}
@media (max-width: 480px) {
  .wmod-v2 .wmod-hero-body { letter-spacing: 0.1em; }
  .wmod-quote--major { padding: 40px 16px; }
}


/* =============================================
   MEN OF ACTION V2 — Figma Redesign
   ============================================= */

/* ── Hero — left-aligned, bg image on right ── */
.moa-v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
  background-color: #131313;
}
.moa-v2-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.moa-v2-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #131313 0%, rgba(19,19,19,0.8) 50%, transparent 100%);
}
.moa-v2-hero__content {
  position: relative;
  z-index: 2;
  max-width: 896px;
}
.moa-v2-hero__eyebrow {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e96c30;
  margin-bottom: 24px;
}
.moa-v2-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.moa-v2-hero__title-line1 {
  display: block;
}
.moa-v2-hero__title-line2 {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 128px);
  color: #e96c30;
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.moa-v2-hero__body {
  font-size: 20px;
  color: var(--bm-body);
  line-height: 1.625;
  max-width: 672px;
  margin-top: 24px;
  font-weight: 400;
}
.moa-v2-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.moa-v2-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e96c30;
  color: #581d00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.moa-v2-btn--primary:hover { background: #f07838; }
.moa-v2-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--bm-outline);
  color: #e5e2e1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 20px 41px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.moa-v2-btn--outline:hover { border-color: #e96c30; color: #e96c30; }

/* ── Narrative Story ── */
.moa-v2-narrative {
  background: #1c1b1b;
  padding: 80px 24px;
}
.moa-v2-narrative__inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
.moa-v2-narrative__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #e5e2e1;
  letter-spacing: 0.04em;
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.moa-v2-narrative__body {
  font-size: 18px;
  font-weight: 300;
  color: var(--bm-body);
  line-height: 2;
  text-align: center;
}
.moa-v2-narrative__body p {
  margin-bottom: 32px;
}
.moa-v2-narrative__body p:last-child { margin-bottom: 0; }
.moa-v2-narrative__body strong { color: #fff; font-weight: 600; }

/* ── Who Is This For ── */
.moa-v2-who {
  background: #131313;
  padding: 80px 32px;
}
.moa-v2-who__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.moa-v2-who__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #e5e2e1;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(88,66,57,0.2);
  margin-bottom: 80px;
}
.moa-v2-who__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.moa-v2-who__card {
  background: #0e0e0e;
  padding: 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.moa-v2-who__card-top {
  margin-bottom: auto;
}
.moa-v2-who__card-icon {
  margin-bottom: 32px;
  line-height: 0;
}
.moa-v2-who__card-icon svg { display: block; }
.moa-v2-who__card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: #e5e2e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: auto;
}
.moa-v2-who__card-body {
  font-size: 16px;
  color: var(--bm-body);
  line-height: 1.5;
  margin-top: 32px;
}

/* ── Membership Tiers ── */
.moa-v2-tiers {
  background: #1c1b1b;
  padding: 80px 32px;
  text-align: center;
}
.moa-v2-tiers__inner {
  max-width: 1152px;
  margin: 0 auto;
}
.moa-v2-tiers__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #e5e2e1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.moa-v2-tiers__subtitle {
  font-size: 18px;
  color: var(--bm-body);
  margin-bottom: 64px;
}
.moa-v2-tiers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

/* Tier Card Base */
.moa-v2-tier {
  text-align: left;
  padding: 49px;
  display: flex;
  flex-direction: column;
}
.moa-v2-tier__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.moa-v2-tier__name--accent {
  color: #e96c30;
}
.moa-v2-tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}
.moa-v2-tier__price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: #fff;
  line-height: 0.75;
}
.moa-v2-tier__price-period {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  color: var(--bm-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.moa-v2-tier__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 48px;
  flex-grow: 1;
}
.moa-v2-tier__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.moa-v2-tier__benefits li:last-child { margin-bottom: 0; }
.moa-v2-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.moa-v2-tier__benefit--highlight {
  font-weight: 600;
  color: #fff;
}

/* Supporter Tier */
.moa-v2-tier--supporter {
  background: #201f1f;
  border: 1px solid rgba(88,66,57,0.1);
}
.moa-v2-tier--supporter .moa-v2-tier__name { color: var(--bm-body); }
.moa-v2-tier--supporter .moa-v2-tier__benefits li { color: var(--bm-body); }
.moa-v2-btn--tier-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--bm-muted);
  color: #e5e2e1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-top: auto;
}
.moa-v2-btn--tier-outline:hover { border-color: #e96c30; color: #e96c30; }

/* Featured Tier */
.moa-v2-tier--featured {
  background: #353534;
  border: 1px solid #000;
  box-shadow: 0 0 0 2px #ffb597, 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.moa-v2-tier--featured .moa-v2-tier__name { color: #e96c30; }
.moa-v2-tier--featured .moa-v2-tier__benefits li { color: #e5e2e1; }
.moa-v2-tier--featured .moa-v2-tier__benefits li:first-child { font-weight: 600; color: #fff; }
.moa-v2-tier__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #e96c30;
  color: #581d00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 24px;
}
.moa-v2-btn--tier-primary {
  display: block;
  text-align: center;
  background: #e96c30;
  color: #581d00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(233,108,48,0.2), 0 4px 6px -4px rgba(233,108,48,0.2);
  transition: background 0.2s;
  margin-top: auto;
}
.moa-v2-btn--tier-primary:hover { background: #f07838; }

/* ── Founders ── */
.moa-v2-founders {
  background: #131313;
  padding: 80px 32px;
}
.moa-v2-founders__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.moa-v2-founders__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: #e5e2e1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.moa-v2-founders__divider {
  width: 96px;
  height: 4px;
  background: #ffb597;
  margin: 0 auto 64px;
}
.moa-v2-founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.moa-v2-founder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.moa-v2-founder__photo {
  width: 256px;
  height: 320px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.moa-v2-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.moa-v2-founder__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #e5e2e1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.moa-v2-founder__role {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: #ffb597;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.moa-v2-founder__bio {
  position: relative;
  font-size: 16px;
  color: var(--bm-body);
  line-height: 1.625;
  max-width: 448px;
  text-align: center;
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.moa-v2-founder__bio.moa-v2-founder__bio--expanded {
  max-height: 2000px;
}
.moa-v2-founder__bio-content {
  font-size: 16px;
  color: var(--bm-body);
  line-height: 1.625;
}
.moa-v2-founder__bio-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, #131313);
  pointer-events: none;
  transition: opacity 0.3s;
}
.moa-v2-founder__bio--expanded .moa-v2-founder__bio-fade {
  opacity: 0;
}
.moa-v2-founder__bio-toggle {
  display: inline-block; margin-top: 12px;
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #e96c30; background: none; border: none;
  cursor: pointer; transition: color 0.2s;
}
.moa-v2-founder__bio-toggle:hover { color: #fff; }

/* ── FAQ ── */
.moa-v2-faq {
  background: #1c1b1b;
  padding: 80px 24px;
}
.moa-v2-faq__inner {
  max-width: 896px;
  margin: 0 auto;
}
.moa-v2-faq__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #e5e2e1;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 64px;
}
.moa-v2-faq__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.moa-v2-faq__item {
  background: #201f1f;
  padding: 24px;
}
.moa-v2-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #e5e2e1;
  letter-spacing: 0.019em;
  text-transform: uppercase;
}
.moa-v2-faq__question::-webkit-details-marker { display: none; }
.moa-v2-faq__question::marker { display: none; content: ''; }
.moa-v2-faq__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform 0.3s;
}
.moa-v2-faq__item[open] .moa-v2-faq__chevron {
  transform: rotate(180deg);
}
.moa-v2-faq__answer {
  font-size: 16px;
  color: var(--bm-body);
  line-height: 1.625;
  margin-top: 16px;
}

/* ── Final CTA ── */
.moa-v2-final {
  background: #131313;
  padding: 120px 128px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.moa-v2-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,19,19,0.9);
}
.moa-v2-final__inner {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  margin: 0 auto;
}
.moa-v2-final__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  color: #e5e2e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin-bottom: 80px;
}
.moa-v2-final__line {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.04em;
}
.moa-v2-final__line--white {
  color: #e5e2e1;
}
.moa-v2-final__line--accent {
  color: #e96c30;
}
.moa-v2-btn--final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e96c30;
  color: #581d00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 24px 64px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(255,181,151,0.2);
  transition: background 0.2s;
}
.moa-v2-btn--final:hover { background: #f07838; }

/* ── MOA V2 Responsive ── */
@media (max-width: 1024px) {
  .moa-v2-who__grid { grid-template-columns: repeat(2, 1fr); }
  .moa-v2-founders__grid { gap: 48px; }
  .moa-v2-hero__title-line2 { font-size: clamp(56px, 8vw, 80px); }
  .moa-v2-final__line { font-size: 64px; }
}
@media (max-width: 768px) {
  .moa-v2-hero { padding: 60px 24px; min-height: 80vh; }
  .moa-v2-hero__title-line2 { font-size: 56px; }
  .moa-v2-who__grid { grid-template-columns: 1fr; }
  .moa-v2-tiers__grid { grid-template-columns: 1fr; }
  .moa-v2-founders__grid { grid-template-columns: 1fr; }
  .moa-v2-narrative { padding: 48px 20px; }
  .moa-v2-tiers { padding: 48px 20px; }
  .moa-v2-founders { padding: 48px 20px; }
  .moa-v2-faq { padding: 48px 20px; }
  .moa-v2-final { padding: 48px 20px; }
  .moa-v2-final__line { font-size: 48px; }
  .moa-v2-btn--final { font-size: 18px; padding: 20px 40px; letter-spacing: 2.4px; }
}
@media (max-width: 480px) {
  .moa-v2-hero__buttons { flex-direction: column; }
  .moa-v2-btn--primary, .moa-v2-btn--outline { width: 100%; text-align: center; }
  .moa-v2-tier { padding: 32px; }
  .moa-v2-who__card { min-height: auto; }
  .moa-v2-narrative { padding: 36px 16px; }
  .moa-v2-tiers { padding: 36px 16px; }
  .moa-v2-founders { padding: 36px 16px; }
  .moa-v2-faq { padding: 36px 16px; }
  .moa-v2-final { padding: 36px 16px; }
}


/* =============================================
   BIBLICAL MASCULINITY PAGE — .bm- styles
   ============================================= */

/* ── HERO ── */
.bm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 96px;
}
.bm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, rgba(19,19,19,0) 50%, rgba(19,19,19,0.2) 100%);
  z-index: 1;
}
.bm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  padding: 0 32px;
  text-align: center;
}
.bm-hero-title {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 32px;
  text-shadow: 0 0 30px rgba(233,108,48,0.3);
}
.bm-hero-line1 {
  color: var(--off-white);
  display: block;
}
.bm-hero-accent {
  color: var(--orange-h);
  display: block;
}
.bm-hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4.8px;
  color: var(--bm-body);
  max-width: 835px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ── OPENING ── */
.bm-opening {
  background: var(--dark);
}
.bm-opening-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-opening-quote {
  border-left: 4px solid var(--orange-h);
  padding-left: 36px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: 'Oxanium', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.35;
}
.bm-opening-body {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.6;
  margin-top: 32px;
}

/* ── SCRIPTURE QUOTES ── */
.bm-quote {
  background: var(--black);
  border-top: 1px solid rgba(88,66,57,0.1);
  border-bottom: 1px solid rgba(88,66,57,0.1);
  padding: 81px 24px;
}
.bm-quote-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.bm-quote-text {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.8px;
  color: var(--orange-h);
  line-height: 1.2;
  margin-bottom: 24px;
}
.bm-quote-ref {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5.4px;
  color: var(--bm-muted);
}

/* ── WHAT IT'S NOT ── */
.bm-not {
  background: var(--dark);
}
.bm-not-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-not-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.bm-not-bar {
  width: 48px;
  height: 4px;
  background: var(--orange-h);
  flex-shrink: 0;
}
.bm-not-heading h2 {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin: 0;
}
.bm-not-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.bm-not-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--off-white);
  margin-bottom: 8px;
}
.bm-not-body {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.6;
}

/* ── WHAT THE BIBLE SAYS ── */
.bm-bible {
  background: var(--surface);
}
.bm-bible-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-bible-heading {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 48px;
  line-height: 0.95;
}
.bm-bible-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bm-bible-body p {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.5;
}
.bm-highlight-orange {
  color: var(--orange-h);
  font-weight: 700;
  font-style: italic;
}
.bm-highlight-white {
  color: var(--off-white);
  font-weight: 700;
}

/* ── THREE MARKS ── */
.bm-marks {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px;
}
.bm-marks-heading {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--off-white);
  margin-bottom: 80px;
}
.bm-marks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bm-mark-card {
  background: var(--surface);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.bm-mark-card-alt {
  background: var(--border);
}
.bm-mark-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px;
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.bm-mark-title {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange-h);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.bm-mark-body {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.625;
  position: relative;
  z-index: 1;
}

/* ── WHY MOST MEN ARE STUCK ── */
.bm-stuck {
  background: var(--dark);
}
.bm-stuck-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-stuck-inner h2 {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 48px;
}
.bm-stuck-inner p {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.6;
}
.bm-stuck-inner p + p {
  margin-top: 32px;
}

/* ── SO WHAT NOW ── */
.bm-action {
  background: var(--dark);
}
.bm-action-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-action-inner h2 {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-h);
  margin-bottom: 48px;
}
.bm-action-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.bm-action-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.bm-action-icon {
  flex-shrink: 0;
  color: var(--orange-h);
  width: 24px;
  height: 24px;
}
.bm-action-icon svg {
  width: 24px;
  height: 24px;
}
.bm-action-title {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 8px;
}
.bm-action-body {
  font-size: 18px;
  color: var(--bm-body);
  line-height: 1.5;
}

/* ── CLOSING CTA ── */
.bm-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 24px 24px;
}
.bm-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,181,151,0.15) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}
.bm-cta-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bm-cta-title {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 48px;
}
.bm-cta-accent {
  color: var(--orange-h);
  display: block;
}
.bm-cta-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.btn-bm-primary {
  display: inline-block;
  background: var(--orange-h);
  color: #581d00;
  padding: 20px 40px;
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-bm-primary:hover {
  opacity: 0.9;
}
.btn-bm-outline {
  display: inline-block;
  border: 2px solid var(--bm-outline);
  color: var(--off-white);
  padding: 20px 40px;
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-bm-outline:hover {
  border-color: var(--orange-h);
}
.bm-cta-link {
  display: block;
  margin-top: 48px;
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.6px;
  color: var(--bm-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.bm-cta-link:hover {
  color: var(--orange-h);
}

/* ── GO DEEPER ── */
.bm-deeper {
  background: var(--dark);
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px;
}
.bm-deeper-heading {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 0px;
}
.bm-deeper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bm-deeper-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.bm-deeper-img {
  aspect-ratio: 16 / 9;
  background: var(--border);
  overflow: hidden;
}
.bm-deeper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.5s;
}
.bm-deeper-card:hover .bm-deeper-img img {
  transform: scale(1.05);
}
.bm-deeper-title {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: 24px;
  line-height: 1.25;
  transition: color 0.2s;
}
.bm-deeper-card:hover .bm-deeper-title {
  color: var(--orange-h);
}

/* ── FAQ ── */
.bm-faq {
  background: var(--dark);
}
.bm-faq-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 24px 24px;
}
.bm-faq-heading {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 64px;
}
.bm-faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-faq-item {
  background: var(--surface);
  padding: 24px;
}
.bm-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.bm-faq-summary::-webkit-details-marker {
  display: none;
}
.bm-faq-summary span {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--off-white);
}
.bm-faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.bm-faq-item[open] .bm-faq-chevron {
  transform: rotate(180deg);
}
.bm-faq-answer {
  font-size: 16px;
  color: var(--bm-body);
  line-height: 1.5;
  margin-top: 24px;
}

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 768px) {
  .bm-hero-title     { font-size: 36px; }
  .bm-hero-subtitle  { font-size: 16px; letter-spacing: 2px; }
  .bm-quote          { padding: 48px 20px; }
  .bm-quote-text     { font-size: 24px; letter-spacing: 2px; }
  .bm-bible-heading  { font-size: 36px; }
  .bm-marks          { padding: 48px 20px; }
  .bm-marks-grid     { grid-template-columns: 1fr; }
  .bm-deeper         { padding: 48px 20px; }
  .bm-deeper-grid    { grid-template-columns: 1fr; }
  .bm-cta            { padding: 48px 20px; }
  .bm-cta-title      { font-size: 32px; }
  .bm-cta-btns       { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .bm-quote          { padding: 36px 16px; }
  .bm-marks          { padding: 36px 16px; }
  .bm-deeper         { padding: 36px 16px; }
  .bm-cta            { padding: 36px 16px; }
}


/* =============================================================
   CONTENT HUB — HOME, ARCHIVE, EPISODE DETAIL
   ============================================================= */

/* ── Shared Utilities ── */
.ch-content-hub,
.ch-archive-main,
.ch-episode-page { background: var(--ch-bg); }

.ch-container,
.ch-archive-header__container,
.ch-grid-container {
  max-width: var(--ch-max-width); margin: 0 auto; padding: 0 32px;
}

.ch-section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--ch-text); margin-bottom: 8px;
}
.ch-section-title::after {
  content: ''; display: block; width: 64px; height: 4px;
  background: var(--ch-accent); margin-top: 8px;
}
.ch-accent-text { color: var(--ch-accent); }

.ch-topic-badge {
  display: inline-block;
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ch-accent-dark); background: var(--ch-accent);
  padding: 2px 12px;
}
.ch-episode-number {
  font-family: 'Oxanium', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ch-accent);
}

.ch-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 12px 24px; border: none; cursor: pointer; transition: all 0.2s;
}
.ch-btn-primary {
  background: var(--ch-accent); color: #fff;
}
.ch-btn-primary:hover { background: var(--ch-accent-mid); }
.ch-btn-secondary {
  background: transparent; color: var(--ch-text);
  border: 1px solid var(--ch-warm-border);
}
.ch-btn-secondary:hover { border-color: var(--ch-accent); }
.ch-btn-accent {
  background: var(--ch-accent); color: #fff;
  border: 1px solid var(--ch-accent);
}
.ch-btn-accent:hover { background: var(--ch-accent-mid); border-color: var(--ch-accent-mid); }

.ch-view-all-link--accent {
  color: var(--ch-accent);
}
.ch-view-all-link--accent:hover { color: var(--ch-accent-mid); }


/* ── HOME: Featured Carousel ── */
.ch-carousel {
  position: relative; min-height: 600px; overflow: hidden;
}
.ch-carousel__track { position: relative; width: 100%; height: 100%; }
.ch-carousel__slide {
  position: absolute; inset: 0; min-height: 600px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none; z-index: 0;
}
.ch-carousel__slide--active {
  position: relative; opacity: 1;
  pointer-events: auto; z-index: 1;
}

/* Indicators */
.ch-carousel__indicators {
  position: absolute; bottom: 24px; right: 32px; z-index: 10;
  display: flex; gap: 10px; align-items: center;
}
.ch-carousel__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.ch-carousel__dot--active {
  background: var(--ch-accent); transform: scale(1.25);
}
.ch-carousel__dot:hover { background: rgba(255,255,255,0.6); }
.ch-carousel__dot--active:hover { background: var(--ch-accent); }

/* Arrows */
.ch-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.ch-carousel__arrow:hover { background: rgba(0,0,0,0.7); border-color: var(--ch-accent); }
.ch-carousel__arrow--prev { left: 24px; }
.ch-carousel__arrow--next { right: 24px; }

/* Slide content (same as before) */
.ch-featured-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, var(--ch-bg) 0%, rgba(19,19,19,0.75) 45%, rgba(19,19,19,0.5) 70%, rgba(19,19,19,0.3) 100%);
}
.ch-featured-content {
  position: relative; z-index: 2;
  max-width: var(--ch-max-width); margin: 0 auto; width: 100%;
  padding: 48px 32px; max-width: 50%;
}
.ch-featured-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 72px; font-weight: 700;
  line-height: 1; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ch-text); margin: 16px 0;
}
.ch-featured-excerpt {
  font-family: 'Oxanium', sans-serif; font-size: 14px; color: var(--ch-body);
  line-height: 1.6; margin-bottom: 24px;
}
.ch-featured-excerpt__more,
.ch-featured-excerpt__less {
  color: #E96C30; cursor: pointer; font-weight: 600;
  transition: color 0.2s;
}
.ch-featured-excerpt__more:hover,
.ch-featured-excerpt__less:hover {
  color: #fff;
}
.ch-featured-excerpt__ellipsis {
  cursor: pointer;
}
.ch-featured-buttons { display: flex; gap: 16px; }


/* ── HOME: Browse Archive CTA ── */
.ch-browse-cta {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 48px 32px;
  border-top: 1px solid var(--ch-border); border-bottom: 1px solid var(--ch-border);
  margin: 0 auto; max-width: var(--ch-max-width);
}
.ch-browse-cta__btn {
  padding: 18px 56px; font-size: 14px; letter-spacing: 2.4px;
}

/* ── HOME: Latest Episodes Grid ── */
.ch-latest-episodes { padding: 80px 0; }
.ch-episodes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 32px;
}
.ch-episode-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--ch-border); border-radius: 2px; overflow: hidden;
  transition: transform 0.2s;
}
.ch-episode-card:hover { transform: translateY(-4px); color: inherit; }
.ch-episode-thumbnail {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background-size: cover; background-position: center;
}
.ch-episode-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.ch-duration-badge {
  position: absolute; bottom: 8px; right: 8px;
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 700;
  color: #fff; background: rgba(0,0,0,0.8); padding: 1px 6px; border-radius: 2px;
}
.ch-episode-card-content { padding: 16px; }
.ch-episode-card-content .ch-topic-badge {
  font-size: 10px; background: transparent; color: var(--ch-accent);
  padding: 0; margin-bottom: 4px;
}
.ch-episode-card-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--ch-text); line-height: 1.4; margin: 4px 0;
}
.ch-episode-card-title a { color: inherit; }
.ch-episode-card-title a:hover { color: var(--ch-accent); }
.ch-episode-card-excerpt {
  font-family: 'Oxanium', sans-serif; font-size: 12px; color: var(--ch-muted);
  line-height: 1.4; margin-bottom: 8px;
}
.ch-read-more {
  font-family: 'Oxanium', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--ch-accent); transition: color 0.2s;
}
.ch-read-more:hover { color: var(--ch-warm-light); }


/* ── HOME: Hard Questions Spotlight ── */
.ch-hard-questions-spotlight {
  padding: 80px 0;
  background: var(--ch-surface);
  border-top: 1px solid var(--ch-border); border-bottom: 1px solid var(--ch-border);
}
.ch-hq-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.ch-hq-featured { overflow: hidden; border-radius: 2px; }
.ch-hq-featured-image {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  border-radius: 2px; margin-bottom: 16px;
}
.ch-hq-featured-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; font-weight: 700;
  color: var(--ch-text); margin-bottom: 12px;
}
.ch-hq-series-info {
  background: var(--ch-surface); border-radius: 2px; padding: 32px;
}
.ch-hq-series-info h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px; font-weight: 700;
  color: var(--ch-text); margin-bottom: 4px;
}
.ch-episode-count {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  color: var(--ch-accent); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.ch-series-description {
  font-family: 'Oxanium', sans-serif; font-size: 14px; color: var(--ch-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.ch-series-episodes {
  list-style: none; padding: 0; margin: 0 0 24px;
  counter-reset: ep-counter;
}
.ch-series-episodes li {
  counter-increment: ep-counter;
  display: flex; gap: 16px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(90,65,56,0.15);
}
.ch-series-episodes li::before {
  content: counter(ep-counter, decimal-leading-zero);
  font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--ch-accent);
  min-width: 32px;
}
.ch-series-episodes li a {
  font-family: 'Oxanium', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ch-text); transition: color 0.2s;
}
.ch-series-episodes li a:hover { color: var(--ch-accent); }
.ch-view-all-link {
  display: block; text-align: center;
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ch-text); transition: color 0.2s;
}
.ch-view-all-link:hover { color: var(--ch-accent); }

/* Deep Dive Callout */
.ch-deep-dive {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--ch-border);
}
.ch-deep-dive__label {
  display: inline-block;
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ch-accent); margin-bottom: 8px;
}
.ch-deep-dive__title {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--ch-text); letter-spacing: 1px; margin-bottom: 8px;
}
.ch-deep-dive__desc {
  font-family: 'Oxanium', sans-serif; font-size: 13px;
  color: var(--ch-muted); line-height: 1.5; margin-bottom: 12px;
}
.ch-deep-dive__link {
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ch-accent); transition: color 0.2s;
}
.ch-deep-dive__link:hover { color: var(--ch-accent-mid); }


/* ── HOME: Most Popular Hits ── */
.ch-most-popular { padding: 80px 0; }
.ch-popular-list {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.ch-popular-item {
  border-bottom: 1px solid rgba(90,65,56,0.15);
  transition: background 0.2s;
}
.ch-popular-item:hover { background: rgba(255,255,255,0.02); }
.ch-popular-item__link {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 0; text-decoration: none; color: inherit;
}
.ch-popular-item__link:hover { color: inherit; }
.ch-rank-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--ch-accent);
  min-width: 48px; text-align: center;
}
.ch-popular-thumbnail {
  width: 142px; aspect-ratio: 16 / 9; border-radius: 2px; overflow: hidden; flex-shrink: 0;
}
.ch-popular-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.ch-popular-content { flex: 1; }
.ch-popular-content .ch-topic-badge {
  font-size: 10px; background: transparent; color: var(--ch-accent); padding: 0;
}
.ch-popular-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--ch-text); margin: 4px 0;
}
.ch-popular-title a { color: inherit; }
.ch-popular-title a:hover { color: var(--ch-accent); }
.ch-episode-meta {
  font-family: 'Oxanium', sans-serif; font-size: 10px; color: var(--ch-muted);
  letter-spacing: 1px; text-transform: uppercase;
}


/* ── ARCHIVE: Header ── */
.ch-archive-main { padding-top: 32px; }
.ch-archive-header { padding: 48px 0; }
.ch-archive-header__container {
  display: flex; align-items: flex-start; gap: 28px;
}
.ch-archive-header__content {
  display: flex; flex-direction: column; gap: 8px;
}
.ch-archive-header__border {
  width: 4px; min-height: 100%; background: var(--ch-warm-light); flex-shrink: 0;
  align-self: stretch;
}
.ch-archive-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 96px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ch-text);
  line-height: 1;
}
.ch-archive-title__word { margin-right: 16px; }
.ch-archive-subtitle {
  font-family: 'Oxanium', sans-serif; font-size: 18px; color: var(--ch-body);
  line-height: 1.55; max-width: 576px; margin-top: 16px;
}

/* ── ARCHIVE: Unified Toolbar ── */
.ch-archive-toolbar {
  max-width: var(--ch-max-width); margin: 0 auto;
  padding: 24px 32px 16px;
  border-top: 1px solid var(--ch-border);
}
.ch-archive-toolbar__row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}

/* Search inside toolbar */
.ch-archive-search {
  position: relative; flex: 1; min-width: 200px; max-width: 400px;
}
.ch-archive-search__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--ch-muted); pointer-events: none;
}
.ch-archive-search__input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: var(--ch-surface); border: 1px solid var(--ch-border);
  border-radius: 4px; color: var(--ch-text);
  font-family: 'Oxanium', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.ch-archive-search__input::placeholder { color: var(--ch-muted); }
.ch-archive-search__input:focus { border-color: var(--ch-accent); }

/* Sort inside toolbar */
.ch-archive-sort {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.ch-sort-label {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ch-body);
}
.ch-sort-select {
  background: var(--ch-border); border: none;
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; color: var(--ch-body);
  padding: 8px 32px 8px 16px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.5L3.5 3L6 0.5' stroke='%23e3bfb2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.ch-sort-select option { background: var(--ch-bg); color: var(--ch-text); }

/* Filter rows inside toolbar */
.ch-filter-row {
  display: flex; align-items: center; gap: 16px; padding-top: 16px;
}
.ch-filter-row__label {
  font-family: 'Oxanium', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--ch-muted);
  white-space: nowrap; min-width: 52px;
}
.ch-filter-pills {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
  flex-wrap: wrap;
}
.ch-filter-pill {
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 12px 24px; border: none; cursor: pointer;
  background: var(--ch-surface-alt); color: var(--ch-accent);
  white-space: nowrap; transition: background 0.2s, color 0.2s;
}
.ch-filter-pill:hover { background: rgba(233,108,48,0.15); }
.ch-filter-pill--active {
  background: var(--ch-accent); color: var(--ch-accent-dark); font-weight: 700;
}


/* ── ARCHIVE: Bento Grid ── */
.ch-grid-container { padding: 48px 0 80px; }
.ch-bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.ch-bento-card {
  background: var(--ch-surface); overflow: hidden; position: relative;
  transition: transform 0.2s;
}
.ch-bento-card:hover { transform: translateY(-4px); }
.ch-bento-card--featured { grid-column: span 2; }

.ch-bento-card__featured-badge {
  position: absolute; top: 21px; left: 24px; z-index: 3;
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #4f1700; background: var(--ch-accent-mid);
  padding: 2.5px 12px;
}
.ch-bento-card__featured-image {
  position: relative; overflow: hidden;
}
.ch-bento-card--featured .ch-bento-card__featured-image { height: 333px; }
.ch-bento-card__image { width: 100%; height: 100%; object-fit: cover; }
.ch-bento-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ch-surface) 0%, transparent 60%);
  opacity: 0.6;
}
.ch-bento-card__featured-content { padding: 32px; }

.ch-bento-card__meta {
  display: flex; gap: 16px; align-items: center; margin-bottom: 12px;
}
.ch-bento-card__episode-number,
.ch-bento-card__duration {
  font-family: 'Oxanium', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ch-accent);
}
.ch-bento-card__title {
  font-family: 'Bebas Neue', sans-serif; font-weight: 700; color: var(--ch-text);
}
.ch-bento-card--featured .ch-bento-card__title { font-size: 30px; line-height: 1.25; }
.ch-bento-card:not(.ch-bento-card--featured) .ch-bento-card__title { font-size: 20px; line-height: 1.25; margin: 8px 0 4px; }
.ch-bento-card__excerpt {
  font-family: 'Oxanium', sans-serif; font-size: 12px; color: var(--ch-muted);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.ch-bento-card--featured .ch-bento-card__excerpt {
  font-size: 14px; color: var(--ch-body); margin: 8px 0;
}
.ch-bento-card__link {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ch-text); transition: color 0.2s;
}
.ch-bento-card__link:hover { color: var(--ch-accent); }

.ch-bento-card__image-container {
  display: block; position: relative; height: 210px; overflow: hidden;
  text-decoration: none;
}
a.ch-bento-card__featured-image {
  display: block; text-decoration: none;
}
.ch-bento-card__title a {
  color: inherit; text-decoration: none;
}
.ch-bento-card__title a:hover { color: var(--ch-accent); }
.ch-bento-card__image-container .ch-bento-card__image {
  width: 100%; height: 100%; object-fit: cover;
}
.ch-bento-card__topic {
  font-family: 'Oxanium', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ch-accent);
  padding: 16px 24px 0;
}
.ch-bento-card:not(.ch-bento-card--featured) .ch-bento-card__excerpt,
.ch-bento-card:not(.ch-bento-card--featured) .ch-bento-card__title,
.ch-bento-card:not(.ch-bento-card--featured) .ch-bento-card__link {
  padding: 0 24px;
}
.ch-bento-card:not(.ch-bento-card--featured) .ch-bento-card__link {
  padding-bottom: 24px; display: block; margin-top: 8px;
}

.ch-arrow { display: inline; }

/* Load More */
.ch-load-more-container {
  grid-column: 1 / -1;
  text-align: center; padding: 33px 0 32px;
  border-top: 1px solid rgba(90,65,56,0.2); margin-top: 16px;
}
.ch-load-more-btn {
  background: none; border: none; cursor: pointer;
  display: inline-flex; flex-direction: column; align-items: center; gap: 16px;
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 4.8px; text-transform: uppercase;
  color: var(--ch-body); transition: color 0.2s;
}
.ch-load-more-btn:hover { color: var(--ch-accent); }
.ch-load-more-icon { width: 12px; height: 13px; }
.ch-no-episodes {
  grid-column: 1 / -1; text-align: center; padding: 80px 0;
  font-family: 'Oxanium', sans-serif; font-size: 16px; color: var(--ch-muted);
}


/* ── EPISODE DETAIL ── */
.ch-episode-page {
  max-width: var(--ch-max-width); margin: 0 auto;
  padding: 32px 32px 0;
}

/* Video */
.ch-video-section { margin-bottom: 48px; }
.ch-video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #0e0e0e; border-radius: 2px; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.ch-video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.yt-facade {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; cursor: pointer;
}
.yt-facade img {
  width: 100%; height: 100%; object-fit: cover;
}
.yt-facade__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85; transition: opacity 0.2s;
}
.yt-facade:hover .yt-facade__play,
.yt-facade:focus .yt-facade__play {
  opacity: 1;
}

/* Two-column layout */
.ch-ep-content-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px;
  margin-bottom: 48px;
}

/* Main column */
.ch-ep-meta {
  display: flex; gap: 12px; align-items: center; margin-bottom: 16px;
}
.ch-ep-badge {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ch-warm-light); background: rgba(255,181,154,0.1);
  padding: 4px 8px; border-radius: 2px;
}
.ch-ep-date {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ch-muted);
}
.ch-ep-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; font-weight: 700;
  line-height: 1; letter-spacing: 1px; color: var(--ch-text);
  margin-bottom: 16px;
}
.ch-ep-host {
  display: flex; gap: 16px; align-items: center;
  padding: 17px 0; border-top: 1px solid rgba(90,65,56,0.15);
  border-bottom: 1px solid rgba(90,65,56,0.15); margin-bottom: 32px;
}
.ch-ep-host-avatar {
  width: 48px; height: 48px; border-radius: 12px; overflow: hidden;
  border: 2px solid rgba(255,181,154,0.3); flex-shrink: 0;
}
.ch-ep-host-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ch-ep-host-label {
  font-family: 'Oxanium', sans-serif; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ch-light);
}
.ch-ep-host-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--ch-warm);
}
.ch-ep-body {
  font-family: 'Oxanium', sans-serif; font-size: 18px;
  line-height: 1.625; color: var(--ch-body);
}
.ch-ep-body p { margin-bottom: 24px; }
.ch-ep-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.ch-ep-tag {
  background: var(--ch-surface-alt); padding: 4px 12px; border-radius: 2px;
  font-family: 'Oxanium', sans-serif; font-size: 12px; color: var(--ch-light);
  transition: color 0.2s;
}
.ch-ep-tag:hover { color: var(--ch-accent); }

/* Sidebar */
.ch-up-next-header {
  display: flex; gap: 8px; align-items: center; margin-bottom: 24px;
}
.ch-up-next-accent {
  width: 4px; height: 24px; background: var(--ch-warm-light);
}
.ch-up-next-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--ch-text);
}
.ch-up-next-list { display: flex; flex-direction: column; gap: 24px; }
.ch-up-next-item {
  display: flex; gap: 16px; align-items: flex-start;
  transition: opacity 0.2s;
}
.ch-up-next-item:hover { opacity: 0.85; }
.ch-up-next-thumb {
  position: relative; width: 128px; flex-shrink: 0;
  aspect-ratio: 16/9; border-radius: 2px; overflow: hidden;
  background: #1c1917;
}
.ch-up-next-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ch-up-next-duration {
  position: absolute; bottom: 4px; right: 4px;
  font-family: 'Oxanium', sans-serif; font-size: 10px; font-weight: 700;
  color: #fff; background: rgba(0,0,0,0.8); padding: 0 4px; border-radius: 2px;
}
.ch-up-next-info { flex: 1; }
.ch-up-next-ep-title {
  font-family: 'Oxanium', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--ch-text); line-height: 1.4; display: block;
}
.ch-up-next-meta {
  display: block; margin-top: 4px;
  font-family: 'Oxanium', sans-serif; font-size: 10px;
  letter-spacing: -0.5px; text-transform: uppercase; color: var(--ch-muted);
}
.ch-view-all-btn {
  display: block; text-align: center; margin-top: 24px;
  padding: 13px; border: 1px solid rgba(90,65,56,0.3);
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--ch-text); transition: border-color 0.2s;
}
.ch-view-all-btn:hover { border-color: var(--ch-accent); }

.ch-yt-subscribe {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 16px; padding: 16px 24px;
  background: #ff0000; border-radius: 6px;
  font-family: 'Oxanium', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: #fff; text-decoration: none;
  transition: background 0.2s;
}
.ch-yt-subscribe:hover { background: #cc0000; }
.ch-yt-subscribe__icon { flex-shrink: 0; }

/* Recommended section */
.ch-recommended { padding: 48px 0 80px; max-width: var(--ch-max-width); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.ch-recommended-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--ch-text);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.ch-recommended-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 32px;
}
.ch-recommended-card {
  background: var(--ch-border); border-radius: 2px; overflow: hidden;
  transition: transform 0.2s;
}
.ch-recommended-card:hover { transform: translateY(-4px); }
.ch-recommended-card__image {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.ch-recommended-card__image img { width: 100%; height: 100%; object-fit: cover; }
.ch-recommended-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.ch-recommended-card__content { padding: 16px; }
.ch-recommended-card__title {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--ch-text); line-height: 1.4;
}
.ch-recommended-card__excerpt {
  font-family: 'Oxanium', sans-serif; font-size: 12px; color: var(--ch-muted);
  line-height: 1.4; margin-top: 4px;
}


/* ── CONTENT HUB RESPONSIVE ── */
@media (max-width: 1024px) {
  .ch-episodes-grid,
  .ch-recommended-grid,
  .ch-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-bento-card--featured { grid-column: span 2; }
  .ch-ep-content-grid { grid-template-columns: 1fr; }
  .ch-hq-wrapper { grid-template-columns: 1fr; }
  .ch-archive-title { font-size: 64px; }
  .ch-featured-title { font-size: 48px; }
  .ch-featured-content { max-width: 70%; }
}

@media (max-width: 768px) {
  .ch-nav-center { display: none; }
  .ch-nav-toggle { display: flex; }
  .ch-episodes-grid,
  .ch-recommended-grid { grid-template-columns: 1fr; }
  .ch-bento-grid { grid-template-columns: 1fr; }
  .ch-bento-card--featured { grid-column: span 1; }
  .ch-featured-content { max-width: 100%; right: 16px; bottom: 24px; }
  .ch-featured-title { font-size: 36px; }
  .ch-archive-title { font-size: 48px; }
  .ch-ep-title { font-size: 32px; }
  .ch-container,
  .ch-archive-header__container,
  .ch-archive-toolbar,
  .ch-grid-container { padding: 0 16px; }
  .ch-archive-toolbar__row { flex-direction: column; gap: 16px; }
  .ch-archive-search { max-width: 100%; }
  .ch-archive-sort { margin-left: 0; }
  .ch-nav-inner { padding: 12px 16px; }
  .ch-footer-links { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .ch-filter-pills { gap: 8px; }
  .ch-filter-pill { padding: 8px 16px; font-size: 11px; }
  .ch-archive-header__container { flex-direction: column; }
}

@media (max-width: 480px) {
  .ch-carousel, .ch-carousel__slide { min-height: 400px; }
  .ch-carousel__arrow { width: 36px; height: 36px; }
  .ch-carousel__arrow--prev { left: 12px; }
  .ch-carousel__arrow--next { right: 12px; }
  .ch-featured-title { font-size: 28px; }
  .ch-archive-title { font-size: 36px; }
  .ch-ep-title { font-size: 24px; }
  .ch-featured-buttons { flex-direction: column; gap: 8px; }
  .ch-popular-item { gap: 16px; }
  .ch-rank-number { font-size: 28px; min-width: 36px; }
  .ch-popular-thumbnail { width: 106px; }
}


/* =============================================
   LEADERSHIP BY DESIGN — Page Styles
   ============================================= */

/* ── LBD HERO ── */
.lbd-hero {
  background: var(--black);
  padding: 192px 32px 144px;
}
.lbd-hero-inner {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lbd-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--off-white);
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.lbd-hero-accent {
  color: var(--orange);
}
.lbd-hero-body {
  font-size: 18px;
  color: var(--bm-muted);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 24px;
}
.lbd-hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.lbd-hero-book {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.lbd-book-cover {
  max-width: 700px;
  width: 100%;
  border-radius: 2px;
  box-shadow: none;
  transform: rotate(3deg);
}
.lbd-book-placeholder {
  width: 448px;
  height: 448px;
  background: var(--surface);
  border-radius: 2px;
}

/* ── CORE PHILOSOPHY ── */
.lbd-philosophy {
  background: var(--surface);
  padding: 96px 32px;
}
.lbd-philosophy-inner {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lbd-quote-card {
  background: var(--dark);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.lbd-quote-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--orange);
}
.lbd-quote-icon {
  margin-bottom: 24px;
}
.lbd-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--off-white);
}
.lbd-section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.lbd-philosophy-body {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 2;
}
.lbd-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.lbd-principle {
  background: var(--border);
  padding: 24px;
  border-radius: 2px;
}
.lbd-principle-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1.1;
}
.lbd-principle-num--1 { color: var(--orange); }
.lbd-principle-num--2 { color: #6b8ab5; }
.lbd-principle-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* ── VIDEO COURSE ── */
.lbd-course {
  background: var(--dark);
  padding: 96px 32px;
}
.lbd-course-inner {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
a.lbd-course-video {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.lbd-course-video:hover .lbd-course-thumb {
  filter: saturate(0) brightness(0.6);
}
a.lbd-course-video:hover .lbd-course-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.lbd-course-video {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.lbd-course-thumb {
  width: 100%;
  display: block;
  filter: saturate(0) brightness(0.5);
  transition: filter 0.3s ease;
}
.lbd-course-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  width: 80px;
  height: 80px;
  background: rgba(200, 84, 24, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.lbd-course-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lbd-course-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.04em;
}
.lbd-course-accent {
  color: var(--orange);
}
.lbd-course-intro {
  font-family: 'Oxanium', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #d6d3d1;
  line-height: 1.7;
  margin-top: 24px;
  white-space: pre-line;
}
.lbd-course-divider {
  border: none;
  height: 1px;
  width: 64px;
  background: rgba(200, 84, 24, 0.5);
  margin: 24px 0;
}
.lbd-course-desc {
  font-size: 15px;
  color: #a8a29e;
  line-height: 1.7;
}
.lbd-course-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.lbd-course-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d6d3d1;
}
.lbd-course-features svg {
  flex-shrink: 0;
}
.lbd-course-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 16px;
}

/* ── STRATEGIC ALLIANCES ── */
.lbd-alliances {
  background: var(--black);
  padding: 96px 32px;
}
.lbd-alliances-inner {
  max-width: 1216px;
  margin: 0 auto;
  text-align: center;
}
.lbd-alliances-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--off-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lbd-alliances-bar {
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin: 16px auto 64px;
}
.lbd-alliances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.lbd-alliance-card {
  background: var(--surface);
  padding: 40px;
  text-align: center;
}
.lbd-alliance-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.lbd-alliance-logo-img {
  max-height: 100px;
  max-width: 320px;
  width: auto;
}
.lbd-alliance-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--off-white);
  margin-bottom: 16px;
}
.lbd-alliance-desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.5;
  margin-bottom: 24px;
}
.lbd-alliance-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid;
  padding-bottom: 4px;
}
.lbd-alliance-link--mod { color: var(--orange); border-color: var(--orange); }
.lbd-alliance-link--mo  { color: #6b8ab5;      border-color: #6b8ab5;      }

/* ── JEREMY BIO ── */
.lbd-bio {
  background: var(--dark);
  padding: 96px 32px;
}
.lbd-bio-inner {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.lbd-bio-portrait img {
  border-radius: 2px;
  box-shadow: none;
  filter: saturate(0);
  width: 100%;
}
.lbd-bio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--off-white);
  letter-spacing: 0.04em;
}
.lbd-bio-bar {
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin: 24px 0;
}
.lbd-bio-quote {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--bm-body);
  line-height: 1.6;
  margin-bottom: 32px;
}
.lbd-bio-text {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 2;
}
.lbd-bio-link {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.lbd-bio-link:hover {
  color: var(--orange-h);
  border-color: var(--orange-h);
}

/* ── FINAL CTA ── */
.lbd-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  padding: 96px 32px;
  text-align: center;
}
.lbd-cta-inner {
  max-width: 896px;
  margin: 0 auto;
}
.lbd-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lbd-cta-body {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-top: 24px;
}
.lbd-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.lbd-cta-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 22px 48px;
  display: inline-block;
  transition: all 0.2s;
}
.lbd-cta-btn--light {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.lbd-cta-btn--light:hover { background: var(--off-white); }
.lbd-cta-btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.lbd-cta-btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ── LBD RESPONSIVE ── */
@media (max-width: 900px) {
  .lbd-hero-inner         { grid-template-columns: 1fr; text-align: center; }
  .lbd-hero-book          { justify-content: center; margin-top: 48px; }
  .lbd-book-cover         { max-width: 320px; transform: none; }
  .lbd-hero-body          { margin: 24px auto 0; }
  .lbd-hero-btns          { justify-content: center; }
  .lbd-philosophy-inner   { grid-template-columns: 1fr; }
  .lbd-course-inner       { grid-template-columns: 1fr; }
  .lbd-course-video       { order: -1; }
  .lbd-bio-inner          { grid-template-columns: 1fr; text-align: center; }
  .lbd-bio-portrait img   { max-width: 360px; margin: 0 auto; }
  .lbd-bio-bar            { margin: 24px auto; }
  .lbd-alliances-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .lbd-hero               { padding: 100px 20px 56px; }
  .lbd-hero-title         { font-size: 42px; }
  .lbd-hero-btns          { flex-direction: column; align-items: center; }
  .lbd-philosophy         { padding: 64px 20px; }
  .lbd-quote-card         { padding: 40px; }
  .lbd-quote-text         { font-size: 24px; }
  .lbd-course             { padding: 64px 20px; }
  .lbd-course-features    { grid-template-columns: 1fr; }
  .lbd-principles         { grid-template-columns: 1fr; }
  .lbd-alliances          { padding: 64px 20px; }
  .lbd-bio                { padding: 64px 20px; }
  .lbd-bio-name           { font-size: 36px; }
  .lbd-cta                { padding: 64px 20px; }
  .lbd-cta-btns           { flex-direction: column; align-items: center; }
}

/* ── FEATURED EPISODE CARD ── */
.featured-ep-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.featured-ep-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.featured-ep-card__thumb {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1008, #1e1e1e);
}
.featured-ep-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.featured-ep-card__play-badge {
  position: absolute; bottom: 16px; left: 16px;
  width: 48px; height: 34px; border-radius: 8px;
  background: rgba(200, 84, 24, 0.9);
  display: flex; align-items: center; justify-content: center;
}
.featured-ep-card__play-badge::after {
  content: '';
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.featured-ep-card__info {
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.featured-ep-card__meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.featured-ep-card__title {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; font-weight: 700;
  color: #fff; letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 12px;
}
.featured-ep-card__desc {
  font-size: 15px; color: var(--gray-light); line-height: 1.7; margin-bottom: 20px;
}
.featured-ep-card__cta {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
  transition: opacity 0.2s;
}
.featured-ep-card:hover .featured-ep-card__cta { opacity: 0.7; }

@media (max-width: 700px) {
  .featured-ep-card { grid-template-columns: 1fr; }
  .featured-ep-card__thumb { aspect-ratio: 16/9; }
  .featured-ep-card__info { padding: 20px; }
  .featured-ep-card__title { font-size: 22px; }
}

/* ── FEATURED ARTICLES ── */
.articles-section { padding: 80px 40px; }
.articles-inner { max-width: 1100px; margin: 0 auto; }
.articles-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.articles-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-top: 8px;
}
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card {
  background: var(--surface); border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s;
  cursor: pointer; display: flex; flex-direction: column;
}
.art-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.art-thumb {
  width: 100%; padding-bottom: 56.25%; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1008, #1e1e1e);
}
.art-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.art-info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.art-category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.art-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; font-weight: 600;
  color: #fff; letter-spacing: 0.04em; line-height: 1.3; margin-bottom: 8px;
}
.art-excerpt {
  font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 12px;
}
.art-read-more {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
  margin-top: auto; transition: opacity 0.2s;
}
.art-card:hover .art-read-more { opacity: 0.7; }

@media (max-width: 900px) {
  .articles-section { padding: 56px 20px; }
  .articles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .articles-section { padding: 40px 16px; }
}

/* ── YMYL DISCLAIMERS ── */
.ymyl-disclaimers {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ymyl-block {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
}
.ymyl-block--crisis {
  border-left: 3px solid var(--orange);
}
.ymyl-block--editors {
  border-left: 3px solid var(--border);
}
.ymyl-block__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.ymyl-block--crisis .ymyl-block__heading {
  color: var(--orange);
}
.ymyl-block--editors .ymyl-block__heading {
  color: var(--gray-light);
}
.ymyl-block__body {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--off-white);
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
