/* ════════════════════════════════════════════════════════════
   SWAYVEE.MUSIC
   Editorial dual-mode artist site. Premium rebuild.
   One stylesheet. Two universes. Themed by [data-mode].
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;1,6..96,400;1,6..96,500;1,6..96,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Allura&family=Anton&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap');

/* ────────────────────────────────────────────────────────────
   BASE TOKENS (shared)
   ──────────────────────────────────────────────────────────── */
:root {
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(96px, 14vh, 168px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-snap: cubic-bezier(0.85, 0, 0.15, 1);
  --t-fast: 0.3s;
  --t-mid: 0.6s;
  --t-slow: 1s;
}

/* ────────────────────────────────────────────────────────────
   SWAYQUEEN — editorial, warm, intimate
   ──────────────────────────────────────────────────────────── */
[data-mode="swayqueen"] {
  --ink: #0b0807;
  --ink-soft: #16100d;
  --ink-lift: #1f1814;
  --paper: #ece1d2;
  --paper-warm: #f1e7d8;
  --kiss: #eb698c;
  --kiss-deep: #d4365a;
  --kiss-blood: #b32a48;
  --gold: #c9a273;
  --dim: rgba(236, 225, 210, 0.5);
  --dim-2: rgba(236, 225, 210, 0.32);
  --rule: rgba(236, 225, 210, 0.1);
  --rule-2: rgba(236, 225, 210, 0.18);

  --f-display: 'Bodoni Moda', serif;
  --f-italic: 'Cormorant Garamond', serif;
  --f-body: 'Plus Jakarta Sans', sans-serif;
  --f-script: 'Allura', cursive;
  --f-mono: 'JetBrains Mono', monospace;

  background: var(--ink);
  color: var(--paper);
}

/* ────────────────────────────────────────────────────────────
   SWAYMEN — brutalist, hard, condensed
   ──────────────────────────────────────────────────────────── */
[data-mode="swaymen"] {
  --ink: #000000;
  --ink-soft: #060606;
  --ink-lift: #101010;
  --paper: #ffffff;
  --paper-warm: #ffffff;
  --kiss: #ffffff;
  --kiss-deep: #cccccc;
  --kiss-blood: #ff2c2c;
  --gold: #ffffff;
  --dim: rgba(255, 255, 255, 0.5);
  --dim-2: rgba(255, 255, 255, 0.32);
  --rule: rgba(255, 255, 255, 0.12);
  --rule-2: rgba(255, 255, 255, 0.2);

  --f-display: 'Anton', sans-serif;
  --f-italic: 'Inter', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-script: 'Anton', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  background: var(--ink);
  color: var(--paper);
}

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

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

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--t-slow) var(--ease-out),
              color var(--t-slow) var(--ease-out);
}
[data-mode="swaymen"] body { font-weight: 400; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
::selection { background: var(--kiss); color: var(--ink); }

/* ────────────────────────────────────────────────────────────
   CUSTOM CURSOR (desktop only)
   ──────────────────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label { cursor: none; }

  .cursor-ring,
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--paper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out),
                height 0.4s var(--ease-out),
                border-color 0.4s var(--ease-out),
                opacity 0.3s ease;
  }
  [data-mode="swaymen"] .cursor-ring { border-radius: 0; }

  .cursor-dot {
    width: 5px; height: 5px;
    background: var(--paper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  [data-mode="swaymen"] .cursor-dot { border-radius: 0; }

  body.cursor-hover .cursor-ring {
    width: 60px; height: 60px;
    border-color: var(--kiss);
  }
  body.cursor-hover .cursor-dot { opacity: 0; }
}

/* ────────────────────────────────────────────────────────────
   PAGE CURTAIN — for mode switch & page transition
   ──────────────────────────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  transform: translateX(-100%);
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: transform 0.7s var(--ease-snap);
}
.curtain.in { transform: translateX(0); }
.curtain.out { transform: translateX(100%); transition-delay: 0.1s; }

.curtain-mark {
  width: 60px; height: 60px;
  background: url('https://swayveemusic.com/wp-content/uploads/2026/06/favicon-lips-crown-scaled.png') center/contain no-repeat;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s ease, transform 0.6s var(--ease-out);
}
[data-mode="swaymen"] .curtain-mark {
  filter: grayscale(1) brightness(0) invert(1);
}
.curtain.in .curtain-mark {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

/* ────────────────────────────────────────────────────────────
   UTILITIES
   ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--kiss);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--kiss);
}
.eyebrow.center::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--kiss);
}

.script {
  font-family: var(--f-script);
  color: var(--kiss);
  font-size: 1.4em;
  line-height: 1;
}
[data-mode="swaymen"] .script {
  font-family: var(--f-display);
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ────────────────────────────────────────────────────────────
   DISPLAY TYPE — the workhorses
   ──────────────────────────────────────────────────────────── */
.dsp {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .dsp {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.88;
}
.dsp em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--kiss);
}
[data-mode="swaymen"] .dsp em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--kiss-blood);
}

.dsp-xl { font-size: clamp(64px, 12vw, 200px); }
.dsp-lg { font-size: clamp(48px, 8vw, 120px); }
.dsp-md { font-size: clamp(36px, 5.5vw, 76px); }
.dsp-sm { font-size: clamp(28px, 3.5vw, 48px); }

.lede {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--paper);
  max-width: 50ch;
}
[data-mode="swaymen"] .lede {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
}

.prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  max-width: 56ch;
  font-weight: 300;
}
.prose + .prose { margin-top: 1em; }
[data-mode="swaymen"] .prose { font-weight: 400; }

/* ────────────────────────────────────────────────────────────
   TOPBAR
   ──────────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.topbar.scrolled::before { opacity: 0.9; }

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .topbar-logo {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.topbar-logo .mark {
  width: 28px; height: 28px;
  background: url('https://swayveemusic.com/wp-content/uploads/2026/06/favicon-lips-crown-scaled.png') center/contain no-repeat;
  transition: filter var(--t-slow) ease;
}
[data-mode="swaymen"] .topbar-logo .mark {
  filter: grayscale(1) brightness(0) invert(1);
}

.topbar-nav {
  display: none;
  align-items: center;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media (min-width: 980px) {
  .topbar-nav { display: flex; }
}
.topbar-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--paper);
  transition: color 0.3s ease;
}
.topbar-nav a:hover { color: var(--kiss); }
.topbar-nav a.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 4px; height: 4px;
  background: var(--kiss);
  border-radius: 50%;
  transform: translateX(-50%);
}
[data-mode="swaymen"] .topbar-nav a.active::after { border-radius: 0; }

.topbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.mode-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--rule-2);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
[data-mode="swaymen"] .mode-trigger { border-radius: 0; }
.mode-trigger:hover {
  border-color: var(--kiss);
  color: var(--kiss);
}
.mode-trigger .pip {
  width: 6px; height: 6px;
  background: var(--kiss);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--kiss);
}
[data-mode="swaymen"] .mode-trigger .pip {
  border-radius: 0;
  box-shadow: none;
}

/* MOBILE MENU TRIGGER */
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  padding: 10px;
}
[data-mode="swaymen"] .menu-trigger { border-radius: 0; }
@media (min-width: 980px) { .menu-trigger { display: none; } }
.menu-trigger span {
  display: block;
  height: 1px;
  background: var(--paper);
  transition: transform 0.3s ease;
}

/* MOBILE MENU DRAWER */
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-drawer.open { opacity: 1; pointer-events: auto; }
.menu-drawer a {
  font-family: var(--f-display);
  font-size: clamp(36px, 7vw, 64px);
  color: var(--paper-warm);
  text-align: center;
}
[data-mode="swaymen"] .menu-drawer a { text-transform: uppercase; }

/* ────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}
[data-mode="swaymen"] .btn { border-radius: 0; }

.btn-primary {
  background: var(--kiss);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--kiss-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(235, 105, 140, 0.3);
}
[data-mode="swaymen"] .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
[data-mode="swaymen"] .btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-ghost:hover {
  border-color: var(--kiss);
  color: var(--kiss);
  padding-right: 44px;
}
[data-mode="swaymen"] .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  padding-right: 32px;
}

.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(6px); }

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  padding-top: 100px;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: filter var(--t-slow) ease, transform 1.4s var(--ease-out);
}
[data-mode="swayqueen"] .hero-stage img {
  filter: brightness(0.65) saturate(1.15) contrast(1.05);
}
[data-mode="swaymen"] .hero-stage img {
  filter: grayscale(1) brightness(0.45) contrast(1.4);
}
.hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
[data-mode="swayqueen"] .hero-stage::after {
  background:
    radial-gradient(ellipse at 75% 40%, rgba(216, 57, 92, 0.18), transparent 65%),
    linear-gradient(to bottom, rgba(11,8,7,0.35) 0%, rgba(11,8,7,0.2) 40%, rgba(11,8,7,0.95) 100%);
}
[data-mode="swaymen"] .hero-stage::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.95) 100%);
}

.hero-inner {
  align-self: end;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(60px, 12vh, 120px);
  display: grid;
  gap: clamp(20px, 3vh, 36px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.hero-meta .role { color: var(--kiss); }
@media (max-width: 600px) {
  .hero-meta { font-size: 9px; flex-wrap: wrap; }
}

.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .hero-headline {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.84;
}
.hero-headline em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--kiss);
}
[data-mode="swaymen"] .hero-headline em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--kiss-blood);
}

.hero-row {
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 800px) {
  .hero-row { grid-template-columns: 1fr auto; }
}
.hero-sub {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 44ch;
  color: var(--paper);
}
[data-mode="swaymen"] .hero-sub {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
  z-index: 2;
}
.scroll-cue-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--kiss), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ────────────────────────────────────────────────────────────
   TICKER / MARQUEE
   ──────────────────────────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--rule-2);
  padding: 32px 0;
  overflow: hidden;
  background: var(--ink);
}
[data-mode="swaymen"] .ticker {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tick 42s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 80px);
  color: var(--paper-warm);
}
[data-mode="swaymen"] .ticker-track {
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  animation-duration: 28s;
}
.ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}
.ticker em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--kiss);
}
[data-mode="swaymen"] .ticker em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--kiss-blood);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
.ticker .mk {
  width: 26px; height: 26px;
  background: url('https://swayveemusic.com/wp-content/uploads/2026/06/favicon-lips-crown-scaled.png') center/contain no-repeat;
  flex-shrink: 0;
}
[data-mode="swaymen"] .ticker .mk {
  filter: grayscale(1) brightness(0);
  width: 18px; height: 18px;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ────────────────────────────────────────────────────────────
   SECTION ARCHITECTURE
   ──────────────────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; position: relative; }
.section + .section { border-top: 1px solid var(--rule); }

.act-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--dim);
  margin-bottom: 24px;
  display: block;
}

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 9vh, 96px);
  max-width: 28ch;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.section-head.center .eyebrow {
  margin-inline: auto;
}

/* ────────────────────────────────────────────────────────────
   SPLIT — two-column with image + text
   ──────────────────────────────────────────────────────────── */
.split {
  display: grid;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.left-wide { grid-template-columns: 1.15fr 1fr; }
  .split.right-wide { grid-template-columns: 1fr 1.15fr; }
}

.frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.8s ease;
}
[data-mode="swaymen"] .frame img {
  filter: grayscale(1) contrast(1.15);
}
.frame:hover img { transform: scale(1.04); }

.frame-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-script);
  font-size: 44px;
  color: var(--paper-warm);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  line-height: 1;
}
[data-mode="swaymen"] .frame-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  text-shadow: none;
}

.frame-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--paper-warm);
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}
[data-mode="swaymen"] .frame-num {
  background: var(--paper);
  color: var(--ink);
  backdrop-filter: none;
}

/* ────────────────────────────────────────────────────────────
   STATS — editorial sequence (one per row, big)
   ──────────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: baseline;
  padding: clamp(32px, 6vh, 56px) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.5s var(--ease-out);
}
.stat-row:hover { padding-left: 24px; }
[data-mode="swaymen"] .stat-row:hover {
  background: var(--paper);
  color: var(--ink);
  padding-left: 24px;
}
.stat-row .num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper-warm);
  white-space: nowrap;
}
[data-mode="swaymen"] .stat-row .num { text-transform: uppercase; }
.stat-row .num em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--kiss);
}
[data-mode="swaymen"] .stat-row .num em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--kiss-blood);
}
.stat-row .caption {
  display: grid;
  gap: 6px;
}
.stat-row .caption .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
}
.stat-row .caption .v {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--paper-warm);
  max-width: 28ch;
}
[data-mode="swaymen"] .stat-row .caption .v {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
}
[data-mode="swaymen"] .stat-row:hover .caption .k { color: var(--ink); }

/* ────────────────────────────────────────────────────────────
   RELEASE FEATURE
   ──────────────────────────────────────────────────────────── */
.release-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--kiss);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
[data-mode="swaymen"] .release-tag { background: var(--paper); }
.release-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
[data-mode="swaymen"] .release-tag::before { border-radius: 0; }
@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.release-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap;
}
.release-meta span { display: inline-flex; align-items: center; gap: 24px; }
.release-meta span:not(:last-child)::after {
  content: '·';
  color: var(--kiss);
}

.stream-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
  margin-top: 24px;
}
.stream-row a {
  background: var(--ink);
  padding: 18px 12px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.stream-row a:hover {
  background: var(--kiss);
  color: var(--ink);
}
[data-mode="swaymen"] .stream-row a:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ────────────────────────────────────────────────────────────
   MUSIC — editorial track list (rows, not cards)
   ──────────────────────────────────────────────────────────── */
.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.tab {
  padding: 18px 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.tab.active, .tab:hover {
  color: var(--kiss);
  border-bottom-color: var(--kiss);
}

.track-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.track-row {
  display: grid;
  grid-template-columns: 56px 64px 1fr auto auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .track-row {
    grid-template-columns: 32px 48px 1fr auto;
    padding: 16px 0;
    gap: 14px;
  }
  .track-row .track-year { display: none; }
}
.track-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--kiss);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
[data-mode="swaymen"] .track-row::before { background: var(--paper); }
.track-row:hover::before { transform: translateX(0); }
.track-row:hover { color: var(--ink); padding-inline: 16px; }
.track-row:hover .track-num,
.track-row:hover .track-year { color: var(--ink); }

.track-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
  transition: color 0.4s;
}
.track-cover {
  width: 56px; height: 56px;
  overflow: hidden;
  position: relative;
}
.track-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
}
[data-mode="swaymen"] .track-cover img {
  filter: grayscale(1) contrast(1.2);
}
@media (max-width: 700px) {
  .track-cover { width: 48px; height: 48px; }
}
.track-info { min-width: 0; }
.track-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.1;
  color: var(--paper-warm);
  margin-bottom: 2px;
  transition: color 0.4s;
}
[data-mode="swaymen"] .track-title { text-transform: uppercase; }
.track-row:hover .track-title { color: var(--ink); }
.track-artist {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--dim);
  transition: color 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-mode="swaymen"] .track-artist {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.track-row:hover .track-artist { color: var(--ink); opacity: 0.7; }
.track-year {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
  transition: color 0.4s;
}
.track-play {
  width: 38px; height: 38px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
[data-mode="swaymen"] .track-play { border-radius: 0; }
.track-play svg { width: 14px; height: 14px; fill: currentColor; }
.track-row:hover .track-play {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ────────────────────────────────────────────────────────────
   GALLERY — magazine masonry
   ──────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(6, 1fr); }
}

.tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  grid-column: span 1;
}
.tile.w2 { grid-column: span 2; }
.tile.h2 { grid-row: span 2; aspect-ratio: 3/8; }
.tile.wide { aspect-ratio: 16/10; grid-column: span 2; }
.tile.wide-3 { aspect-ratio: 21/9; grid-column: span 3; }
@media (max-width: 760px) {
  .tile.w2, .tile.wide-3, .tile.wide { grid-column: span 2; aspect-ratio: 4/3; }
  .tile.h2 { grid-row: auto; aspect-ratio: 3/4; }
}

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.6s ease;
}
[data-mode="swaymen"] .tile img {
  filter: grayscale(1) contrast(1.15);
}
.tile:hover img { transform: scale(1.06); }
[data-mode="swaymen"] .tile:hover img { filter: grayscale(0) contrast(1.05); }

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.tile:hover::after { opacity: 0.15; }

.tile-cap {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-warm);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease-out);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────────────────────────
   PRESS QUOTES
   ──────────────────────────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.quote {
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.5s ease;
}
.quote:hover { background: var(--ink-soft); }
[data-mode="swaymen"] .quote:hover {
  background: var(--paper); color: var(--ink);
}
[data-mode="swaymen"] .quote:hover .quote-source { color: var(--ink); }

.quote::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--f-display);
  font-size: 100px;
  color: var(--kiss);
  line-height: 1;
  opacity: 0.3;
}
.quote-body {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--paper-warm);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
[data-mode="swaymen"] .quote-body {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
}
.quote-source {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ────────────────────────────────────────────────────────────
   EVENT BLOCK
   ──────────────────────────────────────────────────────────── */
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--kiss);
  margin-bottom: 24px;
}
.event-tag .pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--kiss);
  box-shadow: 0 0 14px var(--kiss);
}
[data-mode="swaymen"] .event-tag .pip { border-radius: 0; box-shadow: none; }

.event-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}
.event-meta .k {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.event-meta .v {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .event-meta .v { text-transform: uppercase; }

/* ────────────────────────────────────────────────────────────
   CTA / NEWSLETTER
   ──────────────────────────────────────────────────────────── */
.cta {
  background: var(--ink-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-mode="swayqueen"] .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(235, 105, 140, 0.14), transparent 70%);
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner > .eyebrow { margin-bottom: 24px; }

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 20px 28px;
  background: transparent;
  border: 1px solid var(--rule-2);
  color: var(--paper-warm);
  font-family: var(--f-body);
  font-size: 14px;
  border-radius: 100px;
  transition: border-color 0.3s ease;
}
[data-mode="swaymen"] .newsletter-form input { border-radius: 0; font-family: var(--f-mono); }
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form input:focus { outline: none; border-color: var(--kiss); }

.signoff {
  margin-top: 40px;
  font-family: var(--f-script);
  font-size: 48px;
  color: var(--kiss);
  line-height: 1;
}
[data-mode="swaymen"] .signoff {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

/* ────────────────────────────────────────────────────────────
   ABOUT — TIMELINE
   ──────────────────────────────────────────────────────────── */
.timeline {
  display: grid;
  gap: clamp(48px, 8vh, 80px);
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 1px solid var(--rule-2);
}
.tl-item { position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -31px; top: 10px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--kiss);
  border: 3px solid var(--ink);
  box-shadow: 0 0 16px var(--kiss);
}
[data-mode="swaymen"] .tl-item::before {
  border-radius: 0;
  box-shadow: none;
}
.tl-year {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--kiss);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tl-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .tl-title { text-transform: uppercase; }
.tl-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  max-width: 60ch;
  font-weight: 300;
}
[data-mode="swaymen"] .tl-body { font-weight: 400; }

/* ────────────────────────────────────────────────────────────
   BOOKING FORM
   ──────────────────────────────────────────────────────────── */
.booking-layout {
  display: grid;
  gap: clamp(40px, 6vw, 96px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .booking-layout { grid-template-columns: 1.3fr 1fr; }
}
.booking-form { display: grid; gap: 28px; }
.field { display: grid; gap: 10px; }
.field label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--dim);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  padding: 14px 0;
  color: var(--paper-warm);
  font-family: var(--f-body);
  font-size: 17px;
  transition: border-color 0.3s ease;
}
[data-mode="swaymen"] .field input,
[data-mode="swaymen"] .field textarea,
[data-mode="swaymen"] .field select { font-family: var(--f-mono); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--kiss);
}
.field-pair {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .field-pair { grid-template-columns: 1fr; }
}

.booking-info {
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule-2);
  display: grid;
  gap: 32px;
  align-content: start;
  position: relative;
}
.booking-info::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--kiss);
  border-left: 1px solid var(--kiss);
}
.booking-info::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 1px solid var(--kiss);
  border-right: 1px solid var(--kiss);
}
.booking-info h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--paper-warm);
}
[data-mode="swaymen"] .booking-info h3 { text-transform: uppercase; }
.bi-block .k {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.bi-block .v {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--paper-warm);
}
[data-mode="swaymen"] .bi-block .v {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  padding: 112px 0 32px;
  border-top: 1px solid var(--rule-2);
}
.footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-brand img {
  width: 64px;
  margin-bottom: 28px;
  transition: filter 0.8s ease;
}
[data-mode="swaymen"] .footer-brand img {
  filter: grayscale(1) brightness(0) invert(1);
}
.footer-brand .name {
  font-family: var(--f-display);
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--paper-warm);
  letter-spacing: 0.04em;
}
[data-mode="swaymen"] .footer-brand .name { text-transform: uppercase; }
.footer-brand p {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 17px;
  max-width: 36ch;
  color: var(--paper);
  line-height: 1.55;
}
[data-mode="swaymen"] .footer-brand p {
  font-family: var(--f-body);
  font-style: normal;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--kiss);
  margin-bottom: 24px;
}
.footer ul { list-style: none; display: grid; gap: 14px; }
.footer ul a {
  font-size: 15px;
  color: var(--paper);
  transition: color 0.3s ease;
}
.footer ul a:hover { color: var(--kiss); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}
.footer-bottom .signoff-sm {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--kiss);
  letter-spacing: 0;
  text-transform: none;
}
[data-mode="swaymen"] .footer-bottom .signoff-sm {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   PAGE HEADER (sub-pages)
   ──────────────────────────────────────────────────────────── */
.page-head {
  padding: 200px 0 var(--section-y);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-head .eyebrow { margin-bottom: 32px; }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--paper-warm);
  margin-bottom: 32px;
}
[data-mode="swaymen"] .page-head h1 { text-transform: uppercase; }
.page-head h1 em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--kiss);
}
[data-mode="swaymen"] .page-head h1 em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--kiss-blood);
}
.page-head p {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  max-width: 40ch;
  margin: 0 auto;
  color: var(--paper);
}
[data-mode="swaymen"] .page-head p {
  font-family: var(--f-body);
  font-style: normal;
}

/* ────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-mode="swaymen"] .reveal {
  transform: translateY(0) translateX(-24px);
  transition: opacity 0.6s var(--ease-snap), transform 0.6s var(--ease-snap);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero opening animation */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.hero-headline, .hero-sub, .hero-meta, .hero-cta {
  animation: hero-rise 1.2s var(--ease-out) backwards;
}
.hero-meta { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.45s; }
.hero-cta { animation-delay: 0.6s; }
.hero-stage img {
  animation: hero-zoom 14s var(--ease-out) infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* ────────────────────────────────────────────────────────────
   REDUCED MOTION
   ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
}
