/* ====================================================
   Love & Sensibility — Shared Stylesheet
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500&display=swap');

/* ---- Design Tokens -------------------------------- */
:root {
  --color-bg:         #FAF7F2;
  --color-bg-dark:    #1E0F14;
  --color-surface:    #F2EAE1;
  --color-rose:       #8B2A4A;
  --color-gold:       #C9924A;
  --color-gold-light: #E8C98A;
  --color-text:       #1C1917;
  --color-text-muted: #6B5E58;
  --color-text-light: #FAF7F2;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* ---- Reset ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---- Grain Overlay -------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ---- Fade-In Animation ---------------------------- */
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-rise {
  opacity: 0;
  animation: fadeRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ---- Navigation ----------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(30, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--color-text-light); }

.nav-links a.active {
  color: var(--color-text-light);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  animation: underlineIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left;
}

@keyframes underlineIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--color-text-light);
  font-weight: 300;
  transition: color 0.2s ease;
}

.nav-overlay a:hover { color: var(--color-gold); }

/* ---- Diagonal Divider ----------------------------- */
.diagonal-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.diagonal-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---- Section Overlines ---------------------------- */
.overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

/* ---- Buttons -------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border: none;
}

.btn-rose {
  background: var(--color-rose);
  color: var(--color-text-light);
}

.btn-rose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-rose:hover::before { transform: translateX(0); }

.btn-ghost-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-ghost-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-ghost-gold:hover { color: var(--color-bg-dark); }
.btn-ghost-gold:hover::before { transform: translateX(0); }
.btn-ghost-gold span { position: relative; z-index: 1; }

.btn-ghost-cream {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(250, 247, 242, 0.4);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost-cream:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ---- Footer --------------------------------------- */
footer {
  background: var(--color-bg-dark);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(201, 146, 74, 0.3);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-muted);
}

/* ---- Responsive ----------------------------------- */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ================================================================
   HOME PAGE
   ================================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--color-bg-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero-content {
  padding: 0 4rem 0 5rem;
  z-index: 2;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

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

.hero-image-col {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  max-height: 700px;
  width: auto;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: luminosity;
  filter: sepia(0.3) brightness(0.85);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 30%);
  z-index: 1;
}

/* The Show Section */
.the-show {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.the-show-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: center;
}

.show-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--color-rose);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.profile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.profile-card {
  background: var(--color-surface);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 15, 20, 0.12);
}

.profile-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2A1520;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A1520, #3A2530);
}

.profile-placeholder-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: rgba(201, 146, 74, 0.3);
}

.profile-info {
  padding: 1.25rem;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.profile-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.show-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-numeral {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 200px;
  color: var(--color-gold);
  opacity: 0.12;
  line-height: 1;
  user-select: none;
  position: absolute;
}

/* Latest Episode Section */
.latest-ep {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 0;
}

.latest-ep-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.ep-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 146, 74, 0.15);
  border-radius: 4px;
  padding: 2.5rem;
  margin-top: 2rem;
  transition: border-color 0.3s ease;
}

.ep-card:hover { border-color: rgba(201, 146, 74, 0.4); }

.ep-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.ep-info {}

.ep-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-text-light);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.ep-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.7;
  max-width: 560px;
}

.ep-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-rose);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.play-btn:hover {
  background: #A03258;
  transform: scale(1.05);
}

.play-btn svg {
  fill: white;
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.ep-duration {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.4);
  letter-spacing: 0.08em;
}

.see-all-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.see-all-link:hover { color: var(--color-gold-light); }

/* Email CTA Section */
.email-cta {
  background: var(--color-surface);
  padding: var(--space-xl) 3rem;
  text-align: center;
}

.email-cta-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.email-cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  border: 1px solid rgba(30,15,20,0.15);
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: white;
  color: var(--color-text);
  outline: none;
}

.email-input::placeholder { color: rgba(107, 94, 88, 0.6); }

.email-submit {
  background: var(--color-rose);
  color: white;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s ease;
}

.email-submit:hover { background: #A03258; }

.email-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-muted);
}

/* ================================================================
   PODCAST PAGE
   ================================================================ */

/* Podcast Hero */
.podcast-hero {
  min-height: 40vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 6rem;
}

.podcast-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Featured Episode */
.featured-ep {
  background: var(--color-bg);
  padding: var(--space-lg) 0;
}

.featured-ep-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  background: var(--color-bg-dark);
  border-radius: 6px;
  overflow: hidden;
  align-items: stretch;
}

.featured-card-content {
  padding: 3rem;
}

.featured-ep-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-text-light);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.featured-ep-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 560px;
}

.podcast-player-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 146, 74, 0.15);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.podcast-player-placeholder .play-btn {
  flex-shrink: 0;
}

.player-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.4);
}

.featured-card-image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Episode Grid */
.episode-grid-section {
  background: var(--color-bg);
  padding: var(--space-lg) 0 var(--space-xl);
}

.episode-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.episode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ep-grid-card {
  background: var(--color-surface);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: stretch;
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ep-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,15,20,0.1);
  border-color: var(--color-rose);
}

.ep-grid-img {
  width: 100px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.ep-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ep-grid-info {
  padding: 1.25rem 1.5rem;
}

.ep-grid-num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.ep-grid-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.ep-grid-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.ep-grid-duration {
  font-size: 12px;
  font-weight: 300;
  color: rgba(107, 94, 88, 0.6);
  letter-spacing: 0.06em;
}

/* Subscribe Strip */
.subscribe-strip {
  background: var(--color-bg-dark);
  padding: 4rem 3rem;
  text-align: center;
}

.subscribe-strip-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}

.platform-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

.about-hero {
  min-height: 35vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  position: relative;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-section {
  padding: var(--space-xl) 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-inner.reverse { direction: rtl; }
.about-inner.reverse > * { direction: ltr; }

.about-img-wrap {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface), #E0D4C8);
  gap: 1rem;
}

.about-placeholder-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  color: rgba(139, 42, 74, 0.2);
}

.about-placeholder-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(107, 94, 88, 0.6);
  text-align: center;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-heading em {
  font-style: italic;
  color: var(--color-rose);
}

.about-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.85;
}

/* Why This Show */
.why-show {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 3rem;
  text-align: center;
}

.why-show-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--color-text-light);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.why-attribution {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* Venus Gallery */
.venus-gallery {
  background: var(--color-bg);
  padding: var(--space-lg) 0 var(--space-xl);
}

.venus-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.02); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(30,15,20,0.85) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ================================================================
   SUBSCRIBE PAGE
   ================================================================ */

.subscribe-hero {
  min-height: 50vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  padding: 8rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.subscribe-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.subscribe-hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--color-text-light);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.subscribe-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.75;
}

/* Benefits */
.benefits {
  background: var(--color-bg);
  padding: var(--space-lg) 0 var(--space-xl);
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.benefits-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-card {
  background: var(--color-surface);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,15,20,0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.benefit-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Quiz Section */
.quiz-section {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 3rem;
}

.quiz-section-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quiz-section-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.quiz-section-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Embedded Quiz Overrides (inherits venus-quiz styles) */
.quiz-embed {
  text-align: left;
}

/* ================================================================
   RESPONSIVE — ALL PAGES
   ================================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 0 4rem; }
  .hero-content { padding: 0 2rem; }
  .hero-image-col { display: none; }

  .the-show-inner { grid-template-columns: 1fr; gap: 3rem; }
  .show-right { display: none; }

  .ep-card { grid-template-columns: 1fr; }

  .featured-card { grid-template-columns: 1fr; }
  .featured-card-image { width: 100%; height: 280px; }

  .episode-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner.reverse { direction: ltr; }
  .about-img-wrap { max-height: 400px; aspect-ratio: 4/3; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .profile-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .hero-h1 { font-size: 38px; }
  .show-pull-quote { font-size: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; border-radius: 2px; }
  .email-input { border-right: 1px solid rgba(30,15,20,0.15); border-bottom: none; border-radius: 2px 2px 0 0; }
  .email-submit { border-radius: 0 0 2px 2px; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .podcast-hero { padding: 7rem 1.5rem 4rem; }
  .episode-grid-inner, .featured-ep-inner, .about-inner, .benefits-inner, .venus-gallery-inner { padding: 0 1.5rem; }
  .benefits-grid { gap: 1rem; }
}
