/* YourTopia — visual system
   Descent palette: ink / gold / paper / wine-pink glows
   Fonts: Cormorant Garamond (display) + Karla (UI)
*/

:root {
  --ink: #0a0a0a;
  --ink-mid: #120b0e;
  --ink-soft: #1a1013;
  --gold: #c9973a;
  --gold-soft: rgba(201, 151, 58, 0.7);
  --gold-dim: rgba(201, 151, 58, 0.35);
  --paper: #ece7db;
  --paper-dim: rgba(245, 237, 224, 0.55);
  --paper-faint: rgba(245, 237, 224, 0.28);
  --pink: rgba(230, 49, 127, 0.55);
  --pink-glow: rgba(230, 49, 127, 0.18);
  --violet: rgba(124, 58, 237, 0.4);
  --line: rgba(245, 237, 224, 0.1);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: Karla, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --max: 820px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

body.a11y-text { font-size: 1.12rem; }
body.a11y-contrast {
  --paper: #fff;
  --paper-dim: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.22);
}
body.a11y-motion *,
body.a11y-motion *::before,
body.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
}

::selection { background: rgba(201, 151, 58, 0.35); color: #fff; }

/* Ambient wash */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 151, 58, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(124, 58, 237, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 85%, rgba(230, 49, 127, 0.05), transparent 50%);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #0a0a0a;
  padding: 8px 14px;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Custom cursor */
body.has-pointer { cursor: none; }
body.has-pointer a,
body.has-pointer button,
body.has-pointer [role="button"],
body.has-pointer .eco-chip,
body.has-pointer .cta,
body.has-pointer .compare-card,
body.has-pointer .journey-btn,
body.has-pointer .comic-teaser {
  cursor: none;
}

.cursor-dot {
  pointer-events: none;
  position: fixed;
  z-index: 10001;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9973a;
  box-shadow: 0 0 12px rgba(201, 151, 58, 0.9), 0 0 24px rgba(230, 49, 127, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  mix-blend-mode: screen;
}
.cursor-ring {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.55);
  box-shadow: 0 0 20px rgba(201, 151, 58, 0.15), inset 0 0 12px rgba(230, 49, 127, 0.08);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, box-shadow 0.2s;
  mix-blend-mode: screen;
}
body.has-pointer.is-hovering .cursor-dot {
  width: 12px;
  height: 12px;
  background: #ff5aa0;
  box-shadow: 0 0 16px rgba(255, 90, 160, 0.95), 0 0 32px rgba(201, 151, 58, 0.4);
}
body.has-pointer.is-hovering .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 90, 160, 0.55);
  box-shadow: 0 0 28px rgba(255, 90, 160, 0.25);
}
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.14) 0%,
    rgba(230, 49, 127, 0.08) 35%,
    rgba(124, 58, 237, 0.04) 55%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
  mix-blend-mode: screen;
}
body.has-pointer .cursor-glow { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .cursor-glow, .cursor-dot, .cursor-ring { display: none !important; }
  body.has-pointer,
  body.has-pointer a,
  body.has-pointer button { cursor: auto; }
  html { scroll-behavior: auto; }
}

/* ——— Phases ——— */
.phase {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px 80px;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.55s var(--ease-out), filter 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.phase:last-of-type { border-bottom: none; }

.js .phase[data-gate].is-locked {
  opacity: 0.22;
  filter: grayscale(0.45);
  pointer-events: none;
  user-select: none;
}
.js .phase[data-gate].is-locked .phase-tag::after {
  content: " · opens above";
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.65rem;
  opacity: 0.7;
}
.js .phase[data-gate]:not(.is-locked) {
  animation: phaseUnlock 0.7s var(--ease-out) both;
}
@keyframes phaseUnlock {
  from { opacity: 0.4; filter: blur(4px); transform: translateY(12px); }
  to { opacity: 1; filter: none; transform: none; }
}

.phase-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  margin-bottom: 16px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--paper-dim);
  max-width: 32em;
  margin-bottom: 32px;
}
.lede em { color: var(--paper); font-style: italic; }

/* ——— ENTRY ——— */
.phase-entry {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8vh;
  padding-bottom: 8vh;
  border-bottom: none;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.entry-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}

@media (min-width: 900px) {
  .entry-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }
}

.entry-copy {
  position: relative;
  z-index: 3;
  max-width: 22em;
  overflow: visible;
  padding: 4px 2px;
}

.hook-line {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.85rem, 5.2vw, 3rem);
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 16em;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}
.hook-line.soft {
  color: var(--paper-dim);
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
}
.hook-line.whisper {
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  color: var(--paper-faint);
  max-width: 18em;
}
.hook-line em {
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 24px rgba(201, 151, 58, 0.35);
}
.hook-line.is-in {
  animation: lineIn 1s var(--ease-out) forwards;
}
.entry-copy .hook-line:nth-child(2).is-in { animation-delay: 0.12s; }
.entry-copy .hook-line:nth-child(3).is-in { animation-delay: 1.05s; }
.entry-copy .hook-line:nth-child(4).is-in { animation-delay: 2.05s; }
.entry-copy .hook-line:nth-child(5).is-in { animation-delay: 3.1s; }

@keyframes lineIn {
  to { opacity: 1; transform: none; }
}

.scroll-cue {
  margin-top: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 151, 58, 0.45);
  opacity: 0;
}
.scroll-cue.is-in {
  animation: fadeCue 1s 4s var(--ease-out) forwards, pulse 2.8s 5s ease-in-out infinite;
}
@keyframes fadeCue { to { opacity: 1; } }
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.entry-well {
  position: relative;
  height: min(52vh, 440px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  border-radius: 50%;
}
.well-rings {
  position: absolute;
  width: min(400px, 78vw);
  height: min(400px, 78vw);
  border-radius: 50%;
}
.well-rings::before,
.well-rings::after,
.well-core {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.18);
  box-shadow:
    0 0 40px rgba(201, 151, 58, 0.08),
    inset 0 0 60px rgba(230, 49, 127, 0.06);
}
.well-rings::before {
  inset: 12%;
  border-color: rgba(201, 151, 58, 0.28);
  animation: wellPulse 6s ease-in-out infinite;
}
.well-rings::after {
  inset: 28%;
  border-color: rgba(230, 49, 127, 0.22);
  animation: wellPulse 6s 1s ease-in-out infinite;
}
.well-core {
  inset: 42%;
  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.35) 0%,
    rgba(230, 49, 127, 0.12) 40%,
    transparent 70%
  );
  border: none;
  animation: wellCore 4s ease-in-out infinite;
}
@keyframes wellPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes wellCore {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

#entryCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hook-line { opacity: 1; transform: none; }
  .scroll-cue { opacity: 1; animation: none; }
  .well-rings::before, .well-rings::after, .well-core { animation: none; }
}

/* ——— Immersion ——— */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .compare { grid-template-columns: 1fr; }
}
.compare-card {
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
  min-height: 44px;
}
.compare-card:hover,
.compare-card:focus-visible {
  border-color: rgba(201, 151, 58, 0.45);
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 151, 58, 0.2);
  transform: translateY(-2px);
}
.compare-card.is-engaged {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 151, 58, 0.12);
}
.compare-card.good {
  border-color: rgba(201, 151, 58, 0.3);
  background: rgba(201, 151, 58, 0.05);
}
.compare-card.good.is-engaged {
  box-shadow: 0 0 32px rgba(201, 151, 58, 0.12), 0 0 64px rgba(230, 49, 127, 0.06);
}
.compare-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.fake-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fake-menu li {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.5);
  text-align: center;
}
.journey-mini {
  list-style: none;
  counter-reset: j;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.journey-mini li {
  counter-increment: j;
  font-size: 0.95rem;
  color: var(--paper-dim);
  padding-left: 2.2em;
  position: relative;
}
.journey-mini li::before {
  content: counter(j);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.45);
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-mini span { color: var(--paper); font-weight: 700; }
.compare-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.4);
  font-style: italic;
}
.unlock-cue {
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 151, 58, 0.3);
}

.essays { display: flex; flex-direction: column; gap: 28px; }
.essay p { color: var(--paper-dim); max-width: 38em; }

/* ——— Comic teaser ——— */
.comic-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
  padding: 0;
  border: 1px solid rgba(201, 151, 58, 0.28);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(201, 151, 58, 0.06), rgba(230, 49, 127, 0.04));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
@media (min-width: 640px) {
  .comic-teaser { grid-template-columns: 1.05fr 1fr; }
}
.comic-teaser:hover,
.comic-teaser:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 151, 58, 0.15), 0 0 80px rgba(230, 49, 127, 0.08);
  transform: translateY(-3px);
  outline: none;
}
.comic-teaser-art {
  position: relative;
  min-height: 220px;
  background: #0d0a0b;
  overflow: hidden;
}
.comic-teaser-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: transform 0.6s var(--ease-out), opacity 0.3s;
  min-height: 220px;
}
.comic-teaser:hover .comic-teaser-art img {
  transform: scale(1.04);
  opacity: 1;
}
.comic-teaser-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(201, 151, 58, 0.45);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.comic-teaser-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.comic-teaser-series {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.comic-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.2;
  font-weight: 400;
}
.comic-teaser-blurb {
  color: var(--paper-dim);
  font-size: 0.95rem;
  max-width: 28em;
}
.comic-teaser-cta {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.comic-teaser-rotate {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--paper-faint);
  font-style: italic;
}

/* ——— Participation ——— */
.eco-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.eco-chip {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(245, 237, 224, 0.15);
  background: transparent;
  color: var(--paper-dim);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.eco-chip:hover,
.eco-chip:focus-visible {
  border-color: rgba(201, 151, 58, 0.4);
  color: var(--paper);
  outline: none;
}
.eco-chip:active { transform: scale(0.96); }
.eco-chip.is-on,
.eco-chip[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201, 151, 58, 0.12);
  color: var(--gold);
}
.eco-result {
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 151, 58, 0.25);
  background: rgba(201, 151, 58, 0.05);
  box-shadow: 0 0 32px rgba(201, 151, 58, 0.12), 0 0 64px rgba(230, 49, 127, 0.06);
}
.eco-count {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.eco-read {
  color: var(--paper-dim);
  font-size: 0.95rem;
  max-width: 36em;
}

/* ——— Proof / case ——— */
.branch-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.case {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.case-step {
  padding-left: 16px;
  border-left: 2px solid rgba(201, 151, 58, 0.35);
  transition: border-color 0.3s, background 0.3s;
}
.case-step.is-focus {
  border-left-color: var(--gold);
  background: rgba(201, 151, 58, 0.04);
  padding: 12px 12px 12px 16px;
  border-radius: 0 10px 10px 0;
}
.case-k {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.case-step p { color: var(--paper-dim); max-width: 38em; }
.case-step em { color: var(--paper); font-style: italic; }

.meta-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.4;
  color: var(--paper-dim);
  margin-top: 12px;
}
.meta-line strong {
  color: var(--gold);
  font-weight: 400;
  text-shadow: 0 0 20px rgba(201, 151, 58, 0.4);
}
.meta-line.is-live { animation: fadeIn 0.7s var(--ease-out) both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ——— Method + Journey widget ——— */
.spine {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  max-width: 18em;
  margin-bottom: 14px;
}

.journey-widget {
  margin: 32px 0;
  border-radius: 18px;
  border: 1px solid rgba(201, 151, 58, 0.28);
  background: linear-gradient(160deg, rgba(18, 11, 14, 0.95), rgba(10, 10, 10, 0.98));
  padding: 22px 20px 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.journey-widget.is-warm {
  border-color: rgba(230, 49, 127, 0.4);
  box-shadow:
    0 0 40px rgba(230, 49, 127, 0.12),
    0 0 80px rgba(201, 151, 58, 0.08);
}

.journey-rail {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.journey-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.4);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.journey-dot.is-done {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 151, 58, 0.5);
}
.journey-dot.is-current {
  background: #ff5aa0;
  border-color: #ff5aa0;
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(255, 90, 160, 0.6);
}
.journey-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.journey-step { min-height: 160px; }
.journey-step-k {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.journey-step h3 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin-bottom: 10px;
}
.journey-step p {
  color: var(--paper-dim);
  max-width: 36em;
  font-size: 0.98rem;
}
.journey-price {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(201, 151, 58, 0.3);
  background: rgba(201, 151, 58, 0.08);
  display: none;
}
.journey-price.is-show { display: block; animation: fadeIn 0.45s var(--ease-out); }
.journey-price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
}
.journey-price span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.journey-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.journey-btn {
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 151, 58, 0.45);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.journey-btn:hover,
.journey-btn:focus-visible {
  background: rgba(201, 151, 58, 0.12);
  outline: none;
}
.journey-btn:active { transform: scale(0.96); }
.journey-btn.primary {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 151, 58, 0.3);
}
.journey-btn.primary:hover { opacity: 0.92; background: var(--gold); color: #0a0a0a; }
.journey-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.journey-close {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--paper-dim);
  display: none;
}
.journey-close.is-show { display: block; animation: fadeIn 0.5s var(--ease-out); }
.journey-close em { color: var(--gold); font-style: italic; }

.not-that {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paper-dim);
  margin: 28px 0 32px;
  line-height: 1.45;
  max-width: 28em;
}

.cta {
  display: inline-block;
  padding: 16px 28px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 24px rgba(201, 151, 58, 0.35), 0 0 48px rgba(230, 49, 127, 0.12);
}
.cta:hover {
  opacity: 0.92;
  color: #0a0a0a;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(201, 151, 58, 0.5), 0 0 64px rgba(255, 90, 160, 0.2);
}
.cta:active { transform: scale(0.96); }
.cta-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.3);
}
.cta.is-placeholder {
  background: rgba(201, 151, 58, 0.16);
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  cursor: default;
  box-shadow: none;
}
.cta.is-placeholder:hover { opacity: 1; color: var(--gold); }

.site-foot {
  text-align: center;
  padding: 40px 24px 110px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.28);
  position: relative;
  z-index: 2;
}
.site-foot a {
  color: var(--gold-soft);
  text-decoration: none;
}
.site-foot a:hover { color: var(--gold); }

/* ——— A11y ——— */
.a11y-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 11, 10, 0.92);
  border: 1px solid rgba(201, 151, 58, 0.55);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
}
.a11y-btn:hover,
.a11y-btn:focus-visible {
  background: rgba(201, 151, 58, 0.15);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.a11y-panel {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9990;
  width: min(260px, calc(100vw - 40px));
  background: rgba(12, 11, 10, 0.96);
  border: 1px solid rgba(201, 151, 58, 0.35);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.a11y-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.a11y-opt {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(245, 237, 224, 0.12);
  background: transparent;
  color: var(--paper-dim);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.a11y-opt:hover,
.a11y-opt[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9980;
  max-width: min(360px, calc(100vw - 40px));
  background: rgba(12, 11, 10, 0.96);
  border: 1px solid rgba(201, 151, 58, 0.3);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.cookie p {
  font-size: 0.85rem;
  color: var(--paper-dim);
  margin-bottom: 12px;
  line-height: 1.45;
}
.cookie a { color: var(--gold); }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-accept,
.cookie-decline {
  font-family: inherit;
  font-size: 0.78rem;
  padding: 10px 14px;
  min-height: 40px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(201, 151, 58, 0.4);
}
.cookie-accept {
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  border-color: var(--gold);
}
.cookie-decline {
  background: transparent;
  color: var(--paper-dim);
}
.privacy-note {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 13px; }
::-webkit-scrollbar-track {
  background: #060606;
  box-shadow: inset 0 0 10px rgba(230, 49, 127, 0.1);
}
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid #060606;
  background: linear-gradient(180deg, #fff3d0 0%, #c9973a 22%, #e6317f 55%, #7c3aed 82%, #4f46e5 100%);
  box-shadow: 0 0 14px rgba(230, 49, 127, 0.7), 0 0 28px rgba(201, 151, 58, 0.35);
}
html {
  scrollbar-color: #c9973a #060606;
  scrollbar-width: thin;
}

/* ——— Offer page extras ——— */
.offer-back {
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 60;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
}
.offer-back:hover { color: var(--gold); }

.phase-arrival {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 14vh;
  border-bottom: none;
}
.arrival-where {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--gold);
  margin-bottom: 22px;
}

.movements {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.movement {
  position: relative;
  padding: 26px 0 30px 30px;
  border-left: 2px solid rgba(201, 151, 58, 0.28);
}
.movement.is-second { border-left-color: var(--gold); }
.movement-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-soft);
  position: absolute;
  left: -2px;
  top: 24px;
  background: var(--ink);
  padding: 0 10px 0 0;
  transform: translateX(-50%);
}
.movement.is-second .movement-roman { color: var(--gold); }
.movement h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 10px;
}
.movement .m-body {
  color: var(--paper-dim);
  max-width: 34em;
  font-size: 1.02rem;
}
.movement .m-body em { color: var(--paper); font-style: italic; }

.total-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  background: rgba(201, 151, 58, 0.05);
  margin-bottom: 16px;
}
.total-bar strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--gold);
}
.total-bar span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.stage-note {
  color: var(--paper-dim);
  max-width: 38em;
  margin-bottom: 36px;
  font-size: 0.98rem;
}
.stage-note em { color: var(--paper); font-style: italic; }

.detail-block { margin-top: 6px; }
.detail-block + .detail-block { margin-top: 38px; }
.detail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.detail-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.detail-price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.detail-price .sub {
  display: block;
  text-align: right;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-top: 2px;
}

.include {
  list-style: none;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.include li {
  padding: 8px 0 8px 18px;
  position: relative;
  color: var(--paper-dim);
  font-size: 0.95rem;
}
.include li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.include em { color: var(--paper); font-style: normal; }

.extras-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--paper-dim);
  max-width: 30em;
  margin-bottom: 26px;
}
.extra-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.extra-row:last-child { border-bottom: none; }
.extra-text { max-width: 40em; }
.extra-text strong { font-weight: 700; color: var(--paper); }
.extra-text span {
  display: block;
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin-top: 3px;
}
.extra-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.98rem;
}
.extra-price.quote {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.guard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.guard-item {
  padding-left: 20px;
  position: relative;
  color: var(--paper-dim);
  max-width: 40em;
}
.guard-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}
.guard-item strong { color: var(--paper); font-weight: 700; }
.cta-wrap { margin-top: 36px; }

/* ——— Comic mast / bank list ——— */
.comic-page { background: #0a0a0a; }
.comic-mast {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.comic-mast a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.comic-mast a:hover { color: var(--gold); }
.comic-mast .brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--paper);
  letter-spacing: 0.04em;
}

.comic-strip {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.comic-subtitle {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}

.clip-tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  background: #e6317f;
  color: #fff;
  padding: 0.28rem 0.55rem;
  text-transform: uppercase;
  pointer-events: none;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
}

.comic-outro {
  text-align: center;
  margin: 2.5rem auto 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s, transform 0.55s;
}
.comic-outro.in { opacity: 1; transform: none; }
.comic-outro .end {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.comic-outro .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 0.4rem;
  color: var(--paper-dim);
}

.comic-next-door {
  margin: 2rem auto 0;
  max-width: 420px;
  text-align: center;
  padding: 28px 24px;
  border: 1px solid rgba(201, 151, 58, 0.3);
  border-radius: 16px;
  background: rgba(201, 151, 58, 0.05);
}
.comic-next-door p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--paper-dim);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.comic-bank-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.comic-bank-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: rgba(255, 255, 255, 0.02);
}
.comic-bank-card:hover {
  border-color: rgba(201, 151, 58, 0.45);
  box-shadow: 0 0 24px rgba(201, 151, 58, 0.1);
}
.comic-bank-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.comic-bank-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.comic-bank-card p {
  color: var(--paper-dim);
  font-size: 0.9rem;
}

/* ——— Full Episode 1 reader ——— */
.ep-header {
  position: relative;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #1a1218 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.ep-logo-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  padding: 0.25rem 0.7rem;
}
.ep-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.ep-header h1 .vs {
  color: #ff4d9e;
  font-style: italic;
}

.ep-character {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.ep-character img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(201, 151, 58, 0.3);
  background: #1a1a1e;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.ep-bio {
  flex: 1;
  min-width: 200px;
  font-size: 0.92rem;
  color: var(--paper-dim);
}
.ep-bio strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.ep-tags {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.ep-tag {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--paper-dim);
}

.ep-reader {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1rem 1rem;
}

.ep-panel {
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.ep-panel.in { opacity: 1; transform: none; }

.ep-panel figure {
  margin: 0;
  background: #121216;
  border: 1px solid rgba(201, 151, 58, 0.22);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}
.ep-panel img,
.ep-panel video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.ep-panel figcaption {
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
  color: var(--paper-dim);
  border-top: 1px solid var(--line);
  background: #0e0e12;
  font-family: var(--font-display);
  font-style: italic;
}
.ep-num {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-ui);
  color: #ff4d9e;
  margin-right: 0.4rem;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.ep-video .clip-tag {
  background: rgba(0, 0, 0, 0.8);
  color: #2ad4ff;
  border-radius: 2px;
}

.ep-interlude {
  text-align: center;
  padding: 1.75rem 1rem;
  margin: 1.5rem 0 2rem;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s, transform 0.55s;
}
.ep-interlude.in { opacity: 1; transform: none; }
.ep-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.ep-note {
  font-size: 0.85rem;
  color: var(--paper-faint);
}

.ep-art {
  margin: 2.5rem 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s, transform 0.55s;
}
.ep-art.in { opacity: 1; transform: none; }
.ep-art-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 400;
}
.ep-art figure {
  margin: 0;
  border: 1px solid rgba(201, 151, 58, 0.22);
  border-radius: 6px;
  overflow: hidden;
  background: #121216;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.ep-art img {
  display: block;
  width: 100%;
  height: auto;
}
.ep-art figcaption {
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
  color: var(--paper-dim);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
}

.ep-footer {
  text-align: center;
  padding: 2.5rem 1.25rem 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.ep-mug {
  width: 120px;
  margin: 0 auto 1.1rem;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(201, 151, 58, 0.25);
}
.ep-footer p {
  font-size: 0.85rem;
  color: var(--paper-dim);
  max-width: 360px;
  margin: 0 auto 0.5rem;
}
.ep-brand {
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff4d9e !important;
  margin-top: 1.1rem !important;
}

@media (max-width: 520px) {
  .ep-character {
    flex-direction: column;
    text-align: center;
  }
  .ep-character img { width: 110px; }
  .ep-tags { justify-content: center; }
  .ep-reader { padding-left: 0.65rem; padding-right: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .comic-panel, .comic-outro, .ep-panel, .ep-interlude, .ep-art {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js .phase[data-gate]:not(.is-locked) { animation: none; }
}

@media (max-width: 480px) {
  .phase { padding: 72px 18px 64px; }
  .cookie { bottom: 76px; right: 12px; left: 12px; max-width: none; }
  .a11y-btn { bottom: 16px; left: 12px; }
  .entry-well { height: min(40vh, 280px); }
}

/* ════════════════════════════════════════════════════════
   LIVING PROOF — GoonTopia visual case study
   ════════════════════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 36px 0 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.proof-card {
  background: rgba(18, 11, 14, 0.6);
  border: 1px solid rgba(201, 151, 58, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.proof-card:hover {
  border-color: rgba(201, 151, 58, 0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(201, 151, 58, 0.12);
  transform: translateY(-4px);
}
.proof-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}
.proof-card figcaption {
  padding: 14px 16px 18px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--paper-dim);
}
.proof-card figcaption strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.proof-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--paper-dim);
}
.proof-cta {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
}
@media (max-width: 640px) {
  .proof-grid { gap: 18px; }
  .proof-card img { height: 180px; }
}

/* Dual CTA — Fiverr primary + Stripe secondary */
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}
.cta-secondary {
  background: transparent !important;
  border: 1px solid rgba(201, 151, 58, 0.35) !important;
  color: var(--gold) !important;
  font-size: 0.95rem !important;
  padding: 12px 22px !important;
}
.cta-secondary:hover {
  border-color: var(--gold) !important;
  background: rgba(201, 151, 58, 0.08) !important;
}

/* ════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR — ink track, gold thumb
   ════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-left: 1px solid rgba(201,151,58,0.08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(201,151,58,0.55), rgba(201,151,58,0.25));
  border-radius: 999px;
  border: 2px solid #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(201,151,58,0.8), rgba(201,151,58,0.45));
}
* { scrollbar-width: thin; scrollbar-color: rgba(201,151,58,0.45) #0a0a0a; }

/* ════════════════════════════════════════════════════════
   LIVING ELEMENTS — breathe, shine, soft motion
   ════════════════════════════════════════════════════════ */
@keyframes soft-breathe {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
}
@keyframes gold-shine {
  0% { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.breathe {
  animation: soft-breathe 5.5s ease-in-out infinite;
}
.shine-text {
  background: linear-gradient(90deg, #c9973a 0%, #f0e0b0 40%, #c9973a 60%, #c9973a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shine 7s linear infinite;
}
.float-soft { animation: float-soft 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .breathe, .shine-text, .float-soft { animation: none !important; }
}

/* Living fact */
.living-fact {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(245,237,224,0.72);
  max-width: 520px;
  margin: 1.5rem auto;
  padding: 1rem 1.25rem;
  border-left: 2px solid rgba(201,151,58,0.35);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.living-fact.is-changing { opacity: 0; transform: translateY(8px); }

/* Sachet doors */
.sachet-door {
  display: block;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(18,11,14,0.55);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.sachet-door:hover {
  border-color: rgba(201,151,58,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  text-decoration: none;
  color: inherit;
}
.sachet-door strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.sachet-door span {
  font-size: 0.9rem;
  color: var(--paper-dim);
}

/* Sachet Found Note Component */
.sachet-note {
  margin: 3rem auto;
  max-width: 520px;
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12,11,10,0.6);
  transition: border-color 0.3s ease;
}
.sachet-note:hover {
  border-color: rgba(201,151,58,0.45);
}
.sachet-teaser {
  padding: 1.5rem;
  text-align: center;
}
.sachet-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,151,58,0.7);
  margin-bottom: 1rem;
}
.sachet-hand {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1.2rem;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  cursor: pointer;
}
.sachet-open, .sachet-close {
  font-family: Karla, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: #c9973a;
  border: 1px solid rgba(201,151,58,0.5);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sachet-open:hover, .sachet-close:hover {
  background: rgba(201,151,58,0.15);
}
.sachet-body {
  padding: 0 1.5rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sachet-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: #f5ede0;
  margin: 1.2rem 0 1rem;
}
.sachet-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(236,231,219,0.88);
  margin-bottom: 1em;
  line-height: 1.6;
}
.sachet-end {
  color: #fff !important;
  font-weight: 500;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sachet-note, .sachet-hand, .sachet-open {
    transition: none;
  }
}

/* ════════════════════════════════════════════════════════
   MOTION LAYER — flip cards, comparison, rotating gallery
   ════════════════════════════════════════════════════════ */

/* Side-by-side living comparison */
.world-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 2rem 0 1.5rem;
  position: relative;
}
@media (max-width: 700px) {
  .world-compare { grid-template-columns: 1fr; }
}
.world-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  background: #0c0b0a;
}
.world-panel-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--paper-dim);
  backdrop-filter: blur(8px);
}
.world-panel.is-hole .world-panel-label {
  color: var(--gold);
  border-color: rgba(201,151,58,0.4);
}
.world-panel.is-menu .menu-mock {
  padding: 56px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.menu-mock .menu-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #111);
  margin: 0 auto 8px;
  border: 2px solid #2a2a2a;
}
.menu-mock .menu-name {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.menu-mock .menu-link {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: #161616;
  border: 1px solid #2a2a2a;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: opacity 0.4s;
}
.menu-mock .menu-link.is-dim { opacity: 0.35; }
.menu-mock .menu-link.is-pulse {
  animation: menu-pulse 2.4s ease-in-out infinite;
}
@keyframes menu-pulse {
  0%, 100% { border-color: #2a2a2a; }
  50% { border-color: #444; }
}

.world-panel.is-hole .hole-stage {
  position: absolute;
  inset: 0;
}
.world-panel.is-hole .hole-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
}
.world-panel.is-hole .hole-slide.is-active { opacity: 1; }
.world-panel.is-hole .hole-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.2) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.world-panel.is-hole .hole-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: #f5ede0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.world-panel.is-hole .hole-caption span {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.world-verdict {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(245,237,224,0.78);
  margin: 0.5rem 0 0;
  max-width: 520px;
  margin-inline: auto;
}

/* Flip metric cards */
.flip-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 2rem 0;
  perspective: 1200px;
}
.flip-card {
  height: 180px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out);
}
.flip-card.is-flipped { transform: rotateY(180deg); }
.flip-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  border: 1px solid rgba(201,151,58,0.22);
  background: linear-gradient(160deg, rgba(18,11,14,0.95), rgba(10,10,10,0.98));
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.flip-face.back {
  transform: rotateY(180deg);
  border-color: rgba(201,151,58,0.4);
  background: linear-gradient(160deg, rgba(30,18,12,0.98), rgba(12,10,8,0.98));
}
.flip-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
}
.flip-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-align: center;
}
.flip-face.back p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,237,224,0.85);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.flip-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--paper-faint);
  letter-spacing: 0.06em;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

/* Rotating analytics screenshot gallery */
.shot-gallery {
  position: relative;
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,151,58,0.2);
  background: #0c0b0a;
  aspect-ratio: 16 / 10;
  max-height: 420px;
}
.shot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.shot-slide.is-active { opacity: 1; }
.shot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.shot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(5,5,5,0.95), transparent);
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(245,237,224,0.8);
}
.shot-caption strong {
  color: var(--gold);
  font-weight: 500;
}
.shot-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.shot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.4);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.shot-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

/* Scores row */
.score-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 1.5rem 0;
}
@media (max-width: 560px) {
  .score-row { grid-template-columns: 1fr 1fr; }
}
.score-pill {
  text-align: center;
  padding: 16px 10px;
  border-radius: 12px;
  border: 1px solid rgba(201,151,58,0.22);
  background: rgba(12,11,10,0.7);
}
.score-pill .score-n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.score-pill .score-l {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-top: 6px;
  display: block;
}
.score-pill.is-perfect .score-n { color: #7dce8a; }

/* Image crossfade in proof grid */
.proof-grid {
  position: relative;
}
.proof-card {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.proof-card img {
  transition: transform 8s ease;
}
.proof-card:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .flip-card { transition: none; }
  .flip-card.is-flipped { transform: none; }
  .flip-face.back { position: relative; transform: none; margin-top: 8px; }
  .hole-slide, .shot-slide { transition: none; }
  .menu-mock .menu-link.is-pulse { animation: none; }
  .proof-card img { transition: none; }
}


/* ═══════════════════════════════════════════════════════════
   LOBBY ART GALLERY — luxury wall, framed works, random data
   ═══════════════════════════════════════════════════════════ */
.lobby-gallery {
  position: relative;
  padding: 3.5rem 1.25rem 3rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,151,58,0.06), transparent 55%),
    linear-gradient(180deg, #0c0b0a 0%, #080807 40%, #0a0908 100%);
  border-top: 1px solid rgba(201,151,58,0.12);
  border-bottom: 1px solid rgba(201,151,58,0.1);
}
.lobby-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.5;
}
.lobby-header {
  position: relative;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  z-index: 1;
}
.lobby-gallery .phase-tag {
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}
.lobby-gallery h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--paper);
  margin: 0 0 0.75rem;
}
.lobby-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--paper-dim);
  margin: 0 0 0.6rem;
}
.lobby-meta {
  font-family: "Karla", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,151,58,0.65);
  margin: 0;
}
.lobby-wall {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0.5rem 0.5rem;
}
.lg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem 1.15rem;
  width: 100%;
}
.lg-card {
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  outline: none;
  background: transparent;
  border: none;
  padding: 0;
}
.lg-card:focus-visible {
  outline: 2px solid rgba(201,151,58,0.75);
  outline-offset: 6px;
}
/* Outer frame — museum molding */
.lg-frame {
  position: absolute;
  inset: 0;
  padding: 7px;
  background: linear-gradient(145deg, #2a241c 0%, #1a1612 40%, #0e0c0a 100%);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(201,151,58,0.22),
    0 18px 40px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.lg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.75s cubic-bezier(0.32, 0.08, 0.18, 1);
  border-radius: 1px;
}
.lg-card.is-flipped .lg-inner {
  transform: rotateY(180deg);
}
.lg-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1px;
  overflow: hidden;
}
.lg-front {
  background: #050505;
}
.lg-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 12s ease;
}
.lg-front img.is-wide {
  object-fit: contain;
  background: #050505;
}
.lg-card:hover .lg-front img {
  transform: scale(1.04);
}
.lg-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    transparent 30%,
    transparent 65%,
    rgba(0,0,0,0.5) 100%
  );
  pointer-events: none;
}
/* Small gold plaque number */
.lg-plaque {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(201,151,58,0.85);
  background: rgba(8,7,6,0.72);
  padding: 3px 7px;
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 1px;
  backdrop-filter: blur(4px);
}
/* Data reverse */
.lg-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.35rem 1.15rem;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,151,58,0.1), transparent 50%),
    linear-gradient(165deg, #161310 0%, #0a0908 55%, #0c0b09 100%);
  border: 1px solid rgba(201,151,58,0.28);
}
.lg-back::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,151,58,0.14);
  pointer-events: none;
}
.lg-fact {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.48;
  color: rgba(245,237,224,0.94);
  position: relative;
  z-index: 1;
}
.lg-back.is-long .lg-fact {
  font-size: 0.9rem;
  line-height: 1.4;
}
.lg-data {
  display: block;
  margin-top: 1rem;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,151,58,0.7);
  position: relative;
  z-index: 1;
}
.lg-hint {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 1.75rem auto 0;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.4);
}

@media (max-width: 960px) {
  .lg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 0.9rem;
  }
  .lobby-gallery {
    padding: 2.5rem 1rem 2.25rem;
  }
}
@media (max-width: 480px) {
  .lg-grid {
    gap: 0.85rem 0.65rem;
  }
  .lg-frame {
    padding: 5px;
  }
  .lg-fact {
    font-size: 0.88rem;
  }
  .lg-back.is-long .lg-fact {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lg-inner { transition: none; }
  .lg-card.is-flipped .lg-inner { transform: none; }
  .lg-front img { transition: none; }
}

/* ——— Field notes / blog ——— */
.essay h3 a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.essay h3 a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

body.blog-page {
  background: var(--ink);
}
.blog-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 22px 96px;
  position: relative;
  z-index: 2;
}
.blog-crumb {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.blog-crumb a {
  color: inherit;
  text-decoration: none;
}
.blog-crumb a:hover { color: var(--gold); }
.blog-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.22;
  margin-bottom: 14px;
}
.blog-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 36px;
}
.blog-lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  color: var(--paper-dim);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 38em;
}
.blog-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 400;
  color: #fff;
  margin: 2.2rem 0 0.85rem;
  letter-spacing: 0.01em;
}
.blog-article p {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.8vw, 1.2rem);
  color: rgba(236, 231, 219, 0.88);
  margin-bottom: 1.25em;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.blog-article p.strong {
  color: #fff;
}
.blog-article em {
  font-style: italic;
  color: #f0e9dc;
}
.blog-article ul {
  margin: 0 0 1.4em 1.2em;
  color: rgba(236, 231, 219, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.15rem);
  line-height: 1.6;
}
.blog-article li { margin-bottom: 0.45em; }
.blog-article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.blog-cta p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--paper-dim);
  margin-bottom: 1rem;
}
.blog-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.blog-related h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.blog-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-related li {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.blog-related a {
  color: var(--paper-dim);
  text-decoration: none;
}
.blog-related a:hover { color: var(--gold); }

.blog-index-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.5rem;
}
.blog-index-card {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.blog-index-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.blog-index-card h2 a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.blog-index-card h2 a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.blog-index-card p {
  font-family: var(--font-display);
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.55;
}
.blog-index-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}
