:root {
    --rose: #E89BA0;
    --rose-soft: #F5C5C0;
    --rose-petal: #FBE7E5;
    --wine: #8B3A47;
    --wine-deep: #5E2530;
    --warm-white: #FBF8F5;
    --cream: #F7F1EB;
    --cream-deep: #EFE5DA;
    --ink: #1F1A18;
    --ink-soft: #4A3F3B;
    --hairline: #E8DDD5;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--warm-white); color: var(--ink);
    font-weight: 300; line-height: 1.6; overflow-x: hidden;
    transition: padding-bottom .4s ease;
  }
  body.player-visible { padding-bottom: 78px; }
  body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
    opacity: 0.035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ── IDEA 9: SCROLL PROGRESS INDICATOR ── */
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px;
    background: transparent; z-index: 200;
  }
  .scroll-progress-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--rose), var(--wine));
    transition: width .12s ease-out;
  }
  .section-label {
    position: fixed; top: 78px; right: 6vw; z-index: 90;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 0.78rem; color: var(--wine);
    letter-spacing: 0.16em; text-transform: uppercase;
    opacity: 0; transition: opacity .35s ease;
    pointer-events: none;
    background: rgba(251, 248, 245, 0.85);
    backdrop-filter: blur(8px);
    padding: 5px 10px; border-radius: 2px;
  }
  .section-label.visible { opacity: 1; }
  @media (max-width: 820px) { .section-label { display: none; } }

  /* ── NAV ── */
  nav.topnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 6vw;
    background: rgba(251, 248, 245, 0.88);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .4s, padding .4s;
  }
  nav.topnav.scrolled { border-color: var(--hairline); padding: 10px 6vw; }
  nav.topnav .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--ink);
    transition: transform .35s ease;
  }
  nav.topnav .logo:hover { transform: translateY(-1px); }
  .logo-icon {
    width: 36px; height: 36px;
    transition: width .35s, height .35s;
    color: var(--ink);
    flex-shrink: 0;
  }
  nav.topnav.scrolled .logo-icon { width: 30px; height: 30px; }
  .logo-wordmark {
    display: flex; flex-direction: column;
    line-height: 1; gap: 3px;
  }
  .logo-wordmark .lw-main {
    font-family: 'Italiana', serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1;
  }
  .logo-wordmark .lw-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    color: var(--wine);
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 1px;
  }
  @media (max-width: 480px) {
    .logo-wordmark .lw-main { font-size: 0.92rem; letter-spacing: 0.14em; }
    .logo-wordmark .lw-sub { font-size: 0.46rem; }
  }
  nav.topnav ul {
    list-style: none; display: flex; gap: 28px;
    font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  }
  nav.topnav ul a { position: relative; transition: color .3s; padding: 4px 0; }
  nav.topnav ul a::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 1px; background: var(--rose);
    transition: width .35s, left .35s;
  }
  nav.topnav ul a:hover { color: var(--wine); }
  nav.topnav ul a:hover::after { width: 100%; left: 0; }
  @media (max-width: 820px) { nav.topnav ul { display: none; } }

  /* ── IDEA 6: MOBILE HAMBURGER + DRAWER ── */
  .nav-hamburger {
    display: none; background: transparent; border: none;
    cursor: pointer; padding: 8px; color: var(--ink);
  }
  .nav-hamburger svg { width: 22px; height: 22px; }
  @media (max-width: 820px) { .nav-hamburger { display: flex; } }

  .mobile-drawer {
    position: fixed; inset: 0; z-index: 250;
    background: var(--warm-white);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.7,0,.3,1);
    display: flex; flex-direction: column;
    padding: 24px 6vw 40px;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 60px;
  }
  .mobile-drawer-top img { height: 44px; width: auto; }
  .mobile-drawer-close { background: transparent; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
  .mobile-drawer-close svg { width: 22px; height: 22px; }
  .mobile-drawer ul {
    list-style: none; display: flex; flex-direction: column; gap: 4px;
    flex: 1;
  }
  .mobile-drawer ul a {
    display: block; padding: 18px 0;
    font-family: 'Italiana', serif; font-size: 2rem;
    color: var(--ink); border-bottom: 1px solid var(--hairline);
    letter-spacing: 0.04em;
  }
  .mobile-drawer ul a em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--wine); }
  .mobile-drawer-foot {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--ink-soft); font-size: 0.95rem; padding-top: 30px;
  }

  /* ── HERO (compositional, transparent layers) ── */
  .hero {
    position: relative; min-height: 72vh;
    display: flex; align-items: center; justify-content: center;
    padding: 76px 6vw 36px;
    overflow: hidden;
    background:
      /* Soft pink glow top-right */
      radial-gradient(ellipse 600px 500px at 80% 25%, var(--rose-petal) 0%, transparent 60%),
      /* Cream wash bottom-left */
      radial-gradient(ellipse 500px 400px at 15% 80%, #FFF1EE 0%, transparent 55%),
      /* Subtle warm tint */
      var(--warm-white);
  }
  .hero::after {
    /* Smooth fade to next section */
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 120px; pointer-events: none; z-index: 5;
    background: linear-gradient(to bottom, transparent 0%, var(--warm-white) 100%);
  }

  /* Decorative scattered petals — pure CSS, repeats brand pattern */
  .hero-petals {
    position: absolute; inset: 0; overflow: hidden;
    pointer-events: none; z-index: 1;
  }
  .hero-petals span {
    position: absolute; width: 8px; height: 12px;
    background: var(--rose);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.5; transform-origin: center;
    animation: petalFloat 12s ease-in-out infinite;
    will-change: transform;
  }
  /* Floating keyframe — gentle drift + sway + slight rotation */
  @keyframes petalFloat {
    0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)) scale(var(--s, 1)); }
    25%      { transform: translate(8px, -10px) rotate(calc(var(--r, 0deg) + 8deg)) scale(var(--s, 1)); }
    50%      { transform: translate(-4px, -16px) rotate(calc(var(--r, 0deg) - 4deg)) scale(var(--s, 1)); }
    75%      { transform: translate(-10px, -8px) rotate(calc(var(--r, 0deg) + 12deg)) scale(var(--s, 1)); }
  }
  /* Per-petal custom rotation, scale, animation delay & duration — for organic feel */
  .hero-petals span:nth-child(1)  { top: 12%; left:  4%; --r: -20deg; --s: 1;   opacity: 0.45; animation-delay: 0s;     animation-duration: 11s; }
  .hero-petals span:nth-child(2)  { top:  8%; left: 12%; --r: 40deg;  --s: 0.7; opacity: 0.55; background: var(--rose-soft); animation-delay: 1.3s;   animation-duration: 13s; }
  .hero-petals span:nth-child(3)  { top: 28%; left:  6%; --r: -60deg; --s: 1.2; opacity: 0.4;  animation-delay: 2.6s;   animation-duration: 10s; }
  .hero-petals span:nth-child(4)  { top: 48%; left:  3%; --r: 15deg;  --s: 0.9; opacity: 0.5;  background: var(--rose-soft); animation-delay: 0.4s;   animation-duration: 14s; }
  .hero-petals span:nth-child(5)  { top: 68%; left:  8%; --r: -30deg; --s: 1;   opacity: 0.45; animation-delay: 3.1s;   animation-duration: 12s; }
  .hero-petals span:nth-child(6)  { top: 82%; left: 14%; --r: 70deg;  --s: 0.8; opacity: 0.55; background: var(--wine); animation-delay: 1.8s;   animation-duration: 15s; }
  .hero-petals span:nth-child(7)  { top: 18%; left: 22%; --r: 50deg;  --s: 0.6; opacity: 0.35; animation-delay: 4.2s;   animation-duration: 11s; }
  .hero-petals span:nth-child(8)  { top:  6%; right: 22%;--r: -50deg; --s: 0.7; opacity: 0.45; animation-delay: 0.9s;   animation-duration: 13s; }
  .hero-petals span:nth-child(9)  { top: 16%; right: 12%;--r: 30deg;  --s: 1;   opacity: 0.55; background: var(--rose-soft); animation-delay: 2.2s;   animation-duration: 10s; }
  .hero-petals span:nth-child(10) { top: 38%; right:  5%;--r: -15deg; --s: 1.1; opacity: 0.5;  animation-delay: 3.5s;   animation-duration: 14s; }
  .hero-petals span:nth-child(11) { top: 56%; right:  9%;--r: 60deg;  --s: 0.85;opacity: 0.45; background: var(--wine); animation-delay: 1.1s;   animation-duration: 12s; }
  .hero-petals span:nth-child(12) { top: 74%; right:  4%;--r: -40deg; --s: 1;   opacity: 0.5;  animation-delay: 4.7s;   animation-duration: 11s; }
  .hero-petals span:nth-child(13) { top: 88%; right: 15%;--r: 20deg;  --s: 0.7; opacity: 0.4;  background: var(--rose-soft); animation-delay: 2.9s;   animation-duration: 13s; }
  .hero-petals span:nth-child(14) { top: 30%; right: 22%;--r: 80deg;  --s: 0.5; opacity: 0.35; animation-delay: 0.6s;   animation-duration: 15s; }

  .hero-composition {
    position: relative; z-index: 4;
    width: 100%; max-width: 1140px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 0;
    justify-items: center;
  }
  @media (max-width: 900px) {
    .hero-composition { grid-template-columns: 1fr; gap: 0; }
  }

  /* LEFT — the logo composition (silhouette + headphones + mic + wordmark) */
  .hero-logo-block {
    position: relative;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    opacity: 0;
    animation: fadeIn 1.1s cubic-bezier(.16,.84,.44,1) .2s forwards;
    justify-self: end;
    padding-right: 10px;
    will-change: transform;
  }
  @media (max-width: 900px) {
    .hero-logo-block { justify-self: center; padding-right: 0; }
  }
  .hero-icon-wrap {
    position: relative;
    width: 100%; max-width: 380px;
    display: flex; justify-content: center;
  }
  @media (max-width: 900px) {
    .hero-icon-wrap { max-width: 260px; }
  }
  .hero-icon {
    width: 100%; height: auto;
    filter: drop-shadow(0 8px 22px rgba(139, 58, 71, 0.08));
    position: relative; z-index: 2;
    mix-blend-mode: multiply;
  }
  /* CONCENTRIC AUDIO RINGS — emanating from microphone */
  .hero-rings {
    position: absolute;
    right: 8%; top: 52%;
    width: 60%; aspect-ratio: 1;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-rings::before, .hero-rings::after,
  .hero-rings span:nth-child(1),
  .hero-rings span:nth-child(2) {
    content: ''; position: absolute; inset: 0;
    border: 1.5px solid var(--rose);
    border-radius: 50%;
    opacity: 0;
    animation: signalRing 3.6s ease-out infinite;
  }
  .hero-rings::before { animation-delay: 0s; }
  .hero-rings::after  { animation-delay: 0.9s; }
  .hero-rings span:nth-child(1) { animation-delay: 1.8s; }
  .hero-rings span:nth-child(2) { animation-delay: 2.7s; }
  @keyframes signalRing {
    0%   { transform: scale(0.7); opacity: 0; border-width: 2px; }
    15%  { opacity: 0.55; }
    100% { transform: scale(1.5); opacity: 0; border-width: 0.5px; }
  }

  /* AUDIO WAVEFORM under the icon */
  .hero-waveform {
    display: flex; align-items: center; justify-content: center;
    gap: 4px; height: 22px;
    margin: -2px 0 6px;
    width: 100%; max-width: 200px;
  }
  .hero-waveform .bar {
    flex: 1; max-width: 4px;
    background: linear-gradient(180deg, var(--rose), var(--wine));
    border-radius: 100px;
    animation: wfPulse 1.4s ease-in-out infinite;
    transform-origin: center;
  }
  .hero-waveform .bar:nth-child(1)  { animation-delay: 0s;     height: 30%; }
  .hero-waveform .bar:nth-child(2)  { animation-delay: 0.08s;  height: 50%; }
  .hero-waveform .bar:nth-child(3)  { animation-delay: 0.16s;  height: 75%; }
  .hero-waveform .bar:nth-child(4)  { animation-delay: 0.24s;  height: 45%; }
  .hero-waveform .bar:nth-child(5)  { animation-delay: 0.32s;  height: 90%; }
  .hero-waveform .bar:nth-child(6)  { animation-delay: 0.40s;  height: 100%; }
  .hero-waveform .bar:nth-child(7)  { animation-delay: 0.48s;  height: 75%; }
  .hero-waveform .bar:nth-child(8)  { animation-delay: 0.56s;  height: 95%; }
  .hero-waveform .bar:nth-child(9)  { animation-delay: 0.64s;  height: 60%; }
  .hero-waveform .bar:nth-child(10) { animation-delay: 0.72s;  height: 80%; }
  .hero-waveform .bar:nth-child(11) { animation-delay: 0.80s;  height: 40%; }
  .hero-waveform .bar:nth-child(12) { animation-delay: 0.88s;  height: 65%; }
  .hero-waveform .bar:nth-child(13) { animation-delay: 0.96s;  height: 30%; }
  @keyframes wfPulse {
    0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
    50%      { transform: scaleY(1.2); opacity: 1; }
  }

  .hero-wordmark {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; margin-top: 0;
  }
  .hero-wordmark-main {
    font-family: 'Allura', cursive;
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    line-height: 1; color: var(--ink);
    letter-spacing: 0.005em;
    transform: rotate(-2deg);
    text-shadow: 0 2px 12px rgba(232, 155, 160, 0.2);
  }
  .hero-wordmark-sub {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    letter-spacing: 0.55em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
    padding-left: 0.55em;
    margin-top: 4px;
  }
  .hero-wordmark-sub::before, .hero-wordmark-sub::after {
    content: ''; width: 28px; height: 1px;
    background: var(--rose); opacity: 0.5;
    margin-left: -0.55em;
  }
  .hero-wordmark-sub::after {
    margin-left: 0; margin-right: -0.55em;
  }
  .hero-wordmark-sub .ep-dot {
    width: 6px; height: 6px; background: var(--rose);
    border-radius: 50%; flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
  }

  /* RIGHT — portrait + watercolor + signature */
  .hero-portrait-block {
    position: relative;
    display: flex; justify-content: center; align-items: flex-end;
    opacity: 0;
    animation: fadeIn 1.1s cubic-bezier(.16,.84,.44,1) .45s forwards;
    justify-self: start;
    padding-left: 10px;
    will-change: transform;
  }
  @media (max-width: 900px) {
    .hero-portrait-block { justify-self: center; padding-left: 0; margin-top: -40px; }
  }
  .hero-portrait-block img {
    width: 100%; max-width: 540px; height: auto;
    filter: drop-shadow(0 14px 40px rgba(139, 58, 71, 0.10));
  }
  @media (max-width: 900px) {
    .hero-portrait-block img { max-width: 360px; }
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .scroll-hint {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.08em;
    opacity: 0; animation: fadeIn 1s ease 1.4s forwards; z-index: 5;
  }
  .scroll-hint::after {
    content: ''; display: block; width: 1px; height: 26px;
    background: var(--rose); margin: 10px auto 0;
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes pulse { 0%,100% { opacity: 1; height: 26px; } 50% { opacity: 0.25; height: 12px; } }

  /* ── COMMON ── */
  section { padding: 60px 6vw; position: relative; }
  @media (max-width: 760px) { section { padding: 48px 6vw; } }
  .eyebrow {
    font-family: 'Manrope', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--wine); margin-bottom: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 14px;
  }
  .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rose); }
  .eyebrow.centered { justify-content: center; }
  .eyebrow.centered::after { content: ''; width: 28px; height: 1px; background: var(--rose); }
  h2.display {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(1.95rem, 4vw, 3rem); line-height: 1.16;
    letter-spacing: -0.01em; color: var(--ink); margin-bottom: 12px;
  }
  h2.display em { font-style: italic; color: var(--wine); font-weight: 400; }

  /* ── MANIFEST ── */
  .manifest { background: var(--cream); text-align: center; overflow: hidden; }
  .manifest::before { content: ''; position: absolute; top: -80px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, var(--rose-petal) 0%, transparent 65%); border-radius: 50%; }
  .manifest::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 280px; height: 280px; background: radial-gradient(circle, var(--rose-petal) 0%, transparent 65%); border-radius: 50%; }
  .manifest-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
  .manifest-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--wine); font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 18px; }
  .manifest-quote { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.26; color: var(--ink); letter-spacing: -0.005em; }
  .manifest-quote .dash { color: var(--rose); margin: 0 6px; }
  .manifest-quote em { font-style: italic; color: var(--wine); }
  .manifest-sig { margin-top: 20px; height: 56px; display: flex; justify-content: center; align-items: center; }
  .manifest-sig img { height: 100%; width: auto; opacity: 0.85; }
  .manifest-role { font-family: 'Manrope', sans-serif; font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

  /* ── SOCIAL PROOF + COUNTDOWN — combined into a single thin strip ── */
  .strip {
    background: var(--warm-white); padding: 20px 6vw;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .strip-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; align-items: center;
  }
  @media (max-width: 900px) {
    .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
    .strip-item.countdown { grid-column: 1 / -1; order: -1; padding-bottom: 18px; border-bottom: 1px solid var(--hairline); }
  }
  .strip-item {
    text-align: center; padding: 0 16px; position: relative;
  }
  .strip-item:not(:last-child)::after {
    content: ''; position: absolute; top: 50%; right: 0;
    transform: translateY(-50%); width: 1px; height: 36px;
    background: var(--hairline);
  }
  @media (max-width: 900px) {
    .strip-item::after { display: none; }
  }
  .sp-num {
    font-family: 'Italiana', serif; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    color: var(--ink); line-height: 1; margin-bottom: 5px; letter-spacing: -0.01em;
  }
  .sp-num em { font-style: italic; color: var(--rose); font-family: 'Cormorant Garamond', serif; font-weight: 400; }
  .sp-num .star { color: var(--rose); margin-right: 3px; }
  .sp-label {
    font-family: 'Manrope', sans-serif; font-size: 0.62rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft);
  }

  /* IDEA 8: countdown within strip */
  .strip-item.countdown { padding: 0 20px; }
  .countdown-eyebrow {
    font-family: 'Manrope', sans-serif; font-size: 0.58rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--wine); font-weight: 500; margin-bottom: 4px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .countdown-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--rose); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
  .countdown-clock {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--ink); font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
  }
  .countdown-clock em { color: var(--wine); font-weight: 500; }

  /* ── KELLELE ── */
  .for-whom { background: var(--warm-white); }
  .fw-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center; }
  @media (max-width: 900px) { .fw-grid { grid-template-columns: 1fr; gap: 36px; } }
  .fw-text p { font-size: 1rem; color: var(--ink-soft); max-width: 460px; margin-bottom: 14px; }
  .fw-text p em { font-style: italic; color: var(--wine); }
  .fw-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .fw-list li {
    display: flex; gap: 22px; align-items: flex-start;
    padding: 20px 24px; background: var(--cream);
    border-left: 2px solid var(--rose);
    transition: transform .4s, box-shadow .4s;
  }
  .fw-list li:hover { transform: translateX(6px); box-shadow: 0 12px 30px -16px rgba(139, 58, 71, 0.2); }
  .fw-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--rose); line-height: 1; min-width: 28px; }
  .fw-item-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
  .fw-item-text span { font-size: 0.88rem; color: var(--ink-soft); }

  /* ── IDEA 5: QUOTE CAROUSEL ── */
  .quote-carousel {
    background: var(--cream); padding: 44px 6vw;
    overflow: hidden; position: relative;
  }
  .quote-carousel-inner {
    max-width: 1100px; margin: 0 auto; position: relative;
    min-height: 200px;
  }
  .qc-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .8s ease;
    text-align: center;
    display: flex; flex-direction: column; justify-content: center;
  }
  .qc-slide.active { opacity: 1; }
  .qc-mark {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 4rem; color: var(--rose); opacity: 0.5;
    line-height: 0.4; margin-bottom: 14px;
  }
  .qc-text {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.4; color: var(--ink);
    max-width: 880px; margin: 0 auto 22px;
    font-weight: 400;
  }
  .qc-text em { color: var(--wine); }
  .qc-attrib {
    font-family: 'Manrope', sans-serif; font-size: 0.74rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
  }
  .qc-attrib strong { color: var(--ink); font-weight: 500; }
  .qc-attrib .sep { color: var(--rose); margin: 0 8px; }
  .qc-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 24px;
  }
  .qc-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--hairline); border: none;
    cursor: pointer; transition: background .3s, width .3s;
    padding: 0;
  }
  .qc-dot.active { background: var(--rose); width: 22px; border-radius: 100px; }

  /* ── EPISODES ── */
  .episodes-head { max-width: 760px; margin: 0 auto 22px; text-align: center; }
  .episodes-head p { color: var(--ink-soft); font-size: 1rem; max-width: 560px; margin: 0 auto; }

  /* IDEA 7: MOOD FILTER CHIPS */
  .mood-filters {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; max-width: 900px; margin: 0 auto 36px;
  }
  .mood-chip {
    padding: 8px 18px; background: transparent;
    border: 1px solid var(--hairline);
    font-family: 'Manrope', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
    cursor: pointer; transition: all .3s ease;
    border-radius: 100px;
  }
  .mood-chip:hover { color: var(--wine); border-color: var(--rose-soft); }
  .mood-chip.active { background: var(--wine); color: var(--warm-white); border-color: var(--wine); }
  .mood-chip.active:hover { color: var(--warm-white); }

  /* IDEA 2: FEATURED EPISODE WITH WAVEFORM + CHAPTERS */
  .featured-ep {
    max-width: 1240px; margin: 0 auto 18px;
    background: linear-gradient(105deg, var(--cream) 0%, var(--cream-deep) 100%);
    border: 1px solid var(--hairline);
    border-radius: 2px; position: relative; overflow: hidden;
  }
  .featured-ep::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 90% 50%, var(--rose-petal) 0%, transparent 55%);
    opacity: 0.7; pointer-events: none;
  }
  .featured-grid {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 36px; padding: 32px 40px;
    position: relative; z-index: 2;
  }
  @media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; } }
  .featured-left { display: flex; flex-direction: column; gap: 12px; }
  .latest-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wine); color: var(--warm-white);
    padding: 6px 12px; border-radius: 100px;
    font-family: 'Manrope', sans-serif; font-size: 0.58rem;
    letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
    width: max-content;
  }
  .latest-badge::before { content: ''; width: 6px; height: 6px; background: var(--rose); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
  .featured-num {
    font-family: 'Italiana', serif; font-size: 4rem;
    line-height: 1; color: var(--rose); letter-spacing: -0.02em;
  }
  @media (max-width: 900px) { .featured-num { font-size: 3rem; } }
  .featured-center { min-width: 0; }
  .featured-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 500; line-height: 1.25; color: var(--ink);
    margin-bottom: 10px; letter-spacing: -0.005em;
  }
  .featured-guest { font-family: 'Allura', cursive; font-size: 1.4rem; color: var(--wine); line-height: 1; margin-bottom: 14px; }
  .featured-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; max-width: 540px; }

  /* IDEA 3: METADATA ROW (with chapter button) */
  .ep-meta {
    display: flex; flex-wrap: wrap; gap: 18px; padding-top: 14px;
    border-top: 1px solid var(--hairline);
    font-family: 'Manrope', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
    align-items: center;
  }
  .ep-meta .m-item { display: flex; align-items: center; gap: 7px; }
  .ep-meta .m-item svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.7; }
  .ep-meta .m-divider { color: var(--rose); }

  /* IDEA 3 cont: CHAPTERS ACCORDION */
  .chapter-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: none; cursor: pointer;
    padding: 0; color: var(--wine);
    font-family: 'Manrope', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  }
  .chapter-toggle svg { width: 10px; height: 10px; transition: transform .3s; }
  .chapter-toggle.open svg { transform: rotate(180deg); }
  .chapters-panel {
    max-height: 0; overflow: hidden;
    transition: max-height .5s cubic-bezier(.7,0,.3,1);
    border-top: 1px solid var(--hairline);
    margin-top: 14px;
  }
  .chapters-panel.open { max-height: 400px; }
  .chapters-list {
    list-style: none; display: flex; flex-direction: column;
    padding: 16px 0;
  }
  .chapters-list li {
    display: grid; grid-template-columns: auto 1fr;
    gap: 22px; padding: 7px 0;
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink-soft); font-size: 0.95rem;
    border-bottom: 1px dotted var(--hairline);
    cursor: pointer; transition: color .25s;
  }
  .chapters-list li:hover { color: var(--wine); }
  .chapters-list li:last-child { border-bottom: none; }
  .chapter-time {
    font-family: 'Manrope', sans-serif; font-size: 0.72rem;
    color: var(--rose); font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.06em;
  }

  .featured-right {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding-left: 20px; border-left: 1px solid var(--hairline);
  }
  @media (max-width: 900px) { .featured-right { padding-left: 0; border-left: none; padding-top: 20px; border-top: 1px solid var(--hairline); width: 100%; } }
  .play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--wine); color: var(--warm-white);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px -8px rgba(139, 58, 71, 0.5);
    transition: transform .35s cubic-bezier(.16,.84,.44,1), background .3s;
    position: relative;
  }
  .play-btn::before { content: ''; position: absolute; inset: -5px; border: 1px solid var(--rose); border-radius: 50%; opacity: 0.4; }
  .play-btn::after { content: ''; position: absolute; inset: -12px; border: 1px solid var(--rose); border-radius: 50%; opacity: 0.2; animation: ripple 2.4s ease-out infinite; }
  @keyframes ripple { 0% { transform: scale(0.9); opacity: 0.4; } 100% { transform: scale(1.2); opacity: 0; } }
  .play-btn:hover { transform: scale(1.05); background: var(--wine-deep); }
  .play-btn svg { width: 24px; height: 24px; margin-left: 3px; }

  /* WAVEFORM */
  .waveform { width: 100%; max-width: 200px; height: 50px; display: flex; align-items: center; gap: 2px; }
  .waveform .bar {
    flex: 1; background: var(--wine);
    opacity: 0.35; border-radius: 100px;
    transition: opacity .3s;
    animation: wave-pulse 1.6s ease-in-out infinite;
  }
  .featured-ep:hover .waveform .bar { opacity: 0.6; }
  .waveform .bar:nth-child(odd) { animation-delay: .15s; }
  .waveform .bar:nth-child(3n) { animation-delay: .3s; }
  .waveform .bar:nth-child(4n+1) { animation-delay: .45s; }
  .waveform .bar:nth-child(5n+2) { animation-delay: .6s; }
  @keyframes wave-pulse { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

  /* EPISODE GRID with IDEA 10 (unique gradients per card) */
  .episode-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 1240px; margin: 0 auto;
  }
  @media (max-width: 760px) { .episode-grid { grid-template-columns: 1fr; gap: 18px; } }
  .ep-card {
    background: var(--warm-white); border: 1px solid var(--hairline);
    padding: 24px 26px 20px; position: relative;
    transition: transform .5s cubic-bezier(.16,.84,.44,1), box-shadow .5s, border-color .5s;
    cursor: pointer; overflow: hidden;
  }
  .ep-card::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0;
    width: 50%;
    background: var(--ep-gradient, radial-gradient(circle at 100% 50%, var(--rose-petal) 0%, transparent 60%));
    opacity: 0.5; transition: opacity .6s; z-index: 0;
    pointer-events: none;
  }
  .ep-card > * { position: relative; z-index: 1; }
  .ep-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(139, 58, 71, 0.22); border-color: var(--rose-soft); }
  .ep-card:hover::before { opacity: 0.8; }

  /* IDEA 4: AUDIO PREVIEW INDICATOR */
  .ep-card .preview-indicator {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: var(--wine); color: var(--warm-white);
    padding: 4px 8px; border-radius: 100px;
    font-family: 'Manrope', sans-serif; font-size: 0.54rem;
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
    opacity: 0; transform: translateY(-4px);
    transition: opacity .35s ease, transform .35s ease;
    display: flex; align-items: center; gap: 5px;
  }
  .ep-card .preview-indicator::before {
    content: ''; width: 5px; height: 5px; background: var(--rose);
    border-radius: 50%; animation: blink 1s ease-in-out infinite;
  }
  .ep-card.previewing .preview-indicator { opacity: 1; transform: translateY(0); }

  .ep-card .ep-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
  .ep-card .ep-number {
    font-family: 'Italiana', serif; font-size: 2.8rem;
    color: var(--rose); line-height: 1; opacity: 0.7;
    letter-spacing: -0.02em;
  }
  .ep-card .mini-play {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--warm-white); border: 1px solid var(--wine);
    display: flex; align-items: center; justify-content: center;
    color: var(--wine); cursor: pointer; flex-shrink: 0;
    transition: background .3s, color .3s, transform .3s;
  }
  .ep-card .mini-play:hover { background: var(--wine); color: var(--warm-white); transform: scale(1.08); }
  .ep-card .mini-play svg { width: 12px; height: 12px; margin-left: 2px; }
  .ep-card .ep-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
  .ep-card .ep-guest { font-family: 'Allura', cursive; color: var(--wine); font-size: 1.15rem; line-height: 1; margin-bottom: 14px; }
  .ep-card .ep-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
  .ep-card .ep-meta { font-size: 0.62rem; gap: 12px; padding-top: 12px; }
  .ep-card .ep-meta .m-item svg { width: 10px; height: 10px; }

  /* ── ABOUT ── */
  /* ── ABOUT (centered single-column) ── */
  .about { background: var(--cream); position: relative; overflow: hidden; }
  .about::before { content: ''; position: absolute; bottom: -180px; right: -160px; width: 440px; height: 440px; background: radial-gradient(circle, var(--rose-petal) 0%, transparent 60%); border-radius: 50%; }
  .about::after { content: ''; position: absolute; top: -100px; left: -120px; width: 320px; height: 320px; background: radial-gradient(circle, var(--rose-petal) 0%, transparent 65%); border-radius: 50%; opacity: 0.6; }
  .about-inner {
    max-width: 760px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
  }
  .about-portrait {
    position: relative; width: 220px; height: 220px;
    margin: 22px auto 28px;
    border-radius: 50%; overflow: hidden;
    box-shadow: 0 24px 50px -22px rgba(139, 58, 71, 0.4);
    border: 4px solid var(--warm-white);
  }
  .about-portrait img { width: 100%; height: 100%; object-fit: cover; }
  .about-portrait::after {
    content: ''; position: absolute; inset: -10px;
    border: 1px solid var(--rose); border-radius: 50%;
    opacity: 0.5; pointer-events: none;
  }
  .about-inner h2.display { margin-bottom: 18px; }
  .about-inner p {
    font-size: 1.02rem; color: var(--ink-soft);
    margin-bottom: 14px; max-width: 620px;
  }
  .about-inner .pull {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.45rem; color: var(--wine); line-height: 1.4;
    padding: 18px 0 18px;
    margin: 22px 0; font-weight: 400;
    position: relative; max-width: 640px;
  }
  .about-inner .pull::before, .about-inner .pull::after {
    content: ''; position: absolute; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 1px; background: var(--rose); opacity: 0.5;
  }
  .about-inner .pull::before { top: 0; }
  .about-inner .pull::after { bottom: 0; }
  .about-sig { height: 54px; margin-top: 22px; display: flex; align-items: center; justify-content: center; }
  .about-sig img { height: 100%; width: auto; opacity: 0.85; }

  /* ── IDEA 2: GUEST GALLERY ── */
  .guest-gallery { background: var(--warm-white); padding: 44px 6vw; }
  .gg-head { text-align: center; max-width: 600px; margin: 0 auto 32px; }
  .gg-track {
    display: flex; gap: 24px; padding: 8px 6vw;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
    max-width: 100vw; margin-left: calc(-6vw); margin-right: calc(-6vw);
    justify-content: safe center;
    scroll-padding-inline: 50%;
  }
  .gg-track::-webkit-scrollbar { display: none; }
  .gg-guest {
    flex: 0 0 auto; text-align: center;
    scroll-snap-align: center;
    cursor: pointer; transition: transform .35s ease;
  }
  .gg-guest:hover { transform: translateY(-4px); }
  .gg-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 12px;
    border: 3px solid var(--warm-white);
    box-shadow: 0 8px 22px -8px rgba(139, 58, 71, 0.3);
    background: linear-gradient(135deg, var(--rose-petal), var(--rose-soft));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Italiana', serif; font-size: 2rem;
    color: var(--wine);
    transition: transform .4s ease;
  }
  .gg-guest:hover .gg-avatar { transform: scale(1.06); }
  .gg-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .gg-name {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 0.95rem; color: var(--ink); line-height: 1.2;
    margin-bottom: 3px;
  }
  .gg-ep {
    font-family: 'Manrope', sans-serif; font-size: 0.62rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--wine); font-weight: 500;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--cream); }
  .test-head { text-align: center; max-width: 700px; margin: 0 auto 30px; }
  .test-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; gap: 18px; } }
  .test-card { background: var(--warm-white); padding: 30px 28px 26px; position: relative; border-radius: 2px; }
  .test-card::before { content: '"'; position: absolute; top: 4px; left: 24px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 5.5rem; line-height: 1; color: var(--rose); opacity: 0.4; }
  .test-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: 1rem; line-height: 1.55; color: var(--ink); margin-bottom: 22px; position: relative; z-index: 2; }
  .test-attrib { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--hairline); padding-top: 16px; }
  .test-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--warm-white); box-shadow: 0 3px 10px -4px rgba(139, 58, 71, 0.25); }
  .test-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .test-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.1; margin-bottom: 2px; }
  .test-role { font-family: 'Manrope', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

  /* ── LISTEN ── */
  .listen { background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%); text-align: center; position: relative; overflow: hidden; }
  .listen::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--rose-petal) 0%, transparent 60%); z-index: 0; }
  .listen-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
  .listen h2 { margin-bottom: 14px; }
  .listen > .listen-inner > p { font-size: 1rem; color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; }
  .platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .platform {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 22px 14px 18px;
    border: 1px solid var(--hairline);
    background: var(--warm-white);
    font-family: 'Manrope', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500; color: var(--ink);
    transition: all .35s cubic-bezier(.16,.84,.44,1);
    cursor: pointer; border-radius: 4px;
    text-decoration: none;
  }
  .platform:hover {
    background: var(--ink); color: var(--warm-white);
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -14px rgba(31, 26, 24, 0.4);
  }
  .platform-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform .35s;
  }
  .platform:hover .platform-icon { transform: scale(1.08) rotate(-2deg); }
  .platform-icon svg { width: 100%; height: 100%; display: block; }

  /* ── IDEA 1: NEWSLETTER CAPTURE ── */
  .newsletter {
    background: var(--cream); padding: 60px 6vw;
    position: relative; overflow: hidden;
  }
  .newsletter::before {
    content: ''; position: absolute;
    top: 50%; right: -100px; transform: translateY(-50%);
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--rose-petal) 0%, transparent 65%);
    border-radius: 50%;
  }
  .nl-inner {
    max-width: 780px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
  }
  .nl-tagline {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.4; color: var(--ink);
    margin: 12px 0 14px; max-width: 600px; margin-left: auto; margin-right: auto;
  }
  .nl-tagline em { color: var(--wine); font-style: italic; }
  .nl-sub {
    font-family: 'Manrope', sans-serif; font-size: 0.84rem;
    color: var(--ink-soft); margin-bottom: 28px; max-width: 480px;
    margin-left: auto; margin-right: auto;
  }
  .nl-form {
    display: flex; max-width: 480px; margin: 0 auto;
    gap: 0; background: var(--warm-white);
    border: 1px solid var(--hairline);
    padding: 4px; border-radius: 100px;
  }
  .nl-form:focus-within { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(232, 155, 160, 0.15); }
  .nl-form input {
    flex: 1; padding: 12px 18px;
    background: transparent; border: none; outline: none;
    font-family: 'Manrope', sans-serif; font-size: 0.92rem;
    color: var(--ink);
  }
  .nl-form input::placeholder { color: rgba(31, 26, 24, 0.4); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
  .nl-form button {
    background: var(--wine); color: var(--warm-white);
    border: none; padding: 12px 28px;
    font-family: 'Manrope', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
    cursor: pointer; border-radius: 100px;
    transition: background .3s, transform .3s;
  }
  .nl-form button:hover { background: var(--wine-deep); transform: scale(1.02); }
  .nl-promise {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 0.85rem; color: var(--ink-soft); margin-top: 18px;
  }
  @media (max-width: 600px) {
    .nl-form { flex-direction: column; padding: 8px; border-radius: 12px; }
    .nl-form input { padding: 10px 14px; }
    .nl-form button { padding: 12px; border-radius: 8px; }
  }

  /* ── MEGA QUOTE ── */
  .mega-quote { background: var(--ink); color: var(--warm-white); padding: 56px 6vw; position: relative; overflow: hidden; text-align: center; }
  @media (max-width: 760px) { .mega-quote { padding: 44px 6vw; } }
  .mega-quote::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(circle, rgba(139, 58, 71, 0.4) 0%, transparent 50%); pointer-events: none; }
  .mega-quote::after { content: ''; position: absolute; bottom: -50%; left: -20%; width: 80%; height: 200%; background: radial-gradient(circle, rgba(232, 155, 160, 0.15) 0%, transparent 50%); pointer-events: none; }
  .mq-eyebrow { font-family: 'Manrope', sans-serif; font-size: 0.68rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--rose); margin-bottom: 22px; font-weight: 500; position: relative; z-index: 2; }
  .mq-text { font-family: 'Italiana', serif; font-size: clamp(1.8rem, 4.5vw, 3.5rem); line-height: 1.1; letter-spacing: -0.02em; max-width: 980px; margin: 0 auto 24px; position: relative; z-index: 2; color: var(--warm-white); }
  .mq-text em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--rose); font-weight: 400; }
  .mq-text .open, .mq-text .close { font-family: 'Cormorant Garamond', serif; color: var(--rose); opacity: 0.5; font-size: 0.7em; line-height: 0; display: inline-block; vertical-align: middle; }
  .mq-attrib { display: inline-flex; align-items: center; gap: 16px; font-family: 'Manrope', sans-serif; font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(251, 248, 245, 0.6); font-weight: 500; position: relative; z-index: 2; }
  .mq-attrib::before, .mq-attrib::after { content: ''; width: 32px; height: 1px; background: var(--rose); opacity: 0.6; }

  /* ── FOOTER ── */
  footer { background: var(--ink); color: var(--warm-white); padding: 40px 6vw 24px; position: relative; overflow: hidden; border-top: 1px solid rgba(232, 155, 160, 0.15); }
  .footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
  @media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
  .footer-brand-block .brand-mark { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
  .footer-brand-block .brand-mark .footer-logo-img { height: 80px; width: auto; opacity: 0.92; }
  .footer-brand-block .brand-mark .footer-wordmark { display: flex; flex-direction: column; gap: 4px; }
  .footer-brand-block .brand-mark .footer-wordmark .fw-main { font-family: 'Italiana', serif; font-size: 1.15rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-white); line-height: 1; }
  .footer-brand-block .brand-mark .footer-wordmark .fw-sub { font-family: 'Manrope', sans-serif; font-size: 0.55rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--rose); font-weight: 500; }
  .footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(251, 248, 245, 0.7); font-size: 1rem; max-width: 280px; line-height: 1.55; }
  .footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500; color: var(--rose); margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 9px; color: rgba(251, 248, 245, 0.72); font-size: 0.86rem; transition: color .3s; }
  .footer-col li a:hover { color: var(--rose); }
  .footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(251, 248, 245, 0.12); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.7rem; color: rgba(251, 248, 245, 0.5); letter-spacing: 0.04em; }
  .footer-bottom em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 0.88rem; color: rgba(251, 248, 245, 0.75); }
  @media (max-width: 760px) { .footer-bottom { flex-direction: column; gap: 10px; } }

  /* ── STICKY AUDIO PLAYER ── */
  .sticky-player {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 200; height: 78px;
    background: var(--ink); color: var(--warm-white);
    transform: translateY(100%);
    transition: transform .55s cubic-bezier(.16,.84,.44,1);
    box-shadow: 0 -20px 50px -20px rgba(31, 26, 24, 0.4);
    border-top: 1px solid rgba(232, 155, 160, 0.25);
  }
  .sticky-player.visible { transform: translateY(0); }
  .sp-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(251, 248, 245, 0.08); cursor: pointer; }
  .sp-progress-fill { height: 100%; background: linear-gradient(90deg, var(--rose) 0%, var(--wine) 100%); width: 22%; position: relative; transition: width .3s ease; }
  .sp-progress-fill::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(232, 155, 160, 0.25); opacity: 0; transition: opacity .3s; }
  .sp-progress:hover .sp-progress-fill::after { opacity: 1; }
  .sp-inner { max-width: 1400px; margin: 0 auto; height: 100%; padding: 0 6vw; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 20px; }
  .sp-thumb { width: 52px; height: 52px; flex-shrink: 0; background: var(--wine-deep); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .sp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
  .sp-info { min-width: 0; }
  .sp-eyebrow { font-family: 'Manrope', sans-serif; font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; font-weight: 500; }
  .sp-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--warm-white); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sp-time { font-family: 'Manrope', sans-serif; font-size: 0.76rem; color: rgba(251, 248, 245, 0.55); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
  .sp-time .total { color: rgba(251, 248, 245, 0.3); margin-left: 4px; }
  .sp-controls { display: flex; align-items: center; gap: 12px; }
  .sp-btn { width: 36px; height: 36px; border-radius: 50%; background: transparent; border: none; color: rgba(251, 248, 245, 0.7); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .25s, background .25s; }
  .sp-btn:hover { color: var(--rose); background: rgba(232, 155, 160, 0.08); }
  .sp-btn.play { background: var(--rose); color: var(--ink); width: 44px; height: 44px; }
  .sp-btn.play:hover { background: var(--warm-white); }
  .sp-btn svg { width: 13px; height: 13px; }
  .sp-btn.play svg { width: 15px; height: 15px; margin-left: 1px; }
  .sp-close { background: transparent; border: none; color: rgba(251, 248, 245, 0.4); cursor: pointer; padding: 6px; transition: color .25s; }
  .sp-close:hover { color: var(--rose); }
  .sp-close svg { width: 14px; height: 14px; }
  @media (max-width: 720px) {
    .sp-inner { gap: 12px; padding: 0 4vw; }
    .sp-time { display: none; }
    .sp-controls .sp-btn:not(.play) { display: none; }
    .sp-eyebrow { font-size: 0.54rem; }
    .sp-title { font-size: 0.9rem; }
  }

  /* ── IDEA #18: PRESS STRIP ── */
  .press {
    background: var(--warm-white);
    padding: 24px 6vw;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .press-label {
    font-family: 'Manrope', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--ink-soft); text-align: center; margin-bottom: 18px;
    display: flex; align-items: center; gap: 14px; justify-content: center;
  }
  .press-label::before, .press-label::after { content: ''; width: 24px; height: 1px; background: var(--hairline); }
  .press-row {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 36px 48px;
    max-width: 1100px; margin: 0 auto;
  }
  .press-logo {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink-soft); opacity: 0.58;
    transition: opacity .3s ease;
    text-decoration: none;
    user-select: none;
  }
  .press-logo:hover { opacity: 0.95; }
  .press-logo.postimees { font-family: 'Italiana', serif; font-size: 1.5rem; letter-spacing: -0.01em; font-weight: 400; }
  .press-logo.err { font-family: 'Manrope', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.04em; }
  .press-logo.ekspress { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.45rem; letter-spacing: 0.01em; }
  .press-logo.naistele { font-family: 'Allura', cursive; font-size: 1.85rem; line-height: 1; }
  .press-logo.delfi { font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
  .press-logo.anne { font-family: 'Italiana', serif; font-size: 1.35rem; letter-spacing: 0.06em; font-style: italic; }
  @media (max-width: 700px) {
    .press-row { gap: 24px 32px; }
    .press-logo { transform: scale(0.85); }
  }

  /* ── IDEA #8: ANIMATED CUMULATIVE COUNTER (upgrades existing strip cells) ── */
  .sp-num.counter { font-variant-numeric: tabular-nums; }

  /* ── IDEA #7: "MENTIONED IN" + IDEA #13: "NEXT EPISODE" inside chapter panel ── */
  .chapters-panel.open { max-height: 900px; }
  .ep-extras {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 26px; padding: 18px 0 4px;
    border-top: 1px solid var(--hairline);
    margin-top: 6px;
  }
  @media (max-width: 760px) { .ep-extras { grid-template-columns: 1fr; gap: 20px; } }
  .extras-block h5 {
    font-family: 'Manrope', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--wine); font-weight: 500;
    margin-bottom: 12px;
  }
  .mentioned-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .mentioned-list li {
    display: grid; grid-template-columns: 18px 1fr;
    gap: 10px; font-family: 'Cormorant Garamond', serif;
    color: var(--ink-soft); font-size: 0.94rem; line-height: 1.4;
    align-items: start;
  }
  .mentioned-list svg { width: 14px; height: 14px; opacity: 0.6; margin-top: 4px; }
  .mentioned-list a { color: var(--ink); border-bottom: 1px solid var(--rose-soft); transition: color .25s, border-color .25s; }
  .mentioned-list a:hover { color: var(--wine); border-color: var(--wine); }
  .mentioned-list .kind {
    display: inline-block; font-family: 'Manrope', sans-serif;
    font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--rose); font-weight: 500; margin-right: 6px;
  }
  .next-ep-card {
    display: flex; gap: 14px; align-items: center;
    padding: 14px 14px;
    background: var(--warm-white);
    border: 1px solid var(--hairline);
    border-left: 2px solid var(--rose);
    text-decoration: none; color: inherit;
    transition: transform .35s, border-color .35s;
  }
  .next-ep-card:hover { transform: translateX(4px); border-left-color: var(--wine); }
  .next-ep-num {
    font-family: 'Italiana', serif; font-size: 2rem; line-height: 1;
    color: var(--rose); flex-shrink: 0;
  }
  .next-ep-info { min-width: 0; }
  .next-ep-eyebrow {
    font-family: 'Manrope', sans-serif; font-size: 0.58rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500; margin-bottom: 3px;
  }
  .next-ep-title {
    font-family: 'Cormorant Garamond', serif; font-size: 0.96rem;
    color: var(--ink); line-height: 1.3; font-weight: 500;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── IDEA #5: NEWSLETTER AS BRANDED PRODUCT — UPGRADE ── */
  .newsletter-card {
    max-width: 920px; margin: 0 auto; position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; background: var(--warm-white);
    border: 1px solid var(--hairline);
    box-shadow: 0 30px 70px -40px rgba(139, 58, 71, 0.2);
  }
  @media (max-width: 800px) { .newsletter-card { grid-template-columns: 1fr; } }
  .nl-left {
    padding: 36px 36px 32px;
    border-right: 1px solid var(--hairline);
    background:
      radial-gradient(circle at 0% 100%, rgba(232, 155, 160, 0.08) 0%, transparent 60%),
      var(--warm-white);
  }
  @media (max-width: 800px) {
    .nl-left { border-right: none; border-bottom: 1px solid var(--hairline); }
  }
  .nl-brand {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
  }
  .nl-mark {
    width: 44px; height: 44px;
    background: var(--wine); color: var(--warm-white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Italiana', serif; font-size: 1.55rem;
    border-radius: 50%; flex-shrink: 0;
  }
  .nl-brand-text {
    font-family: 'Manrope', sans-serif; font-size: 0.62rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
  }
  .nl-brand-text strong {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-style: italic; font-weight: 500;
    letter-spacing: -0.005em; color: var(--ink);
    text-transform: none; margin-top: 2px; line-height: 1;
  }
  .nl-pitch {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.05rem; color: var(--ink); line-height: 1.5;
    margin-bottom: 18px;
  }
  .nl-pitch em { color: var(--wine); }
  .nl-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 0; }
  .nl-bullets li {
    display: grid; grid-template-columns: 16px 1fr;
    gap: 10px; align-items: start;
    font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5;
  }
  .nl-bullets li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--rose); margin-top: 8px;
  }
  .nl-right {
    padding: 36px 36px 32px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--cream);
  }
  .nl-form-eyebrow {
    font-family: 'Manrope', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--wine); margin-bottom: 12px; font-weight: 500;
  }
  .nl-form-head {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 1.45rem; color: var(--ink); line-height: 1.2;
    margin-bottom: 16px;
  }
  .nl-form-head em { font-style: italic; color: var(--wine); }
  .nl-issue {
    margin-top: 24px; padding-top: 20px;
    border-top: 1px dashed var(--hairline);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5;
  }
  .nl-issue strong { font-style: normal; font-weight: 500; color: var(--ink); display: block; margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; }

  /* ── IDEA #11: GLOBAL SEARCH MODAL ── */
  .nav-actions { display: flex; align-items: center; gap: 6px; }
  .nav-search-btn {
    background: transparent; border: none; cursor: pointer;
    padding: 8px; color: var(--ink);
    display: flex; align-items: center;
    transition: color .3s, transform .3s;
    border-radius: 100px;
  }
  .nav-search-btn:hover { color: var(--wine); transform: scale(1.08); }
  .nav-search-btn svg { width: 20px; height: 20px; }

  .search-modal {
    position: fixed; inset: 0; z-index: 300;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .search-modal.open { opacity: 1; pointer-events: auto; }
  .search-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(31, 26, 24, 0.5);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .search-modal-inner {
    position: relative;
    max-width: 720px; margin: 80px auto 0;
    background: var(--warm-white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    box-shadow: 0 40px 80px -30px rgba(31, 26, 24, 0.4);
    transform: translateY(20px);
    transition: transform .4s cubic-bezier(.16,.84,.44,1);
    margin-left: 6vw; margin-right: 6vw;
  }
  .search-modal.open .search-modal-inner { transform: translateY(0); }
  @media (min-width: 800px) { .search-modal-inner { margin-left: auto; margin-right: auto; } }
  .search-close {
    position: absolute; top: 16px; right: 16px;
    background: transparent; border: none; cursor: pointer;
    padding: 8px; color: var(--ink-soft);
    transition: color .25s; z-index: 2;
  }
  .search-close:hover { color: var(--wine); }
  .search-close svg { width: 18px; height: 18px; }
  .search-modal-content { padding: 36px 32px 28px; }
  .search-input-wrap {
    position: relative; margin: 18px 0 20px;
    border: 1px solid var(--hairline);
    border-radius: 100px;
    background: var(--cream);
    transition: border-color .3s, box-shadow .3s;
  }
  .search-input-wrap:focus-within {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(232, 155, 160, 0.15);
    background: var(--warm-white);
  }
  .search-input-icon {
    position: absolute; left: 18px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px; color: var(--ink-soft);
  }
  #searchInput {
    width: 100%; padding: 14px 18px 14px 48px;
    background: transparent; border: none; outline: none;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.1rem; color: var(--ink);
  }
  #searchInput::placeholder { color: rgba(31, 26, 24, 0.35); }
  .search-results { min-height: 100px; max-height: 50vh; overflow-y: auto; padding-right: 4px; }
  .search-hint {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--ink-soft); font-size: 0.95rem; text-align: center;
    padding: 18px 0;
  }
  .search-hint em { color: var(--wine); }
  .search-result-item {
    display: flex; gap: 14px; padding: 12px 0;
    border-bottom: 1px dotted var(--hairline);
    cursor: pointer; transition: padding-left .25s, color .25s;
    text-decoration: none; color: var(--ink);
  }
  .search-result-item:hover { padding-left: 8px; color: var(--wine); }
  .search-result-item:last-child { border-bottom: none; }
  .sr-num {
    font-family: 'Italiana', serif; font-size: 1.5rem;
    color: var(--rose); line-height: 1; flex-shrink: 0;
    min-width: 36px;
  }
  .sr-info { flex: 1; min-width: 0; }
  .sr-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; line-height: 1.3; margin-bottom: 3px; }
  .sr-meta { font-family: 'Manrope', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
  .sr-meta em { color: var(--wine); font-style: normal; }
  .search-empty {
    text-align: center; padding: 30px 0;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--ink-soft);
  }

  /* ── IDEA #12: SUGGEST GUEST FORM ── */
  .suggest-guest {
    background: var(--warm-white);
    padding: 50px 6vw;
    text-align: center;
    border-top: 1px solid var(--hairline);
  }
  .sg-inner {
    max-width: 640px; margin: 0 auto;
  }
  .sg-pitch {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.4; color: var(--ink);
    margin: 10px 0 18px;
  }
  .sg-pitch em { color: var(--wine); }
  .sg-sub {
    font-family: 'Manrope', sans-serif; font-size: 0.92rem;
    color: var(--ink-soft); margin-bottom: 24px;
    max-width: 480px; margin-left: auto; margin-right: auto;
  }
  .sg-form {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 480px; margin: 0 auto;
  }
  .sg-form input, .sg-form textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--hairline);
    background: var(--warm-white);
    font-family: 'Manrope', sans-serif; font-size: 0.92rem;
    color: var(--ink); outline: none;
    transition: border-color .3s, box-shadow .3s;
    border-radius: 4px;
  }
  .sg-form input:focus, .sg-form textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(232, 155, 160, 0.15);
  }
  .sg-form textarea {
    resize: vertical; min-height: 80px; max-height: 200px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1rem;
  }
  .sg-form button {
    background: var(--wine); color: var(--warm-white);
    border: none; padding: 14px 28px;
    font-family: 'Manrope', sans-serif; font-size: 0.74rem;
    letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
    cursor: pointer; border-radius: 100px;
    transition: background .3s, transform .3s;
    align-self: center; margin-top: 4px;
  }
  .sg-form button:hover { background: var(--wine-deep); transform: scale(1.02); }
  .sg-thanks {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--wine); font-size: 1.15rem; margin-top: 12px;
    opacity: 0; transform: translateY(6px);
    transition: opacity .4s, transform .4s;
  }
  .sg-thanks.visible { opacity: 1; transform: translateY(0); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: .1s; }
  .reveal.delay-2 { transition-delay: .2s; }
  .reveal.delay-3 { transition-delay: .3s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

/* ═══════════════════════════════════════════════════════════
   MULTI-PAGE STYLES — topic and episode landing pages
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb navigation */
.breadcrumb {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-soft); transition: color .25s; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb span { color: var(--rose); }
.breadcrumb .current { color: var(--ink); }

/* Topic hero */
.topic-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 130px 6vw 80px;
  position: relative; overflow: hidden;
}
.topic-hero::before {
  content: ''; position: absolute; top: -80px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-petal) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.topic-hero::after {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--rose-petal) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
  opacity: 0.7;
}
.topic-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.topic-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1;
  letter-spacing: -0.015em; color: var(--ink);
  margin-bottom: 14px;
}
.topic-title em { font-style: italic; color: var(--wine); font-weight: 400; }
.topic-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-soft); line-height: 1.4;
  max-width: 560px; margin: 0 auto 18px;
}
.topic-count {
  font-family: 'Manrope', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}

/* Topics grid (index.html teemad/) */
.topics-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 50px 6vw;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.topic-card {
  display: block; background: var(--warm-white);
  border: 1px solid var(--hairline);
  padding: 30px 28px 24px; position: relative;
  text-decoration: none; color: inherit;
  border-left: 3px solid var(--rose);
  transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s, border-left-color .4s;
}
.topic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -20px rgba(139, 58, 71, 0.2); border-left-color: var(--wine); }
.topic-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.6rem; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.005em;
}
.topic-card p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--ink-soft); font-size: 1rem;
  margin-bottom: 18px; line-height: 1.5;
}
.topic-card-count {
  font-family: 'Manrope', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}

/* Topic episode cards */
.topic-episodes {
  max-width: 1000px; margin: 0 auto;
  padding: 50px 6vw;
  display: flex; flex-direction: column; gap: 18px;
}
.topic-episode-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 28px; padding: 30px 32px;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.topic-episode-card:hover {
  transform: translateX(4px);
  border-color: var(--rose-soft);
  box-shadow: 0 14px 34px -20px rgba(139, 58, 71, 0.2);
}
.te-num {
  font-family: 'Italiana', serif; font-size: 3rem;
  color: var(--rose); line-height: 1;
  letter-spacing: -0.02em;
}
.te-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.35rem; color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.te-guest { font-family: 'Allura', cursive; color: var(--wine); font-size: 1.2rem; margin-bottom: 10px; line-height: 1; }
.te-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.5; }
.te-meta {
  font-family: 'Manrope', sans-serif; font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  display: flex; gap: 10px; align-items: center;
}
.te-meta .dot { color: var(--rose); }

.topic-empty {
  text-align: center; padding: 40px 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--ink-soft);
}
.topic-empty a { color: var(--wine); border-bottom: 1px solid var(--rose); }

/* Other topics navigation */
.topic-other {
  background: var(--cream); padding: 60px 6vw;
  text-align: center;
}
.topic-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; max-width: 800px; margin: 20px auto 0;
}
.topic-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  font-family: 'Manrope', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  border-radius: 100px;
  transition: all .3s cubic-bezier(.16,.84,.44,1);
  text-decoration: none;
}
.topic-pill:hover { background: var(--wine); color: var(--warm-white); border-color: var(--wine); }
.topic-pill span {
  background: var(--rose-petal); color: var(--wine);
  padding: 2px 8px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 500;
  transition: all .3s;
}
.topic-pill:hover span { background: var(--rose); color: var(--ink); }

/* Episode page hero */
.ep-page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 130px 6vw 60px;
  position: relative; overflow: hidden;
}
.ep-page-hero::before {
  content: ''; position: absolute; top: -100px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--rose-petal) 0%, transparent 60%);
  border-radius: 50%;
}
.ep-page-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.ep-page-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.18;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 12px;
}
.ep-page-guest {
  font-family: 'Allura', cursive; color: var(--wine);
  font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1;
  margin-bottom: 18px;
}
.ep-page-meta {
  font-family: 'Manrope', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  display: inline-flex; gap: 12px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.ep-page-meta .dot { color: var(--rose); }
.mood-link { color: var(--wine); border-bottom: 1px solid var(--rose); }
.mood-link:hover { color: var(--rose); }

/* Listen bar — per-episode platform links */
.ep-listen-bar {
  background: var(--ink); color: var(--warm-white);
  padding: 24px 6vw;
}
.ep-listen-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.ep-listen-eyebrow {
  font-family: 'Manrope', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.ep-listen-platforms { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.ep-platform {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--warm-white); font-size: 1.05rem;
  border-bottom: 1px solid rgba(232, 155, 160, 0.4);
  transition: color .25s, border-color .25s;
}
.ep-platform:hover { color: var(--rose); border-color: var(--rose); }

/* Episode page main content */
.ep-content { padding: 70px 6vw; }
.ep-content-inner { max-width: 760px; margin: 0 auto; }
.ep-content-inner h2.display {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ep-desc-block, .ep-chapters-block, .ep-mentioned-block {
  margin-bottom: 48px;
}
.ep-page-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.6;
  color: var(--ink); font-weight: 400;
}
.ep-chapters-block .chapters-list, .ep-mentioned-block .mentioned-list {
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}

/* Episode prev/next navigation */
.ep-nav {
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .ep-nav { grid-template-columns: 1fr; } }
.ep-nav-link {
  display: block; padding: 18px 22px;
  background: var(--cream); border: 1px solid var(--hairline);
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink); font-size: 0.95rem; line-height: 1.4;
  text-decoration: none;
  transition: transform .3s, border-color .3s;
}
.ep-nav-link:hover { border-color: var(--rose); }
.ep-nav-link.prev:hover { transform: translateX(-4px); }
.ep-nav-link.next:hover { transform: translateX(4px); }
.ep-nav-link.next { text-align: right; }

/* Active nav link */
nav.topnav ul a.active { color: var(--wine); }
nav.topnav ul a.active::after { width: 100%; left: 0; }


/* ═══════════════════════════════════════════════════════════
   IDEA #3: LOE / VAATA / KUULA TRIAD on episode pages
   ═══════════════════════════════════════════════════════════ */
.ep-triad {
  background: var(--ink);
  padding: 48px 6vw 36px;
  position: relative;
}
.ep-triad::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--wine), transparent);
}
.ep-triad-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .ep-triad-inner { grid-template-columns: 1fr; gap: 12px; }
}
.ep-triad-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 28px 18px;
  background: rgba(251, 248, 245, 0.04);
  border: 1px solid rgba(232, 155, 160, 0.15);
  border-radius: 4px;
  text-decoration: none; color: var(--warm-white);
  transition: all .4s cubic-bezier(.16,.84,.44,1);
  text-align: center;
}
.ep-triad-card:hover {
  background: rgba(232, 155, 160, 0.08);
  border-color: rgba(232, 155, 160, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(232, 155, 160, 0.4);
}
.ep-triad-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  transition: transform .4s, color .3s;
}
.ep-triad-card:hover .ep-triad-icon {
  transform: scale(1.08);
  color: var(--warm-white);
}
.ep-triad-icon svg { width: 100%; height: 100%; }
.ep-triad-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; line-height: 1;
  letter-spacing: -0.005em;
}
.ep-triad-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251, 248, 245, 0.6); font-weight: 400;
}
.ep-platforms-row {
  text-align: center; margin-top: 24px;
  font-family: 'Manrope', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251, 248, 245, 0.5); font-weight: 400;
}
.ep-platforms-row .epr-label { margin-right: 12px; color: rgba(251, 248, 245, 0.35); }
.ep-platforms-row a {
  color: rgba(251, 248, 245, 0.7); text-decoration: none;
  transition: color .25s;
  padding: 0 4px;
}
.ep-platforms-row a:hover { color: var(--rose); }
.ep-platforms-row .dot { color: var(--rose); opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════
   IDEA #17: SAATEJUHI MÄRKMIK (host's note per episode)
   ═══════════════════════════════════════════════════════════ */
.ep-host-notes {
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-petal) 100%);
  border-left: 3px solid var(--rose);
  padding: 38px 36px 32px;
  margin: 40px 0;
  position: relative;
  border-radius: 0 4px 4px 0;
}
.ep-host-notes::before {
  content: '"'; position: absolute;
  top: 10px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1;
  color: var(--rose); opacity: 0.35;
  font-style: italic;
}
.ep-host-notes-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--wine); font-weight: 500;
  margin-bottom: 10px;
}
.ep-host-notes h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem) !important;
  margin-bottom: 14px !important;
  max-width: 90%;
}
.ep-host-notes-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  line-height: 1.55; color: var(--ink);
  margin-bottom: 16px;
}
.ep-host-notes-sig {
  font-family: 'Allura', cursive;
  font-size: 1.4rem; color: var(--wine);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   IDEA #2: TRANSCRIPT BLOCK
   ═══════════════════════════════════════════════════════════ */
.ep-transcript-block {
  margin: 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.ep-transcript-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--wine); font-weight: 500;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.ep-transcript-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
}
.ep-transcript-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--ink-soft); line-height: 1.55;
  margin-bottom: 20px;
}
.ep-transcript-preview {
  border: 1px solid var(--hairline);
  background: var(--warm-white);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.ep-transcript-preview > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  background: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  transition: background .3s;
  display: flex; align-items: center; justify-content: space-between;
}
.ep-transcript-preview > summary::-webkit-details-marker { display: none; }
.ep-transcript-preview > summary:hover { background: var(--rose-petal); }
.ep-transcript-preview > summary .arrow {
  display: inline-block; transition: transform .3s;
}
.ep-transcript-preview[open] > summary .arrow {
  transform: rotate(90deg);
}
.ep-transcript-text {
  padding: 22px 26px 24px;
}
.ep-transcript-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.65;
  color: var(--ink); margin-bottom: 14px;
}
.ep-transcript-text strong {
  font-weight: 500; color: var(--wine);
  font-family: 'Manrope', sans-serif; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-right: 6px; vertical-align: 1px;
}
.transcript-fade {
  color: var(--ink-soft); font-style: italic;
  font-size: 0.92rem !important;
  border-top: 1px dotted var(--hairline);
  padding-top: 14px; margin-top: 18px !important;
}



/* ═══════════════════════════════════════════════════════════
   POLISH — mentioned-list on episode pages (no SVG variant)
   ═══════════════════════════════════════════════════════════ */
.ep-mentioned-block .mentioned-list {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none; padding: 0; margin: 0;
}
.ep-mentioned-block .mentioned-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--hairline);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.4;
  color: var(--ink-soft);
}
.ep-mentioned-block .mentioned-list li:last-child { border-bottom: none; }
.ep-mentioned-block .mentioned-list .m-kind {
  flex-shrink: 0; min-width: 80px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
}
.ep-mentioned-block .mentioned-list a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, color .3s;
}
.ep-mentioned-block .mentioned-list a:hover {
  color: var(--wine);
  border-color: var(--rose);
}



/* ═══════════════════════════════════════════════════════════
   DEMO MODE FLOATING CHIP (eemalda enne avalikkust laadimist)
   ═══════════════════════════════════════════════════════════ */
.demo-chip {
  position: fixed; bottom: 14px; left: 14px; z-index: 250;
  background: #FFF8E1; color: #6D4D00;
  border: 1px solid #F2D478;
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.66rem; letter-spacing: 0.16em;
  font-weight: 500;
  box-shadow: 0 8px 24px -8px rgba(109, 77, 0, 0.3);
  transition: opacity .3s, transform .4s;
  cursor: default;
}
.demo-chip.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.demo-chip-dot {
  width: 7px; height: 7px;
  background: #F2A800; border-radius: 50%;
  animation: demoPulse 1.8s ease-in-out infinite;
}
@keyframes demoPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; transform: scale(1.15); }
}
.demo-chip-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; line-height: 1; padding: 0 0 0 4px;
  color: #6D4D00; opacity: 0.6;
  transition: opacity .25s;
}
.demo-chip-close:hover { opacity: 1; }

/* Demo chip (Django: kuvatud kui settings.demo_mode == '1') */
.demo-chip {
  position: fixed; bottom: 14px; left: 14px; z-index: 250;
  background: #FFF8E1; color: #6D4D00;
  border: 1px solid #F2D478;
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.66rem; letter-spacing: 0.16em; font-weight: 500;
  box-shadow: 0 8px 24px -8px rgba(109, 77, 0, 0.3);
  transition: opacity .3s, transform .4s;
}
.demo-chip.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.demo-chip-dot { width: 7px; height: 7px; background: #F2A800; border-radius: 50%; animation: demoPulse 1.8s ease-in-out infinite; }
@keyframes demoPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; transform: scale(1.15); } }
.demo-chip-close { background: none; border: none; cursor: pointer; font-size: 1rem; line-height: 1; padding: 0 0 0 4px; color: #6D4D00; opacity: 0.6; transition: opacity .25s; }
.demo-chip-close:hover { opacity: 1; }
.admin-link { color: var(--wine) !important; font-weight: 500; }



/* ── GDPR Cookie Banner ── */
.gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(31, 26, 24, 0.96); color: #FBF8F5;
  padding: 18px 24px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  animation: gdprSlideUp 0.4s ease-out;
}
@keyframes gdprSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.gdpr-banner.hidden { display: none; }
.gdpr-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.gdpr-text { flex: 1; min-width: 280px; }
.gdpr-text strong {
  font-family: 'Italiana', serif; font-size: 1.05rem;
  display: block; margin-bottom: 4px;
}
.gdpr-text p {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem;
  opacity: 0.85; line-height: 1.5; margin: 0;
}
.gdpr-link { color: #E89BA0; text-decoration: underline; }
.gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; }
.gdpr-btn {
  padding: 10px 22px; border-radius: 100px; border: none;
  font-family: 'Manrope', sans-serif; font-size: 0.82rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.04em;
}
.gdpr-reject {
  background: transparent; color: #FBF8F5;
  border: 1px solid rgba(251,248,245,0.3);
}
.gdpr-reject:hover { background: rgba(251,248,245,0.1); }
.gdpr-accept {
  background: linear-gradient(135deg, #E89BA0, #C77279);
  color: #FBF8F5;
}
.gdpr-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(232,155,160,0.4); }
@media (max-width: 600px) {
  .gdpr-banner-inner { flex-direction: column; align-items: stretch; }
  .gdpr-actions { justify-content: stretch; }
  .gdpr-actions .gdpr-btn { flex: 1; }
}


/* ── Error pages (404, 403, 401, 429) ── */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px 60px;
  position: relative; overflow: hidden;
}
.error-inner {
  max-width: 640px; text-align: center;
  position: relative; z-index: 2;
}
.error-petal-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.error-petal-bg span {
  position: absolute; width: 14px; height: 18px;
  background: var(--rose-soft); border-radius: 60% 0;
  opacity: 0.55; animation: errorDrift 12s ease-in-out infinite;
}
.error-petal-bg span:nth-child(1) { left: 12%; top: 18%; transform: rotate(20deg); }
.error-petal-bg span:nth-child(2) { left: 28%; top: 75%; transform: rotate(-40deg); animation-delay: 3s; }
.error-petal-bg span:nth-child(3) { left: 78%; top: 30%; transform: rotate(50deg); animation-delay: 5s; }
.error-petal-bg span:nth-child(4) { left: 88%; top: 70%; transform: rotate(-15deg); animation-delay: 7s; }
@keyframes errorDrift {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
}

.error-code-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.error-code-label::before, .error-code-label::after {
  content: ''; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--wine));
}
.error-code-label::after { background: linear-gradient(90deg, var(--wine), transparent); }

.error-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12; color: var(--ink); margin-bottom: 28px;
}
.error-display em {
  font-style: italic; color: var(--wine-deep);
}

.error-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(31,26,24,0.78);
  max-width: 520px; margin: 0 auto 40px;
}

.error-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}

.error-suggestion {
  padding-top: 32px;
  border-top: 1px solid rgba(139,58,71,0.15);
  max-width: 480px; margin: 0 auto;
}
.error-suggestion-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 14px;
}
.error-suggestion-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  color: rgba(94,37,48,0.7); line-height: 1.6;
}
.error-suggestion-text a {
  color: var(--wine-deep); text-decoration: underline;
}

.error-search-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 100px;
  background: var(--rose-petal);
  border: 1px solid rgba(139,58,71,0.2);
  color: var(--wine-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; cursor: pointer;
  transition: all 0.2s;
}
.error-search-trigger:hover {
  background: var(--rose-soft);
  border-color: var(--wine);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .error-actions { flex-direction: column; align-items: stretch; }
  .error-actions .btn { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
 * UUDISED + LEHED + MENÜÜ-LAIENDUS
 * ═══════════════════════════════════════════════════════════ */

/* News hero */
.news-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, var(--rose-petal) 0%, var(--warm-white) 100%);
  text-align: center;
}
.news-hero-inner { max-width: 800px; margin: 0 auto; }
.news-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.6;
  color: rgba(31,26,24,0.7);
  max-width: 480px; margin: 16px auto 0;
}

/* News filters */
.news-filters {
  max-width: 1000px; margin: 0 auto;
  padding: 32px 24px;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.filter-pill {
  display: inline-block; padding: 8px 18px;
  border-radius: 100px;
  background: var(--cream); color: var(--wine-deep);
  font-family: 'Manrope', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.06em; text-decoration: none;
  border: 1px solid rgba(139,58,71,0.15);
  transition: all 0.2s;
}
.filter-pill:hover {
  background: var(--rose-petal);
  border-color: var(--wine);
}
.filter-pill.active {
  background: var(--wine-deep); color: var(--warm-white);
  border-color: var(--wine-deep);
}

/* Featured news */
.news-featured {
  max-width: 1000px; margin: 0 auto;
  padding: 0 24px 40px;
}
.news-featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  text-decoration: none; color: var(--ink);
  background: var(--cream); border-radius: 16px;
  padding: 32px; transition: transform 0.3s, box-shadow 0.3s;
}
.news-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(139,58,71,0.2);
}
.news-featured-card .nf-image img {
  width: 100%; height: 100%; min-height: 240px;
  object-fit: cover; border-radius: 12px;
}
.nf-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 12px;
}
.nf-title {
  font-family: 'Italiana', serif; font-size: 2rem;
  line-height: 1.2; color: var(--ink); margin-bottom: 16px;
}
.nf-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.6;
  color: rgba(31,26,24,0.78); margin-bottom: 16px;
}
.nf-meta {
  font-family: 'Manrope', sans-serif; font-size: 0.8rem;
  color: var(--wine); letter-spacing: 0.06em;
}

/* News grid */
.news-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--warm-white);
  border: 1px solid rgba(139,58,71,0.1);
  border-radius: 12px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(139,58,71,0.25);
}
.news-card-image {
  height: 200px; overflow: hidden;
  background: var(--rose-petal);
}
.news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-cat {
  display: inline-block; padding: 3px 10px;
  border-radius: 100px; color: white;
  font-family: 'Manrope', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.08em; margin-bottom: 12px;
  align-self: flex-start;
}
.news-card-title {
  font-family: 'Italiana', serif; font-size: 1.3rem;
  line-height: 1.3; color: var(--ink); margin-bottom: 10px;
}
.news-card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; line-height: 1.5;
  color: rgba(31,26,24,0.7); flex: 1;
}
.news-card-meta {
  font-family: 'Manrope', sans-serif; font-size: 0.75rem;
  color: var(--wine); margin-top: 12px;
  letter-spacing: 0.06em;
}
.news-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px;
  color: rgba(31,26,24,0.5); font-style: italic;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
}
.news-more,
.episodes-more { text-align: center; padding: 0 24px 60px; }

/* News article (detail) */
.news-article-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, var(--rose-petal) 0%, var(--warm-white) 100%);
  text-align: center;
}
.news-article-hero-inner { max-width: 800px; margin: 0 auto; }
.news-categories { margin-bottom: 20px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.news-cat-pill {
  display: inline-block; padding: 4px 12px;
  border-radius: 100px; color: white;
  font-family: 'Manrope', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.08em; text-decoration: none;
}
.news-article-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--ink); margin-bottom: 24px;
}
.news-article-meta {
  font-family: 'Manrope', sans-serif; font-size: 0.85rem;
  color: var(--wine); letter-spacing: 0.06em;
}
.news-article-meta .dot { margin: 0 8px; opacity: 0.5; }
.news-article-image {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px 40px;
}
.news-article-image img {
  width: 100%; max-height: 500px; object-fit: cover;
  border-radius: 16px;
}
.news-article-body {
  padding: 0 24px 60px;
}
.news-article-body-inner {
  max-width: 720px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.8;
  color: rgba(31,26,24,0.88);
}
.news-article-body-inner p { margin-bottom: 1.2em; }
.news-article-body-inner h2 {
  font-family: 'Italiana', serif; font-size: 1.8rem;
  color: var(--wine-deep); margin: 1.5em 0 0.7em;
}
.news-article-body-inner h3 {
  font-family: 'Italiana', serif; font-size: 1.4rem;
  color: var(--ink); margin: 1.3em 0 0.5em;
}
.news-article-body-inner blockquote {
  border-left: 3px solid var(--rose);
  padding: 12px 24px; margin: 24px 0;
  font-style: italic; color: var(--wine-deep);
  background: var(--rose-petal);
  border-radius: 0 8px 8px 0;
}
.news-article-body-inner a {
  color: var(--wine); text-decoration: underline;
}
.news-article-tags {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(139,58,71,0.15);
}
.tags-label {
  font-family: 'Manrope', sans-serif; font-size: 0.8rem;
  color: var(--wine); margin-right: 10px;
}
.news-tag-pill {
  display: inline-block; padding: 4px 12px;
  border: 1px solid rgba(139,58,71,0.2);
  border-radius: 100px; margin: 0 4px 6px 0;
  text-decoration: none; color: var(--wine-deep);
  font-family: 'Manrope', sans-serif; font-size: 0.78rem;
  transition: all 0.2s;
}
.news-tag-pill:hover {
  background: var(--rose-petal);
  border-color: var(--wine);
}
.news-related {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px 80px;
  border-top: 1px solid rgba(139,58,71,0.1);
}
.news-related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 30px;
}

/* Free pages */
.free-page-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, var(--rose-petal) 0%, var(--warm-white) 100%);
  text-align: center;
}
.free-page-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink); margin-bottom: 16px;
}
.free-page-body { padding: 40px 24px 80px; }
.free-page-body-inner {
  max-width: 720px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.8;
}

/* Latest news on home */
.latest-news-section {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.latest-news-section .news-grid {
  padding: 32px 0 0;
  max-width: none;
}

/* Submenu for main nav */
.topnav ul li {
  position: relative;
}
.topnav ul li .submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--warm-white);
  box-shadow: 0 8px 24px -8px rgba(139,58,71,0.2);
  border-radius: 8px; padding: 8px 0;
  min-width: 180px; opacity: 0;
  visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s; z-index: 100;
  list-style: none;
}
.topnav ul li:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.topnav ul li .submenu li {
  padding: 0; margin: 0;
}
.topnav ul li .submenu a {
  display: block; padding: 8px 16px;
  font-size: 0.88rem; color: var(--ink);
}
.topnav ul li .submenu a:hover {
  background: var(--rose-petal);
  color: var(--wine-deep);
}
.menu-icon { margin-right: 6px; }
.ext { font-size: 0.7em; opacity: 0.6; margin-left: 4px; }

/* Mobile responsive news */
@media (max-width: 700px) {
  .news-featured-card {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
 * TEEMAST TULEVAD CSS-MUUTUJAD (üle kirjutavad vaikimisi)
 * ─── --spacing-sm/md/lg/xl
 * ─── --radius-card, --radius-btn
 * ─── --shadow
 * ─── --hero-gradient
 * ═══════════════════════════════════════════════════════════ */

/* Hero gradient (kui teema seab) */
.hero, .news-hero, .free-page-hero, .topic-hero, .news-article-hero {
  background: var(--hero-gradient, linear-gradient(180deg, #FBE7E5 0%, #FBF8F5 100%));
}

/* Card-elementide ümarate nurkade kontroll */
.episode-card, .news-card, .topic-card, .testimonial,
.featured-ep, .news-featured-card {
  border-radius: var(--radius-card, 12px);
  box-shadow: var(--shadow, 0 8px 24px -8px rgba(139,58,71,0.18));
}

/* Nuppude ümarate nurkade kontroll */
.btn, .btn-primary, .btn-ghost, .platform, .filter-pill {
  border-radius: var(--radius-btn, 100px);
}

/* Section spacing — sektsioonidevaheline õhk */
.episodes, .testimonials, .listen-cta, .latest-news-section,
.about, .manifest, .guest-gallery {
  padding-top: var(--spacing-xl, 80px);
  padding-bottom: var(--spacing-xl, 80px);
}

