/* ═══════════════════════════════════════════
   JENNY JINGLE — shared stylesheet
   jennyjingle.com ✦ 67°N ✦ peppermint forever
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@400;500&family=DM+Serif+Text:ital@0;1&family=Space+Grotesk:wght@500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors */
  --bg-primary: #FFFDF8;
  --bg-alt: #FFF0F5;
  --cherry: #CC2936;
  --cherry-dim: #A01E28;
  --cherry-glow: rgba(204, 41, 54, 0.12);
  --emerald: #1B7A3D;
  --emerald-dim: #145C2E;
  --emerald-glow: rgba(27, 122, 61, 0.1);
  --gold: #D4A72C;
  --gold-dim: #A87E1A;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --soft-pink: #E8A0B4;
  --soft-pink-light: #F5C6D5;
  --border-light: rgba(204, 41, 54, 0.12);
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-warm: 0 4px 24px rgba(204, 41, 54, 0.08);
  --shadow-warm-lg: 0 8px 48px rgba(204, 41, 54, 0.12);
  --shadow-card: 0 2px 16px rgba(232, 160, 180, 0.18);

  /* Typography */
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-label: 'Space Grotesk', system-ui, sans-serif;
  --font-pullquote: 'DM Serif Text', Georgia, serif;

  /* Spacing */
  --section-pad: 100px 24px;
  --section-pad-lg: 140px 48px;
  --max-width: 1100px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-pink-light) var(--bg-alt);
}

body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

img { display: block; max-width: 100%; }
a { color: var(--cherry); text-decoration: none; transition: color 0.25s, opacity 0.25s; }
a:hover { color: var(--cherry-dim); opacity: 0.85; }

/* ═══ SCROLL REVEAL — bouncy spring ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ═══ NAVIGATION ═══ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(232, 160, 180, 0.1);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--cherry); opacity: 1; }
.nav-logo .bell {
  font-size: 16px;
  animation: bell-swing 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: top center;
}
@keyframes bell-swing {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--cherry); background: var(--cherry-glow); opacity: 1; }
.nav-links a.active { color: var(--cherry); font-weight: 600; }
.nav-sep { color: var(--soft-pink); font-size: 14px; pointer-events: none; }

.nav-recording {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 860px) { .nav-recording { display: flex; } }
.nav-recording .rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cherry);
  flex-shrink: 0;
  animation: rec-pulse 1.8s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.nav-recording-text {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══ SECTION STRUCTURE ═══ */
section {
  position: relative;
  padding: var(--section-pad);
}
@media (min-width: 768px) {
  section { padding: var(--section-pad-lg); }
}
section.alt-bg { background: var(--bg-alt); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before { content: '♡'; color: var(--cherry); font-size: 10px; }
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-light), transparent);
}

/* ═══ PEPPERMINT DIVIDER ═══ */
.peppermint-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}
.peppermint-divider::before,
.peppermint-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--soft-pink-light), transparent);
}
.peppermint-divider svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  animation: peppermint-spin 12s linear infinite;
}
@keyframes peppermint-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══ PAGE LAYOUT (inner pages) ═══ */
.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 28px 80px;
}

/* ═══ PAGE HEADER ═══ */
.page-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.page-header-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header-label::before { content: '✿'; font-size: 10px; }
.page-header h1 {
  font-family: var(--font-headline);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
}

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 75%;
  background: linear-gradient(
    to top,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 253, 248, 0.7) 35%,
    rgba(255, 240, 245, 0.2) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 72px;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 48px 88px; }
}

.hero-pre {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fade-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}
.hero-pre::before { content: '🍬'; font-size: 14px; }

.hero-name {
  font-family: var(--font-headline);
  font-size: clamp(52px, 11vw, 130px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--text-dark);
  animation: fade-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
  opacity: 0;
}
.hero-name em {
  font-style: italic;
  color: var(--cherry);
}

.hero-tagline {
  font-family: var(--font-pullquote);
  font-size: clamp(15px, 2vw, 19px);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 20px;
  animation: fade-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  opacity: 0;
}
.hero-tagline span { color: var(--cherry); font-style: normal; }

.hero-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
  animation: fade-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  opacity: 0;
}
.hero-ig:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fade-up 1.2s ease 0.8s forwards, float-scroll 3s ease-in-out 2s infinite;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-text {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll svg {
  width: 18px; height: 18px;
  stroke: var(--soft-pink);
}

/* sparkle overlay */
.sparkle-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-fall linear infinite;
  opacity: 0;
}
@keyframes sparkle-fall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg) scale(0.5); }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(100vh) rotate(360deg) scale(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══ BIO SECTION ═══ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .bio-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .bio-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.bio-fragment {
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
}
.bio-fragment:first-child { border-top: none; }
@media (min-width: 600px) {
  .bio-fragment { padding: 32px 24px; border-top: 1px solid var(--border-soft); }
  .bio-fragment:nth-child(-n+2) { border-top: none; }
}
@media (min-width: 900px) {
  .bio-fragment:nth-child(-n+3) { border-top: none; }
}

.bio-fragment .frag-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 12px;
}

.bio-fragment .frag-text {
  font-family: var(--font-pullquote);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dark);
}
.bio-fragment .frag-text em {
  color: var(--cherry);
  font-style: italic;
}

.bio-pull-quote {
  grid-column: 1 / -1;
  padding: 56px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(255,253,248,1) 100%);
  border-radius: var(--radius-lg);
  margin: 16px 0;
  box-shadow: var(--shadow-warm);
  border: 1px solid var(--border-light);
}
.bio-pull-quote blockquote {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.5;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
}
.bio-pull-quote blockquote::before { content: '\201C'; color: var(--cherry); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.bio-pull-quote blockquote::after { content: '\201D'; color: var(--cherry); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; margin-left: 4px; }
.bio-pull-quote .quote-attr {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 20px;
}

.bio-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-top: 8px;
}
.bio-stat .stat-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bio-stat .stat-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══ PODCAST SECTION ═══ */
.podcast-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .podcast-layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.podcast-about {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm);
}

.podcast-show-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.podcast-show-subtitle {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 20px;
}
.podcast-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.podcast-img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-warm-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 16px;
}
.podcast-img:hover { transform: scale(1.02); }

/* episode cards */
.episode-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.episode-card {
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  cursor: default;
}
.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-lg);
}

.ep-number {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 6px;
}
.ep-title {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.ep-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.ep-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.ep-duration {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 3px 10px;
  border-radius: 20px;
}
.ep-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  color: var(--emerald);
  background: rgba(27, 122, 61, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* player-style featured episode */
.player-card {
  background: linear-gradient(135deg, var(--cherry) 0%, var(--cherry-dim) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  box-shadow: var(--shadow-warm-lg);
  margin-bottom: 24px;
}
.player-card .ep-number { color: rgba(255,255,255,0.7); }
.player-card .ep-title { color: white; font-size: 20px; }
.player-card .ep-desc { color: rgba(255,255,255,0.8); font-size: 14px; }
.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.player-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: background 0.2s;
}
.player-btn:hover { background: rgba(255,255,255,0.35); }
.player-btn svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }
.player-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.player-progress-fill {
  height: 100%;
  width: 38%;
  background: white;
  border-radius: 2px;
}
.player-time {
  font-family: var(--font-label);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* voice notes / audio tracks */
.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.audio-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.audio-track:hover { background: var(--cherry-glow); }
.audio-track.playing { background: rgba(204,41,54,0.06); }

.audio-track-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  background: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: var(--shadow-card);
}
.audio-track:hover .audio-track-btn { border-color: var(--cherry); }
.audio-track.playing .audio-track-btn { border-color: var(--cherry); background: var(--cherry); }
.audio-track-btn svg { width: 10px; height: 10px; fill: var(--cherry); }
.audio-track.playing .audio-track-btn svg { fill: white; }

.audio-track-info { flex: 1; min-width: 0; }
.audio-track-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.audio-track-desc {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.audio-track-time {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}
.visualizer {
  display: flex; align-items: flex-end; gap: 2px; height: 18px; flex-shrink: 0;
}
.visualizer .bar {
  width: 3px; background: var(--cherry); border-radius: 2px; height: 3px; transition: height 0.15s;
}
.visualizer.active .bar { animation: viz 0.6s ease-in-out infinite alternate; }
.visualizer.active .bar:nth-child(2) { animation-delay: 0.1s; }
.visualizer.active .bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer.active .bar:nth-child(4) { animation-delay: 0.3s; }
.visualizer.active .bar:nth-child(5) { animation-delay: 0.15s; }
@keyframes viz { 0% { height: 3px; } 100% { height: 16px; } }

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.gallery-item::before { content: ''; display: block; padding-top: 120%; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide::before { padding-top: 60%; }

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-warm-lg);
}
.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 14px 12px;
  background: linear-gradient(to top, rgba(255, 240, 245, 0.95) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption .emoji { margin-right: 4px; }

/* ═══ FAMILY ═══ */
.family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .family-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .family-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.family-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.family-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm-lg);
}

.family-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.family-card:hover .family-card-img { transform: scale(1.04); }
.family-card-body { padding: 20px; }
.family-card-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.family-card-meta {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 12px;
}
.family-card-quote {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.family-card-link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cherry);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.family-card-link::after { content: '→'; transition: transform 0.2s; }
.family-card-link:hover::after { transform: translateX(3px); }

/* jenny self-card */
.family-card.is-jenny {
  background: linear-gradient(135deg, var(--bg-alt) 0%, white 100%);
  border-color: var(--cherry);
  border-width: 2px;
}
.family-card.is-jenny .family-card-name { color: var(--cherry); }

/* ═══ MOOD / CURRENT FREQUENCY ═══ */
.mood-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .mood-layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.mood-header h3 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mood-current {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--cherry);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.mood-bars { display: flex; flex-direction: column; gap: 14px; }
.mood-bar-item { display: flex; align-items: center; gap: 14px; }
.mood-bar-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100px;
  text-align: right;
  flex-shrink: 0;
}
.mood-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
}
.mood-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--soft-pink), var(--cherry));
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mood-bar-val {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  color: var(--cherry);
  width: 20px;
  flex-shrink: 0;
}

.mood-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mood-portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: default;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mood-portrait:hover { transform: scale(1.04); }
.mood-portrait::before { content: ''; display: block; padding-top: 130%; }
.mood-portrait img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mood-portrait:hover img { transform: scale(1.06); }
.mood-portrait-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 8px 6px;
  background: linear-gradient(to top, rgba(255, 240, 245, 0.92) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  text-align: center;
}

.mood-inner-box {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 24px 28px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm);
}
.mood-inner-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 12px;
}
.mood-inner-text {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--bg-alt);
  padding: 64px 28px 44px;
  text-align: center;
  border-top: 1px solid var(--border-light);
  margin-top: 80px;
}
.footer-logo {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-coords {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-socials a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--cherry); opacity: 1; }
.footer-tagline {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-candy { font-size: 22px; margin-bottom: 20px; }
.footer-copy {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  color: var(--soft-pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(255, 240, 245, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-warm-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--cherry); }

/* ═══ ABOUT PAGE ═══ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .about-hero { grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
}
.about-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm-lg);
}
.about-intro { padding-top: 8px; }
.about-intro-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 20px;
}
.about-intro-quote {
  font-family: var(--font-pullquote);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.about-stat-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cherry);
}
.about-stat-value {
  font-size: 13px;
  color: var(--text-dark);
  margin-top: 4px;
  font-weight: 500;
}

.about-section { margin-bottom: 64px; }
.about-section-title {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
}
.about-body p { margin-bottom: 20px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body em { color: var(--cherry); font-style: italic; }
.about-body strong { color: var(--text-dark); font-weight: 600; }

/* traits */
.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.trait-card {
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, border-color 0.2s;
}
.trait-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-lg);
  border-color: var(--cherry);
}
.trait-card-name {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.trait-card-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.trait-pips { display: flex; gap: 4px; }
.pip { width: 12px; height: 4px; border-radius: 2px; background: var(--border-soft); }
.pip.on { background: var(--cherry); }

/* ═══ PODCAST PAGE ═══ */
.podcast-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .podcast-page-layout { grid-template-columns: 1fr 360px; gap: 72px; align-items: start; }
}

.subscribe-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 40px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: default;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.subscribe-btn:hover { transform: scale(1.03); }
.subscribe-btn.spotify { background: #1DB954; color: white; }
.subscribe-btn.apple { background: var(--text-dark); color: white; }
.subscribe-btn.spotify:hover, .subscribe-btn.apple:hover { opacity: 1; }

/* ═══ PHOTOS PAGE ═══ */
.photos-masonry {
  columns: 2;
  column-gap: 12px;
}
@media (min-width: 600px) { .photos-masonry { columns: 3; } }
@media (min-width: 900px) { .photos-masonry { columns: 4; } }

.photo-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-lg);
}
.photo-item img {
  width: 100%; display: block;
  transition: transform 0.45s;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(255, 240, 245, 0.95) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.photo-item:hover .photo-caption { opacity: 1; }
.photo-caption .emoji { margin-right: 5px; }

/* ═══ BLOG / COMING SOON ═══ */
.coming-soon-wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  flex-direction: column;
  text-align: center;
}
.coming-soon-wrap h1 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.coming-soon-wrap p {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* ═══ STAR DIVIDER ═══ */
.star-div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  font-size: 13px;
  color: var(--soft-pink);
}
.star-div::before, .star-div::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

/* ═══ SIDEBAR ═══ */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.sidebar-card-header {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-header .ico { color: var(--cherry); }
.sidebar-card-body { padding: 16px; }

.sidebar-ep-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.sidebar-ep-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-ep-item:first-child { padding-top: 0; }
.sidebar-ep-num {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  color: var(--cherry);
  margin-bottom: 2px;
}
.sidebar-ep-title {
  font-size: 12.5px;
  color: var(--text-dark);
  line-height: 1.35;
  font-weight: 500;
}

/* ═══ RESPONSIVENESS ═══ */
@media (max-width: 600px) {
  .nav-links a { font-size: 10px; padding: 5px 8px; }
  .site-footer { padding: 48px 20px 32px; }
}

/* ═══ UTILITY ═══ */
.text-cherry { color: var(--cherry); }
.text-muted { color: var(--text-muted); }
.font-headline { font-family: var(--font-headline); }
.font-label { font-family: var(--font-label); }

/* ═══ BEHIND THE SCENES — BTS SECTION ═══ */
.bts-section { background: var(--bg-primary); }

/* Featured video */
.bts-featured {
  margin-bottom: 48px;
}
.bts-featured-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}
.bts-featured-video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  background: var(--bg-alt);
}
.bts-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cherry);
  color: white;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
}
.bts-featured-caption {
  margin-top: 14px;
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
}

/* Story-style video grid */
.bts-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 540px) {
  .bts-story-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.bts-story-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bts-story-video-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.bts-story-video-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-lg);
}
.bts-story-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--bg-alt);
}
.bts-story-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
}
.bts-story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cherry);
  border: 1.5px solid white;
  box-shadow: 0 0 6px rgba(204, 41, 54, 0.5);
  animation: rec-pulse 1.8s ease-in-out infinite;
}
.bts-story-caption {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  padding: 0 4px;
}

/* Aurora ambient video — inline in BTS section */
.bts-aurora-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
  margin-bottom: 0;
  min-height: 220px;
}
.bts-aurora-video {
  width: 100%;
  display: block;
  height: 280px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .bts-aurora-video { height: 360px; }
}
.bts-aurora-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204, 41, 54, 0.25) 0%,
    rgba(212, 167, 44, 0.18) 50%,
    rgba(27, 122, 61, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.bts-aurora-text {
  font-family: var(--font-headline);
  font-size: clamp(22px, 5vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  text-align: center;
}

/* Voice notes — styled audio cards */
.bts-audio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .bts-audio-grid { grid-template-columns: repeat(3, 1fr); }
}

.bts-audio-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.bts-audio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-lg);
}
.bts-audio-card-header {
  padding: 20px 20px 14px;
  flex: 1;
}
.bts-audio-num {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 8px;
}
.bts-audio-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 6px;
}
.bts-audio-desc {
  font-family: var(--font-pullquote);
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.bts-audio-player {
  width: 100%;
  display: block;
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
  accent-color: var(--cherry);
  padding: 10px 16px;
  height: 44px;
}

/* ═══ AURORA FAMILY LINKS — pre-footer ═══ */
.aurora-family-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.aurora-family-video {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  .aurora-family-video { height: 480px; }
}
.aurora-family-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 240, 245, 0.1) 0%,
    rgba(204, 41, 54, 0.2) 40%,
    rgba(26, 26, 26, 0.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.aurora-family-inner {
  text-align: center;
  padding: 24px;
}
.aurora-family-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.aurora-family-heading {
  font-family: var(--font-headline);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  font-style: italic;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}
.aurora-family-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.aurora-sibling-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.aurora-sibling-link:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px) scale(1.03);
  color: white;
  opacity: 1;
}
.aurora-sibling-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}
.aurora-sibling-url {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}
