/* ============================================================
   drewpowell.me  |  Bone / Graphite / Bronze
   Type: Fraunces (display) + Inter (body)
   ============================================================ */

:root {
  --bone: #F4F0E6;
  --paper: #FBF8F1;
  --ink: #23211C;
  --ink-soft: #55524A;
  --muted: #7A756A;
  --line: #DDD6C7;
  --bronze: #9C7442;
  --bronze-deep: #7E5B31;
  --bg: var(--bone);
  --surface: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--muted);
  --rule: var(--line);
  --accent: var(--bronze);
  --accent-deep: var(--bronze-deep);
  --shadow: 0 24px 60px rgba(35, 33, 28, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  --bg: #191813;
  --surface: #201F19;
  --text: #EDE8DC;
  --text-soft: #C9C2B2;
  --text-muted: #948D7D;
  --rule: #35332B;
  --accent: #C29A63;
  --accent-deep: #A87F4C;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

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

a { color: inherit; }

::selection { background: var(--accent); color: #FBF8F1; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.3; }

.serif-i {
  font-style: italic;
  font-weight: 450;
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 42ch;
}

p + p { margin-top: 1.25em; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.4s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.theme-toggle {
  background: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 1.05rem; height: 1.05rem; }
html[data-theme="dark"] .icon-moon { display: none; }
html:not([data-theme="dark"]) .icon-sun { display: none; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  width: 2.6rem; height: 2.6rem;
  cursor: pointer;
  color: var(--text);
  place-items: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent-deep); color: #FBF8F1; }
.btn-ghost { border-color: var(--rule); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 { margin: 0 0 1.5rem; }

.underline-draw {
  position: relative;
  white-space: nowrap;
}
.underline-draw::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.06em;
  height: 0.08em;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease) 0.5s;
}
.loaded .underline-draw::after { transform: scaleX(1); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-photo {
  position: relative;
}
.hero-photo img {
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 15%;
  box-shadow: var(--shadow);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 14px;
  opacity: 0.55;
  z-index: -1;
}

.hero-cred {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---------- Sections ---------- */

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-rule { border-top: 1px solid var(--rule); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); }

/* ---------- Beneath (signature) ---------- */

.beneath {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.beneath-intro { max-width: 620px; }
.beneath-intro h2 { margin-bottom: 1.25rem; }

.beneath-list {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}

.beneath-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}

.beneath-surface {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 500;
}

.beneath-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease);
}

.beneath-deep {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  text-align: right;
  font-style: italic;
  font-family: var(--font-display);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}
.beneath-row.revealed .beneath-deep { opacity: 1; transform: translateY(0); }
.beneath-row.revealed .beneath-arrow { transform: translateX(4px); }

.beneath-close {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--text-soft);
  max-width: 34ch;
}
.beneath-close strong { color: var(--accent-deep); font-weight: 600; font-style: normal; }

/* ---------- Card grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }

.card h3 { margin: 0; }
.card p { color: var(--text-soft); font-size: 0.98rem; }
.card .card-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
  display: inline-flex;
  gap: 0.4rem;
}
.card .card-link:hover { text-decoration: underline; }

.card-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ---------- Photo band ---------- */

.photo-band { position: relative; }
.photo-band img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.photo-band figcaption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media img {
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 15%;
  box-shadow: var(--shadow);
}
.split-media.landscape img { object-position: 50% 50%; }
.split-media.landscape img { aspect-ratio: 4 / 3; }
.split-body h2 { margin-bottom: 1.25rem; }
.split-body p { color: var(--text-soft); }
.split-body .btn { margin-top: 1.75rem; }

/* ---------- Topic list ---------- */

.topics {
  columns: 2;
  gap: 3rem;
  list-style: none;
  margin-top: 1rem;
}
.topics li {
  break-inside: avoid;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.topics .topic-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
}
.topics .topic-note { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Quote ---------- */

.pull-quote {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 450;
  font-style: italic;
  line-height: 1.35;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--text);
}
.pull-quote .attr {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Audience strip ---------- */

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.audience span {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--text-soft);
  background: var(--surface);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--text);
  color: var(--bg);
  border-radius: 20px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}
html[data-theme="dark"] .cta-banner { background: var(--surface); color: var(--text); border: 1px solid var(--rule); }
.cta-banner h2 { color: inherit; margin-bottom: 0.9rem; }
.cta-banner p { opacity: 0.75; max-width: 46ch; }
.cta-banner .btn-primary { background: var(--accent); color: #FBF8F1; }
.cta-banner .btn-primary:hover { background: var(--accent-deep); }
.cta-banner-actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
@media (min-width: 720px) { .cta-banner-actions { align-items: flex-end; } }

/* ---------- Page hero (interior) ---------- */

.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero h1 { max-width: 16ch; margin-bottom: 1.25rem; }
.page-hero .lede { max-width: 52ch; }

/* ---------- Prose ---------- */

.prose p { color: var(--text-soft); }
.prose h2 { margin: 2.5em 0 0.75em; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose .drop {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--text);
}

/* ---------- Offer rows ---------- */

.offer-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}
.offer-row:last-of-type { border-bottom: 1px solid var(--rule); }
.offer-marker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  min-width: 2.5rem;
}
.offer-row h3 { margin-bottom: 0.4rem; }
.offer-row p { color: var(--text-soft); font-size: 0.98rem; max-width: 60ch; }

/* ---------- Podcast ---------- */

.podcast-hero-art img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.platforms { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.75rem; }

/* ---------- Forms ---------- */

.form-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 9rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-grid a { text-decoration: none; color: var(--text-soft); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--accent-deep); }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 26ch;
  margin-top: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .hero-photo { max-width: 460px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .topics { columns: 1; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
    gap: 1.1rem;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: grid; }
  .nav-cta { display: none; }
  .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .beneath-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .beneath-arrow { display: none; }
  .beneath-deep { text-align: left; }
  .photo-band img { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .beneath-deep, .underline-draw::after { transition: none !important; opacity: 1 !important; transform: none !important; }
  .btn, .card { transition: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Video + podcast player ---------- */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.player-shell {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 1rem;
}


/* ---------- Inline links in prose ---------- */
.prose a, .split-body a:not(.btn) {
  color: var(--accent-deep);
  text-decoration-color: color-mix(in srgb, var(--accent) 50%, transparent);
  text-underline-offset: 3px;
}
.prose a:hover, .split-body a:not(.btn):hover { color: var(--accent); }

/* ---------- Pastor note (homepage callout) ---------- */

.pastor-note {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
}
.pastor-note h2 { margin-bottom: 0.9rem; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.pastor-note p { color: var(--text-soft); max-width: 58ch; }
@media (max-width: 920px) {
  .pastor-note { grid-template-columns: 1fr; }
}

/* ---------- Dropdown nav ---------- */

.has-dropdown { position: relative; }

.drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.drop-trigger:hover, .drop-trigger[aria-expanded="true"], .drop-trigger.is-current { color: var(--text); }
.drop-trigger.is-current { position: relative; }
.drop-trigger.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.drop-trigger svg { transition: transform 0.25s var(--ease); }
.drop-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: -1rem;
  min-width: 13rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  list-style: none;
  display: none;
  z-index: 60;
}
.dropdown.open { display: block; }
.dropdown a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.dropdown a:hover { background: var(--surface); color: var(--text); }
.dropdown a[aria-current="page"] { color: var(--accent-deep); }
.dropdown a[aria-current="page"]::after { display: none; }

@media (max-width: 720px) {
  .has-dropdown { width: 100%; }
  .drop-trigger { display: none; }
  .dropdown {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: 0;
  }
  .dropdown a { padding: 0.55rem 0; font-size: 0.9rem; }
  .dropdown a:hover { background: transparent; }
}

/* ---------- Video grid + disclaimer ---------- */

.video-grid { margin-top: 1.5rem; }

.video-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 72ch;
}

/* ---------- TV feature ---------- */

.tv-feature {
  background: var(--text);
  color: var(--bg);
  border-radius: 20px;
  padding: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
html[data-theme="dark"] .tv-feature {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--rule);
}
.tv-feature h2 { color: inherit; margin-bottom: 0.4rem; }
.tv-feature .eyebrow { color: var(--accent); }
.tv-feature p { opacity: 0.8; max-width: 56ch; }
.tv-ep {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  opacity: 0.9 !important;
}
.tv-note { font-size: 0.82rem; margin-top: 1rem; opacity: 0.6 !important; }
.tv-feature .btn-primary { background: var(--accent); color: #FBF8F1; }
.tv-feature .btn-primary:hover { background: var(--accent-deep); }

.tv-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  gap: 0.1rem;
}
.tv-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.tv-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .tv-feature { grid-template-columns: 1fr; }
  .tv-badge { display: none; }
}

/* ---------- TV art ---------- */

.tv-feature { grid-template-columns: 1fr 1fr; }
.tv-art img {
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease);
}
.tv-art a:hover img { transform: scale(1.02); }
@media (max-width: 720px) {
  .tv-feature { grid-template-columns: 1fr; }
  .tv-art { order: -1; }
}

/* ---------- Loving Leverage podcast panels ---------- */

.ll-logo-panel {
  background: #17271F;
  border-radius: 14px;
  padding: 1.6rem 2rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.ll-logo-panel img { width: 100%; }

.ll-hero-panel {
  background: #17271F;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 4.5rem);
  margin-top: 2.5rem;
  max-width: 620px;
  box-shadow: var(--shadow);
}
.ll-hero-panel img { width: 100%; }

.presented-by {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Loving Leverage on-light logo ---------- */

.ll-logo { max-width: 250px; margin-bottom: 1.25rem; }
.ll-logo-hero { max-width: 330px; margin-top: 2.25rem; margin-bottom: 0; }

/* ---------- Instagram section ---------- */

.ig-fallback {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.ig-handle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.ig-fallback p { color: var(--text-soft); max-width: 52ch; }
.ig-fallback .ig-handle { color: var(--text); }
@media (max-width: 720px) {
  .ig-fallback { grid-template-columns: 1fr; }
}

/* Behold feed container (used once the snippet is added) */
.behold-wrap { border-radius: 16px; overflow: hidden; }

/* ---------- Behold feed ---------- */

.behold-wrap { min-height: 200px; }
.ig-follow { margin-top: 1.5rem; }
