:root {
  --charcoal: #0E0F13;
  --charcoal-2: #14161d;
  --navy: #0E1E3A;
  --gold: #E7B64C;
  --gold-light: #F7D98C;
  --gold-deep: #C9962F;
  --cream: #F4F1E8;
  --muted: rgba(244, 241, 232, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Self-hosted fonts (no external Google Fonts request) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 500 600; font-display: swap;
  src: url('/assets/fonts/cormorant.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 300 400; font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant fallback';
  src: local('Georgia');
  size-adjust: 86%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

h1, h2 { font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif; font-weight: 600; }

a { color: inherit; }

/* Visible keyboard focus indicator (WCAG 2.4.7) */
:where(a, summary, button):focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 6px;
}
.faq summary:focus-visible { outline-offset: -2px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(14, 30, 58, 0.55), transparent 70%),
    var(--charcoal);
}
.hero-glow {
  position: absolute;
  top: 14%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(231,182,76,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.logo {
  width: 240px; height: 240px;
  max-width: 62vw;
  filter: drop-shadow(0 0 40px rgba(231,182,76,0.25));
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slogan {
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
.tagline {
  max-width: 540px;
  color: var(--muted);
  margin-top: 1.4rem;
  font-size: 1.05rem;
}
.cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.cta:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ---------- CATEGORIES ---------- */
.categories {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: linear-gradient(180deg, var(--charcoal-2), #0c0d12);
  border: 1px solid rgba(231,182,76,0.16);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(231,182,76,0.4); }
.card .icon { font-size: 2rem; }
.card h2 {
  font-size: 1.7rem;
  color: var(--gold-light);
  margin: 0.8rem 0 0.6rem;
}
.card p { color: var(--muted); font-size: 0.98rem; }
.card-link { display: inline-block; margin-top: 1.2rem; color: var(--gold-light); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.03em; transition: color 0.2s ease; }
.card-link:hover { color: var(--gold); }
.post-title a { color: inherit; text-decoration: none; }
.post-title a:hover { color: var(--gold); }
.footer-nav { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; justify-content: center; padding-bottom: 1rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(231,182,76,0.1); }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.03em; }
.footer-nav a:hover { color: var(--gold-light); }

/* ---------- LISTEN ---------- */
.listen {
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  max-width: 760px;
  margin: 0 auto;
}
.section-title { font-size: clamp(2rem, 5vw, 2.8rem); color: var(--gold-light); }
.section-sub { color: var(--muted); margin-top: 0.5rem; }
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 2.2rem 0 2rem;
}
.pill {
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(231,182,76,0.3);
  border-radius: 999px;
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.22s ease;
}
.pill:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.pill.is-soon { opacity: 0.5; cursor: default; pointer-events: none; }
.pill.is-soon:hover { background: transparent; color: var(--cream); border-color: rgba(231,182,76,0.3); }
.pill.is-soon small { font-size: 0.7em; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; margin-left: 0.35em; }
.contact a { color: var(--gold-light); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

/* ---------- UPDATES / MINI-BLOG ---------- */
.updates {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}
.post-list {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
  justify-content: center;
  gap: 1.6rem;
  text-align: left;
}
.post {
  background: linear-gradient(180deg, var(--charcoal-2), #0c0d12);
  border: 1px solid rgba(231,182,76,0.16);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.post:hover { transform: translateY(-4px); border-color: rgba(231,182,76,0.4); }
.post-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: rgba(14,15,19,0.78);
  border: 1px solid rgba(231,182,76,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.post-body { padding: 1.4rem 1.5rem 1.6rem; }
.post-meta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.post-playlist { color: var(--gold); }
.post-title {
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.post-excerpt { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.post-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.post-link:hover { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  text-align: center;
}
.faq-list {
  margin-top: 2.2rem;
  text-align: left;
}
.faq details {
  border: 1px solid rgba(231,182,76,0.16);
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: linear-gradient(180deg, var(--charcoal-2), #0c0d12);
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(231,182,76,0.35); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-size: 1.3rem;
  color: var(--gold-light);
}
.faq summary::marker { content: ''; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 9px; height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p {
  color: var(--muted);
  font-size: 0.98rem;
  padding: 0 1.4rem 1.2rem;
}

/* ====================================================================
   DYNAMICS · INFOGRAPHICS · EFFECTS  (calm, slow, reduced-motion-safe)
   ==================================================================== */

/* ---- Scroll reveal (only when JS present, so no-JS shows everything) ---- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-child { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.js .reveal.in .reveal-child { opacity: 1; transform: none; }
.js .reveal.in .reveal-child:nth-child(1) { transition-delay: 0.04s; }
.js .reveal.in .reveal-child:nth-child(2) { transition-delay: 0.12s; }
.js .reveal.in .reveal-child:nth-child(3) { transition-delay: 0.20s; }
.js .reveal.in .reveal-child:nth-child(4) { transition-delay: 0.28s; }
.js .reveal.in .reveal-child:nth-child(5) { transition-delay: 0.36s; }

/* ---- Hero starfield + entrance ---- */
.starfield { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-glow { z-index: 0; }
.hero h1, .hero .slogan, .hero .tagline, .hero .cta { position: relative; z-index: 1; }

@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes breathe { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

.js .hero picture { display: inline-block; position: relative; z-index: 1; animation: floaty 7s ease-in-out infinite; }
.js .hero-glow { animation: breathe 6.5s ease-in-out infinite; }
/* logo (LCP) paints immediately — only the float animates; text rises in */
.js .hero h1, .js .hero .slogan, .js .hero .tagline, .js .hero .cta {
  opacity: 0; animation: heroRise 0.9s cubic-bezier(0.2,0.7,0.2,1) forwards;
}
.js .hero h1       { animation-delay: 0.18s; }
.js .hero .slogan  { animation-delay: 0.30s; }
.js .hero .tagline { animation-delay: 0.42s; }
.js .hero .cta     { animation-delay: 0.56s; }

/* gentle gold shimmer sweeping the wordmark */
.js .hero h1 {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  animation: heroRise 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.18s forwards, shimmer 9s linear 1s infinite;
}

/* CTA — soft pulsing glow + sheen on hover */
@keyframes ctaGlow { 0%,100% { box-shadow: 0 0 0 rgba(231,182,76,0); } 50% { box-shadow: 0 0 26px rgba(231,182,76,0.28); } }
.js .cta { animation: heroRise 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.56s forwards, ctaGlow 4.5s ease-in-out 1.6s infinite; }
.cta { position: relative; overflow: hidden; }
.cta::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(247,217,140,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.cta:hover::after { left: 140%; }

/* ---- Stats strip (light infographic) ---- */
.stats {
  max-width: 1080px; margin: 0 auto; padding: 1rem 1.5rem 1rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat {
  text-align: center; padding: 1.6rem 1rem;
  border: 1px solid rgba(231,182,76,0.14); border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,22,29,0.6), rgba(12,13,18,0.6));
}
.stat-num {
  display: block; font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-weight: 600; font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1;
  color: var(--gold-light); text-shadow: 0 0 24px rgba(231,182,76,0.18);
}
.stat-num small { font-size: 0.5em; color: var(--gold); }
.stat-label { display: block; margin-top: 0.5rem; font-size: 0.82rem; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- Duration meters inside category cards ---- */
.meter { height: 6px; border-radius: 999px; background: rgba(231,182,76,0.12); margin-top: 1.4rem; overflow: hidden; }
.meter-fill { display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transition: width 1.1s cubic-bezier(0.2,0.7,0.2,1) 0.2s; }
.reveal.in .meter-fill { width: var(--len); }
.js .reveal:not(.in) .meter-fill { width: 0; }
.meter-label { display: inline-block; margin-top: 0.6rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }

/* ---- Process timeline (how it's made) ---- */
.process { max-width: 1080px; margin: 0 auto; padding: 4rem 1.5rem; text-align: center; }
.process .steps {
  position: relative; list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.process .steps::before {
  content: ''; position: absolute; top: 30px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(231,182,76,0.5), transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 1.3s ease 0.25s;
}
.process.reveal.in .steps::before { transform: scaleX(1); }
.step { position: relative; }
.step-ic {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; margin: 0 auto 1rem; font-size: 1.6rem;
  border-radius: 50%; background: var(--charcoal-2); border: 1px solid rgba(231,182,76,0.3);
  box-shadow: 0 0 22px rgba(231,182,76,0.12); position: relative; z-index: 1;
}
.step h3 { font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 720px) {
  .process .steps { grid-template-columns: 1fr 1fr; }
  .process .steps::before { display: none; }
}

/* ---- Force-visible / no animation under reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-child, .js .hero .logo, .js .hero h1,
  .js .hero .slogan, .js .hero .tagline, .js .hero .cta { opacity: 1 !important; transform: none !important; }
  .reveal.in .meter-fill, .meter-fill { width: var(--len); }
  .process .steps::before { transform: scaleX(1); }
  .starfield { display: none; }
}

/* ---------- CONTACT / FEEDBACK FORM ---------- */
.contact { max-width: 680px; margin: 0 auto; padding: 2rem 1.5rem 5rem; text-align: center; }
.contact-form { margin-top: 2.4rem; text-align: left; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 1rem; }
.field-label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(20,22,29,0.6);
  border: 1px solid rgba(231,182,76,0.2); border-radius: 12px;
  color: var(--cream); font-family: inherit; font-size: 0.98rem; font-weight: 300;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: rgba(231,182,76,0.6);
  box-shadow: 0 0 0 3px rgba(231,182,76,0.12);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(244,241,232,0.35); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.4rem; }
.btn-send {
  padding: 0.85rem 2.2rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--gold-deep); background: transparent; color: var(--gold-light);
  font-family: inherit; font-size: 0.92rem; letter-spacing: 0.08em;
  transition: all 0.25s ease;
}
.btn-send:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-send:disabled { opacity: 0.5; cursor: default; }
.form-status { font-size: 0.9rem; color: var(--muted); margin: 0; }
.form-status.is-ok  { color: var(--gold-light); }
.form-status.is-err { color: #E08A6C; }

/* ====================================================================
   CONTENT PAGES  (about / playlist landings / release posts)
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 1.5rem;
  background: rgba(14,15,19,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231,182,76,0.12);
}
.site-header .brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.site-header .brand img { width: 34px; height: 34px; }
.site-header .brand span {
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-size: 1.15rem; letter-spacing: 0.06em; color: var(--gold-light);
}
.site-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; align-items: center; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 0.86rem; letter-spacing: 0.03em; transition: color 0.2s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-light); }
@media (max-width: 600px) { .site-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; } }

.page { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
.page-hero { max-width: 820px; margin: 0 auto; padding: 4rem 1.5rem 1rem; text-align: center; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-kicker { color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 0.8rem; }
.page h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem); line-height: 1.08; letter-spacing: 0.02em;
  color: var(--gold-light);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.08;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-lede { color: var(--muted); font-size: 1.1rem; margin-top: 1.1rem; }
.page-lede p { color: inherit; font-size: inherit; margin: 0.6rem 0; }
.prose { color: var(--cream); }
.prose > p, .prose > ul { color: rgba(244,241,232,0.82); margin: 1.1rem 0; font-size: 1.02rem; }
.prose h2 {
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-weight: 600; font-size: 1.7rem; color: var(--gold-light);
  margin: 2.4rem 0 0.4rem;
}
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.4rem 0; }
.prose a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(231,182,76,0.4); }
.prose a:hover { text-decoration-color: var(--gold); }
.prose strong { color: var(--cream); font-weight: 500; }
.page-cta { display: inline-block; margin-top: 1.6rem; padding: 0.85rem 2.2rem; border: 1px solid var(--gold-deep); border-radius: 999px; color: var(--gold-light); text-decoration: none; letter-spacing: 0.08em; font-size: 0.92rem; transition: all 0.25s ease; }
.page-cta:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* related / cross-links grid on landing pages */
.related { max-width: 1080px; margin: 0 auto; padding: 1rem 1.5rem 4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.related a {
  display: block; text-decoration: none; padding: 1.6rem 1.5rem; border-radius: 16px;
  background: linear-gradient(180deg, var(--charcoal-2), #0c0d12); border: 1px solid rgba(231,182,76,0.16);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.related a:hover { transform: translateY(-4px); border-color: rgba(231,182,76,0.4); }
.related .r-ic { font-size: 1.6rem; }
.related .r-t { font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif; font-size: 1.3rem; color: var(--gold-light); margin: 0.5rem 0 0.3rem; }
.related .r-d { color: var(--muted); font-size: 0.9rem; }

/* release-post hero image */
.post-cover { width: 100%; max-width: 820px; margin: 1.5rem auto 0; display: block; border-radius: 16px; aspect-ratio: 16/9; object-fit: cover; border: 1px solid rgba(231,182,76,0.18); }

/* ---------- 404 ---------- */
.notfound {
  position: relative; min-height: 78vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 5rem 1.5rem;
  background: radial-gradient(ellipse 60% 50% at 50% 42%, rgba(14,30,58,0.5), transparent 70%), var(--charcoal);
}
.notfound .hero-glow { top: 28%; }
.nf-inner { position: relative; z-index: 1; max-width: 700px; }
.nf-code {
  font-family: 'Cormorant Garamond', 'Cormorant fallback', Georgia, serif;
  font-weight: 600; font-size: clamp(5rem, 22vw, 11rem); line-height: 0.9; letter-spacing: 0.04em;
  margin: 0.4rem 0 0.8rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(231,182,76,0.18);
}
.nf-lede { color: var(--muted); font-size: 1.1rem; margin: 0 auto 2.2rem; max-width: 520px; }
.nf-actions { display: flex; justify-content: center; margin-bottom: 1rem; }
.nf-actions .page-cta { margin-top: 0; min-width: 200px; text-align: center; }
.nf-pills { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; }
.nf-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.78rem 1.2rem; border-radius: 999px; text-decoration: none; white-space: nowrap;
  border: 1px solid rgba(231,182,76,0.3); color: var(--cream); font-size: 0.9rem;
  letter-spacing: 0.03em; transition: all 0.22s ease;
}
.nf-link:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
@media (max-width: 560px) { .nf-pills { grid-template-columns: 1fr; } .nf-actions .page-cta { width: 100%; } }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(231,182,76,0.12);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: none; }
footer .credit a:hover { color: var(--gold); }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover, .post:hover { transform: none; }
}
