/* ============================================================
   05 — PASTEL ROMANCE
   Pop Apologists — Variant 05
   A girls' diary from 1973. Apartamento × vintage Vogue × Polaroid.
   ============================================================ */

:root {
  --cream: #F8F1E5;
  --cream-deep: #F1E6D2;
  --rose: #E8B5C2;
  --rose-deep: #D693A4;
  --rose-soft: #F4DAE0;
  --sage: #A6B5A1;
  --sage-deep: #889C82;
  --peach: #F2C0A0;
  --peach-soft: #F8DDC9;
  --burgundy: #6E1F2A;
  --burgundy-deep: #501019;
  --ink: #2A1F1E;
  --ink-soft: #5C4A47;
  --gold: #B89968;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M14 23 L4 13 C1 10 1 5 5 4 C8 3 11 5 14 8 C17 5 20 3 23 4 C27 5 27 10 24 13 Z' fill='%23E8B5C2' stroke='%236E1F2A' stroke-width='1.4'/></svg>") 14 14, auto;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--burgundy); }

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

/* Heavy paper grain — vintage feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='340' height='340'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.43  0 0 0 0 0.12  0 0 0 0 0.16  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Soft warm vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(110, 31, 42, 0.08) 100%);
}

/* ── Type ─────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

.script {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  letter-spacing: 0;
}

.italic, .i {
  font-style: italic;
}

p { margin: 0 0 1em; }

/* ── Photo treatment: polaroid + sepia ──────────────────── */

.photo-frame {
  position: relative;
  display: inline-block;
  background: #FBF6EB;
  padding: 14px 14px 52px 14px;
  box-shadow:
    0 14px 40px -16px rgba(110, 31, 42, 0.25),
    0 2px 6px -2px rgba(110, 31, 42, 0.15);
  border: 1px solid rgba(110, 31, 42, 0.07);
}

.photo-frame::before {
  /* inner double thin rose border */
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--rose);
  pointer-events: none;
  z-index: 2;
}

.photo-frame::after {
  /* outer thin rose border */
  content: "";
  position: absolute;
  inset: 9px;
  border: 0.5px solid var(--rose-deep);
  opacity: .5;
  pointer-events: none;
  z-index: 2;
}

.photo-frame .photo-cap {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--burgundy);
  font-weight: 500;
}

.photo-frame image-slot,
.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  filter: sepia(.18) saturate(.85) brightness(1.04) contrast(0.95);
}

.photo-frame image-slot {
  display: block;
  position: relative;
}

/* polaroid rotations */
.tilt-l   { transform: rotate(-3deg); }
.tilt-l-s { transform: rotate(-1.5deg); }
.tilt-r   { transform: rotate(3deg); }
.tilt-r-s { transform: rotate(1.5deg); }
.tilt-r-2 { transform: rotate(2deg); }
.tilt-l-2 { transform: rotate(-2deg); }

/* ── Botanical SVG decorations ─────────────────────────── */

.botanical {
  position: absolute;
  pointer-events: none;
  opacity: .85;
}

/* ── Page numbers ─────────────────────────────────────── */

.page-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--burgundy);
  letter-spacing: 0.12em;
}

.page-number .ornament { color: var(--rose-deep); }

/* ── Nav ─────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 229, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--burgundy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-logo .amp {
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-size: 28px;
  font-weight: 500;
}

.nav-logo b {
  font-weight: 400;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-deep);
}

.nav-cta {
  font-family: 'Caveat', cursive;
  font-size: 21px;
  color: var(--cream);
  background: var(--burgundy);
  padding: 6px 22px 8px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--burgundy-deep);
  box-shadow: 0 4px 14px -6px rgba(110, 31, 42, 0.5);
  transition: transform .2s;
}

.nav-cta:hover {
  color: var(--cream);
  transform: translateY(-1px) rotate(-1deg);
}

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 70px 36px 90px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: visible;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  font-family: 'Caveat', cursive;
  color: var(--burgundy);
}

.hero-meta-l {
  font-size: 22px;
  line-height: 1.2;
  transform: rotate(-2deg);
  transform-origin: left top;
}

.hero-meta-r {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.hero-text h1 {
  font-size: clamp(56px, 8.5vw, 124px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.hero-text h1 .i { color: var(--burgundy); }

.hero-text h1 .amp {
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-style: normal;
  display: inline-block;
  transform: translateY(-8px) rotate(-4deg);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: var(--burgundy);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-signoff {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  line-height: 1;
  color: var(--burgundy);
  margin: 30px 0 18px;
  transform: rotate(-3deg);
  transform-origin: left center;
  display: inline-block;
}

.hero-signoff small {
  display: block;
  font-size: 24px;
  color: var(--rose-deep);
  margin-top: 8px;
  transform: rotate(2deg);
}

.hero-listen-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.listen-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.listen-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 9px 14px;
  background: #FBF6EB;
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  box-shadow: 0 6px 18px -10px rgba(110, 31, 42, 0.3);
  transition: transform .2s, border-color .2s;
}

.listen-pill svg { width: 18px; height: 18px; }

.listen-pill:hover {
  transform: translateY(-2px);
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.hero-art {
  position: relative;
  min-height: 540px;
}

.hero-art .photo-frame {
  position: absolute;
}

.hero-art .photo-1 {
  width: 360px;
  top: 10px;
  right: 0;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-art .photo-1 image-slot { height: 440px; }

.hero-art .photo-2 {
  width: 200px;
  bottom: 30px;
  left: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.hero-art .photo-2 image-slot { height: 240px; }

.hero-art .photo-3 {
  width: 170px;
  top: 0;
  left: 30px;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-art .photo-3 image-slot { height: 200px; }

.hero-ribbon {
  position: absolute;
  top: -8px;
  right: 100px;
  background: var(--rose);
  color: var(--burgundy);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  padding: 5px 32px 6px;
  font-size: 18px;
  letter-spacing: 0.1em;
  z-index: 5;
  transform: rotate(8deg);
  box-shadow: 0 4px 14px -6px rgba(110, 31, 42, 0.4);
}
.hero-ribbon::before, .hero-ribbon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 0; height: 0;
  border: 8px solid var(--rose-deep);
}
.hero-ribbon::before { left: 0; border-right-color: transparent; border-bottom-color: transparent; }
.hero-ribbon::after { right: 0; border-left-color: transparent; border-bottom-color: transparent; }

.hero-pressed {
  position: absolute;
  bottom: -30px;
  left: -10px;
  width: 130px;
  opacity: 0.7;
  transform: rotate(-12deg);
  z-index: 0;
}

/* ── Decorative section divider ─────────────────────────── */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px auto;
  max-width: 600px;
  color: var(--rose-deep);
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-deep), transparent);
}

.divider-mark {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--burgundy);
  font-style: italic;
}

/* ── Section heading ─────────────────────────────────── */

section { position: relative; }

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}

.section-head {
  margin: 80px auto 50px;
  max-width: 1300px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-eyebrow {
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-size: 26px;
  margin-bottom: 4px;
  transform: rotate(-2deg);
  transform-origin: left;
  display: inline-block;
}

.section-h {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-h .i { color: var(--burgundy); }

.section-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 460px;
  justify-self: end;
  text-align: right;
}

.section-meta a {
  color: var(--burgundy);
  border-bottom: 1px solid var(--rose-deep);
}

/* ── Recent Episodes — clothesline polaroids ───────────── */

.clothesline {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 36px 90px;
}

.clothesline::before {
  /* the dotted "string" */
  content: "";
  position: absolute;
  top: 110px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 2px dotted var(--rose-deep);
  opacity: .55;
  z-index: 0;
}

/* tiny "clip" */
.clip {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 28px;
  background: var(--rose);
  border-radius: 3px 3px 5px 5px;
  z-index: 4;
  box-shadow: 0 2px 4px rgba(110,31,42,.3);
}

.clip::after {
  content: "";
  position: absolute;
  top: 6px; left: 4px;
  width: 6px; height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
}

.featured-ep {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin: 30px 0 80px;
  padding: 50px 50px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-soft) 100%);
  border: 1px solid rgba(110, 31, 42, 0.12);
  border-radius: 4px;
  position: relative;
}

.featured-ep::before {
  content: "✿";
  position: absolute;
  top: 20px; left: 24px;
  font-size: 22px;
  color: var(--rose-deep);
}
.featured-ep::after {
  content: "✿";
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 22px;
  color: var(--rose-deep);
}

.featured-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.featured-art .photo-frame {
  width: 100%;
  max-width: 380px;
  transform: rotate(-2deg);
}

.featured-art .photo-frame image-slot {
  height: 380px;
}

.featured-art .stamp {
  position: absolute;
  top: -12px;
  right: 30px;
  background: var(--burgundy);
  color: var(--cream);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  transform: rotate(15deg);
  z-index: 5;
  border: 2px dashed var(--rose);
  box-shadow: 0 6px 18px -8px rgba(110, 31, 42, 0.5);
}

.featured-num {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--rose-deep);
  margin-bottom: 8px;
  transform: rotate(-1deg);
  display: inline-block;
}

.featured-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  color: var(--burgundy);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.featured-title .i { color: var(--ink); }

.featured-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* drop cap */
.featured-desc::first-letter {
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-size: 5em;
  color: var(--burgundy);
  float: left;
  line-height: 0.85;
  padding: 6px 8px 0 0;
  font-weight: 400;
}

.featured-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.featured-meta b { font-style: normal; color: var(--burgundy); font-weight: 500; }

.play-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.play-btn {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  background: var(--burgundy);
  color: var(--cream);
  border: 1.5px solid var(--burgundy-deep);
  border-radius: 999px;
  padding: 8px 26px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  box-shadow: 0 6px 16px -6px rgba(110,31,42,.5);
  transition: transform .15s;
}
.play-btn:hover { transform: translateY(-2px) rotate(-1deg); }

.add-btn {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--rose-deep);
  border-radius: 999px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background .2s;
}
.add-btn:hover { background: var(--rose-soft); }

/* polaroid grid */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.poly-card {
  position: relative;
  background: #FBF6EB;
  padding: 14px 14px 60px;
  border: 1px solid rgba(110, 31, 42, 0.09);
  box-shadow: 0 12px 30px -14px rgba(110, 31, 42, 0.3);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s;
  display: block;
}

.poly-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  inset-block-end: 56px;
  border: 1.2px solid var(--rose);
  pointer-events: none;
}

.poly-card .poly-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--peach-soft);
}

.poly-card image-slot {
  display: block;
  width: 100%;
  height: 100%;
  filter: sepia(.18) saturate(.85) brightness(1.04) contrast(0.95);
}

.poly-card:nth-child(odd)  { transform: rotate(-2deg); }
.poly-card:nth-child(even) { transform: rotate(2deg); }
.poly-card:nth-child(3n)   { transform: rotate(-1deg) translateY(8px); }

.poly-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 18px 40px -14px rgba(110, 31, 42, 0.45);
  z-index: 5;
}

.poly-num {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: var(--rose-deep);
  margin-top: 10px;
  display: block;
}

.poly-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  line-height: 1.18;
  color: var(--ink);
  margin: 4px 0 6px;
  min-height: 40px;
}

.poly-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.35;
  margin: 0;
}

.poly-cap {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.poly-cap b {
  font-weight: 500;
  color: var(--burgundy);
  font-style: normal;
}

.poly-elite-tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--burgundy);
  background: var(--peach-soft);
  border: 1px dashed var(--burgundy);
  padding: 0 10px 1px;
  border-radius: 999px;
  margin-left: 6px;
  transform: rotate(-3deg);
}

/* ── ELITE TEASE on landing ─────────────────────────────── */

.elite-tease {
  position: relative;
  background: linear-gradient(165deg, var(--cream) 0%, var(--rose-soft) 60%, var(--peach-soft) 100%);
  padding: 90px 36px 110px;
  margin: 60px 0 0;
  border-top: 1px solid rgba(110, 31, 42, 0.13);
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
  overflow: hidden;
}

.elite-tease-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.tease-card {
  position: relative;
  background: #FBF6EB;
  padding: 38px 40px 44px;
  border: 1px solid rgba(110, 31, 42, 0.18);
  box-shadow: 0 18px 40px -16px rgba(110, 31, 42, 0.35);
  transform: rotate(-1deg);
}

.tease-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid var(--rose);
  pointer-events: none;
}
.tease-card::after {
  content: "";
  position: absolute;
  inset: 17px;
  border: 0.5px solid var(--burgundy);
  opacity: .35;
  pointer-events: none;
}

.tease-card .corner-deco {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--burgundy);
  z-index: 3;
}

.tease-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 8px;
  transform: rotate(-2deg);
  transform-origin: left;
}

.tease-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 0.98;
  color: var(--burgundy);
  margin: 8px 0 22px;
  letter-spacing: -0.02em;
}
.tease-card h2 .i { color: var(--ink); }

.tease-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 22px;
}

.tease-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cream);
  background: var(--burgundy);
  padding: 8px 30px 12px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 8px 22px -8px rgba(110, 31, 42, 0.55);
  transition: transform .2s;
  border: 1.5px solid var(--burgundy-deep);
}
.tease-cta:hover { transform: translateY(-2px) rotate(-1deg); color: var(--cream); }

.tease-cta .price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  border-left: 1px solid rgba(248, 241, 229, .4);
  padding-left: 14px;
}

.tease-photos {
  position: relative;
  height: 460px;
}

.tease-photos .photo-frame {
  position: absolute;
}

.tease-photos .tp-1 {
  width: 240px;
  top: 0;
  left: 30px;
  transform: rotate(-5deg);
  z-index: 3;
}
.tease-photos .tp-1 image-slot { height: 280px; }

.tease-photos .tp-2 {
  width: 220px;
  top: 80px;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.tease-photos .tp-2 image-slot { height: 260px; }

.tease-photos .tp-3 {
  width: 180px;
  bottom: 0;
  left: 80px;
  transform: rotate(2deg);
  z-index: 1;
}
.tease-photos .tp-3 image-slot { height: 210px; }

.tease-handwritten {
  position: absolute;
  font-family: 'Caveat', cursive;
  color: var(--burgundy);
  font-size: 24px;
  z-index: 5;
}

.tease-handwritten.hw-1 {
  top: 280px; left: 0;
  transform: rotate(-8deg);
}

/* ── MERCH ───────────────────────────────────────────── */

.merch-section { padding: 60px 0 100px; }

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.product {
  display: block;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform .25s;
}

.product:hover { transform: translateY(-6px); }

.product .pic {
  position: relative;
  background: #FBF6EB;
  padding: 18px;
  border: 1.5px solid var(--rose);
  box-shadow: 0 14px 36px -16px rgba(110, 31, 42, 0.3);
  margin-bottom: 18px;
}

.product .pic::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.5px solid var(--rose-deep);
  pointer-events: none;
  opacity: .55;
}

.product image-slot {
  height: 380px;
  filter: sepia(.12) saturate(.9) brightness(1.04) contrast(0.95);
}

.product .badge {
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--peach);
  color: var(--burgundy);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  padding: 4px 18px 6px;
  border-radius: 999px;
  border: 1.5px solid var(--burgundy);
  transform: rotate(-4deg);
  z-index: 3;
}

.product .price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cream);
  color: var(--burgundy);
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  padding: 6px 18px;
  border: 1.5px solid var(--burgundy);
  z-index: 3;
  border-radius: 4px;
  font-style: italic;
}

.product .pname {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--burgundy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.product .pname .i { color: var(--ink); }

.product .pmeta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .pmeta .arrow { color: var(--burgundy); font-size: 18px; }

.shop-link {
  text-align: center;
  margin-top: 60px;
}
.shop-link a {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--burgundy);
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 4px;
}

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  background: var(--cream-deep);
  border-top: 1px solid rgba(110, 31, 42, 0.18);
  padding: 80px 36px 30px;
  position: relative;
  margin-top: 0;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.foot-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--burgundy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.foot-brand .amp {
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-size: 32px;
}
.foot-brand b { font-style: italic; font-weight: 400; }

.foot-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 380px;
}

.foot-news-label {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--burgundy);
  display: block;
  margin-bottom: 8px;
  transform: rotate(-2deg);
  transform-origin: left;
}

.foot-news {
  display: flex;
  gap: 8px;
  max-width: 380px;
}

.foot-news input {
  flex: 1;
  background: #FBF6EB;
  border: 1.5px solid var(--rose);
  padding: 10px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  border-radius: 4px;
}
.foot-news input:focus { outline: 1.5px solid var(--burgundy); border-color: var(--burgundy); }
.foot-news input::placeholder { color: var(--ink-soft); }

.foot-news button {
  background: var(--burgundy);
  color: var(--cream);
  border: 1.5px solid var(--burgundy-deep);
  padding: 10px 20px;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.foot-news button:hover { background: var(--burgundy-deep); }

footer h5 {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--burgundy);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  padding: 4px 0;
}

footer li::before {
  content: "✿  ";
  color: var(--rose-deep);
  font-size: 12px;
}

.footer-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px dotted var(--rose-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-bottom .heart {
  color: var(--burgundy);
  font-style: normal;
}

/* ──────────────────────────────────────────────────────
   ELITE PAGE
   ────────────────────────────────────────────────────── */

.elite-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 229, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
}
.elite-nav .nav-inner { padding: 14px 36px; }
.elite-nav .back {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}
.elite-nav .back:hover { color: var(--burgundy); }

.elite-nav .top-cta {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 6px 22px 8px;
  border-radius: 999px;
  border: 1.5px solid var(--burgundy-deep);
}
.elite-nav .top-cta:hover { color: var(--cream); }

/* Elite hero */
.eh {
  position: relative;
  padding: 90px 36px 70px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--rose-soft) 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
}

.eh-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 50px 60px;
  border: 2px solid var(--burgundy);
  background: #FBF6EB;
  text-align: center;
}

.eh-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rose-deep);
  pointer-events: none;
}
.eh-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 0.5px solid var(--burgundy);
  pointer-events: none;
  opacity: .5;
}

.eh-corner {
  position: absolute;
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-size: 18px;
  z-index: 3;
}
.eh-corner.tl { top: 16px; left: 22px; transform: rotate(-2deg); }
.eh-corner.tr { top: 16px; right: 22px; text-align: right; }
.eh-corner.bl { bottom: 16px; left: 22px; }
.eh-corner.br { bottom: 16px; right: 22px; text-align: right; }

.eh-crest {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--rose-deep);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 2;
}

.eh-frame h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.95;
  color: var(--burgundy);
  margin: 0 0 30px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 2;
}
.eh-frame h1 .i { color: var(--ink); }

.eh-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.eh-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--cream);
  background: var(--burgundy);
  padding: 12px 36px 14px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 10px 26px -10px rgba(110, 31, 42, 0.6);
  border: 1.5px solid var(--burgundy-deep);
  position: relative;
  z-index: 2;
  transition: transform .15s;
}
.eh-cta:hover { transform: translateY(-2px) rotate(-1deg); color: var(--cream); }
.eh-cta .price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  border-left: 1px solid rgba(248,241,229,.4);
  padding-left: 16px;
}

.eh-fine {
  display: block;
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

.eh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 56px auto 0;
  position: relative;
  z-index: 2;
}

.eh-stat .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--burgundy);
  line-height: 1;
}

.eh-stat .lbl {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* Member portraits */

.portraits {
  padding: 80px 36px 60px;
  position: relative;
}

.portraits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.portraits-head {
  text-align: center;
  margin-bottom: 60px;
}

.portraits-eyebrow {
  font-family: 'Caveat', cursive;
  color: var(--rose-deep);
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.portraits h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 700px;
  margin: 0 auto;
}
.portraits h2 .i { color: var(--burgundy); }

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.portrait {
  position: relative;
  background: #FBF6EB;
  padding: 18px 18px 64px;
  border: 1px solid rgba(110, 31, 42, 0.13);
  box-shadow: 0 16px 36px -16px rgba(110, 31, 42, 0.35);
  transition: transform .25s;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 9px;
  inset-block-end: 56px;
  border: 1.5px solid var(--rose);
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 13px;
  inset-block-end: 60px;
  border: 0.5px solid var(--burgundy);
  opacity: .4;
}

.portrait:nth-child(1) { transform: rotate(-3deg); }
.portrait:nth-child(2) { transform: rotate(2deg) translateY(20px); }
.portrait:nth-child(3) { transform: rotate(-1deg); }

.portrait:hover { transform: rotate(0) translateY(-8px); }

.portrait image-slot {
  height: 320px;
  filter: sepia(.18) saturate(.85) brightness(1.04) contrast(0.95);
}

.portrait-cap {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--burgundy);
  line-height: 1.1;
}

.portrait-cap small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ── Perks (botanical bullets) ─────────────────────────── */

.perks-section {
  padding: 90px 36px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
  border-top: 1px solid rgba(110, 31, 42, 0.13);
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
}

.perks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.perks-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.perks-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.perks-head h2 .i { color: var(--burgundy); }

.perks-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 460px;
  justify-self: end;
  text-align: right;
}

.perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
}

.perk {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
}

.perk-bullet {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  line-height: 0.85;
  color: var(--rose-deep);
  display: block;
  text-align: center;
  font-style: italic;
}

.perk h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.1;
  color: var(--burgundy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.perk p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* ── Bonus gallery (GE eps as polaroids) ───────────────── */

.bonus-gallery {
  padding: 90px 36px 100px;
}

.bonus-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-head {
  text-align: center;
  margin-bottom: 70px;
}

.bonus-head .script {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 8px;
}

.bonus-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bonus-head h2 .i { color: var(--burgundy); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-card {
  position: relative;
  background: #FBF6EB;
  padding: 16px 16px 56px;
  border: 1px solid rgba(110, 31, 42, 0.1);
  box-shadow: 0 14px 34px -14px rgba(110, 31, 42, 0.3);
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  inset-block-end: 52px;
  border: 1.2px solid var(--rose);
}

.bonus-card:nth-child(1) { transform: rotate(-2deg); }
.bonus-card:nth-child(2) { transform: rotate(1.5deg) translateY(14px); }
.bonus-card:nth-child(3) { transform: rotate(-1deg); }

.bonus-card image-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  filter: sepia(.18) saturate(.85) brightness(1.04) contrast(0.95);
}

.bonus-num {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--rose-deep);
  margin-top: 12px;
  display: block;
}

.bonus-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  margin: 4px 0 8px;
}

.bonus-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.bonus-cap {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--burgundy);
  display: flex;
  justify-content: space-between;
}

/* ── Pricing (Caveat) ─────────────────────────────────── */

.pricing {
  position: relative;
  padding: 100px 36px 110px;
  background: linear-gradient(165deg, var(--rose-soft) 0%, var(--cream) 70%);
  border-top: 1px solid rgba(110, 31, 42, 0.13);
  border-bottom: 1px solid rgba(110, 31, 42, 0.13);
  text-align: center;
}

.pricing-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 8px;
}

.pricing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  color: var(--burgundy);
  letter-spacing: -0.025em;
  margin: 0 0 30px;
}
.pricing h2 .i { color: var(--ink); }

.pricing-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--burgundy);
  display: block;
  line-height: 1;
  margin: 30px 0;
  transform: rotate(-2deg);
}

.pricing-script small {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--rose-deep);
  margin-top: 8px;
  transform: rotate(1deg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 760px;
  margin: 50px auto 0;
}

.price-card {
  background: #FBF6EB;
  padding: 36px 30px;
  border: 1.5px solid var(--rose);
  position: relative;
  text-align: center;
  box-shadow: 0 14px 32px -14px rgba(110, 31, 42, 0.3);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.5px solid var(--burgundy);
  opacity: .35;
  pointer-events: none;
}

.price-card.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy-deep);
  transform: rotate(-1deg);
}
.price-card.featured::before { border-color: var(--rose); opacity: .5; }
.price-card.featured h3, .price-card.featured .price-amt { color: var(--cream); }
.price-card.featured .price-sub, .price-card.featured .price-tag-sm { color: var(--rose-soft); }

.price-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.price-amt {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--burgundy);
  line-height: 1;
  margin: 14px 0 4px;
  position: relative;
  z-index: 2;
}

.price-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.price-tag-sm {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: var(--burgundy);
  position: relative;
  z-index: 2;
}

.price-cta {
  display: inline-block;
  margin: 16px 0 6px;
  background: var(--cream);
  color: var(--burgundy);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  padding: 8px 22px 9px;
  border-radius: 999px;
  border: 1.5px solid var(--burgundy);
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.price-card.featured .price-cta {
  background: var(--cream);
  color: var(--burgundy);
}
.price-cta:hover { background: var(--peach-soft); color: var(--burgundy); }

/* ── Testimonials (handwritten letters) ─────────────────── */

.letters {
  padding: 100px 36px;
  background: var(--cream);
}

.letters-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.letters-head {
  text-align: center;
  margin-bottom: 60px;
}

.letters-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 8px;
}

.letters h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 64px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.letters h2 .i { color: var(--burgundy); }

.letter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.letter {
  position: relative;
  background: #FBF6EB;
  padding: 36px 32px 32px;
  box-shadow: 0 16px 36px -16px rgba(110, 31, 42, 0.3);
  border: 1px solid rgba(110, 31, 42, 0.12);
}

.letter:nth-child(1) { transform: rotate(-1.5deg); }
.letter:nth-child(2) { transform: rotate(1.5deg) translateY(14px); }
.letter:nth-child(3) { transform: rotate(-0.7deg); }

/* lined paper effect via background */
.letter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 28px,
    rgba(232, 181, 194, 0.25) 28px,
    rgba(232, 181, 194, 0.25) 29px
  );
  pointer-events: none;
}

.letter::after {
  /* red margin line */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 30px;
  width: 1px;
  background: var(--rose-deep);
  opacity: .3;
}

.letter-mark {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--rose-deep);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.letter-body {
  font-family: 'Caveat', cursive;
  font-size: 23px;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.letter-body .i {
  color: var(--burgundy);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
}

.letter-sig {
  position: relative;
  z-index: 2;
  text-align: right;
}

.letter-sig .name {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--burgundy);
  display: block;
  transform: rotate(-3deg);
}

.letter-sig .role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ── FAQ ─────────────────────────────────────────────── */

.faq-section {
  padding: 90px 36px 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 8px;
}

.faq-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.faq-head h2 .i { color: var(--burgundy); }

.faq-list dt {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--burgundy);
  margin: 30px 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.faq-list dt::before {
  content: "✦";
  color: var(--rose-deep);
  font-size: 14px;
  margin-right: 8px;
}

.faq-list dt .num-q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.faq-list dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 14px 22px;
  padding: 0 0 14px;
  border-bottom: 1px dotted var(--rose-deep);
}

.faq-list dd:last-child { border-bottom: 0; }

/* ── Elite footer extras ─────────────────────────────── */

.final-cta {
  padding: 100px 36px 120px;
  text-align: center;
  background: var(--cream);
}

.final-cta .stamp-circle {
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2.5px dashed var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 40px;
  background: var(--rose-soft);
  color: var(--burgundy);
  transform: rotate(-6deg);
}
.final-cta .stamp-circle .top {
  font-family: 'Caveat', cursive;
  font-size: 22px;
}
.final-cta .stamp-circle .big {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
}
.final-cta .stamp-circle .bot {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  color: var(--burgundy);
  letter-spacing: -0.025em;
  margin: 0 0 30px;
}
.final-cta h2 .i { color: var(--ink); }

.final-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-inner { padding: 14px 22px; }
  .nav-links { display: none; }

  .hero { padding: 50px 22px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 460px; }
  .hero-art .photo-1 { width: 280px; right: 0; }
  .hero-art .photo-1 image-slot { height: 340px; }
  .hero-art .photo-2 { width: 160px; }
  .hero-art .photo-2 image-slot { height: 200px; }
  .hero-art .photo-3 { width: 130px; }
  .hero-art .photo-3 image-slot { height: 160px; }

  .section-head { grid-template-columns: 1fr; gap: 16px; padding: 0 22px; }
  .section-meta { text-align: left; justify-self: start; }

  .clothesline { padding: 50px 22px 70px; }
  .clothesline::before { display: none; }
  .featured-ep { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px; }

  .polaroid-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .poly-card:nth-child(odd)  { transform: rotate(-1deg); }
  .poly-card:nth-child(even) { transform: rotate(1deg); }
  .poly-card:nth-child(3n)   { transform: rotate(-0.5deg); }

  .elite-tease { padding: 60px 22px 70px; }
  .elite-tease-inner { grid-template-columns: 1fr; gap: 50px; }
  .tease-photos { height: 380px; }

  .merch-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
  .product image-slot { height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 24px 22px 0; }

  /* elite */
  .eh { padding: 50px 22px; }
  .eh-frame { padding: 50px 26px 40px; }
  .eh-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .perks-list { grid-template-columns: 1fr; gap: 36px; }
  .perks-head { grid-template-columns: 1fr; }
  .perks-lede { text-align: left; justify-self: start; }

  .portrait-grid, .bonus-grid { grid-template-columns: 1fr; gap: 50px; }
  .portrait:nth-child(2), .bonus-card:nth-child(2) { transform: rotate(1.5deg); }

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

  .letter-grid { grid-template-columns: 1fr; gap: 40px; }
  .letter:nth-child(2) { transform: rotate(1deg); }

  .final-cta { padding: 70px 22px 90px; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-art .photo-3 { display: none; }
}
