*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --rust:#cd5a37;--clay:#c8856e;--steel:#738ea7;--peri:#c9d4f2;
  --linen:#dfd2c0;--sage:#9b9e89;--dark:#2d2926;--off:#f8f3ed;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --spring:cubic-bezier(0.34,1.56,0.64,1);
}
html{scroll-behavior:smooth;}

body{
  font-family:'DM Sans',sans-serif;
  background:var(--off);
  color:var(--dark);
  overflow-x:hidden;
  min-height:100vh;
 
}
.body-podcast-section{
    display:flex; flex-direction:column; justify-content:center;
    align-items:center;
    padding:40px 20px;
}
/* ── OUTER WRAPPER ── */
.podcast-section{
  width:100%; max-width:1200px;
  display:flex; flex-direction:column; align-items:center; gap:0;
}

/* ── COMING SOON BADGE ── */
.coming-soon-badge{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--rust); color:#fff;
  font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  padding:10px 24px; border-radius:40px;
  margin-bottom:36px;
  animation:floatBadge 3s ease-in-out infinite;
  box-shadow:0 8px 32px rgba(205,90,55,0.3);
}
.badge-dot{
  width:8px; height:8px; border-radius:50%; background:#fff;
  animation:pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.4;transform:scale(0.6);}}
@keyframes floatBadge{0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);}}

/* ── MAIN BANNER ── */
.banner{
  width:100%;
  background:var(--linen);
  border-radius:28px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 300px;
  min-height:480px;
  position:relative;
  border:1px solid rgba(200,133,110,0.2);
}

/* ── LEFT — PHOTO ── */
.banner-photo{
  position:relative;
  overflow:hidden;
  background:#ffffff;
}
.banner-photo img{
  width:100%; height:100%;
  object-fit:cover; object-position:center right;
  display:block;
}

/* ── CENTER — TEXT ── */
.banner-center{
  padding:56px 48px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:1;
}
.podcast-eyebrow{
  font-size:10px; font-weight:700; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--clay); margin-bottom:20px; display:flex; align-items:center; gap:10px;
}
.podcast-eyebrow-line{width:32px; height:1px; background:var(--clay);}
.podcast-title{
  font-family:'Playfair Display',serif; font-size:clamp(36px,3.5vw,52px);
  font-weight:800; color:var(--dark); line-height:1.05; margin-bottom:8px;
  letter-spacing:-0.5px;
}
.podcast-title .amp{
  font-style:italic; color:var(--rust);
}
.podcast-host{
  font-family:'Cormorant Garamond',serif; font-size:28px; font-style:italic;
  color:var(--clay); margin-top:14px; margin-bottom:32px;
  display:flex; align-items:center; gap:12px;
}
.host-line{flex:0 0 48px; height:1px; background:var(--clay); opacity:0.6;}
.podcast-desc{
  font-size:15px; color:#6a5f5a; line-height:1.75; max-width:80%; margin-bottom:36px;
}
.podcast-actions{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.btn-notify{
  background:var(--rust); color:#fff; border:none;
  font-family:'DM Sans',sans-serif; font-size:12px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  padding:14px 28px; border-radius:40px; cursor:pointer;
  transition:transform 0.3s var(--spring), box-shadow 0.3s;
  box-shadow:0 6px 24px rgba(205,90,55,0.25);
}
.btn-notify:hover{transform:scale(1.05) translateY(-2px); box-shadow:0 12px 32px rgba(205,90,55,0.35);}
.btn-platforms{
  display:flex; align-items:center; gap:8px;
  font-size:12px; font-weight:500; color:var(--sage);
  letter-spacing:1px;
}
.platform-dot{width:5px;height:5px;border-radius:50%;background:var(--sage);}

/* ── RIGHT — PHONE MOCKUP ── */
.banner-right{
  display:flex; align-items:center; justify-content:center;
  padding:40px 32px;
  position:relative;
  background:linear-gradient(135deg, rgba(201,212,242,0.3) 0%, rgba(200,133,110,0.15) 100%);
}

/* Circular "Listen Now" badge */
.listen-badge{
  position:absolute; top:24px; right:24px; z-index:10;
  width:72px; height:72px;
}
.listen-badge svg{
  animation:rotateBadge 12s linear infinite;
}
@keyframes rotateBadge{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
.listen-badge-center{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.listen-arrow{
  width:28px; height:28px; background:var(--rust); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  animation:rotateBadge 12s linear infinite reverse;
}
.listen-arrow::after{
  content:''; border:solid #fff; border-width:0 2px 2px 0;
  display:inline-block; padding:4px;
  transform:rotate(-45deg) translate(-1px,1px);
}

/* Phone frame */
.phone-wrap{
  position:relative; z-index:2;
  animation:floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone{
  0%,100%{transform:translateY(0) rotate(-3deg);}
  50%{transform:translateY(-14px) rotate(-3deg);}
}
.phone{
  width:180px;
  background:#111;
  border-radius:36px;
  padding:10px;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.2);
  position:relative;
  overflow:hidden;
}
/* Notch */
.phone::before{
  content:'';
  position:absolute;
  top:10px; left:50%; transform:translateX(-50%);
  width:60px; height:22px; background:#111;
  border-radius:0 0 14px 14px;
  z-index:10;
}
.phone-screen{
  background:var(--steel);
  border-radius:28px;
  overflow:hidden;
  aspect-ratio:9/19.5;
  display:flex; flex-direction:column;
}
.phone-artwork{
  flex:1;
  position:relative;
  overflow:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:24px 16px 12px;
  background:linear-gradient(160deg, var(--steel) 0%, #5a7a94 100%);
}
.phone-artwork img{
  width:90px; height:90px; object-fit:cover; object-position:top;
  border-radius:12px;
  border:2px solid rgba(255,255,255,0.2);
  margin-bottom:10px;
}
.phone-art-title{
  font-family:'Playfair Display',serif; font-size:9px; font-weight:800;
  color:#fff; text-align:center; line-height:1.3; margin-bottom:2px;
  letter-spacing:0.3px;
}
.phone-art-host{
  font-family:'Cormorant Garamond',serif; font-size:9px; font-style:italic;
  color:rgba(255,255,255,0.7); text-align:center;
}
/* Waveform */
.waveform{
  display:flex; align-items:center; justify-content:center; gap:2px;
  height:20px; margin:8px 0;
}
.wave-bar{
  width:2px; border-radius:2px; background:rgba(255,255,255,0.5);
  animation:wave 1.2s ease-in-out infinite;
}
@keyframes wave{
  0%,100%{transform:scaleY(0.3);}
  50%{transform:scaleY(1);}
}

.phone-player{
  background:#1a1a2e;
  padding:10px 14px;
  flex-shrink:0;
}
.player-progress{
  height:2px; background:rgba(255,255,255,0.15); border-radius:2px;
  margin-bottom:8px; overflow:hidden;
}
.player-progress-fill{
  height:100%; width:35%; background:var(--rust);
  border-radius:2px;
  animation:progress 8s linear infinite;
}
@keyframes progress{from{width:0%;}to{width:100%;}}
.player-controls{
  display:flex; align-items:center; justify-content:space-between;
}
.player-btn{
  width:18px; height:18px; display:flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer; color:rgba(255,255,255,0.6);
  font-size:10px;
}
.player-play{
  width:32px; height:32px; border-radius:50%; background:var(--rust);
  border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.player-play::after{
  content:''; border-left:8px solid #fff; border-top:5px solid transparent;
  border-bottom:5px solid transparent; margin-left:2px;
}
.player-time{
  font-size:8px; color:rgba(255,255,255,0.4);
  font-family:'DM Sans',sans-serif; letter-spacing:0.5px;
}

/* ── STATS ROW BELOW BANNER ── */
.stats-row{
  width:100%; display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(200,133,110,0.15);
  border-radius:0 0 28px 28px;
  overflow:hidden;
  margin-top:1px;
  border:1px solid rgba(200,133,110,0.15);
  border-top:none;
}
.stat-box{
  background:var(--linen); padding:24px 32px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px;
}
.stat-box:last-child{background:var(--rust);}
.stat-num{
  font-family:'Playfair Display',serif; font-size:32px; font-weight:800;
  color:var(--dark);
}
.stat-box:last-child .stat-num{color:#fff;}
.stat-lbl{
  font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--sage);
}
.stat-box:last-child .stat-lbl{color:rgba(255,255,255,0.7);}

/* ── DECORATIVE ELEMENTS ── */
.deco-sparkle{
  position:absolute; pointer-events:none;
}
.sparkle-svg{animation:sparkleFloat 4s ease-in-out infinite;}
@keyframes sparkleFloat{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-12px) rotate(20deg);}
}

/* ── EPISODE TEASER ── */
.teaser-row{
  width:100%; margin-top:32px;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px;
}
.teaser-card{
  background:#fff; border-radius:16px; padding:24px;
  border:1px solid rgba(200,133,110,0.1);
  position:relative; overflow:hidden;
  transition:transform 0.3s var(--spring);
}
.teaser-card:hover{transform:translateY(-4px);}
.teaser-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
}
.teaser-card:nth-child(1)::before{background:var(--rust);}
.teaser-card:nth-child(2)::before{background:var(--clay);}
.teaser-card:nth-child(3)::before{background:var(--steel);}
.teaser-ep{
  font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--muted,#9a8f8a); margin-bottom:8px;
}
.teaser-title{
  font-family:'Playfair Display',serif; font-size:17px; font-weight:800;
  color:var(--dark); line-height:1.3; margin-bottom:8px;
}
.teaser-desc{font-size:13px; color:#7a6f6a; line-height:1.6;}
.teaser-coming{
  margin-top:14px; display:inline-block;
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 12px; border-radius:20px;
  background:var(--linen); color:var(--clay);
}

@media(max-width:900px){
  .banner{grid-template-columns:1fr; min-height:auto;}
  .banner-photo{height:300px;}
  .banner-right{padding:24px;}
  .banner-center{padding:36px 28px;}
  .teaser-row{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:1fr 1fr;}
}