/* ============================================================
   DANHEIM — danheimmusic.com
   Nordic folk / Viking-inspired music · design system
   Palette: cold-north ink, bone parchment, forged gold
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0b0a08;
  --ink-2: #110f0c;
  --ink-3: #171410;
  --card: #1a1712;
  --bone: #eae2cf;
  --bone-dim: #b3a98f;
  --bone-faint: #857c66;
  --gold: #c9a35c;
  --gold-bright: #e8cd8f;
  --gold-deep: #96742f;
  --ember: #e0762a;
  --blood: #7e2a24;
  --line: rgba(201, 163, 92, 0.16);
  --line-strong: rgba(201, 163, 92, 0.38);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "EB Garamond", Georgia, "Times New Roman", serif;
  --head-h: 76px;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: hidden; overflow-x: clip; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, canvas { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }
ul[class], ol[class] { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Subtle parchment grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bone);
  text-wrap: balance;
}
p { max-width: 68ch; }
.lead { font-size: 1.25rem; line-height: 1.7; color: var(--bone-dim); }
.gold { color: var(--gold); }
em, i { font-style: italic; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before, .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.section-head { text-align: center; margin-bottom: clamp(2.4rem, 6vw, 4rem); }
.section-head .divider { margin: 1.4rem auto 0; }
.section-head p.sub { margin: 1rem auto 0; color: var(--bone-dim); font-size: 1.14rem; max-width: 62ch; }

/* Knotwork divider */
.divider {
  width: 190px;
  height: 14px;
  color: var(--gold);
  opacity: 0.85;
}

/* ---------- Layout ---------- */
.container { width: min(1180px, 91vw); margin-inline: auto; }
.container--narrow { width: min(880px, 91vw); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-block: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(201, 163, 92, 0.09), rgba(201, 163, 92, 0.02));
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover, .btn:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 0 1px rgba(201, 163, 92, 0.35), 0 8px 30px rgba(201, 163, 92, 0.12);
  transform: translateY(-2px);
}
.btn--solid {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: #1a1408;
}
.btn--solid:hover, .btn--solid:focus-visible {
  background: linear-gradient(180deg, #f4e0ab, var(--gold-bright));
  color: #140f05;
}
.btn--sm { padding: 0.62rem 1.15rem; font-size: 0.72rem; letter-spacing: 0.22em; }
.btn svg { width: 1em; height: 1em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--head-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.site-head.scrolled {
  background: rgba(11, 10, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 14px 40px rgba(0, 0, 0, 0.45);
  height: 64px;
}
.head-inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: 0.34em;
  color: var(--bone);
  white-space: nowrap;
}
.brand:hover { color: var(--gold-bright); }
.brand svg { width: 26px; height: 26px; color: var(--gold); flex: none; }

.nav-desktop { display: none; }

@media (min-width: 1240px) {
  .nav-desktop { display: flex; align-items: center; gap: 0.1rem; }
  .nav-desktop > li { position: relative; }
  .nav-desktop a, .nav-desktop button.navlink {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.6rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bone-dim);
    background: none;
    border: 0;
    cursor: pointer;
    transition: color 0.25s ease;
    white-space: nowrap;
  }
  .nav-desktop a:hover, .nav-desktop a:focus-visible,
  .nav-desktop button.navlink:hover, .nav-desktop button.navlink:focus-visible,
  .nav-desktop a.active { color: var(--gold-bright); }
  .nav-desktop a.active { text-shadow: 0 0 24px rgba(232, 205, 143, 0.5); }

  .nav-desktop .cta a {
    margin-left: 0.55rem;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    padding: 0.6rem 1.15rem;
    color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(201, 163, 92, 0.12), rgba(201, 163, 92, 0.03));
  }
  .nav-desktop .cta a:hover { border-color: var(--gold); box-shadow: 0 0 22px rgba(201, 163, 92, 0.18); }

  .dropdown { position: relative; }
  .dropdown .caret { width: 9px; height: 9px; transition: transform 0.25s ease; }
  .drop-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    translate: -50% 0;
    min-width: 240px;
    padding: 0.5rem;
    background: rgba(17, 15, 12, 0.97);
    border: 1px solid var(--line);
    border-radius: 3px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .drop-menu::before {
    content: "";
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    height: 12px;
  }
  .dropdown:hover .drop-menu,
  .dropdown:focus-within .drop-menu,
  .dropdown.open .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown:hover .caret, .dropdown.open .caret { transform: rotate(180deg); }
  .drop-menu a {
    display: block;
    padding: 0.72rem 0.95rem;
    letter-spacing: 0.18em;
    border-radius: 2px;
  }
  .drop-menu a:hover { background: rgba(201, 163, 92, 0.08); }
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}
.burger span {
  height: 2px;
  background: var(--gold-bright);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1240px) { .burger { display: none; } }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  background: rgba(9, 8, 6, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  overflow-y: auto;
  padding: calc(var(--head-h) + 1rem) 1.4rem 3rem;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { width: 100%; max-width: 460px; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.open a { animation: menuIn 0.5s var(--ease) forwards; }
.mobile-menu a:nth-child(1) { animation-delay: 0.05s; } .mobile-menu a:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.15s; } .mobile-menu a:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.25s; } .mobile-menu a:nth-child(6) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(7) { animation-delay: 0.35s; } .mobile-menu a:nth-child(8) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(9) { animation-delay: 0.45s; } .mobile-menu a:nth-child(10) { animation-delay: 0.5s; }
.mobile-menu a:nth-child(11) { animation-delay: 0.55s; }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu a.active { color: var(--gold-bright); }
.mobile-menu .group-label {
  padding: 1.5rem 0.4rem 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu a.sub { font-size: 0.92rem; letter-spacing: 0.22em; color: var(--bone-dim); padding-left: 1.2rem; }
body.menu-locked { overflow: hidden; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* Animated fog overlay, same recipe as the old site: fog gif, cover, half opacity */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../img/fog-overlay.gif") center / cover;
  opacity: 0.55;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11, 10, 8, 0.45) 0%, rgba(11, 10, 8, 0.12) 24%, transparent 48%, rgba(11, 10, 8, 0.55) 82%, var(--ink) 100%),
    rgba(8, 7, 5, 0.14);
}
#embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-content {
  text-align: center;
  padding: 0 1.2rem calc(clamp(3.4rem, 9vh, 6.5rem));
  width: min(1000px, 94vw);
}
.hero-logo {
  width: clamp(170px, 24vw, 250px);
  margin: 0 auto;
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.7));
  animation: logoIn 1.6s var(--ease) both;
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.hero-slogan {
  display: block;
  width: min(540px, 84vw);
  height: auto;
  margin: clamp(1.4rem, 4vh, 2.4rem) auto 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.75));
}
.hero-join {
  margin: clamp(1.4rem, 4vh, 2.2rem) auto 0.9rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.hero .store-pills { margin-top: 0; }
.hero .btn-row { justify-content: center; margin-top: 2.1rem; }
.hero-scroll {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  translate: -50% 0;
  color: var(--gold);
  opacity: 0.7;
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: grid;
  place-items: end stretch;
  isolation: isolate;
  overflow: hidden;
  padding-top: var(--head-h);
}
.page-hero .hero-bg img { animation: none; object-position: var(--hero-pos, 50% 25%); }
.page-hero .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(11, 10, 8, 0.72), rgba(11, 10, 8, 0.25) 40%, rgba(11, 10, 8, 0.9) 92%, var(--ink));
}
.page-hero-inner { padding-bottom: clamp(2rem, 5vw, 3.4rem); }
.page-hero h1 {
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero .crumb {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.page-hero p.intro { margin-top: 0.9rem; color: var(--bone-dim); font-size: 1.15rem; font-style: italic; max-width: 62ch; }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--ink);
  padding: clamp(1.6rem, 4vw, 2.6rem) 1rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Feature (latest album) ---------- */
.feature {
  display: grid;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) { .feature { grid-template-columns: 0.9fr 1.1fr; } }
.cover-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: clamp(0.8rem, 2vw, 1.2rem);
  background: linear-gradient(160deg, rgba(201, 163, 92, 0.08), transparent 55%);
  box-shadow: var(--shadow);
}
.cover-frame::before, .cover-frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold);
  transition: all 0.4s var(--ease);
}
.cover-frame::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.cover-frame::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.cover-frame:hover::before, .cover-frame:hover::after { width: 44px; height: 44px; }
.cover-frame img { width: 100%; }
.feature h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.6rem 0 0.4rem;
}
.feature .meta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.feature p.desc { margin: 1.1rem 0 1.6rem; color: var(--bone-dim); font-size: 1.13rem; }

/* ---------- Album / single grids ---------- */
.grid-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: clamp(1.1rem, 3vw, 2rem);
}
@media (min-width: 700px) { .grid-albums { grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); } }
.album-card { position: relative; }
.album-card .sleeve {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.album-card .sleeve img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s var(--ease); }
.album-card .sleeve::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.4s;
}
.album-card:hover .sleeve, .album-card:focus-within .sleeve {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 163, 92, 0.25), 0 0 34px rgba(201, 163, 92, 0.12);
}
.album-card:hover .sleeve img { transform: scale(1.05); }
.album-card:hover .sleeve::after { opacity: 1; }
.album-card .play {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 163, 92, 0.92);
  color: #17110a;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
}
.album-card:hover .play, .album-card:focus-within .play { opacity: 1; transform: translateY(0); }
.album-card h3 {
  margin-top: 0.9rem;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.album-card h3 a { color: var(--bone); }
.album-card h3 a:hover { color: var(--gold-bright); }
.album-card .year {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--bone-faint);
  text-transform: uppercase;
}
.album-card .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #17110a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

/* ---------- Credits band ("as heard in") ---------- */
.credits-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(201, 163, 92, 0.07), transparent 60%),
    var(--ink-2);
  text-align: center;
  padding: clamp(2.6rem, 7vw, 4.6rem) 1rem;
}
.credits-band .label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.credits-list {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: clamp(1.4rem, 4vw, 3rem);
  row-gap: 0.7rem;
}
.credits-list span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 2.6vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s, text-shadow 0.3s;
}
.credits-list span:hover { color: var(--gold-bright); text-shadow: 0 0 26px rgba(232, 205, 143, 0.45); }
.credits-list .dot { color: var(--gold); font-size: 0.8em; }

/* ---------- Split (about teaser etc.) ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.rev > .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { width: 100%; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.split-media::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line);
  z-index: -1;
}
.split h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); letter-spacing: 0.09em; text-transform: uppercase; margin: 0.8rem 0 1.1rem; }
.split p { color: var(--bone-dim); font-size: 1.12rem; margin-bottom: 1rem; }
.split p strong { color: var(--bone); font-weight: 600; }
.split .btn-row { margin-top: 1.6rem; }

/* Pull-quote */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-size: 1.22rem;
  font-style: italic;
  color: var(--bone);
  margin: 1.6rem 0;
}
.pull-quote footer { font-size: 0.9rem; color: var(--bone-faint); font-style: normal; margin-top: 0.5rem; font-family: var(--font-display); letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Cards ---------- */
.grid-cards {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  position: relative;
  background: linear-gradient(165deg, var(--card), var(--ink-2) 70%);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.3rem);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.info-card .icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 14px rgba(201, 163, 92, 0.35));
}
.info-card h3 {
  font-size: 1.14rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.info-card p { color: var(--bone-dim); font-size: 1.05rem; }
.info-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.info-card .card-link svg { width: 0.95em; height: 0.95em; transition: transform 0.3s; }
.info-card .card-link:hover svg { transform: translateX(5px); }
.info-card .corner {
  position: absolute;
  top: 0; right: 0;
  width: 54px; height: 54px;
  overflow: hidden;
  opacity: 0.5;
}
.info-card .corner::before {
  content: "";
  position: absolute;
  top: -28px; right: -28px;
  width: 56px; height: 56px;
  transform: rotate(45deg);
  background: linear-gradient(180deg, transparent 48%, var(--gold) 49%, transparent 55%);
}

/* Chips (collaborations) */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chips a, .chips span {
  display: inline-block;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--bone-dim);
  transition: all 0.3s;
}
.chips a:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: 0 0 18px rgba(201, 163, 92, 0.15); }

/* ---------- Timeline (about) ---------- */
.timeline { padding-left: 6px; }
.timeline li {
  position: relative;
  padding-left: 1.8rem;
  padding-bottom: 1.9rem;
  background: linear-gradient(180deg, rgba(201, 163, 92, 0.55), rgba(201, 163, 92, 0.16)) 0 6px / 1px calc(100% - 6px) no-repeat;
}
.timeline li:last-child { padding-bottom: 0.2rem; background-size: 1px 20px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 9px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 163, 92, 0.6);
}
.timeline b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline p { color: var(--bone-dim); }

/* ---------- Track / placement tables ---------- */
.placement { border: 1px solid var(--line); background: var(--ink-2); }
.placement + .placement { margin-top: 1.6rem; }
.placement header {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
}
.placement header h3 { font-size: 1.05rem; letter-spacing: 0.2em; text-transform: uppercase; }
.placement header .ep { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.placement ul { padding: 0.6rem 0; }
.placement li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  align-items: baseline;
}
.placement li + li { border-top: 1px solid rgba(201, 163, 92, 0.07); }
.placement .track {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  white-space: nowrap;
}
.placement .scene { color: var(--bone-dim); font-size: 1.02rem; }

/* ---------- Accordion (details) ---------- */
.acc { border: 1px solid var(--line); background: var(--ink-2); }
.acc + .acc { margin-top: 0.9rem; }
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.3s, background 0.3s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--gold-bright); background: rgba(201, 163, 92, 0.04); }
.acc summary .mark { flex: none; width: 13px; height: 13px; color: var(--gold); transition: transform 0.35s var(--ease); }
.acc[open] summary .mark { transform: rotate(45deg); }
.acc[open] summary { color: var(--gold-bright); border-bottom: 1px solid var(--line); }
.acc .acc-body { padding: 1.2rem 1.35rem 1.5rem; color: var(--bone-dim); }
.acc .acc-body p + p { margin-top: 0.8rem; }
.acc .langs {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--bone-faint);
}
.acc .credit { font-size: 0.95rem; font-style: italic; color: var(--bone-faint); margin-bottom: 0.7rem; }

/* ---------- Gallery ---------- */
.masonry {
  columns: 1;
  column-gap: 1.2rem;
}
@media (min-width: 620px) { .masonry { columns: 2; } }
@media (min-width: 1000px) { .masonry { columns: 3; } }
.masonry figure {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: border-color 0.35s;
}
.masonry figure img { width: 100%; transition: transform 0.6s var(--ease), filter 0.4s; }
.masonry figure:hover { border-color: var(--gold); }
.masonry figure:hover img { transform: scale(1.045); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(7, 6, 4, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 2.4rem 1rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.lightbox .lb-cap {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  translate: -50% 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}
.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: rgba(23, 20, 16, 0.8);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.lightbox button:hover { border-color: var(--gold); background: rgba(201, 163, 92, 0.15); }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox .lb-next { right: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .lightbox .lb-prev { left: 0.5rem; }
  .lightbox .lb-next { right: 0.5rem; }
  .lightbox button { width: 44px; height: 44px; }
}

/* ---------- Store cards ---------- */
.store-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--card), var(--ink-2) 75%);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.store-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 40px rgba(201, 163, 92, 0.08);
}
.store-card .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.store-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.store-card:hover .thumb img { transform: scale(1.06); }
.store-card .body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.store-card h3 { font-size: 1.08rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.6rem; }
.store-card p { color: var(--bone-dim); font-size: 1.02rem; flex: 1; }
.store-card .btn { margin-top: 1.3rem; align-self: flex-start; }
.store-card .tag {
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---------- Forms / contact ---------- */
.contact-wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 980px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }

.contact-aside .pane {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--card), var(--ink-2));
  padding: clamp(1.5rem, 4vw, 2.2rem);
}
.contact-aside .pane + .pane { margin-top: 1.4rem; }
.contact-aside h3 { font-size: 1.02rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.8rem; }
.contact-aside p { color: var(--bone-dim); font-size: 1.02rem; }
.contact-aside .mail {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  word-break: break-all;
}

.form-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(201, 163, 92, 0.07), transparent 55%),
    linear-gradient(170deg, var(--card), var(--ink-2));
  padding: clamp(1.6rem, 4.5vw, 2.8rem);
  box-shadow: var(--shadow);
}
.form-card::before, .form-card::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.form-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.form-card::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(11, 10, 8, 0.75);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--bone);
  font-size: 1.05rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 163, 92, 0.4), 0 0 24px rgba(201, 163, 92, 0.1);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a35c' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field select option { background: var(--ink-2); color: var(--bone); }
.field .hint { font-size: 0.88rem; color: var(--bone-faint); margin-top: 0.4rem; font-style: italic; }
.form-grid { display: grid; gap: 0 1.3rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.hp { position: absolute !important; left: -6000px !important; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none;
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem;
  border: 1px solid;
  font-size: 1.02rem;
}
.form-status.show { display: block; }
.form-status.ok { border-color: rgba(120, 165, 100, 0.5); background: rgba(90, 140, 80, 0.12); color: #cfe0b8; }
.form-status.err { border-color: rgba(160, 70, 60, 0.55); background: rgba(126, 42, 36, 0.16); color: #eec2b4; }

.btn-raven { width: 100%; padding: 1.1rem; font-size: 0.9rem; }
.btn-raven svg { width: 1.25em; height: 1.25em; transition: transform 0.45s var(--ease); }
.btn-raven:hover svg { transform: translateX(9px) translateY(-6px) rotate(8deg); }

/* ---------- App store pills (FolkRealms etc.) ---------- */
.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.68rem 1.35rem 0.62rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(26, 23, 18, 0.95), rgba(11, 10, 8, 0.95));
  transition: all 0.32s var(--ease);
}
.store-pill:hover, .store-pill:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 26px rgba(201, 163, 92, 0.16);
}
.store-pill svg { width: 27px; height: 27px; color: var(--gold-bright); flex: none; }
.store-pill .sp-txt { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-pill .sp-top {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.store-pill .sp-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  color: var(--bone);
}
.store-pill:hover .sp-main { color: var(--gold-bright); }

/* ---------- Vinyl showcase ---------- */
.vinyl-duo {
  display: grid;
  gap: clamp(2.4rem, 6vw, 3.4rem);
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-inline: auto;
}
@media (min-width: 720px) { .vinyl-duo { grid-template-columns: 1fr 1fr; } }
.vinyl { position: relative; padding-right: 17%; }
.vinyl .sleeve2 {
  position: relative;
  z-index: 2;
  display: block;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.vinyl .sleeve2 img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vinyl .disc {
  position: absolute;
  top: 50%;
  right: 0;
  width: 84%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #0c0a08 0 2px, #17130f 2px 4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.65), inset 0 0 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.7s var(--ease);
  z-index: 1;
}
.vinyl .disc::after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, #0c0a08 0 9%, var(--gold) 10% 55%, var(--gold-deep) 100%);
  border: 2px solid #0c0a08;
}
.vinyl:hover .disc { transform: translateY(-50%) translateX(8%) rotate(18deg); }
.vinyl .vinyl-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
}
.vinyl .vinyl-sub {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ---------- Record label credit ---------- */
.label-credit {
  border-top: 1px solid var(--line);
  padding: 1.9rem 0;
  text-align: center;
}
.label-credit .lc-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.55rem;
}
.label-credit a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s, text-shadow 0.3s;
}
.label-credit a:hover { color: var(--gold-bright); text-shadow: 0 0 28px rgba(232, 205, 143, 0.4); }

/* ---------- Socials ---------- */
.socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--bone-dim);
  transition: all 0.3s;
}
.socials a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 18px rgba(201, 163, 92, 0.15);
}
.socials svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 120%, rgba(201, 163, 92, 0.06), transparent 60%),
    var(--ink-2);
  padding: clamp(3rem, 7vw, 5rem) 0 0;
}
.foot-grid {
  display: grid;
  gap: 2.6rem;
  padding-bottom: 3rem;
}
@media (min-width: 820px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.foot-brand .brand { font-size: 1.3rem; }
.foot-brand p { color: var(--bone-dim); margin: 1.1rem 0 1.4rem; font-style: italic; max-width: 34ch; }
.site-foot h4 {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.foot-links li { padding: 0.28rem 0; }
.foot-links a { color: var(--bone-dim); font-size: 1.02rem; transition: color 0.25s, padding-left 0.25s; }
.foot-links a:hover { color: var(--gold-bright); padding-left: 5px; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--bone-faint);
}
.foot-bottom .rune-sep { color: var(--gold); }

/* ---------- Spotify embed ---------- */
.embed-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
}
.embed-frame iframe { display: block; width: 100%; border: 0; }

/* ---------- Splash intro ---------- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.7s ease, visibility 0.7s;
}
#splash.done { opacity: 0; visibility: hidden; }
#splash svg { width: clamp(70px, 12vw, 110px); height: auto; color: var(--gold); }
#splash .rune-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: runeDraw 1.15s var(--ease) forwards;
}
#splash .rune-path.p2 { animation-delay: 0.18s; }
@keyframes runeDraw { to { stroke-dashoffset: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Back to top ---------- */
#totop {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(23, 20, 16, 0.85);
  border: 1px solid var(--line);
  color: var(--gold);
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
#totop.show { opacity: 1; visibility: visible; transform: none; }
#totop:hover { border-color: var(--gold); box-shadow: 0 0 20px rgba(201, 163, 92, 0.2); }
#totop svg { width: 18px; height: 18px; }

/* ---------- Misc ---------- */
.note {
  border: 1px dashed var(--line-strong);
  background: rgba(201, 163, 92, 0.045);
  padding: 1.1rem 1.3rem;
  font-size: 1rem;
  color: var(--bone-dim);
}
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: top 0.3s;
}
.skip-link:focus { top: 0.8rem; color: var(--ink); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  #embers { display: none; }
}
