/* ==========================================================================
   Nak Daniels — public site
   Black · Gold · White on Charcoal
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --black:      #000000;
  --charcoal:   #1a1a1a;
  --charcoal-2: #212121;
  --charcoal-3: #292929;
  --line:       #333130;
  --line-soft:  #2a2827;

  --gold:       #d4af37;
  --gold-light: #eccf72;
  --gold-deep:  #9a7d21;
  --gold-glow:  rgba(212, 175, 55, 0.16);

  --white:      #ffffff;
  --paper:      #f4f2ed;
  --muted:      #a7a29a;
  --muted-dim:  #77726b;

  --font-display: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 780px;
  --gut: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: .02em;
  margin: 0 0 .5em;
  color: var(--white);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--gold); color: var(--black); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--black); padding: 10px 18px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--black { background: var(--black); }
.section--edge { border-top: 1px solid var(--line-soft); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.kicker::before {
  content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .7;
}

.section-title {
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.text-center { text-align: center; }
.stack > * + * { margin-top: 1.1em; }

/* ------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--black); }

.btn--white { background: var(--white); border-color: var(--white); color: var(--black); }
.btn--white:hover { background: var(--paper); border-color: var(--paper); }

.btn--sm { padding: 11px 20px; font-size: 11px; letter-spacing: .16em; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------------------------------------------------------- head --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 16, 16, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}

/* wordmark: nak over DANIELS */
.wordmark { display: inline-block; line-height: 1; text-align: center; }
.wordmark__top {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: .42em; text-transform: lowercase;
  color: var(--gold);
  text-indent: .42em;
}
.wordmark__bottom {
  display: block; margin-top: 5px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--white);
  text-indent: .26em;
}
.wordmark--lg .wordmark__top { font-size: 20px; }
.wordmark--lg .wordmark__bottom { font-size: 40px; margin-top: 8px; }
.wordmark--xl .wordmark__top { font-size: clamp(15px, 2vw, 24px); }
.wordmark--xl .wordmark__bottom { font-size: clamp(38px, 6.1vw, 82px); margin-top: clamp(6px, 1.2vw, 12px); }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.nav a {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: right .28s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--white); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 10px; color: var(--paper);
}
.nav-toggle span { display: block; height: 1.5px; background: currentColor; margin: 5px 0; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gut) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .nav .btn { margin-top: 18px; }
}

/* ---------------------------------------------------------------- hero --- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 24%; opacity: .62; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 85% at 74% 34%, rgba(0,0,0,0) 0%, rgba(0,0,0,.42) 62%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.62) 46%, rgba(8,8,8,.14) 100%),
    linear-gradient(0deg, var(--charcoal) 0%, rgba(26,26,26,0) 32%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: clamp(72px, 12vw, 130px) 0 clamp(48px, 8vw, 92px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero__grid > * { min-width: 0; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(330px, 460px); } }

.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--paper); opacity: .85; max-width: 46ch; margin: 22px 0 30px; }
.hero__rule { width: 78px; height: 2px; background: var(--gold); margin: 26px 0 0; }

.hero__player { border: 1px solid var(--line); background: rgba(20,20,20,.72); padding: 18px; }
.hero__player iframe { width: 100%; border: 0; }
.hero__player-label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}

/* Fallback "listen" panel when no embed is configured yet */
.listen-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(35,35,35,.9), rgba(20,20,20,.9));
  padding: clamp(22px, 3vw, 32px);
}
.listen-card h3 { font-size: 20px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.listen-card p { color: var(--muted); font-size: 14.5px; }

.platform-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255,255,255,.03);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.chip--solid { background: var(--gold); border-color: var(--gold); color: var(--black); }
.chip--solid:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }

/* ------------------------------------------------------------- catalog --- */
.release-grid {
  display: grid; gap: clamp(20px, 3vw, 34px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
}

.release-card { display: block; color: inherit; }
.release-card:hover { color: inherit; }

.artwork {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid var(--line-soft);
}
.artwork img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.release-card:hover .artwork img { transform: scale(1.045); }
.artwork::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0);
  transition: box-shadow .3s var(--ease);
}
.release-card:hover .artwork::after { box-shadow: inset 0 0 0 1px var(--gold); }

.artwork--placeholder {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(212,175,55,.14), rgba(0,0,0,0) 62%),
    repeating-linear-gradient(135deg, #1e1e1e 0 12px, #1b1b1b 12px 24px);
}
.artwork--placeholder .wordmark__top { font-size: 11px; }
.artwork--placeholder .wordmark__bottom { font-size: 17px; }
.artwork__type {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  background: var(--gold); color: var(--black); padding: 6px 12px;
}

.release-card__title {
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--white); margin: 16px 0 4px;
}
.release-card__meta {
  font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted-dim);
}

/* ------------------------------------------------- release detail page --- */
.release-hero { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 860px) { .release-hero { grid-template-columns: minmax(260px, 400px) minmax(0, 1fr); } }

.meta-list { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--line-soft); }
.meta-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.meta-list dt, .meta-list .k {
  font-family: var(--font-display); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted-dim);
}
.meta-list .v { color: var(--paper); text-align: right; }

.tracklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.tracklist li {
  display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.tracklist .n { font-family: var(--font-display); color: var(--gold); font-size: 13px; letter-spacing: .1em; }
.tracklist .t { color: var(--white); font-size: 15.5px; }
.tracklist .t small { display: block; color: var(--muted-dim); font-size: 12.5px; letter-spacing: .04em; }
.tracklist .d { color: var(--muted-dim); font-size: 13px; font-variant-numeric: tabular-nums; }
.tracklist audio { width: 100%; margin-top: 10px; grid-column: 1 / -1; }

/* ---------------------------------------------------------------- live --- */
.date-row {
  display: grid; gap: 8px 26px; align-items: center;
  grid-template-columns: 1fr;
  padding: 22px 0; border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 760px) { .date-row { grid-template-columns: 132px minmax(0,1fr) auto; } }
.date-row:first-child { border-top: 1px solid var(--line-soft); }
.date-row__date {
  font-family: var(--font-display); font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.date-row__venue { font-family: var(--font-display); font-size: 20px; letter-spacing: .05em; text-transform: uppercase; color: var(--white); }
.date-row__city { font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
.date-row__note { font-size: 13.5px; color: var(--muted-dim); margin-top: 4px; }
.sold-out {
  font-family: var(--font-display); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted-dim);
  border: 1px solid var(--line); padding: 10px 18px; display: inline-block;
}

.empty-state {
  border: 1px dashed var(--line);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  background: rgba(255,255,255,.015);
}
.empty-state p { color: var(--muted); max-width: 48ch; margin-inline: auto; }

/* ------------------------------------------------------- video / photo --- */
.video-grid { display: grid; gap: clamp(20px, 3vw, 32px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); }
.video-card__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--black); border: 1px solid var(--line-soft);
}
.video-card__frame img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: opacity .3s var(--ease), transform .6s var(--ease); }
.video-card:hover .video-card__frame img { opacity: 1; transform: scale(1.04); }
.video-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-card__play span {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(0,0,0,.55);
  display: grid; place-items: center; color: var(--gold); font-size: 16px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.video-card:hover .video-card__play span { background: var(--gold); color: var(--black); }
.video-card h3 { font-size: 17px; text-transform: uppercase; letter-spacing: .06em; margin: 14px 0 2px; }
.video-card p { font-size: 13px; color: var(--muted-dim); }

.video-embed { position: relative; aspect-ratio: 16/9; background: #000; border: 1px solid var(--line-soft); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--charcoal-2); border: 1px solid var(--line-soft); }
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,0));
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* --------------------------------------------------------------- press --- */
.press-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.press-card {
  border: 1px solid var(--line-soft); background: var(--charcoal-2);
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease);
}
.press-card:hover { border-color: var(--gold); }
.press-card__thumb { aspect-ratio: 4/3; background: var(--black); overflow: hidden; }
.press-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.press-card__thumb--doc { display: grid; place-items: center; color: var(--gold); font-family: var(--font-display); letter-spacing: .2em; font-size: 13px; }
.press-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.press-card__body h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.press-card__body .credit, .press-card__body .note { font-size: 12.5px; color: var(--muted-dim); margin: 0; }
.press-card__body .btn { margin-top: auto; }

.tag {
  display: inline-block;
  font-family: var(--font-display); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-deep); padding: 4px 9px;
}

/* ---------------------------------------------------------------- bio ---- */
.bio-grid { display: grid; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (min-width: 900px) { .bio-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); } }
.bio-portrait { border: 1px solid var(--line-soft); }
.bio-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.pullquote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
  color: var(--white);
  font-family: var(--font-display); font-weight: 300; letter-spacing: .01em;
}

.copy-block {
  position: relative;
  border: 1px solid var(--line-soft);
  background: var(--charcoal-2);
  padding: 22px;
}
.copy-block__head {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.copy-block__head h3 { margin: 0; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.copy-btn {
  font-family: var(--font-display); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--line); color: var(--paper);
  padding: 7px 13px; cursor: pointer; transition: all .2s var(--ease);
}
.copy-btn:hover { border-color: var(--gold); color: var(--gold); }
.copy-btn.is-done { border-color: var(--gold); background: var(--gold); color: var(--black); }

/* --------------------------------------------------------------- forms --- */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 700px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.field label, .field > .label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.field input[type=text], .field input[type=email], .field input[type=url],
.field input[type=date], .field input[type=number], .field input[type=password],
.field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #0b0b0b;
}
.field ::placeholder { color: #5f5b56; }
.field .help { font-size: 12.5px; color: var(--muted-dim); margin: 7px 0 0; }

.inline-form { display: flex; gap: 12px; flex-wrap: wrap; }
.inline-form input[type=email] { flex: 1 1 260px; }

/* honeypot */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }

.notice {
  border-left: 2px solid var(--gold);
  background: rgba(212,175,55,.08);
  padding: 15px 18px; margin-bottom: 24px; font-size: 14.5px; color: var(--paper);
}
.notice--error { border-left-color: #d9534f; background: rgba(217,83,79,.1); }

/* ---------------------------------------------------------- newsletter --- */
.signup-band {
  background:
    radial-gradient(80% 130% at 12% 0%, rgba(212,175,55,.14), rgba(0,0,0,0) 62%),
    var(--black);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.signup-band__inner { display: grid; gap: clamp(24px, 4vw, 52px); align-items: center; }
@media (min-width: 880px) { .signup-band__inner { grid-template-columns: minmax(0,1fr) minmax(340px,.85fr); } }

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--black); border-top: 1px solid var(--line-soft); padding: clamp(48px, 6vw, 76px) 0 34px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-col h4 {
  font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted-dim);
}

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--paper);
  font-family: var(--font-display); font-size: 11px; letter-spacing: .04em;
  transition: all .2s var(--ease);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* -------------------------------------------------------------- motion --- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- print --- */
@media print {
  .site-header, .site-footer, .signup-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}
