/* ═══════════════════════════════════════════════════════════════
   Carmen Whimsy — Main Site Stylesheet
   Fonts: Dancing Script · Playfair Display · Inter
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --bg:            #f0ebe4;
  --bg-gradient:   linear-gradient(180deg, #f0ebe4 0%, #ece8f5 50%, #f0ebe4 100%);
  --surface:       #faf8f5;
  --card-bg:       rgba(250, 248, 245, 0.92);
  --card-border:   #d6cfe0;
  --text:          #2e2a40;
  --muted:         #6e6880;
  --faint:         #b0a8c0;
  --primary:       #c8703a;
  --primary-hov:   #b5622f;
  --gold:          #c89420;
  --accent-bg:     #ece8f5;
  --shadow:        0 2px 12px rgba(46,42,64,.06);
  --shadow-lg:     0 8px 32px rgba(46,42,64,.12);
  --glow-peach:    rgba(200,112,58,.14);
  --glow-purple:   rgba(120,100,180,.08);
  --radius:        1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --radius-pill:   9999px;
  --max-w:         1280px;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-script:   'Dancing Script', cursive;

  /* Typography color scale */
  --text-primary:   #2e2a40;   /* heading text */
  --text-secondary: #2e2a40;   /* body / paragraph text */
  --text-muted:     #6e6880;   /* captions, eyebrows, labels */
  --accent-color:   #c8703a;   /* orange accent */
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-gradient);
  min-height: 100vh;
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 400; color: var(--text-primary); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240,235,228,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: var(--font-script); font-size: 1.5rem; color: var(--primary); }
.logo-sub  { font-family: var(--font-script); font-size: 1.05rem; color: rgba(200,112,58,.65); margin-top: -2px; }

.site-nav { display: none; gap: 2rem; }
.site-nav a {
  font-size: .875rem;
  color: rgba(46,42,64,.75);
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.header-actions { display: flex; align-items: center; gap: .75rem; }

.btn-theme {
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color .2s;
  font-size: 1rem;
}
.btn-theme:hover { color: var(--primary); }

/* ── Hamburger ───────────────────────────────────────────────── */
.btn-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
@media (min-width: 768px) { .btn-menu { display: none; } }

/* ── Header social icons ─────────────────────────────────────── */
.header-social {
  display: none;
  align-items: center;
  gap: .35rem;
}
@media (min-width: 768px) { .header-social { display: flex; } }
.header-social-link {
  display: flex;
  align-items: center;
  color: var(--muted);
  padding: .25rem;
  border-radius: var(--radius-pill);
  transition: color .2s;
}
.header-social-link:hover { color: var(--primary); }

/* ── Mobile nav drawer ───────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--card-border);
  padding: 1rem 1.5rem 1.5rem;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .9375rem;
  padding: .6rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .88; }
.btn-primary:disabled { opacity: .55; cursor: default; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .875rem;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--accent-bg); color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.card-glass {
  background: var(--card-bg);
  border: 1px solid rgba(214,207,224,.55);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* hover lift + glow */
.card-hover {
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--glow-peach), var(--shadow);
  border-color: rgba(200,112,58,.35);
}

/* ══════════════════════════════════════════════════════════════
   EYEBROW / LABELS
   ══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-peach { color: var(--primary); }

.script-note {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: rgba(200,112,58,.75);
}

/* ══════════════════════════════════════════════════════════════
   DECORATIVE STARS
   ══════════════════════════════════════════════════════════════ */
.star { color: var(--gold); }
.star-sm { font-size: .7rem; }

/* ── Twinkle animation ───────────────────────────────────────── */
@keyframes twinkle {
  0%,100% { opacity: 1; }
  50%      { opacity: .25; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.twinkle { animation: twinkle 3s ease-in-out infinite; }
.float   { animation: float 4s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION (homepage)
   ══════════════════════════════════════════════════════════════ */
.hero {
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 520px; height: 420px;
  top: -40px; right: 10%;
  background: rgba(200,112,58,.07);
}
.hero-glow-2 {
  width: 420px; height: 380px;
  bottom: -60px; left: 5%;
  background: rgba(120,100,180,.09);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 420px; }
}
.hero-text { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
}
.hero-title em { color: var(--primary); font-style: italic; }
.hero-sub {
  font-size: .9375rem;
  color: rgba(46,42,64,.7);
  max-width: 28rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.hero-image { position: relative; }
.hero-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 8px 40px rgba(200,160,120,.18);
}
.hero-star {
  position: absolute;
  color: var(--gold);
  animation: twinkle 3s ease-in-out infinite;
}
.hero-star-1 { top: -1rem; right: -1rem; font-size: 1.25rem; }
.hero-star-2 { top: 25%;  right: -1.75rem; font-size: .875rem; animation-delay: 1s; opacity: .65; }
.hero-star-3 { bottom: -.5rem; right: 25%; font-size: 1.1rem; animation-delay: 2s; opacity: .45; }

/* ══════════════════════════════════════════════════════════════
   CHOOSE PATH SECTION
   ══════════════════════════════════════════════════════════════ */
.path-grid {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .path-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; align-items: stretch; }
}
.path-intro { display: flex; flex-direction: column; justify-content: center; gap: .5rem; padding-right: .5rem; }
.path-intro h2 { font-size: 1.5rem; line-height: 1.35; }

.path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .625rem;
  padding: 1.5rem 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(250,248,245,.95);
  border: 1px solid rgba(214,207,224,.5);
  box-shadow: 0 2px 10px rgba(46,42,64,.06);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.path-card:hover {
  border-color: rgba(200,112,58,.35);
  background: #faf8f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--glow-peach);
}
.path-card:hover .path-link { color: var(--primary); }
.path-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(214,207,224,.6);
  flex-shrink: 0;
  position: relative;
  margin-bottom: .25rem;
}
.path-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.path-avatar--comfort {
  background:
    radial-gradient(circle at 45% 45%, rgba(255,230,160,.9) 0%, transparent 38%),
    radial-gradient(circle at 62% 65%, rgba(190,120,50,.75) 0%, transparent 45%),
    linear-gradient(150deg, #fde8c0 0%, #e89848 55%, #a04e20 100%);
}
.path-avatar--rebuild {
  background:
    radial-gradient(circle at 50% 28%, rgba(255,228,100,.95) 0%, transparent 28%),
    linear-gradient(180deg, #88c4e8 0%, #f4a050 42%, #e06030 68%, #b83a18 100%);
}
.path-avatar--quiet {
  background:
    radial-gradient(circle at 50% 18%, rgba(140,210,245,.65) 0%, transparent 38%),
    radial-gradient(circle at 25% 72%, rgba(80,40,10,.6) 0%, transparent 45%),
    linear-gradient(170deg, #a0d0e8 0%, #f0b840 38%, #cc7818 62%, #7a3a10 100%);
}
.path-avatar--magic {
  background:
    radial-gradient(circle at 50% 38%, rgba(255,235,255,.95) 0%, transparent 32%),
    radial-gradient(circle at 28% 22%, rgba(255,200,235,.7) 0%, transparent 22%),
    radial-gradient(circle at 72% 22%, rgba(200,155,255,.7) 0%, transparent 22%),
    linear-gradient(145deg, #f0d0ec 0%, #c878c8 48%, #5828a0 100%);
}
.path-prefix { font-size: .8125rem; color: var(--text); opacity: .7; }
.path-title  { font-family: var(--font-script); font-size: 1.35rem; color: var(--primary); line-height: 1.2; }
.path-desc   { font-size: .75rem; color: rgba(46,42,64,.6); line-height: 1.65; flex: 1; }
.path-link   { font-size: .75rem; color: rgba(200,112,58,.65); margin-top: .5rem; transition: color .2s; }

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION (homepage)
   ══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 3fr 2fr; }
}
.about-panel {
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 600px) {
  .about-panel { grid-template-columns: 1fr 1fr; }
}
.about-photo { height: 280px; overflow: hidden; }
@media (min-width: 600px) { .about-photo { height: auto; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-text {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: var(--card-bg);
  position: relative;
}
.about-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,232,245,.3) 0%, transparent 60%);
  pointer-events: none;
}
.about-text > * { position: relative; }
.about-text h2 { font-size: 1.5rem; }
.about-text p  { font-size: .875rem; color: rgba(46,42,64,.7); line-height: 1.75; }
.about-text a  { color: var(--primary); font-size: .875rem; display: inline-flex; align-items: center; gap: .35rem; }
.about-text a:hover { text-decoration: underline; }

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.quote-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,112,58,.12) 0%, rgba(236,232,245,.4) 100%);
  pointer-events: none;
}
.quote-panel > * { position: relative; z-index: 1; }
.quote-text {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--primary);
  line-height: 1.4;
}
.quote-moon { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.quote-star-1 { position: absolute; top: 1.5rem; right: 2rem; color: rgba(200,148,32,.4); animation: twinkle 3s ease-in-out infinite; }
.quote-star-2 { position: absolute; bottom: 2.5rem; left: 2.5rem; color: rgba(200,148,32,.3); animation: twinkle 3s ease-in-out infinite; animation-delay: 1.5s; }

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */
.newsletter-card {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 28px var(--glow-peach), var(--shadow);
}
@media (min-width: 768px) {
  .newsletter-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 2.5rem 3rem;
  }
}
.nl-eyebrow { margin-bottom: .4rem; }
.nl-heading  { font-size: 1.5rem; margin: .25rem 0 .5rem; }
.nl-sub      { font-size: .875rem; color: rgba(46,42,64,.6); line-height: 1.7; }

.newsletter-form { display: flex; flex-direction: column; gap: .75rem; position: relative; }
.nl-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 480px) {
  .nl-row { flex-direction: row; }
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(236,232,245,.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: .7rem 1.25rem;
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,112,58,.12);
}
.newsletter-form input::placeholder { color: var(--faint); }
.nl-disclaimer {
  font-size: .75rem;
  color: var(--faint);
  text-align: center;
}
@media (min-width: 768px) { .nl-disclaimer { text-align: left; } }

/* ══════════════════════════════════════════════════════════════
   FOLLOW JOURNEY SECTION
   ══════════════════════════════════════════════════════════════ */
.journey-header { text-align: center; margin-bottom: 2.5rem; }
.journey-header h2 { font-size: 1.875rem; margin-top: .4rem; }

.platform-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .platform-grid { grid-template-columns: repeat(5, 1fr); } }

.platform-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.platform-card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.platform-card .card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.platform-icon { color: rgba(46,42,64,.65); margin-bottom: .25rem; transition: color .2s; }
.platform-card:hover .platform-icon { color: var(--primary); }
.platform-name  { font-family: var(--font-head); font-size: 1.1rem; }
.platform-handle{ font-size: .75rem; color: var(--muted); margin-top: -2px; }
.platform-desc  { font-size: .8125rem; color: rgba(46,42,64,.6); line-height: 1.6; flex: 1; }
.platform-link  { font-size: .8125rem; color: rgba(200,112,58,.7); margin-top: .75rem; transition: color .2s; }
.platform-card:hover .platform-link { color: var(--primary); text-decoration: underline; }

.journey-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  font-size: .875rem;
}
.journey-ctas a { color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }
.journey-ctas a:hover { text-decoration: underline; }
.journey-ctas .sep { color: var(--card-border); display: none; }
@media (min-width: 480px) { .journey-ctas .sep { display: block; } }

/* ══════════════════════════════════════════════════════════════
   MONETIZATION SECTION
   ══════════════════════════════════════════════════════════════ */
.mono-header { text-align: center; margin-bottom: 2.5rem; }
.mono-header h2 { font-size: 1.875rem; margin-top: .4rem; }
.mono-header p  { font-size: .875rem; color: var(--muted); margin-top: .5rem; max-width: 30rem; margin-left: auto; margin-right: auto; }

.mono-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 640px) { .mono-grid { grid-template-columns: 1fr 1fr; } }

.mono-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.mono-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mono-card > * { position: relative; z-index: 1; }
.mono-badge {
  display: inline-block;
  padding: .2rem .8rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-family: var(--font-body);
}
.mono-badge-free { background: rgba(200,112,58,.18); color: var(--primary); }
.mono-badge-soon { background: var(--accent-bg); color: var(--muted); }
.mono-card-top   { display: flex; align-items: center; justify-content: space-between; }
.mono-card h3    { font-size: 1.2rem; line-height: 1.4; }
.mono-card p     { font-size: .875rem; color: rgba(46,42,64,.6); line-height: 1.7; flex: 1; }
.mono-card-featured { box-shadow: 0 0 0 1px rgba(200,112,58,.3), var(--shadow); }
.mono-card-dim { opacity: .82; }

/* ══════════════════════════════════════════════════════════════
   RECENT JOURNAL SECTION
   ══════════════════════════════════════════════════════════════ */
.journal-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .journal-grid { grid-template-columns: 3fr 2fr; } }

.journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.journal-header-text { display: flex; flex-direction: column; gap: .3rem; }
.journal-header-text h2 { font-size: 1.875rem; line-height: 1.2; }
.journal-header-text p:not(.eyebrow) { font-size: .875rem; color: var(--muted); }
.journal-view-all {
  font-size: .8125rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  transition: color .2s;
}
.journal-view-all:hover { color: var(--primary); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.post-thumb { height: 190px; overflow: hidden; flex-shrink: 0; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 1rem 1rem .875rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.post-cat  { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); font-weight: 500; }
.post-title{ font-family: var(--font-head); font-size: .9375rem; line-height: 1.4; color: var(--text); }
.post-meta { font-size: .6875rem; color: var(--faint); margin-top: .15rem; }

/* ── Current Joy ─────────────────────────────────────────────── */
.joy-header { margin-bottom: 1.25rem; }
.joy-header h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.1;
  margin: .2rem 0 .3rem;
}
.joy-header p:not(.eyebrow) { font-size: .875rem; color: var(--muted); }

.joy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .625rem;
}
.joy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.1rem .625rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  cursor: default;
  transition: transform .25s, box-shadow .25s;
}
.joy-card:hover { transform: translateY(-2px); box-shadow: 0 5px 18px var(--glow-peach); }
.joy-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(150,140,220,.14);
  color: #8282b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: .15rem;
}
.joy-label { font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); font-weight: 500; line-height: 1.4; }
.joy-value { font-size: .6875rem; color: rgba(46,42,64,.65); line-height: 1.45; }

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER STRIP (shared — blog posts & all pages)
   ══════════════════════════════════════════════════════════════ */
.newsletter-strip {
  padding: 4rem 0;
  background: rgba(236,232,245,.35);
  border-top: 1px solid var(--card-border);
}
.nl-gold { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(214,207,224,.4);
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
.footer-tagline { font-size: .8125rem; color: var(--muted); margin-top: .6rem; }
.footer-label   { font-family: var(--font-body); font-size: .625rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.footer-nav     { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.footer-nav a   { font-size: .875rem; color: rgba(46,42,64,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--primary); }
.footer-social  { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: .75rem; }
.footer-social a{ color: rgba(46,42,64,.55); transition: color .2s; display: flex; }
.footer-social a:hover { color: var(--primary); }
.footer-note    { font-size: .8125rem; color: var(--muted); }
.footer-bottom  {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(214,207,224,.3);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: .75rem; color: var(--faint); }

/* ══════════════════════════════════════════════════════════════
   PAGE HEROES (inner pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  position: relative;
}
.page-hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 520px; height: 260px;
  background: rgba(200,112,58,.07);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-top: .6rem; line-height: 1.2; }
.page-hero h1 em { color: var(--primary); font-style: italic; }
.page-hero p { font-size: .9375rem; color: rgba(46,42,64,.7); max-width: 38rem; margin: .9rem auto 0; line-height: 1.75; }
.page-hero .script-note { margin-top: .75rem; font-size: 1.5rem; }
.page-hero .btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.75rem; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.bio-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bio-grid { grid-template-columns: 1fr 320px; align-items: start; }
}
.bio-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.bio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,232,245,.35) 0%, transparent 60%);
  pointer-events: none;
}
.bio-card > * { position: relative; }
.bio-card p { font-size: .9375rem; color: rgba(46,42,64,.8); line-height: 1.8; }
.bio-card p + p { margin-top: 1.1rem; }

.portrait-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(214,207,224,.45);
  box-shadow: var(--shadow);
}
.portrait-wrap img { width: 100%; height: auto; display: block; object-fit: cover; object-position: center top; }
.portrait-star-1 { position: absolute; top: -1rem; right: -1rem; font-size: 1.1rem; color: var(--gold); animation: twinkle 3s ease-in-out infinite; }
.portrait-star-2 { position: absolute; bottom: -.75rem; left: -1rem; font-size: .875rem; color: rgba(200,148,32,.5); animation: twinkle 3s ease-in-out infinite; animation-delay: 1.2s; }

/* ══════════════════════════════════════════════════════════════
   START HERE PAGE
   ══════════════════════════════════════════════════════════════ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(46,42,64,.75);
  line-height: 1.65;
}
.checklist li .star { margin-top: .2rem; flex-shrink: 0; font-size: .875rem; }

.wander-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .wander-grid { grid-template-columns: 1fr 1fr; } }

.wander-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.wander-card:hover { border-color: rgba(200,112,58,.4); background: rgba(236,232,245,.6); }
.wander-card:hover h3 { color: var(--primary); }
.wander-card:hover .wander-cta { text-decoration: underline; }
.wander-card h3  { font-size: 1.1rem; transition: color .2s; }
.wander-card p   { font-size: .875rem; color: rgba(46,42,64,.7); line-height: 1.7; flex: 1; }
.wander-cta      { font-size: .875rem; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }

.steps-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
}
.step-num   { font-family: var(--font-script); font-size: 2rem; color: rgba(200,112,58,.55); }
.step-card h3 { font-size: 1.1rem; }
.step-card p  { font-size: .875rem; color: rgba(46,42,64,.7); line-height: 1.7; flex: 1; }
.step-card a  { font-size: .875rem; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }
.step-card a:hover { text-decoration: underline; }

.note-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,232,245,.4) 0%, transparent 60%);
  pointer-events: none;
}
.note-card > * { position: relative; z-index: 1; }
.note-card p   { font-size: .875rem; color: rgba(46,42,64,.75); line-height: 1.75; max-width: 36rem; margin: 0 auto; }
.note-card p + p { margin-top: .75rem; }

/* ══════════════════════════════════════════════════════════════
   FREE GUIDE PAGE
   ══════════════════════════════════════════════════════════════ */
.guide-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.guide-hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 280px;
  background: rgba(200,112,58,.08);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.guide-hero-inner { position: relative; z-index: 1; }
.guide-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(200,112,58,.12);
  color: var(--primary);
  border: 1px solid rgba(200,112,58,.22);
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.guide-hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
.guide-hero p  { font-size: .9375rem; color: rgba(46,42,64,.7); max-width: 34rem; margin: .9rem auto 0; line-height: 1.75; }
.guide-hero .script-note { margin-top: .6rem; }
.guide-hero .btn-primary { margin-top: 1.5rem; }

.for-you-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.for-you-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(46,42,64,.75);
  line-height: 1.65;
}
.for-you-list li .star { margin-top: .15rem; flex-shrink: 0; font-size: .875rem; }

.week-card {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(250,248,245,.98);
  box-shadow: 0 2px 16px rgba(46,42,64,.08);
}
.week-label-row { display: flex; align-items: center; gap: .5rem; }
.week-icon { color: var(--primary); flex-shrink: 0; }
.week-label {
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.week-card h3 { font-family: var(--font-head); font-size: 1.5rem; }
.week-card > p{ font-size: .9rem; color: rgba(46,42,64,.6); line-height: 1.75; }
.week-items   { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: .25rem; }
.week-items li{ display: flex; align-items: baseline; gap: .6rem; font-size: .875rem; color: rgba(46,42,64,.7); }
.week-bullet  { color: var(--primary); font-size: .6rem; flex-shrink: 0; line-height: 1.8; }

.guide-cta-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 28px var(--glow-peach);
}
.guide-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,112,58,.08) 0%, rgba(236,232,245,.15) 100%);
  pointer-events: none;
}
.guide-cta-card > * { position: relative; z-index: 1; }
.guide-cta-card h2 { font-size: 1.75rem; margin: .5rem 0 .75rem; }
.guide-cta-card p  { font-size: .875rem; color: rgba(46,42,64,.6); max-width: 26rem; margin: 0 auto .1rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}
@media (min-width: 600px) { .contact-card { padding: 2.75rem 3rem; } }

.open-to-card { padding: 2rem 2.5rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.open-to-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .6rem;
  margin-top: 1rem;
}
.open-to-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(46,42,64,.75);
}
.open-to-item .star { font-size: .75rem; }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.form-group .req { color: var(--primary); margin-left: .15em; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(236,232,245,.5);
  border: 1px solid rgba(214,207,224,.7);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,112,58,.5);
  box-shadow: 0 0 0 3px rgba(200,112,58,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(110,104,128,.45); }
.form-group textarea { min-height: 140px; resize: vertical; line-height: 1.65; }
.form-group select { appearance: none; cursor: pointer; }

.form-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: .5rem; }
.form-note    { font-size: .8125rem; color: var(--faint); }

.status-banner { display: none; padding: .875rem 1.25rem; border-radius: var(--radius); border: 1px solid; font-size: .9rem; font-weight: 500; margin-bottom: 1.5rem; line-height: 1.5; }
.status-banner.success { background: #ecfdf5; border-color: #10b981; color: #065f46; }
.status-banner.error   { background: #fef3c7; border-color: #f59e0b; color: #78350f; }
.status-banner.visible { display: block; }
.hp-field { position: absolute; left: -9999px; }

/* ══════════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════════ */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found-inner { max-width: 30rem; }
.not-found-num   { font-family: var(--font-head); font-size: 6rem; color: rgba(200,112,58,.25); line-height: 1; }
.not-found h1    { font-size: 1.75rem; margin-bottom: .75rem; }
.not-found p     { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════════
   DOWNLOAD GATE MODAL
   ══════════════════════════════════════════════════════════════ */
.dg-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(46,42,64,.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.dg-backdrop.open { opacity: 1; pointer-events: auto; }

.dg-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(8px);
  transition: transform .25s;
}
.dg-backdrop.open .dg-panel { transform: translateY(0); }

.dg-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  padding: .25rem;
  transition: color .2s;
}
.dg-close:hover { color: var(--text); }

.dg-moon   { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.dg-title  { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: .5rem; }
.dg-sub    { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin: 0 auto 1.5rem; }

.dg-form   { display: flex; flex-direction: column; gap: .65rem; }
.dg-form input {
  width: 100%;
  background: rgba(236,232,245,.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: .7rem 1.25rem;
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.dg-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,112,58,.12);
}
.dg-form input::placeholder { color: rgba(110,104,128,.45); }
.dg-form .btn-primary { width: 100%; justify-content: center; padding: .75rem; margin-top: .25rem; }
.dg-disclaimer { font-size: .75rem; color: var(--faint); margin-top: .6rem; }

.dg-success  { padding: 1rem 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.dg-dl-icon  { font-size: 1.75rem; color: var(--primary); }
.dg-success h3 { font-family: var(--font-head); font-size: 1.25rem; }
.dg-success p  { font-size: .875rem; color: var(--muted); line-height: 1.65; max-width: 240px; }

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: rgba(200,112,58,.12);
  border-bottom: 1px solid rgba(200,112,58,.2);
  padding: .45rem 1rem;
  text-align: center;
  font-size: .8125rem;
  color: var(--primary);
}
.announcement-bar a { text-decoration: underline; font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   DARK THEME
   ══════════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  /* Matches React dark mode: hsl(250 25% 10%) background family */
  --bg:          #131120;
  --bg-gradient: linear-gradient(180deg, #131120 0%, #171428 50%, #131120 100%);
  --surface:     #1b1928;
  --card-bg:     rgba(27, 25, 40, 0.96);
  --card-border: #312c3d;
  --text:        #f0e8dc;
  --muted:       #80788c;
  --faint:       #4d4860;
  --primary:     #d07843;
  --primary-hov: #bb6535;
  --gold:        #d4a832;
  --accent-bg:   #2c2537;
  --shadow:      0 2px 12px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.55);
  --glow-peach:  rgba(208,120,67,.22);
  --glow-purple: rgba(140,120,200,.15);

  /* Typography color scale — dark overrides */
  --text-primary:   #f0e8dc;   /* heading text: warm cream */
  --text-secondary: #b8b0a8;   /* body text: muted warm gray */
  --text-muted:     #80788c;   /* captions, eyebrows, labels */
  --accent-color:   #d07843;   /* orange accent */
}

[data-theme="dark"] body {
  background: var(--bg-gradient);
}

[data-theme="dark"] .site-header {
  background: rgba(26,23,36,.92);
  border-bottom-color: var(--card-border);
}

[data-theme="dark"] .site-nav a {
  color: rgba(240,232,220,.65);
}

[data-theme="dark"] .btn-menu span {
  background: var(--text);
}

[data-theme="dark"] .card-glass {
  background: var(--card-bg);
  border-color: rgba(53,47,74,.7);
}

[data-theme="dark"] .path-card {
  background: rgba(34,31,48,.9);
  border-color: rgba(53,47,74,.6);
}
[data-theme="dark"] .path-card:hover {
  background: rgba(42,38,58,.95);
}

[data-theme="dark"] .post-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .week-card {
  background: rgba(34,31,48,.95);
}

[data-theme="dark"] .joy-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .joy-icon {
  background: rgba(120,110,180,.18);
  color: #b0a8d8;
}

[data-theme="dark"] .newsletter-strip {
  background: rgba(30,26,46,.4);
  border-top-color: var(--card-border);
}

[data-theme="dark"] .newsletter-form input[type="text"],
[data-theme="dark"] .newsletter-form input[type="email"] {
  background: rgba(42,36,64,.6);
  border-color: var(--card-border);
  color: var(--text);
}

[data-theme="dark"] .site-footer {
  border-top-color: rgba(53,47,74,.4);
}

[data-theme="dark"] .footer-nav a,
[data-theme="dark"] .footer-social a {
  color: var(--text-muted);
}

[data-theme="dark"] .footer-tagline,
[data-theme="dark"] .footer-note,
[data-theme="dark"] .footer-label {
  color: var(--text-muted);
}

[data-theme="dark"] .mobile-nav {
  background: var(--surface);
  border-top-color: var(--card-border);
}
[data-theme="dark"] .mobile-nav a {
  color: var(--text);
  border-bottom-color: var(--card-border);
}

[data-theme="dark"] .btn-outline {
  color: var(--text);
  border-color: var(--card-border);
}
[data-theme="dark"] .btn-outline:hover {
  background: var(--accent-bg);
}

[data-theme="dark"] .page-hero p {
  color: var(--text-secondary);
}

[data-theme="dark"] .guide-hero p {
  color: var(--text-secondary);
}

[data-theme="dark"] .hero-image img {
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

[data-theme="dark"] .about-text {
  background: var(--card-bg);
}

[data-theme="dark"] .platform-card,
[data-theme="dark"] .mono-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
  background: rgba(42,36,64,.5);
  border-color: var(--card-border);
  color: var(--text);
}
[data-theme="dark"] .form-field input::placeholder,
[data-theme="dark"] .form-field textarea::placeholder {
  color: rgba(155,148,184,.4);
}

[data-theme="dark"] .dg-panel {
  background: var(--surface);
  border-color: var(--card-border);
}
[data-theme="dark"] .dg-form input {
  background: rgba(42,36,64,.6);
  border-color: var(--card-border);
  color: var(--text);
}

/* ── Homepage body text ──────────────────────────────────────── */
[data-theme="dark"] .hero-sub           { color: var(--text-secondary); }
[data-theme="dark"] .path-desc          { color: var(--text-muted); }
[data-theme="dark"] .platform-icon      { color: var(--text-muted); }
[data-theme="dark"] .platform-desc      { color: var(--text-muted); }
[data-theme="dark"] .mono-card p        { color: var(--text-muted); }
[data-theme="dark"] .joy-value          { color: var(--text-secondary); }
[data-theme="dark"] .nl-sub             { color: var(--text-muted); }
[data-theme="dark"] .about-text p       { color: var(--text-secondary); }

/* ── Start Here page ─────────────────────────────────────────── */
[data-theme="dark"] .checklist li       { color: var(--text-secondary); }
[data-theme="dark"] .wander-card p      { color: var(--text-secondary); }
[data-theme="dark"] .wander-card:hover  { background: var(--accent-bg); }
[data-theme="dark"] .step-card p        { color: var(--text-secondary); }
[data-theme="dark"] .note-card p        { color: var(--text-secondary); }

/* ── About page ──────────────────────────────────────────────── */
[data-theme="dark"] .bio-card p         { color: var(--text-secondary); }
[data-theme="dark"] .open-to-item       { color: var(--text-secondary); }

/* ── Free Guide page ─────────────────────────────────────────── */
[data-theme="dark"] .for-you-list li    { color: var(--text-secondary); }
[data-theme="dark"] .week-card > p      { color: var(--text-muted); }
[data-theme="dark"] .week-items li      { color: var(--text-secondary); }
[data-theme="dark"] .guide-cta-card p   { color: var(--text-muted); }

/* ── Footer links (dark bg) ──────────────────────────────────── */
[data-theme="dark"] .footer-nav a       { color: var(--text-secondary); }
[data-theme="dark"] .footer-social a    { color: var(--text-muted); }
