:root {
  --bg: #fbf7f3;
  --card: #ffffff;
  --ink: #1f1f1f;
  --muted: #6c6c6c;

  /* pink (professional + soft) */
  --pink: #d9a5b3;
  --pink-light: #f2c1cc;
  --pink-soft: #fae6ea;

  --radius: 22px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
}

/* Reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Playfair Display", serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% 20%, var(--pink-soft), transparent 60%),
    radial-gradient(800px 450px at 85% 30%, #f6efe9, transparent 60%),
    var(--bg);
}

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,243,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand .script {
  font-family: "Parisienne", cursive;
  font-size: 32px;
  color: var(--pink);
}

.brand .tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(217,165,179,.15);
  color: var(--ink);
}

/* ---------- WRAPPER ---------- */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

/* ---------- HERO ---------- */
.hero {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}

.hero-bg {
  position: absolute;
  width: 100%;
  max-width: 980px;
  height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(220px 220px at 80% 25%, rgba(242,193,204,.35), transparent 55%),
    radial-gradient(240px 240px at 20% 70%, rgba(217,165,179,.2), transparent 60%),
    rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.06);
}

.hero-card {
  width: 100%;
  max-width: 980px;
  margin-top: 40px;
  background: rgba(255,255,255,.8);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  padding: 36px 26px 30px;
  text-align: center;
  position: relative;
}

/* Photo */
.photo-wrap {
  width: 170px;
  height: 170px;
  margin: -95px auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-light), var(--pink));
  padding: 8px;
  border: 4px solid #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Hero text */
.kicker {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(40,40,40,.7);
  margin-top: 8px;
}

.kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-light);
}

.hero-title {
  font-size: 54px;
  margin: 12px 0 8px;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
  color: rgba(40,40,40,.75);
}

.pronounce {
  margin: 12px 0;
  font-size: 14px;
  color: rgba(40,40,40,.6);
}

.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(242,193,204,.25);
  border: 1px solid rgba(217,165,179,.45);
}

/* Quote */
.quote {
  margin: 20px auto 0;
  max-width: 780px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: italic;
}

.qline {
  flex: 1;
  height: 1px;
  background: rgba(217,165,179,.6);
}

/* Buttons */
.actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(180deg, var(--pink-light), var(--pink));
  color: #fff;
  box-shadow: 0 16px 30px rgba(217,165,179,.35);
}

.btn.secondary {
  border: 1px solid rgba(217,165,179,.6);
  color: var(--pink);
  background: #fff;
}

.note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(40,40,40,.55);
}

/* ---------- CARDS ---------- */
.card {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 32px;
  background: rgba(255,255,255,.8);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}

.card.center {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 28px;
}

.underline {
  width: 50px;
  height: 3px;
  background: var(--pink-light);
  border-radius: 999px;
  margin: 10px auto 16px;
}

/* Split section */
.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.pane {
  flex: 1;
  text-align: center;
}

.pane p {
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
  color: rgba(40,40,40,.75);
}

.divider {
  width: 1px;
  background: rgba(217,165,179,.35);
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(242,193,204,.2);
  border: 1px solid rgba(217,165,179,.35);
}

/* Podcast list */
.list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(217,165,179,.2);
  background: rgba(255,255,255,.9);
}

.left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,193,204,.25);
  color: var(--pink);
  font-weight: bold;
}

/* Force podcast rows to use site colors (no default blue links) */
.row,
.row:visited {
  color: inherit;
}

.row .label,
.row .meta {
  color: inherit;
}

.row:hover .label {
  color: var(--ink);
}
.row:hover .meta {
  color: rgba(40,40,40,.65);
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(217,165,179,.25);
  background: rgba(255,255,255,.9);
  text-decoration: none;
}

.sicon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,193,204,.25);
  color: var(--pink);
}

.sicon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.handle {
  font-size: 14px;
  color: rgba(40,40,40,.7);
}

/* ---------- FOOTER ---------- */
.copyright {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(40,40,40,.55);
}

/* ---------- MOBILE ---------- */
@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
  }

  .hero-title {
    font-size: 42px;
  }

  .split {
    flex-direction: column;
  }

  .divider {
    width: 70%;
    height: 1px;
    margin: 10px auto;
  }
}
