/* Håvard Pedersen — official artist site styles */

/* ==================================================
   DESIGN TOKENS — Phase 3 global artist system
   ================================================== */
:root {
  /* Core palette — RAW · REAL · LIVE (premium charcoal + performance red) */
  --color-bg: #080809;
  --color-bg-elevated: #111114;
  --color-surface: #16161a;
  --color-surface-deep: #050506;
  --color-text: #f5f2ed;
  --color-text-muted: #9a9590;
  --color-accent: #b30000;
  --color-accent-hover: #cc1a1a;
  --color-accent-soft: rgba(179, 0, 0, 0.14);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-gold: #c4a062;
  --color-gold-muted: rgba(196, 160, 98, 0.35);
  --color-on-accent: #fff8f6;

  /* Layout */
  --container-max: clamp(54rem, 90vw, 72rem);
  --container-wide: min(76rem, 94vw);
  --container-narrow: min(42rem, 92vw);
  --section-pad-y: clamp(3.5rem, 8vw, 6rem);
  --section-pad-y-tight: clamp(2.25rem, 5vw, 3.5rem);
  --section-pad-y-large: clamp(4.5rem, 10vw, 7rem);
  --space: clamp(1rem, 2.5vw, 1.65rem);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Typography */
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-label: "DM Sans", system-ui, sans-serif;
  --font-future: "Syne", system-ui, sans-serif;
  --type-display-xl: clamp(2.75rem, 6.5vw, 4.5rem);
  --type-display-lg: clamp(2.1rem, 4.5vw, 3.25rem);
  --type-h1: clamp(2rem, 4vw, 2.85rem);
  --type-h2: clamp(1.75rem, 3.2vw, 2.5rem);
  --type-h3: clamp(1.25rem, 2.2vw, 1.55rem);
  --type-body-lg: 1.125rem;
  --type-body: 1rem;
  --type-small: 0.875rem;
  --type-caption: 0.75rem;
  --type-eyebrow: 0.68rem;

  /* Surfaces & chrome */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius: var(--radius-md);
  --header-h: 4.25rem;
  --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.28);
  --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.38);

  /* Motion */
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-slow: 450ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Legacy aliases — map old tokens to artist system (retained for compatibility) */
  --bg: var(--color-bg);
  --bg-elevated: var(--color-bg-elevated);
  --surface: var(--color-surface);
  --surface-deep: var(--color-surface-deep);
  --surface-glass: rgba(14, 13, 16, 0.82);
  --text: var(--color-text);
  --text-muted: var(--color-text-muted);
  --accent: var(--color-accent);
  --accent-hot: var(--color-accent-hover);
  --accent-2: #8f1a1a;
  --accent-3: var(--color-gold);
  --accent-soft: var(--color-accent-soft);
  --neon-cyan: rgba(179, 0, 0, 0.08);
  --neon-violet: rgba(179, 0, 0, 0.06);
  --neon-edge: rgba(255, 255, 255, 0.08);
  --rock-glow: rgba(179, 0, 0, 0.22);
  --border: var(--color-border);
  --glow: rgba(179, 0, 0, 0.1);
  --on-accent: var(--color-on-accent);
  --on-accent-hover: #fff;
  --section-glow: rgba(179, 0, 0, 0.05);
  --gold-muted: var(--color-gold-muted);
  --heading-ink: var(--color-text);
  --max: var(--container-max);
  --pro-gold: var(--color-gold);
}

@media (min-width: 1100px) {
  :root {
    --max: 62rem;
  }
}

@media (min-width: 900px) {
  html {
    font-size: 106.25%;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  /* ~18px when the browser default is 16px — scales rem-based UI for readability */
  font-size: 112.5%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--type-body-lg);
  line-height: 1.68;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(179, 0, 0, 0.07), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 255, 255, 0.02), transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 48%, var(--color-bg) 100%);
  -webkit-font-smoothing: antialiased;
}

.body--future {
  position: relative;
  isolation: isolate;
}

main {
  position: relative;
  z-index: 1;
}

/* Scroll-in motion only — content stays visible for SEO, no-JS, and print */
.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space);
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

a {
  color: var(--color-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--motion-fast) var(--ease-out);
}

a:hover {
  color: var(--color-accent-hover);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 8, 9, 0.82);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    background var(--motion-base) var(--ease-out),
    border-color var(--motion-base) var(--ease-out),
    box-shadow var(--motion-base) var(--ease-out);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}

.header-spacer {
  flex: 1;
  min-width: 0.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  animation: logoIn 0.9s ease both;
}

.logo::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.logo:hover {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.6vw, 1.15rem);
}

@media (min-width: 769px) and (max-width: 1099px) {
  .site-nav {
    gap: 0.35rem;
    padding: 0.32rem 0.55rem 0.32rem 0.65rem;
  }

  .site-nav a {
    font-size: 0.8125rem;
  }

  .site-nav .nav-cta {
    padding: 0.42rem 0.75rem;
    font-size: 0.65rem;
  }
}

@media (min-width: 769px) {
  .site-nav {
    padding: 0.38rem 0.72rem 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(154, 61, 74, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.15rem;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 100%;
}

.site-nav .nav-cta {
  padding: 0.5rem 1.05rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-on-accent);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  transition:
    background var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.site-nav .nav-cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-on-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.site-mode-toggle {
  flex-shrink: 0;
  padding: 0.42rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-mode-toggle:hover {
  color: var(--accent);
  border-color: rgba(212, 168, 74, 0.45);
  background: rgba(212, 168, 74, 0.08);
}

.site-mode-toggle[aria-pressed="true"] {
  color: var(--accent);
  border-color: rgba(212, 168, 74, 0.55);
  background: rgba(212, 168, 74, 0.12);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--text);
  box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: var(--text);
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
  }

  .body--artist.body--pro .site-header {
    height: 4.5rem;
  }

  .body--artist.body--pro .wordmark__tagline {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .body--artist.body--pro .site-nav {
    position: fixed;
    inset: 4.5rem 0 0 0;
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin: 0;
    padding: 1.25rem clamp(1rem, 4vw, 1.5rem) 1.5rem;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(179, 0, 0, 0.18);
    background: rgba(6, 6, 7, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 0.22s ease, transform 0.22s ease;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .body--artist.body--pro .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .body--artist.body--pro .site-nav__mobile-title {
    display: block;
  }

  .body--artist.body--pro .site-nav a:not(.nav-cta) {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    padding: 0.72rem 0.85rem;
    border-radius: 8px;
  }

  .body--artist.body--pro .site-nav a:not(.nav-cta):hover,
  .body--artist.body--pro .site-nav a[aria-current="page"] {
    color: var(--pro-ink);
    background: rgba(179, 0, 0, 0.08);
  }

  .body--artist.body--pro .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) var(--space) auto var(--space);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: min(78vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--accent-soft);
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) var(--space);
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    min-height: min(88vh, 52rem);
    padding: clamp(2rem, 5vw, 3.75rem) var(--space);
  }

  .hero__content {
    padding: clamp(1.5rem, 4vw, 2.75rem) var(--space) clamp(1.25rem, 3.5vw, 2.25rem);
  }

  .hero__inner {
    padding: clamp(1rem, 2vw, 1.4rem) clamp(1rem, 2.4vw, 1.45rem);
    box-shadow:
      0 0 0 1px rgba(56, 189, 248, 0.12),
      0 22px 60px rgba(0, 0, 0, 0.45),
      0 0 48px rgba(124, 58, 237, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .hero__headline {
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 5vw, 4rem);
  }

  .about-photo {
    max-height: 360px;
  }
}

.about-grid {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 1.8rem;
  }
}

.about-photo-wrap {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d1018;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.about-photo {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  filter: contrast(1.07) saturate(0.93);
}

/* Credibility strip — collaborations visible above the fold */
.credibility-band {
  padding: 1.35rem var(--space);
  border-top: 1px solid rgba(154, 61, 74, 0.22);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(12, 6, 10, 0.65), rgba(8, 6, 10, 0.92)),
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(212, 168, 74, 0.09), transparent 55%);
}

.credibility-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.credibility-band-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-future);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a5f3fc;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
}

.collab-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collab-pills li {
  margin: 0;
  padding: 0.42rem 0.95rem;
  font-family: var(--font-future);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(252, 248, 255, 0.96);
  background: rgba(30, 16, 42, 0.65);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.08);
}

.credibility-press {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(253, 230, 138, 0.82);
}

html[data-site-mode="press"] .credibility-press {
  color: rgba(110, 84, 32, 0.9);
}

.quote-strip {
  padding: 2.25rem var(--space);
  border-top: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(167, 139, 250, 0.12), transparent 55%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
}

.quote-strip p {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 3.2vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(245, 242, 237, 0.92);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary,
.btn--primary {
  background: var(--color-accent);
  color: var(--color-on-accent);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-on-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-ghost,
.btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-ghost:hover,
.btn--secondary:hover {
  border-color: rgba(179, 0, 0, 0.45);
  color: var(--color-text);
  background: var(--color-accent-soft);
  transform: translateY(-1px);
}

.btn--text {
  min-height: auto;
  padding: 0.35rem 0;
  background: transparent;
  border-color: transparent;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  border-radius: 0;
  box-shadow: none;
}

.btn--text:hover {
  color: var(--color-accent-hover);
  background: transparent;
  transform: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.btn--outline {
  background: transparent;
  color: #e8bc6a;
  border-color: rgba(212, 168, 74, 0.5);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(212, 168, 74, 0.1);
  color: #f0c97a;
  box-shadow: 0 0 20px rgba(100, 30, 40, 0.3);
}

.btn--compact {
  padding: 0.62rem 1.2rem;
  font-size: 0.875rem;
}

.bio-short {
  max-width: 44rem;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: rgba(240, 179, 95, 0.06);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: #e4e0d8;
}

.bio-short a {
  font-weight: 600;
  color: #fde68a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bio-short a:hover {
  color: #fff;
}

.about-photo-caption {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
}

.prose-subhead {
  margin: 1.65rem 0 0.7rem;
  font-family: var(--font-future);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fbbf24;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.25);
}

.prose-bio .prose-subhead:first-of-type {
  margin-top: 0;
}

.press-bio {
  margin-top: 0.5rem;
  padding: 1.35rem 1.45rem 1.45rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(154, 61, 74, 0.22);
  background: linear-gradient(165deg, rgba(22, 12, 18, 0.65), rgba(8, 6, 10, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.press-bio p {
  margin: 0 0 1rem;
  font-size: clamp(1.02rem, 1.55vw, 1.1rem);
  line-height: 1.68;
  color: rgba(235, 228, 218, 0.94);
}

.press-bio p:last-child {
  margin-bottom: 0;
}

.press-bio em {
  color: var(--text-muted);
  font-size: 0.96em;
}

.about-milestones,
.about-credentials {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.2rem;
  color: rgba(235, 228, 218, 0.94);
  font-size: clamp(1.02rem, 1.5vw, 1.08rem);
  line-height: 1.68;
}

.about-milestones li,
.about-credentials li {
  margin-bottom: 0.55rem;
}

.about-milestones li:last-child,
.about-credentials li:last-child {
  margin-bottom: 0;
}

.prose-bio > p {
  font-size: clamp(1.05rem, 1.6vw, 1.12rem);
  line-height: 1.72;
}

.about-visual-lead {
  margin: 0 0 2rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  background: #0a0a0c;
}

.about-visual-lead-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-visual-lead-caption {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
}

.about-grid--artist .about-photo {
  max-height: none;
  min-height: 320px;
  object-position: center 15%;
}

@media (min-width: 860px) {
  .about-grid--artist {
    grid-template-columns: minmax(260px, 340px) 1fr;
    align-items: start;
  }
}

.visual-grid--artist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .visual-grid--artist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .visual-grid--artist {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.band-ensemble {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.band-ensemble-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #deac5e;
}

.band-ensemble-roles {
  list-style: none;
  margin: 0;
  padding: 0;
}

.band-ensemble-roles li {
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.band-ensemble-roles li:last-child {
  margin-bottom: 0;
}

.band-ensemble-role {
  font-weight: 700;
  color: #e2e6ee;
}

.band-ensemble-note {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

html[data-site-mode="press"] .band-ensemble-role {
  color: #2a2825;
}

html[data-site-mode="press"] .band-ensemble {
  background: rgba(255, 252, 247, 0.65);
  border-color: rgba(26, 24, 22, 0.1);
}

.band-ensemble--inline {
  margin: 0.85rem 0 1rem;
  padding: 0.75rem 0.95rem;
}

.band-ensemble--inline .band-ensemble-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.band-ensemble--inline .band-ensemble-roles li {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Ticketed shows (event-style cards) —— */
.section-shows {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.shows-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.35rem;
}

.shows-deck {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.shows-head__booking {
  flex-shrink: 0;
}

.shows-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .shows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.show-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(167, 139, 250, 0.22);
  background:
    linear-gradient(145deg, rgba(18, 12, 32, 0.72) 0%, rgba(8, 6, 16, 0.55) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.show-card--featured {
  border-color: rgba(222, 172, 94, 0.38);
  background:
    linear-gradient(145deg, rgba(32, 18, 28, 0.78) 0%, rgba(12, 8, 20, 0.62) 55%, rgba(8, 20, 32, 0.5) 100%);
}

.show-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(222, 172, 94, 0.35);
  background: rgba(0, 0, 0, 0.28);
  text-align: center;
  line-height: 1.1;
}

.show-card__day {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fde68a;
}

.show-card__month {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #deac5e;
}

.show-card__year {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.show-card__body {
  min-width: 0;
  grid-column: 2;
}

.show-card__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.show-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f4f0ea;
}

.show-card__meta {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: rgba(222, 172, 94, 0.95);
}

.show-card__deck {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.show-card__cta {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  margin-top: 0.85rem;
}

@media (min-width: 520px) {
  .show-card__cta {
    grid-column: 2;
    width: auto;
    margin-top: 0;
    justify-self: start;
  }

  .show-card {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
  }

  .show-card__cta {
    grid-row: 1;
    grid-column: 3;
    align-self: center;
  }
}

.shows-footnote {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.shows-footnote a {
  font-weight: 600;
}

/* Direct ticket link hub */
.ticket-hub {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

@media (min-width: 640px) {
  .ticket-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ticket-hub {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ticket-hub__link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.05rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: rgba(12, 8, 22, 0.55);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ticket-hub__link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 74, 0.38);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.ticket-hub__link--primary {
  border-color: rgba(212, 168, 74, 0.32);
  background: linear-gradient(145deg, rgba(32, 18, 28, 0.75), rgba(10, 8, 18, 0.6));
}

.ticket-hub__link--social {
  border-style: dashed;
}

.ticket-hub__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--heading-ink);
}

.ticket-hub__action {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.hero__ticket-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0.85rem 0 0;
  padding: 0;
  font-size: 0.82rem;
}

.hero__ticket-links a {
  font-weight: 600;
  color: var(--gold-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 74, 0.35);
}

.hero__ticket-links a:hover {
  color: #fde68a;
  border-bottom-color: #fde68a;
}

.footer-meta--tickets a {
  font-weight: 600;
}

html[data-site-mode="press"] .ticket-hub__link {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(26, 24, 22, 0.12);
}

html[data-site-mode="press"] .ticket-hub__label {
  color: #1a1816;
}

html[data-site-mode="press"] .hero__ticket-links a {
  color: #6b4e1f;
  border-bottom-color: rgba(107, 78, 31, 0.35);
}

html[data-site-mode="press"] .show-card {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

html[data-site-mode="press"] .show-card__title {
  color: #1a1816;
}

html[data-site-mode="press"] .show-card__day {
  color: #8b5a2b;
}

html[data-site-mode="press"] .show-card__date {
  background: rgba(255, 252, 247, 0.8);
  border-color: rgba(139, 90, 43, 0.25);
}

html[data-site-mode="press"] .about-visual-lead {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.section-news {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.news-grid {
  display: grid;
  gap: 1.15rem;
}

.timeline-grid {
  gap: 1.35rem;
}

.timeline-grid .timeline-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding-top: 1rem;
  padding-bottom: 1.15rem;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.timeline-grid .timeline-card .news-card-kicker {
  margin-top: 0.15rem;
  margin-bottom: 0.55rem;
}

.timeline-grid .timeline-card .news-card-title {
  margin-bottom: 0.55rem;
  line-height: 1.28;
  font-size: clamp(1.05rem, 2vw + 0.55rem, 1.32rem);
  word-break: break-word;
}

.timeline-grid .timeline-card .news-card-text {
  margin-top: 0.35rem;
  line-height: 1.62;
  font-size: clamp(0.95rem, 1.25vw + 0.78rem, 1.06rem);
}

.timeline-grid .timeline-card .news-card-links {
  margin-top: 0.95rem;
}

.timeline-grid .timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(56, 189, 248, 0.14), transparent 52%);
  pointer-events: none;
}

.timeline-card--release::before {
  background: radial-gradient(circle at 84% 14%, rgba(253, 230, 138, 0.2), transparent 54%);
}

@media (min-width: 720px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  /* Timeline + archive: two columns on tablet / laptop — avoids cramped cards */
  .news-grid.timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .news-grid.timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.55rem;
  }
}

.news-card {
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.news-card-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.news-card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--text);
}

.news-card-text {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.news-card-links {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.news-card-links a {
  color: #e8bc6a;
  text-decoration: none;
}

.news-card-links a:hover {
  text-decoration: underline;
}

.timeline-hint {
  margin: 1rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.timeline-hint a {
  color: #e8bc6a;
}

.timeline-hint a:hover {
  text-decoration: underline;
}

.news-feed-meta {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(235, 228, 240, 0.72);
}

.news-feed-meta strong {
  font-weight: 600;
  color: rgba(252, 249, 255, 0.88);
}

.timeline-card-date {
  margin: 0 0 1rem;
  padding-bottom: 0.15rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(212, 168, 74, 0.85);
}

.timeline-card-date time {
  font-weight: 600;
}

.interviews-block {
  margin-bottom: 2rem;
}

.interviews-heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 400;
  color: var(--text);
}

.news-subsection-title {
  margin: 2rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.38rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ebe4dc;
}

.news-subsection-title:first-of-type {
  margin-top: 0;
}

.latest-updates-wrap {
  margin: 0 0 1.75rem;
  padding: 1.05rem 1rem 1.2rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(212, 168, 74, 0.22);
  background:
    linear-gradient(145deg, rgba(212, 168, 74, 0.07) 0%, rgba(8, 6, 14, 0.92) 42%, rgba(4, 3, 10, 0.98) 100%),
    radial-gradient(ellipse 90% 80% at 10% 0%, rgba(56, 189, 248, 0.08), transparent 52%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.latest-updates-wrap .news-subsection-title {
  margin-top: 0;
  color: var(--heading-ink);
}

.latest-updates-lead {
  margin-top: 0.35rem;
  margin-bottom: 1.1rem;
}

.latest-updates-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-update {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(230, 220, 255, 0.08);
  align-items: start;
}

.latest-update:first-child {
  border-top: none;
  padding-top: 0;
}

.latest-update__rail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.latest-update__time {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(212, 168, 74, 0.92);
}

.latest-update__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-family: var(--font-future);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5f3fc;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(8, 10, 22, 0.65);
}

.latest-update__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.22;
}

.latest-update__title a {
  color: #f7f4ff;
  text-decoration: none;
}

.latest-update__title a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.latest-update__deck {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.latest-update__media {
  margin: 0 0 0.55rem;
  max-width: 14rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 74, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.latest-update__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.94);
}

.latest-update__links {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.latest-update__links a {
  color: #e8bc6a;
}

@media (max-width: 560px) {
  .latest-update {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .latest-update__rail {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
}

.store-card__preview {
  margin: -0.95rem -1.05rem 0.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  max-height: 9.5rem;
  background: #0a0a0c;
}

.store-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.94);
}

.interviews-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.58;
}

.interviews-grid {
  gap: 1.35rem;
}

/* Interviews use .news-grid — force two columns max so cards stay readable (no bleed into neighbours) */
@media (min-width: 720px) {
  #interviews-feed.news-grid.interviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.interview-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(212, 168, 74, 0.32);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(56, 189, 248, 0.06),
    inset 0 1px 0 rgba(212, 168, 74, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.interview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(212, 168, 74, 0.2);
}

.interview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 74, 0.48);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(56, 189, 248, 0.08),
    0 0 0 1px rgba(212, 168, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.interview-card:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .interview-card,
  .interview-card::before {
    transition: none;
  }

  .interview-card:hover {
    transform: none;
  }
}

.interview-card-media {
  margin: 0 0 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.interview-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #0a0a0c;
}

/* Portrait / promo photos — fill width without bleeding into neighbouring columns */
.interview-card-media.interview-card-media--cover {
  position: relative;
  isolation: isolate;
}

.interview-card-media--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 38%),
    linear-gradient(205deg, transparent 45%, rgba(3, 2, 10, 0.82) 100%);
  opacity: 0.95;
}

.interview-card-media--cover img {
  aspect-ratio: 3 / 4;
  max-height: min(56vw, 17.5rem);
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.008);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.interview-card:hover .interview-card-media--cover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .interview-card-media--cover img,
  .interview-card:hover .interview-card-media--cover img {
    transform: none;
    transition: none;
  }
}

.interview-card-audio {
  margin: 0 0 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

/* Audio-only card (no image): keep player inside padding — no full-bleed overlap */
.interview-card > .interview-card-audio:first-child {
  margin: 0 0 0.85rem;
  border-radius: 0;
}

.interview-card-media + .interview-card-audio {
  margin-top: 0;
  margin-bottom: 0.85rem;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(10, 12, 24, 0.95) 0%, rgba(4, 6, 14, 0.98) 100%);
  border-bottom-color: rgba(212, 168, 74, 0.22);
  border-top: 1px solid rgba(212, 168, 74, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.interview-card-audio audio {
  width: 100%;
  height: 2.25rem;
  vertical-align: middle;
}

/* Interview cards — larger type (matches live site readability) */
#interviews-feed .interview-card .news-card-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 24px rgba(212, 168, 74, 0.22);
}

#interviews-feed .interview-card .news-card-title {
  font-size: clamp(1.28rem, 2.3vw + 0.72rem, 1.58rem);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

#interviews-feed .interview-card .news-card-text {
  font-size: clamp(1.02rem, 1.3vw + 0.82rem, 1.12rem);
  line-height: 1.58;
}

#interviews-feed .interview-card .news-card-links {
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 0.85rem;
}

/* Press kit mode: calmer cards, less neon / motion */
html[data-site-mode="press"] .interview-card {
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(212, 168, 74, 0.06);
}

html[data-site-mode="press"] .interview-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(212, 168, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-site-mode="press"] .interview-card:hover .interview-card-media--cover img {
  transform: scale(1.015);
}

html[data-site-mode="press"] #interviews-feed .interview-card .news-card-kicker {
  text-shadow: none;
}

.timeline-card-media {
  margin: 0 0 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Date-first layout: inset media below the date line */
.timeline-card-date + .timeline-card-media {
  margin-top: 0;
  margin-bottom: 1.05rem;
}

.timeline-card-media + .news-card-kicker {
  margin-top: 0.2rem;
}

.timeline-card-media img {
  width: 100%;
  height: auto;
  max-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.timeline-archive-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.timeline-archive-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
}

.timeline-archive-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline-grid--archive .timeline-card {
  opacity: 0.96;
}

.timeline-card--archive::before {
  opacity: 0.65;
}

.live-poster-thumb {
  margin: 1.35rem 0 1.45rem;
  padding: 0.35rem 0;
  max-width: min(100%, 28rem);
}

.live-poster-thumb__link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.live-poster-thumb__link:focus-visible {
  outline: 2px solid #e8bc6a;
  outline-offset: 3px;
}

.live-poster-thumb__link img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.live-poster-thumb__cap {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.live-poster-thumb__cap a {
  color: #e8bc6a;
}

.visual-grid--gallery-promo--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
}

.store-cats {
  list-style: none;
  margin: 0.15rem 0 0.55rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}

.store-cats li {
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: rgba(8, 6, 18, 0.45);
  font-size: 0.84rem;
  font-weight: 600;
  color: #a5f3fc;
}

.store-rollout {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.store-payments {
  margin: -0.35rem 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.82);
}

.store-checkout-status {
  margin: -0.45rem 0 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.92);
}

.store-checkout-provider {
  color: #fde68a;
}

.store-checkout-help {
  color: rgba(148, 163, 184, 0.75);
}

.store-card__meta {
  margin: 0.72rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.store-card__status,
.store-card__price {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.store-card__status {
  background: rgba(56, 189, 248, 0.14);
  color: #a5f3fc;
  border: 1px solid rgba(56, 189, 248, 0.24);
}

.store-card__price {
  background: rgba(253, 230, 138, 0.12);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.24);
}

.store-card__action {
  margin-top: 0.72rem;
}

.store-card__cta-row {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
}

.store-card__cta-row .store-card__action,
.store-card__cta-row .store-card__checkout {
  margin-top: 0;
}

.store-card__checkout {
  margin-top: 0.52rem;
}

.store-card__checkout-disabled {
  margin-top: 0.52rem;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  color: rgba(148, 163, 184, 0.85);
  background: rgba(15, 23, 42, 0.2);
}

/* Partners: two cards — avoid an empty third column from global .news-grid */
#partners-grid.news-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  #partners-grid.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: min(46rem, 100%);
    margin-inline: auto;
  }
}

/* Store: product rows — 1 col mobile, 2 col tablet+, flexible on wide screens */
#store-grid.news-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  #store-grid.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1280px) {
  #store-grid.news-grid {
    grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
    gap: 1.15rem;
    max-width: 80rem;
    margin-inline: auto;
  }
}

.partner-card {
  position: relative;
}

.partner-card:has(.partner-card__mark) {
  padding-right: 5rem;
}

.partner-card__brand {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.partner-card__brand-line {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #f8fafc;
}

.partner-card__brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.92);
}

.partner-card__mark {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(222, 172, 94, 0.95);
  border: 1px solid rgba(222, 172, 94, 0.35);
  border-radius: 4px;
  padding: 0.28rem 0.45rem;
  line-height: 1;
}

.partner-card__logo {
  margin: 0 0 0.5rem;
}

.partner-card__logo img {
  max-height: 2.25rem;
  width: auto;
  display: block;
}

.partner-card .news-card-title {
  margin-bottom: 0.42rem;
}

.partner-tag {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5f3fc;
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: rgba(8, 6, 18, 0.45);
}

.listen-now-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.music-embeds-grid {
  display: grid;
  gap: 1.25rem;
  grid-column: 1 / -1;
}

@media (min-width: 960px) {
  .music-embeds-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.music-embed-panel {
  min-width: 0;
}

.music-embed-heading {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8cfdb;
}

.spotify-embed-wrap {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #121212;
}

.spotify-embed-wrap iframe {
  display: block;
}

.apple-embed-wrap {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #0a0a0c;
}

.apple-embed-wrap iframe {
  display: block;
  width: 100%;
}

.music-embed-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.music-embed-note a {
  font-weight: 600;
}

.live-intro {
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
  text-align: left;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  color: var(--text-muted);
}

.live-intro p {
  margin: 0 0 0.75rem;
}

.live-intro p:last-child {
  margin-bottom: 0;
}

.live-past-highlights {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  color: rgba(228, 222, 212, 0.94);
  font-size: 1.02rem;
  line-height: 1.58;
}

.live-past-highlights li {
  margin-bottom: 0.45rem;
}

.live-past-highlights li:last-child {
  margin-bottom: 0;
}

.gallery-group {
  margin-bottom: 1.75rem;
}

.gallery-group:last-child {
  margin-bottom: 0;
}

.gallery-group-label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #deac5e;
}

.gallery-section-lead {
  max-width: 40rem;
}

.gallery-section-scan {
  margin: -0.35rem 0 1rem;
  max-width: 40rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(235, 228, 240, 0.78);
}

html[data-site-mode="press"] .gallery-section-scan {
  color: rgba(61, 58, 54, 0.82);
}

/* Photos: featured lead (capped height), then uniform tile grid */
.gallery-lead-wrap {
  margin-bottom: 0.85rem;
  max-width: min(100%, 44rem);
  margin-inline: auto;
}

.gallery-lead-figure {
  margin: 0;
}

.gallery-lead-cap {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(235, 228, 240, 0.72);
}

html[data-site-mode="press"] .gallery-lead-cap {
  color: rgba(61, 58, 54, 0.78);
}

.gallery-lead-wrap .visual-card--gallery-lead {
  display: block;
}

.gallery-lead-wrap .visual-card--gallery-lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(34vh, 360px);
  object-fit: cover;
  object-position: center 32%;
}

/* Press-first lead (tall portrait crop) */
.gallery-lead-wrap .visual-card--gallery-lead-portrait img {
  aspect-ratio: 3 / 4;
  max-height: min(38vh, 380px);
  object-position: center 18%;
}

@media (max-width: 599px) {
  .gallery-lead-wrap .visual-card--gallery-lead img {
    aspect-ratio: 4 / 5;
    max-height: min(40vh, 300px);
    object-position: center 28%;
  }

  .gallery-lead-wrap .visual-card--gallery-lead-portrait img {
    aspect-ratio: 3 / 4;
    max-height: min(44vh, 320px);
    object-position: center 15%;
  }
}

.visual-grid.visual-grid--gallery-tiles {
  display: grid;
  gap: 0.85rem 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  align-items: start;
  max-width: min(100%, 56rem);
  margin-inline: auto;
}

.visual-grid.visual-grid--gallery-tiles .gallery-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.visual-grid.visual-grid--gallery-tiles .gallery-tile .visual-card {
  min-height: 0;
}

.visual-grid.visual-grid--gallery-tiles .gallery-tile .visual-card img {
  aspect-ratio: 1 / 1;
  max-height: min(42vw, 260px);
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.gallery-tile-cap {
  margin: 0.4rem 0 0;
  padding: 0 0.1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(235, 228, 240, 0.7);
}

html[data-site-mode="press"] .gallery-tile-cap {
  color: rgba(61, 58, 54, 0.76);
}

@media (min-width: 600px) {
  .visual-grid.visual-grid--gallery-tiles .gallery-tile .visual-card img {
    max-height: min(28vw, 240px);
  }
}

@media (min-width: 900px) {
  .visual-grid.visual-grid--gallery-tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .visual-grid.visual-grid--gallery-tiles .gallery-tile .visual-card img {
    max-height: min(22vw, 220px);
  }
}

.gallery-footnote {
  margin: 0.65rem 0 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(235, 228, 240, 0.68);
}

html[data-site-mode="press"] .gallery-footnote {
  color: rgba(61, 58, 54, 0.75);
}

.visual-grid--gallery-singles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 42rem;
}

.visual-grid--gallery-promo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .visual-grid--gallery-promo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.album-tracklist-details {
  margin-top: 0.85rem;
  padding: 0.65rem 0 0;
  border-top: 1px solid var(--border);
}

.album-tracklist-summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8bc6a;
  list-style: none;
}

.album-tracklist-summary::-webkit-details-marker {
  display: none;
}

.album-tracklist-summary::after {
  content: " +";
  font-weight: 700;
  opacity: 0.7;
}

.album-tracklist-details[open] .album-tracklist-summary::after {
  content: " −";
}

.tracklist-list--album {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-left: 1.35rem;
  font-size: 0.9rem;
}

.tracklist-list--album li {
  margin-bottom: 0.28rem;
}

.track-note {
  margin-left: 0.35rem;
  font-size: 0.82em;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.9;
}

.contact-elsewhere {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-elsewhere-title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #deac5e;
}

.contact-elsewhere-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.contact-elsewhere-list a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent);
}

.contact-elsewhere-list a:hover {
  color: #e8bc6a;
  text-decoration: underline;
}

.album-art-caption {
  margin: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.25);
}

.music-card-hint {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.music-tracklist-block {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.tracklist-list {
  margin: 0 0 0.85rem;
  padding: 0 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.tracklist-list li {
  margin-bottom: 0.35rem;
}

.track-title {
  color: #dce2eb;
}

.track-year {
  margin-left: 0.35rem;
  font-size: 0.85em;
  opacity: 0.75;
}

.section-visuals {
  background: var(--bg-elevated);
}

.visuals-block {
  margin-bottom: 0.25rem;
}

.section-contact {
  background: var(--bg);
}

/* Anchor scroll from Press materials buttons — clear fixed header */
#contact {
  scroll-margin-top: clamp(4.5rem, 12vw, 6rem);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 320px);
    gap: 2.5rem;
  }
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.form-label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c8cfdb;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: rgba(179, 0, 0, 0.45);
}

.form-textarea {
  resize: vertical;
  min-height: 7rem;
}

.hp-field {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hp-field input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
}

.contact-aside {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-aside-title {
  margin: 1rem 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #deac5e;
}

.contact-aside-title:first-child {
  margin-top: 0;
}

.contact-aside p {
  margin: 0 0 0.35rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.contact-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-social-list li {
  margin-bottom: 0.4rem;
}

.contact-social-list a {
  font-weight: 600;
}

.final-word {
  margin-top: 1.25rem;
}

/* Sections */
.section {
  padding: var(--section-pad-y) var(--space);
  border-top: 1px solid rgba(154, 61, 74, 0.14);
  position: relative;
  transition: border-color 0.35s ease;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(ellipse 72% 42% at 50% 0%, var(--section-glow), transparent 72%);
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-future);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--heading-ink);
}

@media (min-width: 900px) {
  .section-title {
    margin-bottom: 1.1rem;
  }
}

.section-kicker + .section-title {
  margin-top: -0.15rem;
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-future);
  color: #a5f3fc;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  text-shadow: 0 0 28px rgba(56, 189, 248, 0.35);
}

/* About */
.section-about {
  background:
    linear-gradient(165deg, rgba(18, 10, 14, 0.97) 0%, rgba(8, 6, 10, 0.99) 55%, rgba(12, 8, 12, 1) 100%);
}

.about-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 48rem;
}

.section-title--about {
  margin-bottom: 1rem;
  font-family: var(--font-future);
  font-weight: 800;
  font-size: clamp(2.35rem, 6vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #faf8ff 0%, #fde68a 38%, #e879f9 62%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-header .bio-short {
  margin-bottom: 1.25rem;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  line-height: 1.55;
  max-width: none;
}

.about-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-highlights li {
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 74, 0.38);
  background: linear-gradient(145deg, rgba(212, 168, 74, 0.12), rgba(100, 28, 38, 0.12));
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ebe3d9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.music-stack {
  display: grid;
  gap: 1.35rem;
}

.album-art-wrap {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.album-art {
  width: 100%;
  height: auto;
  display: block;
}

.music-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.music-card--with-cover {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 520px) {
  .music-card--with-cover {
    grid-template-columns: minmax(120px, 168px) minmax(0, 1fr);
    gap: 1.15rem;
  }
}

.music-card-cover {
  display: block;
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.music-card-cover:hover {
  border-color: rgba(253, 230, 138, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  transform: translateY(-1px);
}

.music-card-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.music-card__body {
  min-width: 0;
}

.music-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--text);
}

.music-card h3 span {
  color: var(--text-muted);
  font-weight: 500;
}

.music-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.music-subtitle {
  margin: 0.3rem 0 0.8rem;
}

.singles-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.singles-list li {
  margin-bottom: 0.35rem;
}

.press-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.press-list li {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.press-list time {
  display: inline;
  font-weight: 600;
  color: var(--accent);
}

.credibility-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.credibility-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.credibility-chips li {
  margin: 0;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(240, 232, 220, 0.92);
  background: rgba(154, 61, 74, 0.18);
  border: 1px solid rgba(212, 168, 74, 0.2);
  border-radius: 999px;
}

.press-highlight-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .press-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.press-highlight-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(154, 61, 74, 0.24);
  background: linear-gradient(145deg, rgba(26, 14, 20, 0.55), rgba(10, 8, 12, 0.75));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.press-highlight-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #ede6dc;
}

.press-highlight-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.press-highlight-card .btn {
  margin-top: 0.15rem;
}

.press-quote-stack {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .press-quote-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.press-pull-quote {
  margin: 0;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: calc(var(--radius) + 8px);
  border-left: 4px solid rgba(212, 168, 74, 0.65);
  background: linear-gradient(100deg, rgba(154, 61, 74, 0.16), rgba(8, 6, 10, 0.85));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.press-pull-quote blockquote {
  margin: 0;
  padding: 0;
}

.press-pull-quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.45;
  font-style: italic;
  color: rgba(245, 238, 228, 0.96);
}

.press-pull-quote figcaption {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(245, 240, 235, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.press-pull-quote figcaption a {
  font-weight: 700;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-note {
  font-size: 0.9375rem;
}

/* Album */
.section-album {
  background: var(--bg);
}

.section-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .section-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.album-intro .section-title {
  margin-bottom: 0.75rem;
}

.album-tagline {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tracklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.tracklist li:last-child {
  border-bottom: 0;
}

.track-num {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.track-note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Listen */
.section-listen {
  background: var(--bg-elevated);
}

.listen-lead {
  max-width: 44rem;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  line-height: 1.58;
}

.listen-lead-compact {
  margin-top: -0.35rem;
  margin-bottom: 1rem;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.listen-placeholder {
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.listen-placeholder p {
  margin: 0 0 0.75rem;
}

.listen-hint {
  margin-bottom: 0 !important;
  font-size: 0.875rem;
  opacity: 0.85;
}

.shop-page-admin-hint {
  margin-top: 1.5rem;
}

.contact-form-provider-note {
  margin-top: 0.35rem;
  color: #a5f3fc;
}

html[data-site-mode="press"] .contact-form-provider-note {
  color: #6e5420;
}

/* Links */
.link-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-grid a {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.link-grid a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.visual-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.35rem;
}

@media (min-width: 760px) {
  .visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

.visual-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d111b;
  min-height: 120px;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.visual-card img {
  width: 100%;
  height: auto;
  max-height: min(280px, 36vw);
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
  filter: contrast(1.05) saturate(1.08);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.visual-card:hover img {
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.15);
}

/* Gallery: smaller capped squares + calmer grade */
.section-gallery .visual-card img {
  max-height: min(240px, 32vw);
  filter: contrast(1.04) saturate(0.92);
}

.section-gallery .visual-card:hover img {
  transform: scale(1.03);
  filter: contrast(1.07) saturate(0.98);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 15, 0.75));
  pointer-events: none;
}

.visuals-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.section-video--feed .visuals-block {
  margin-top: 0.5rem;
}

.video-energy {
  margin: 0 0 1.5rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background:
    linear-gradient(125deg, rgba(56, 189, 248, 0.1) 0%, rgba(124, 58, 237, 0.06) 38%, rgba(8, 6, 14, 0.94) 100%),
    radial-gradient(ellipse 80% 120% at 80% 0%, rgba(212, 168, 74, 0.09), transparent 55%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.video-energy__kicker {
  margin: 0 0 1rem;
  font-family: var(--font-future);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a5f3fc;
}

.video-reels-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
}

.video-reel-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 5.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #f7f4ff;
  border: 1px solid rgba(230, 220, 255, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(6, 8, 16, 0.88));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-reel-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 74, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.video-reel-tile--shorts {
  border-color: rgba(248, 113, 113, 0.25);
  background: linear-gradient(155deg, rgba(248, 113, 113, 0.12), rgba(8, 6, 14, 0.92));
}

.video-reel-tile--tiktok {
  border-color: rgba(56, 189, 248, 0.3);
}

.video-reel-tile--ig {
  border-color: rgba(244, 114, 182, 0.28);
  background: linear-gradient(155deg, rgba(244, 114, 182, 0.1), rgba(8, 6, 14, 0.92));
}

.video-reel-tile__label {
  font-family: var(--font-future);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-reel-tile__sub {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.music-video-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: 0.25rem;
}

.music-video-grid > .music-video-card:first-child .music-video-embed {
  box-shadow:
    0 0 0 1px rgba(212, 168, 74, 0.15),
    0 24px 56px rgba(0, 0, 0, 0.45);
}

.music-video-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.music-video-card--archive {
  min-height: 0;
}

.music-video-archive-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(154, 61, 74, 0.32);
  background:
    linear-gradient(145deg, rgba(154, 61, 74, 0.14) 0%, rgba(8, 6, 10, 0.92) 55%),
    var(--surface-deep);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.music-video-archive-link:hover {
  border-color: rgba(212, 168, 74, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.music-video-archive-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.music-video-archive-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.55rem;
  color: #f0e8de;
}

.music-video-archive-deck {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.music-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0c12;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.music-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.music-video-caption {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c5ccd8;
  letter-spacing: 0.02em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 8, 14, 0.86);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(95vw, 1080px);
  max-height: calc(100vh - 5rem);
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
  color: #d8ddeb;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(154, 61, 74, 0.35);
  background: linear-gradient(135deg, rgba(120, 40, 50, 0.35), rgba(212, 168, 74, 0.12));
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: rgba(212, 168, 74, 0.55);
}

.floating-book-btn {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 220;
  display: none;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-future);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0610;
  background: linear-gradient(135deg, #fde68a 0%, #f472b6 50%, #38bdf8 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.45),
    0 16px 44px rgba(124, 58, 237, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.45);
}

.floating-book-btn:hover {
  color: #050208;
  transform: translateY(-2px);
  filter: brightness(1.06);
}

body.lightbox-open .floating-book-btn {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 900px) {
  .floating-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.section-epk {
  background: linear-gradient(180deg, #0d121e 0%, #101622 100%);
}

.epk-layout {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 920px) {
  .epk-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 1.5rem;
  }
}

.epk-main {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.6rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.epk-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, 0.015);
}

.epk-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.epk-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.epk-card li {
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.45rem;
}

.epk-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view {
    transform: none;
    transition: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem var(--space);
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.92));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background: radial-gradient(ellipse 80% 90% at 50% 100%, rgba(179, 0, 0, 0.08), transparent 55%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-content-stamp {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.82);
}

.footer-content-stamp a {
  color: #e8bc6a;
  text-decoration: none;
  font-weight: 600;
}

.footer-content-stamp a:hover {
  text-decoration: underline;
}

.footer-content-stamp time {
  font-weight: 600;
  color: #f8fafc;
}

.footer-host-details {
  margin: 0.65rem 0 0;
  max-width: 46rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.35);
  padding: 0.35rem 0.65rem 0.55rem;
}

.footer-host-summary {
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5f3fc;
  list-style: none;
}

.footer-host-summary::-webkit-details-marker {
  display: none;
}

.footer-host-summary::after {
  content: " ▾";
  font-size: 0.75em;
  opacity: 0.75;
}

.footer-host-details[open] .footer-host-summary::after {
  content: " ▴";
}

.footer-host-body {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-host-body code {
  font-size: 0.88em;
  padding: 0.1rem 0.32rem;
  border-radius: 4px;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-partner {
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-partner-inline {
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-partner-inline .footer-partner-kicker {
  display: inline;
  margin: 0 0.4rem 0 0;
  font-size: 0.68rem;
  vertical-align: baseline;
}

.footer-partner-inline a {
  font-weight: 600;
  color: #e8bc6a;
  text-decoration: none;
}

.footer-partner-inline a:hover {
  text-decoration: underline;
}

.footer-partner-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5f3fc;
}

.footer-partner-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.footer-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f172a;
  background: linear-gradient(135deg, #a5f3fc, #fde68a);
}

.footer-partner-brand {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.2rem 0;
}

.footer-partner-brand__line {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #f8fafc;
}

.footer-partner-brand__sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.88);
}

.footer-partner-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
}

.footer-partner-copy {
  margin: 0.18rem 0 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.footer-partner-link {
  display: inline-flex;
  margin-top: 0.34rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e8bc6a;
  text-decoration: none;
}

.footer-partner-link:hover {
  text-decoration: underline;
}

/* —— Press / off-season look (toggle in header) —— */
html[data-site-mode="press"] {
  --bg: #f2efe9;
  --bg-elevated: #e6e2da;
  --surface: #fffcf7;
  --surface-deep: #e4e0d8;
  --text: #1a1816;
  --text-muted: #5c5752;
  --accent: #6e5420;
  --accent-hot: #8f4540;
  --accent-2: #5c4034;
  --accent-3: #7a5540;
  --accent-soft: rgba(110, 84, 32, 0.11);
  --rock-glow: rgba(110, 84, 32, 0.07);
  --border: rgba(26, 24, 22, 0.12);
  --glow: rgba(100, 70, 55, 0.07);
  --on-accent: #171512;
  --on-accent-hover: #0a0908;
  --section-glow: rgba(110, 84, 32, 0.09);
}

html[data-site-mode="press"] body {
  background:
    radial-gradient(circle at 12% 16%, rgba(110, 84, 32, 0.08), transparent 44%),
    radial-gradient(circle at 88% 8%, rgba(180, 150, 110, 0.12), transparent 36%),
    linear-gradient(180deg, #f2efe9 0%, #e8e4dc 100%);
}

html[data-site-mode="press"] .section-title {
  color: var(--text);
}

html[data-site-mode="press"] .section-kicker {
  color: var(--accent);
  text-shadow: none;
}

html[data-site-mode="press"] .credibility-kicker {
  color: var(--accent);
}

html[data-site-mode="press"] .credibility-band-label {
  color: var(--accent);
  text-shadow: none;
}

html[data-site-mode="press"] .credibility-chips li {
  background: rgba(110, 84, 32, 0.09);
  border-color: rgba(26, 24, 22, 0.12);
  color: var(--text);
}

html[data-site-mode="press"] .press-bio {
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

html[data-site-mode="press"] .press-bio p {
  color: #2c2925;
}

html[data-site-mode="press"] .press-highlight-card {
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
}

html[data-site-mode="press"] .press-highlight-title {
  color: var(--text);
}

html[data-site-mode="press"] .credibility-band {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(242, 239, 233, 0.92));
  border-top-color: rgba(26, 24, 22, 0.1);
  border-bottom-color: rgba(26, 24, 22, 0.1);
}

html[data-site-mode="press"] .credibility-band-label {
  color: var(--accent);
}

html[data-site-mode="press"] .collab-pills li {
  background: rgba(110, 84, 32, 0.1);
  border-color: rgba(26, 24, 22, 0.12);
  color: var(--text);
}

html[data-site-mode="press"] .press-pull-quote {
  background: rgba(255, 252, 247, 0.97);
  border-left-color: rgba(110, 84, 32, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

html[data-site-mode="press"] .press-pull-quote blockquote p {
  color: #2a2622;
}

html[data-site-mode="press"] .press-pull-quote figcaption {
  color: #5c5752;
  border-top-color: rgba(26, 24, 22, 0.1);
}

html[data-site-mode="press"] .about-milestones,
html[data-site-mode="press"] .about-credentials {
  color: #2c2925;
}

html[data-site-mode="press"] .live-past-highlights {
  color: #3d3a36;
}

html[data-site-mode="press"] .site-header {
  background: rgba(242, 239, 233, 0.94);
  border-bottom-color: rgba(26, 24, 22, 0.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
}

html[data-site-mode="press"] .site-nav {
  background: rgba(26, 24, 22, 0.05);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

html[data-site-mode="press"] .music-video-archive-link {
  background: linear-gradient(145deg, rgba(110, 84, 32, 0.1) 0%, rgba(255, 252, 247, 0.95) 50%);
  border-color: rgba(26, 24, 22, 0.14);
  color: var(--text);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

html[data-site-mode="press"] .music-video-archive-title {
  color: var(--text);
}

html[data-site-mode="press"] .music-video-archive-link:hover {
  border-color: rgba(110, 84, 32, 0.4);
}

html[data-site-mode="press"] .site-mode-toggle {
  background: rgba(26, 24, 22, 0.05);
  border-color: rgba(26, 24, 22, 0.14);
}

html[data-site-mode="press"] .site-mode-toggle:hover,
html[data-site-mode="press"] .site-mode-toggle[aria-pressed="true"] {
  background: rgba(110, 84, 32, 0.12);
  border-color: rgba(110, 84, 32, 0.35);
  color: var(--accent);
}

html[data-site-mode="press"] .site-nav .nav-cta {
  box-shadow:
    0 8px 22px rgba(60, 40, 30, 0.18),
    0 0 0 1px rgba(180, 150, 100, 0.35);
}

html[data-site-mode="press"] .btn-primary {
  box-shadow:
    0 10px 26px rgba(60, 40, 30, 0.2),
    0 0 0 1px rgba(180, 150, 100, 0.35);
}

html[data-site-mode="press"] .floating-book-btn {
  box-shadow:
    0 12px 28px rgba(40, 30, 24, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

html[data-site-mode="press"] .quote-strip {
  background: linear-gradient(90deg, rgba(26, 24, 22, 0.03), rgba(26, 24, 22, 0.01));
  border-color: rgba(26, 24, 22, 0.1);
}

html[data-site-mode="press"] .quote-strip p {
  color: #3a3632;
}

html[data-site-mode="press"] .bio-short {
  background: rgba(110, 84, 32, 0.08);
  border-left-color: var(--accent);
  color: #2c2925;
}

html[data-site-mode="press"] .bio-short a {
  color: var(--accent);
}

html[data-site-mode="press"] .bio-short a:hover {
  color: #3d3a36;
}

html[data-site-mode="press"] .lightbox {
  background: rgba(250, 248, 244, 0.92);
}

html[data-site-mode="press"] .lightbox-close {
  border-color: rgba(26, 24, 22, 0.15);
  background: linear-gradient(135deg, rgba(110, 84, 32, 0.12), rgba(255, 255, 255, 0.6));
  color: var(--text);
}

html[data-site-mode="press"] .section-epk {
  background: linear-gradient(180deg, #e8e4dc 0%, #ddd8cf 100%);
}

html[data-site-mode="press"] .section-title--about {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #1f1c18;
}

html[data-site-mode="press"] .about-highlights li {
  border-color: rgba(26, 24, 22, 0.14);
  background: rgba(255, 252, 247, 0.92);
  color: #2c2925;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

html[data-site-mode="press"] .live-intro {
  background: rgba(255, 252, 247, 0.88);
  border-color: rgba(26, 24, 22, 0.1);
  color: #3d3a36;
}

html[data-site-mode="press"] .contact-elsewhere {
  border-top-color: rgba(26, 24, 22, 0.12);
}

html[data-site-mode="press"] .contact-elsewhere-list a {
  color: #6e5420;
}

html[data-site-mode="press"] .gallery-group-label,
html[data-site-mode="press"] .album-tracklist-summary {
  color: #6e5420;
}

html[data-site-mode="press"] .music-card-cover {
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

html[data-site-mode="press"] .music-card-cover:hover {
  border-color: rgba(110, 84, 32, 0.32);
}

@media (max-width: 768px) {
  html[data-site-mode="press"] .site-nav {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
}

/* —— Modern hero — compact (no full-screen wallpaper) —— */
.hero.hero--modern.hero--compact {
  min-height: auto;
  padding: clamp(1.75rem, 5vw, 3rem) var(--space);
  display: block;
  align-items: stretch;
  justify-content: flex-start;
}

.hero.hero--compact .hero__layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
}

@media (min-width: 860px) {
  .hero.hero--compact .hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 300px);
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.hero.hero--compact .hero__media {
  position: relative;
  inset: auto;
  z-index: 0;
  margin: 0;
  order: -1;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 860px) {
  .hero.hero--compact .hero__media {
    order: 2;
    max-height: min(52vh, 26rem);
  }
}

.hero.hero--compact .hero__image {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(46vw, 18rem);
  object-fit: cover;
  object-position: center 12%;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 860px) {
  .hero.hero--compact .hero__image {
    max-height: min(52vh, 26rem);
    min-height: 100%;
  }
}

.hero.hero--compact .hero__scrim {
  display: none;
}

.hero.hero--compact .hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero.hero--compact .hero__inner {
  max-width: none;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(155deg, rgba(18, 12, 32, 0.55) 0%, rgba(8, 6, 16, 0.4) 100%);
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px) saturate(1.1);
}

@media (min-width: 860px) {
  .hero.hero--compact .hero__inner {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero.hero--modern {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(18, 6, 10, 0.38), rgba(10, 8, 12, 0.22)),
    radial-gradient(circle at 78% 18%, rgba(212, 168, 74, 0.06), transparent 42%);
}

/* Subtle motion under portrait — matches havardpedersen.com hero stack */
.hero.hero--modern .hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(110vw, 220vh);
  height: max(110vh, 220vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 0.12;
  filter: saturate(1.1) contrast(1.05);
  transition: opacity 0.9s ease;
}

.hero.hero--modern .hero-video-frame.is-fading {
  opacity: 0.1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 1;
  opacity: 0.97;
  filter: saturate(1.03) contrast(1.02);
  pointer-events: none;
}

/* Bottom-weighted scrim — lighter so the portrait stays readable */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.02) 0%, rgba(5, 5, 8, 0.008) 42%, rgba(5, 5, 8, 0.2) 72%, rgba(5, 5, 8, 0.48) 100%),
    radial-gradient(ellipse 95% 85% at 88% 58%, rgba(60, 14, 28, 0.06), transparent 58%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(167, 139, 250, 0.06), transparent 55%);
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scanlines {
    opacity: 0.02;
  }

  .hero.hero--modern .hero-video-frame {
    opacity: 0.08;
    filter: saturate(0.85) contrast(1.05);
  }
}

/* Image-first on small screens — photo is the story (live site parity) */
@media (max-width: 768px) {
  .hero__video-wrap {
    display: none;
  }

  .hero__image {
    opacity: 1;
    object-position: center 16%;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 8, 0.015) 0%, rgba(5, 5, 8, 0.008) 40%, rgba(5, 5, 8, 0.18) 68%, rgba(5, 5, 8, 0.5) 100%),
      radial-gradient(ellipse 100% 80% at 50% 92%, rgba(40, 10, 22, 0.16), transparent 55%);
  }

  .hero__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: min(36rem, 100%);
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.25rem, 7vw, 5rem) var(--space) clamp(1.75rem, 5vw, 3.5rem);
}

.hero__inner {
  max-width: min(34rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.25rem, 2.8vw, 1.9rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(
    155deg,
    rgba(18, 12, 32, 0.72) 0%,
    rgba(8, 6, 16, 0.52) 45%,
    rgba(12, 8, 22, 0.68) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.32);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 32px 90px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(124, 58, 237, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px) saturate(1.15);
}

@media (min-width: 880px) {
  .hero__inner {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-future);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7dd3fc;
  text-shadow: 0 0 32px rgba(56, 189, 248, 0.45);
}

.hero__eyebrow-sub {
  margin: 0 0 0.55rem;
  font-family: var(--font-future);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.82);
  text-shadow: 0 0 22px rgba(56, 189, 248, 0.22);
  max-width: 36rem;
  line-height: 1.45;
}

.hero__tagline {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.3vw, 1.98rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #f2ebe2;
  letter-spacing: 0.01em;
  max-width: 40rem;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero__proof {
  margin: 0 0 1rem;
  padding: 0.45rem 0 0;
  max-width: 38rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(253, 230, 138, 0.88);
  border-top: 1px solid rgba(167, 139, 250, 0.22);
}

.hero__headline {
  margin: 0 0 1.25rem;
  font-family: var(--font-future);
  font-size: clamp(2.95rem, 10.5vw, 6.25rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--text);
  text-shadow:
    0 4px 40px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(167, 139, 250, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.55);
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--accent {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(105deg, #fde68a 0%, #f472b6 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.35));
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero__cta--primary-row {
  margin-bottom: 0.5rem;
  align-items: center;
}

.hero__cta--secondary-row {
  margin-bottom: 1.05rem;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .hero__cta--secondary-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__cta--secondary-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn--hero-secondary {
  padding: 0.58rem 1rem;
  min-height: 2.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.btn--hero {
  padding: 0.95rem 1.65rem;
  font-size: 1rem;
}

.hero__micro {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(230, 224, 216, 0.88);
  max-width: 50rem;
}

.hero__micro em {
  color: #ebe4da;
}

.hero__micro-links {
  display: block;
  margin-top: 0.65rem;
  font-weight: 500;
}

.hero__micro-links a {
  font-weight: 600;
}

.hero__momentum {
  margin: 0.85rem 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.92);
  max-width: 38rem;
}

.hero__momentum em {
  font-style: italic;
  color: #fde68a;
}

.hero__booking-hook {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: #a5f3fc;
  max-width: 36rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero__performance-note {
  margin: -0.15rem 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.88);
  max-width: 36rem;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero__promoter-tags {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  max-width: 40rem;
}

.hero__promoter-tags li {
  margin: 0;
  padding: 0.28rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(235, 228, 216, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: rgba(8, 6, 18, 0.42);
}

.hero__cta--single-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero__cta--single-primary .btn--hero-dominate {
  width: 100%;
  max-width: 22rem;
  justify-content: center;
  padding: 1.05rem 1.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 0 1px rgba(253, 230, 138, 0.25),
    0 18px 42px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(56, 189, 248, 0.22);
}

@media (min-width: 520px) {
  .hero__cta--single-primary .btn--hero-dominate,
  .hero__cta--single-primary .btn--hero-secondary {
    width: auto;
    min-width: 10.5rem;
  }

  .hero__cta--single-primary .btn--hero-dominate {
    min-width: 12rem;
  }
}

.hero__instant-play {
  margin: 0 0 1.15rem;
  padding: 0.85rem 0.95rem 1rem;
  max-width: min(100%, 26rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(6, 4, 14, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero__instant-play--featured {
  max-width: min(100%, 28rem);
  padding: 1rem 1.05rem 1.1rem;
  border-width: 2px;
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(165deg, rgba(12, 18, 40, 0.85), rgba(6, 4, 16, 0.72));
  box-shadow:
    0 0 0 1px rgba(253, 230, 138, 0.12),
    0 20px 52px rgba(0, 0, 0, 0.42),
    0 0 56px rgba(56, 189, 248, 0.18);
}

.hero__instant-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-future);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.hero__instant-play--featured .hero__instant-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: #fde68a;
}

.hero__embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero__instant-play--featured .hero__embed-wrap {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(56, 189, 248, 0.15);
}

.hero__embed-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(253, 230, 138, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__embed-more:hover {
  color: #fff;
}

@media (min-width: 720px) {
  .hero.hero--modern {
    justify-content: flex-end;
  }
}

/* Section intros & premium about */
.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 52rem;
}

.section-head--about .section-title {
  margin-bottom: 0.85rem;
}

.section-deck {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 46rem;
}

.about-premium {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.about-premium__banner {
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(154, 61, 74, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  background: #0a080c;
}

.about-premium__banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-premium__banner-cap {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.52));
}

.about-premium__aside {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-premium__main {
  min-width: 0;
}

.about-premium__main .prose {
  max-width: none;
}

.about-portrait {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
  background: #0a080c;
}

.about-portrait__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-portrait__cap {
  margin: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.38);
}

.about-portrait__cap a {
  font-weight: 600;
}

.bio-short--inset {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(212, 168, 74, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

@media (min-width: 960px) {
  .about-premium {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
  }

  .about-premium__banner {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .about-premium__aside {
    grid-column: 1;
    grid-row: 2;
  }

  .about-premium__main {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Video / gallery section atmosphere */
.section-video {
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.5) 0%, transparent 35%),
    linear-gradient(165deg, rgba(18, 10, 14, 0.96) 0%, rgba(6, 4, 9, 0.99) 100%);
}

.section-gallery {
  background: linear-gradient(165deg, rgba(14, 8, 12, 0.98) 0%, rgba(6, 5, 8, 1) 100%);
}

/* Footer meta line */
.footer-meta {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-meta--secondary {
  margin-top: 0.35rem;
}

.footer-meta a {
  color: #e8bc6a;
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* Navigation polish */
.site-header .site-nav a:not(.nav-cta) {
  padding: 0.4rem 0.55rem;
  margin: 0 -0.15rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header .site-nav a:not(.nav-cta):hover {
  background: rgba(212, 168, 74, 0.1);
  color: var(--text);
}

/* Press look: modern hero — keep image bright, calm the frame */
html[data-site-mode="press"] .hero--modern .hero__scrim {
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.22) 0%, rgba(248, 246, 242, 0.05) 45%, rgba(236, 232, 224, 0.75) 100%),
    radial-gradient(ellipse 90% 80% at 70% 50%, rgba(110, 84, 32, 0.06), transparent 55%);
}

html[data-site-mode="press"] .hero.hero--modern .hero-video-frame {
  opacity: 0.1;
}

html[data-site-mode="press"] .hero--modern .hero__image {
  opacity: 0.66;
  filter: grayscale(0.04) contrast(1.03) saturate(0.96);
}

html[data-site-mode="press"] .hero__inner {
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.94), rgba(248, 244, 238, 0.84));
  border-color: rgba(26, 24, 22, 0.1);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

html[data-site-mode="press"] .hero__headline-line:not(.hero__headline-line--accent) {
  color: #2a2622;
}

html[data-site-mode="press"] .hero__headline-line--accent {
  color: #6e5420;
  text-shadow: none;
}

html[data-site-mode="press"] .hero__tagline {
  color: #4a4540;
}

html[data-site-mode="press"] .hero__proof {
  color: #6e5420;
  border-top-color: rgba(26, 24, 22, 0.12);
}

html[data-site-mode="press"] .hero__eyebrow {
  color: #6e5420;
}

html[data-site-mode="press"] .hero__eyebrow-sub {
  color: #7a6f5e;
  text-shadow: none;
}

html[data-site-mode="press"] .hero__micro {
  color: #3d3a36;
}

html[data-site-mode="press"] .hero__micro em {
  color: #2c2925;
}

html[data-site-mode="press"] .hero__micro a {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-content-stamp {
  color: rgba(61, 58, 54, 0.88);
}

html[data-site-mode="press"] .footer-content-stamp time {
  color: #1c1917;
}

html[data-site-mode="press"] .footer-host-details {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.5);
}

html[data-site-mode="press"] .footer-host-summary {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-host-body code {
  background: rgba(255, 252, 247, 0.9);
  border-color: rgba(26, 24, 22, 0.12);
}

html[data-site-mode="press"] .footer-meta a {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-partner {
  border-top-color: rgba(26, 24, 22, 0.16);
}

html[data-site-mode="press"] .footer-partner-inline {
  border-top-color: rgba(26, 24, 22, 0.16);
  color: var(--text-muted);
}

html[data-site-mode="press"] .footer-partner-inline a {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-partner-kicker {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-partner-name {
  color: #2a2622;
}

html[data-site-mode="press"] .footer-partner-brand__line {
  color: #2a2622;
}

html[data-site-mode="press"] .footer-partner-brand__sub {
  color: #6e5420;
}

html[data-site-mode="press"] .partner-card__brand {
  border-bottom-color: rgba(26, 24, 22, 0.12);
}

html[data-site-mode="press"] .partner-card__brand-line {
  color: #1c1917;
}

html[data-site-mode="press"] .partner-card__brand-sub {
  color: #6e5420;
}

html[data-site-mode="press"] .footer-partner-link {
  color: #6e5420;
}

html[data-site-mode="press"] .site-nav a[aria-current="page"]::after {
  background: linear-gradient(90deg, #6e5420, transparent);
}

/* Press look: restore readable accent headline */
html[data-site-mode="press"] .hero__headline-line--accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #6e5420;
  filter: none;
}

html[data-site-mode="press"] .hero__momentum {
  color: #4a4845;
}

html[data-site-mode="press"] .hero__booking-hook {
  color: var(--accent);
  text-shadow: none;
}

html[data-site-mode="press"] .hero__performance-note {
  color: #7a6d58;
  text-shadow: none;
}

html[data-site-mode="press"] .hero__promoter-tags li {
  border-color: rgba(26, 24, 22, 0.14);
  background: rgba(255, 252, 247, 0.72);
  color: #3d3a36;
}

html[data-site-mode="press"] .hero__instant-play {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.92);
}

html[data-site-mode="press"] .hero__instant-play--featured {
  border-color: rgba(110, 84, 32, 0.35);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 16px 40px rgba(40, 30, 24, 0.08);
}

html[data-site-mode="press"] .hero__instant-play--featured .hero__instant-label {
  color: var(--accent);
}

html[data-site-mode="press"] .hero__instant-label {
  color: var(--accent);
}

html[data-site-mode="press"] .hero__embed-more {
  color: var(--accent);
}

/* —— Booking-first hero, credibility strip quotes, press kit, live schedule, about expand —— */
.credibility-quotes {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media (min-width: 700px) {
  .credibility-quotes {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
}

.credibility-quote {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(230, 224, 240, 0.88);
  font-style: italic;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(8, 6, 16, 0.45);
}

.credibility-quote em {
  font-style: normal;
  color: #fde68a;
}

.credibility-outlets {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.85);
  text-align: center;
}

.credibility-quote-attrib {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.75);
}

.about-expand {
  margin-top: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: rgba(6, 4, 12, 0.5);
  padding: 0 1rem 0.5rem;
}

.about-expand-summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-future);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5f3fc;
  padding: 1rem 0.25rem;
}

.about-expand summary::-webkit-details-marker {
  display: none;
}

.about-expand-body {
  padding: 0 0.15rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-press-kit {
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.5), rgba(4, 3, 10, 0.9));
}

.press-kit-lead {
  margin-bottom: 0.75rem;
}

.press-kit-includes {
  margin: -0.25rem 0 1rem;
  max-width: 32rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.92);
}

.press-kit-channels-intro {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.92);
}

.press-kit-channels {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}

.press-kit-channels li {
  margin: 0;
}

.press-kit-channels a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: rgba(8, 6, 18, 0.45);
  color: #a5f3fc;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.press-kit-channels a:hover {
  border-color: rgba(253, 230, 138, 0.35);
  color: #fde68a;
}

.press-kit-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.press-kit-grid--lead {
  margin-bottom: 0.35rem;
}

.press-kit-grid--lead .btn {
  min-height: 3rem;
  font-size: 0.95rem;
}

.press-kit-grid__full {
  flex: 1 1 100%;
  min-width: 100%;
}

.press-kit-cta-primary {
  box-shadow:
    0 0 0 1px rgba(253, 230, 138, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(56, 189, 248, 0.18);
}

.press-kit-flow-note {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.75);
  max-width: 36rem;
}

html[data-site-mode="press"] .press-kit-flow-note {
  color: #7a726a;
}

.press-kit-grid .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 520px) {
  .press-kit-grid li {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 12rem;
  }

  .press-kit-grid .btn {
    width: auto;
    min-width: 10.5rem;
  }
}

.press-kit-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

html[data-site-mode="press"] .press-kit-includes {
  color: #6b6560;
}

html[data-site-mode="press"] .press-kit-channels-intro {
  color: #5c574f;
}

html[data-site-mode="press"] .press-kit-channels a {
  border-color: rgba(26, 24, 22, 0.14);
  background: rgba(255, 252, 247, 0.65);
  color: var(--accent);
}

html[data-site-mode="press"] .press-kit-channels a:hover {
  color: #3d3a36;
  border-color: rgba(110, 84, 32, 0.35);
}

.live-schedule {
  margin: 1.15rem 0 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(8, 6, 18, 0.45);
}

.live-schedule-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-future);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.live-schedule-lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(235, 228, 240, 0.9);
}

.gig-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gig-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.gig-list li .gig-row-links {
  flex-basis: 100%;
  margin: 0.15rem 0 0.85rem;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.gig-list li:last-child .gig-row-links {
  margin-bottom: 0;
}

.gig-row--tickets {
  padding: 0.95rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(222, 172, 94, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.gig-row--tickets .gig-row-links a:first-child {
  font-weight: 700;
  color: #fde68a;
}

.gig-date {
  font-family: var(--font-future);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fde68a;
}

.gig-meta a {
  font-weight: 600;
}

html[data-site-mode="press"] .credibility-quote {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.65);
  color: #3d3a36;
}

html[data-site-mode="press"] .credibility-outlets {
  color: #5c574f;
}

html[data-site-mode="press"] .credibility-quote-attrib {
  color: #6e5420;
}

html[data-site-mode="press"] .about-expand {
  border-color: rgba(26, 24, 22, 0.14);
  background: rgba(255, 252, 247, 0.55);
}

html[data-site-mode="press"] .about-expand-summary {
  color: var(--accent);
}

html[data-site-mode="press"] .live-schedule {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.88);
}

html[data-site-mode="press"] .live-schedule-title {
  color: var(--accent);
}

html[data-site-mode="press"] .gig-date {
  color: var(--accent);
}

html[data-site-mode="press"] .news-feed-meta {
  color: rgba(61, 58, 54, 0.82);
}

html[data-site-mode="press"] .latest-updates-wrap {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

html[data-site-mode="press"] .latest-update {
  border-top-color: rgba(26, 24, 22, 0.1);
}

html[data-site-mode="press"] .latest-update__title a {
  color: #2a2622;
}

html[data-site-mode="press"] .latest-update__deck {
  color: rgba(61, 58, 54, 0.85);
}

html[data-site-mode="press"] .latest-update__badge {
  color: #6e5420;
  border-color: rgba(110, 84, 32, 0.28);
  background: rgba(255, 252, 247, 0.95);
}

html[data-site-mode="press"] .video-energy {
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

html[data-site-mode="press"] .video-energy__kicker {
  color: #6e5420;
}

html[data-site-mode="press"] .video-reel-tile {
  color: #2a2622;
  border-color: rgba(26, 24, 22, 0.12);
  background: rgba(248, 246, 242, 0.98);
}

html[data-site-mode="press"] .video-reel-tile__sub {
  color: rgba(61, 58, 54, 0.78);
}

html[data-site-mode="press"] .timeline-card-date {
  color: rgba(110, 84, 32, 0.9);
}

/* —— Official merch (Rå Ekte Live tee) —— */
.store-merch-wrap {
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(2rem, 5vw, 2.75rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  border-bottom: 1px solid rgba(212, 168, 74, 0.14);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.section-merch {
  background:
    linear-gradient(165deg, rgba(18, 14, 28, 0.98) 0%, rgba(8, 6, 14, 0.99) 55%, rgba(12, 8, 18, 1) 100%);
  border-top-color: rgba(212, 168, 74, 0.18);
}

.merch-lead {
  max-width: 44rem;
}

.merch-feature {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0.85rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(212, 168, 74, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}

@media (min-width: 900px) {
  .merch-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.merch-feature__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
}

.merch-feature__zoom {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  font: inherit;
  color: inherit;
}

.merch-feature__zoom-hint {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 240, 234, 0.92);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 168, 74, 0.28);
  pointer-events: none;
}

.merch-feature__zoom:hover .merch-feature__zoom-hint,
.merch-feature__zoom:focus-visible .merch-feature__zoom-hint {
  border-color: rgba(212, 168, 74, 0.5);
  background: rgba(0, 0, 0, 0.72);
}

.merch-feature__img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 28rem);
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #0a0a0c;
}

.merch-feature__caption {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.merch-feature__thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.merch-thumb {
  flex: 1;
  max-width: 8rem;
  padding: 0.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.merch-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  margin-bottom: 0.35rem;
}

.merch-thumb span {
  display: block;
  text-align: center;
}

.merch-thumb.is-active,
.merch-thumb:hover {
  border-color: rgba(212, 168, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 168, 74, 0.12);
  color: var(--text);
}

.merch-feature__badge {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.merch-feature__price {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
}

.merch-feature__price-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.65rem);
  line-height: 1;
  color: var(--heading-ink);
}

.merch-feature__price-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.merch-feature__ship-note,
.merch-feature__email-note {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.merch-feature__stock {
  margin: 0 0 1rem;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f0e6c8;
  background: rgba(212, 168, 74, 0.14);
  border: 1px solid rgba(212, 168, 74, 0.28);
}

.merch-feature__bullets {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: rgba(244, 240, 234, 0.88);
}

.merch-feature__bullets li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--accent);
  font-weight: 700;
}

.merch-sizes {
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
}

.merch-sizes__legend {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.merch-sizes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.merch-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 2.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.merch-size input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.merch-size:has(input:checked) {
  border-color: rgba(212, 168, 74, 0.55);
  background: rgba(212, 168, 74, 0.14);
  color: #f5ecd6;
}

.merch-sizes__hint {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.merch-sizes__hint.is-ready {
  color: rgba(212, 168, 74, 0.9);
}

.merch-total {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
}

.merch-total__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.merch-total__row dt {
  margin: 0;
  font-weight: 500;
  color: var(--text-muted);
}

.merch-total__row dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.merch-total__row--grand {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
  font-size: 1rem;
}

.merch-total__row--grand dt,
.merch-total__row--grand dd {
  color: var(--heading-ink);
  font-weight: 700;
}

.merch-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 520px) {
  .merch-feature__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .merch-sizes__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .merch-size {
    min-width: 0;
    width: 100%;
  }
}

.merch-order-btn:not(.is-ready) {
  opacity: 0.88;
}

.merch-hashtag {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.store-grid-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-future);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.store-card--merch {
  border-color: rgba(212, 168, 74, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

html[data-site-mode="press"] .section-merch {
  background: linear-gradient(180deg, #ece8e0 0%, #e4e0d8 100%);
}

html[data-site-mode="press"] .merch-feature {
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

html[data-site-mode="press"] .merch-feature__price-main,
html[data-site-mode="press"] .merch-total__row--grand dt,
html[data-site-mode="press"] .merch-total__row--grand dd {
  color: #1f1c18;
}

html[data-site-mode="press"] .merch-feature__bullets {
  color: #3d3a36;
}

html[data-site-mode="press"] .hero.hero--compact .hero__inner {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* —— Artist homepage — professional design system (Figma / editorial) —— */
.body--artist.body--pro {
  /* Layout grid */
  --max: clamp(54rem, 90vw, 72rem);
  --max-wide: min(76rem, 94vw);
  --section-pad-y: clamp(4rem, 10vw, 6.5rem);
  --grid-gap: clamp(1rem, 2.5vw, 1.5rem);

  /* Surfaces */
  --artist-panel: rgba(12, 11, 14, 0.72);
  --artist-panel-border: rgba(255, 255, 255, 0.08);
  --artist-panel-raised: #131116;
  --artist-glow: rgba(201, 169, 98, 0.05);

  /* Brand — red primary, gold prestige detail */
  --pro-gold: var(--color-gold);
  --pro-gold-light: #dcc48a;
  --pro-gold-dim: var(--color-gold-muted);
  --pro-red: var(--color-accent);
  --pro-red-hover: var(--color-accent-hover);
  --pro-ink: var(--color-text);
  --pro-muted: var(--color-text-muted);
  --pro-radius: 12px;
  --pro-radius-lg: 20px;
  --pro-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --pro-shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.28);

  /* Type scale */
  --type-display: clamp(2.75rem, 6.5vw, 4.5rem);
  --type-h2: clamp(1.85rem, 3.5vw, 2.65rem);
  --type-lead: 1.0625rem;
}

/* Calmer canvas — luxury dark, not neon */
.body--artist.body--pro {
  background: #060508;
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(201, 169, 98, 0.07), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 80%, rgba(255, 255, 255, 0.02), transparent 50%);
  --header-h: 4.75rem;
}

.body--artist.body--pro .header-inner,
.body--artist.body--pro .section-inner,
.body--artist.body--pro .credibility-band-inner,
.body--artist.body--pro .quote-strip p,
.body--artist.body--pro .footer-inner {
  max-width: var(--max-wide);
}

/* —— Header —— */
.body--artist.body--pro .site-header {
  height: 4.75rem;
  background: rgba(6, 5, 8, 0.72);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid var(--artist-panel-border);
  box-shadow: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.body--artist.body--pro .site-header.is-scrolled {
  background: rgba(4, 4, 5, 0.96);
  border-bottom-color: rgba(179, 0, 0, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.body--artist.body--pro .logo.wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding-left: 0.85rem;
  border-left: 2px solid var(--pro-red);
  text-decoration: none;
}

.body--artist.body--pro .wordmark__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pro-ink);
  line-height: 1.05;
  white-space: nowrap;
}

.body--artist.body--pro .wordmark__tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pro-gold);
  opacity: 0.88;
  line-height: 1.2;
}

.body--artist.body--pro .logo::after {
  display: none;
}

.body--artist.body--pro .header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.body--artist.body--pro .header-inner {
  gap: 0.75rem;
}

.body--artist.body--pro .site-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.body--artist.body--pro .site-nav__mobile-title {
  display: none;
  margin: 0 0 0.35rem;
  padding: 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pro-gold);
}

.body--artist.body--pro .logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.body--artist.body--pro .logo::after {
  width: 2rem;
  background: var(--pro-gold);
  opacity: 0.7;
}

.body--artist.body--pro .site-nav {
  border-color: var(--artist-panel-border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.body--artist.body--pro .site-nav a:not(.nav-cta) {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pro-muted);
}

.body--artist.body--pro .site-nav a:not(.nav-cta):hover,
.body--artist.body--pro .site-nav a[aria-current="page"] {
  color: var(--pro-ink);
}

.body--artist.body--pro .site-nav .nav-cta {
  background: var(--pro-red);
  color: var(--color-on-accent);
  border: none;
  box-shadow: var(--pro-shadow-soft);
  letter-spacing: 0.1em;
}

.body--artist.body--pro .site-nav .nav-cta:hover {
  background: var(--pro-red-hover);
  color: var(--color-on-accent);
  transform: translateY(-1px);
}

/* —— Buttons (performance red primary) —— */
.body--artist.body--pro .btn-primary,
.body--artist.body--pro .btn--primary {
  background: var(--pro-red);
  background-size: 100% 100%;
  color: var(--color-on-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(179, 0, 0, 0.22);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.body--artist.body--pro .btn-primary:hover,
.body--artist.body--pro .btn--primary:hover {
  background: var(--pro-red-hover);
  color: var(--color-on-accent);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(179, 0, 0, 0.3);
}

.body--artist.body--pro .btn-ghost,
.body--artist.body--pro .btn--secondary {
  border-color: var(--artist-panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pro-ink);
}

.body--artist.body--pro .btn-ghost:hover,
.body--artist.body--pro .btn--secondary:hover {
  border-color: rgba(179, 0, 0, 0.45);
  background: var(--color-accent-soft);
  color: var(--pro-ink);
}

/* —— Sections —— */
.body--artist.body--pro .section {
  padding-block: var(--section-pad-y);
}

.body--artist.body--pro .section-kicker {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pro-gold);
}

.body--artist.body--pro .section-kicker::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-bottom: 0.85rem;
  background: var(--pro-gold);
  opacity: 0.85;
}

.body--artist.body--pro .section-title {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--pro-ink);
  margin-bottom: 0.75rem;
}

.body--artist.body--pro .section-deck,
.body--artist.body--pro .shows-deck,
.body--artist.body--pro .listen-lead {
  font-size: var(--type-lead);
  line-height: 1.65;
  color: var(--pro-muted);
  max-width: 36rem;
}

/* —— Hero — magazine cover —— */
.hero--pro.hero--artist.hero--compact {
  padding: clamp(2rem, 5vw, 3.5rem) var(--space);
  min-height: auto;
}

.hero--pro .hero__layout--pro {
  max-width: var(--max-wide);
  margin-inline: auto;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 960px) {
  .hero--pro .hero__layout--pro {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 38%);
    align-items: stretch;
  }
}

.hero--pro .hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pro-gold);
  margin-bottom: 0.5rem;
}

.hero--pro .hero__tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--pro-muted);
  margin-bottom: 0.75rem;
}

.hero--pro .hero__headline {
  font-family: var(--font-display);
  font-size: var(--type-display);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero--pro .hero__headline-line--accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--pro-red);
}

.hero--pro .hero__momentum {
  font-size: 0.95rem;
  color: var(--pro-muted);
  line-height: 1.55;
  max-width: 28rem;
  margin-bottom: 1.35rem;
}

.hero--pro .hero__inner {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 959px) {
  .hero--pro .hero__inner {
    padding: 1.25rem;
    border: 1px solid var(--artist-panel-border);
    border-radius: var(--pro-radius-lg);
    background: var(--artist-panel);
  }
}

.hero--pro .hero__media {
  border-radius: var(--pro-radius-lg);
  border: 1px solid var(--artist-panel-border);
  box-shadow: var(--pro-shadow);
  background: #0a090c;
}

@media (min-width: 960px) {
  .hero--pro .hero__media {
    order: 2;
    min-height: 28rem;
  }

  .hero--pro .hero__image {
    max-height: none;
    min-height: 100%;
    height: 100%;
    object-position: center 8%;
  }
}

.hero--pro .hero__instant-play {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--pro-radius);
  border: 1px solid var(--artist-panel-border);
  background: rgba(0, 0, 0, 0.35);
}

.hero--pro .hero__instant-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pro-gold);
}

.hero--pro .hero__cta--secondary-row {
  margin-top: 0.75rem;
  gap: 0.5rem 1.25rem;
}

.hero--pro .hero__cta--secondary-row .btn {
  min-height: auto;
  padding: 0.25rem 0;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pro-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero--pro .hero__cta--secondary-row .btn:hover {
  color: var(--pro-gold-light);
  transform: none;
}

.hero--pro .hero__micro {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(156, 152, 147, 0.9);
}

.hero--pro .hero__ticket-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--artist-panel-border);
  gap: 0.5rem 1rem;
}

.hero--pro .hero__ticket-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pro-muted);
  border-bottom: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--artist-panel-border);
  background: rgba(255, 255, 255, 0.02);
}

.hero--pro .hero__ticket-links a:hover {
  color: var(--pro-gold-light);
  border-color: var(--pro-gold-dim);
  background: rgba(201, 169, 98, 0.06);
}

/* —— Shows + tickets —— */
.body--artist.body--pro .section-shows {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.03) 0%, transparent 40%);
}

.body--artist.body--pro .shows-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--artist-panel-border);
}

.body--artist.body--pro .shows-grid {
  gap: var(--grid-gap);
}

@media (min-width: 960px) {
  .body--artist.body--pro .shows-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.body--artist.body--pro .show-card {
  border: 1px solid var(--artist-panel-border);
  border-radius: var(--pro-radius);
  background: var(--artist-panel-raised);
  box-shadow: var(--pro-shadow-soft);
}

.body--artist.body--pro .show-card--featured {
  border-color: var(--pro-gold-dim);
  background: linear-gradient(165deg, #161418 0%, #100f12 100%);
}

.body--artist.body--pro .show-card__day {
  color: var(--pro-gold-light);
}

.body--artist.body--pro .show-card__date {
  border-color: var(--artist-panel-border);
  background: rgba(0, 0, 0, 0.25);
}

.body--artist.body--pro .show-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.body--artist.body--pro .ticket-hub {
  margin-top: 1.75rem;
  gap: var(--grid-gap);
}

.body--artist.body--pro .ticket-hub__link {
  border-radius: var(--pro-radius);
  border-color: var(--artist-panel-border);
  background: var(--artist-panel-raised);
}

.body--artist.body--pro .ticket-hub__link--primary {
  border-color: var(--pro-gold-dim);
}

.body--artist.body--pro .ticket-hub__action {
  color: var(--pro-gold);
}

/* —— Credibility + quote —— */
.body--artist.body--pro .credibility-band {
  padding: 2rem var(--space);
  border-color: var(--artist-panel-border);
  background: rgba(0, 0, 0, 0.35);
}

.body--artist.body--pro .credibility-band-label {
  color: var(--pro-gold);
  text-shadow: none;
  letter-spacing: 0.2em;
}

.body--artist.body--pro .collab-pills li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pro-ink);
  background: transparent;
  border: 1px solid var(--artist-panel-border);
  box-shadow: none;
}

.body--artist.body--pro .credibility-press {
  color: var(--pro-muted);
  letter-spacing: 0.14em;
}

.body--artist.body--pro .quote-strip {
  padding: clamp(3rem, 8vw, 4.5rem) var(--space);
  border-bottom: 1px solid var(--artist-panel-border);
  background: transparent;
}

.body--artist.body--pro .quote-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--pro-ink);
  text-align: center;
}

/* —— Cards (news, store, partners) —— */
.body--artist.body--pro .news-grid {
  gap: var(--grid-gap);
}

@media (min-width: 720px) {
  .body--artist.body--pro .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.body--artist.body--pro .news-card {
  border: 1px solid var(--artist-panel-border);
  border-radius: var(--pro-radius);
  background: var(--artist-panel-raised);
  box-shadow: var(--pro-shadow-soft);
}

.body--artist.body--pro .news-card-kicker {
  color: var(--pro-gold);
  letter-spacing: 0.14em;
}

.body--artist.body--pro .news-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.body--artist.body--pro .news-card-text {
  color: var(--pro-muted);
  line-height: 1.6;
}

/* —— About, music, gallery —— */
.body--artist.body--pro .about-portrait {
  border-radius: var(--pro-radius-lg);
  border-color: var(--artist-panel-border);
  box-shadow: var(--pro-shadow);
}

.body--artist.body--pro .about-highlights {
  border-radius: var(--pro-radius);
  border-color: var(--artist-panel-border);
  background: var(--artist-panel);
}

.body--artist.body--pro .about-expand-summary {
  font-weight: 600;
  color: var(--pro-gold-light);
}

.body--artist.body--pro .section-album {
  background: transparent;
}

.body--artist.body--pro .tracklist {
  border-radius: var(--pro-radius);
  border-color: var(--artist-panel-border);
  background: var(--artist-panel-raised);
}

.body--artist.body--pro .tracklist li:hover {
  background: rgba(201, 169, 98, 0.04);
}

.body--artist.body--pro .visual-card {
  border-radius: var(--pro-radius);
  border: 1px solid var(--artist-panel-border);
}

.body--artist.body--pro .live-intro,
.body--artist.body--pro .merch-feature,
.body--artist.body--pro .contact-form,
.body--artist.body--pro .contact-aside {
  border-radius: var(--pro-radius-lg);
  border-color: var(--artist-panel-border);
  background: var(--artist-panel-raised);
  box-shadow: var(--pro-shadow-soft);
}

.body--artist.body--pro .merch-feature {
  box-shadow: var(--pro-shadow);
}

/* —— Section rhythm —— */
.body--artist.body--pro #about,
.body--artist.body--pro #news,
.body--artist.body--pro #gallery,
.body--artist.body--pro #live,
.body--artist.body--pro #partners {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
}

/* —— Footer + floating CTA —— */
.body--artist.body--pro .site-footer {
  border-top: 1px solid var(--artist-panel-border);
  background: #040306;
}

.body--artist.body--pro .site-footer::before {
  opacity: 0;
}

.body--artist.body--pro .footer-meta a:hover {
  color: var(--color-accent-hover);
}

.body--artist.body--pro .floating-book-btn {
  background: var(--pro-red);
  color: var(--color-on-accent);
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: var(--pro-shadow-soft);
}

.body--artist.body--pro .floating-book-btn:hover {
  background: var(--pro-red-hover);
}

/* Press mode */
html[data-site-mode="press"] .body--artist.body--pro {
  background: #f5f2ec;
  background-image: none;
}

html[data-site-mode="press"] .body--artist.body--pro .site-header {
  background: rgba(245, 242, 236, 0.9);
  border-bottom-color: rgba(26, 24, 22, 0.1);
}

html[data-site-mode="press"] .body--artist.body--pro .section-title,
html[data-site-mode="press"] .body--artist.body--pro .hero__headline {
  color: #1a1816;
}

html[data-site-mode="press"] .body--artist.body--pro .hero__headline-line--accent {
  color: #6b4e1f;
}

html[data-site-mode="press"] .body--artist.body--pro .news-card,
html[data-site-mode="press"] .body--artist.body--pro .show-card,
html[data-site-mode="press"] .body--artist.body--pro .ticket-hub__link {
  background: #fffdf8;
  border-color: rgba(26, 24, 22, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

html[data-site-mode="press"] .hero--pro .hero__inner {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(26, 24, 22, 0.1);
}

/* —— Artist site structure — DOM order is visual order (Phase: content hierarchy pass) —— */
.body--artist.body--pro .page-flow {
  display: block;
}

/* Full-bleed cover hero */
.hero--pro.hero--artist.hero--compact {
  padding: 0;
  margin-bottom: 0;
}

.hero--pro .hero__layout--pro {
  max-width: none;
  margin: 0;
  min-height: min(92vh, 880px);
}

@media (min-width: 900px) {
  .hero--pro .hero__layout--pro {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(88vh, 920px);
  }

  .hero--pro .hero__content {
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5rem);
    background: #060508;
  }

  .hero--pro .hero__inner {
    max-width: 32rem;
  }

  .hero--pro .hero__media {
    order: 2;
    min-height: 100%;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--artist-panel-border);
  }

  .hero--pro .hero__image {
    min-height: 100%;
    max-height: none;
    height: 100%;
    object-position: center 10%;
  }
}

@media (max-width: 899px) {
  .hero--pro .hero__media {
    order: -1;
    max-height: 55vw;
    min-height: 280px;
  }

  .hero--pro .hero__content {
    padding: 1.5rem var(--space) 2.5rem;
  }
}

/* Tour — list rows (Bandsintown-style) */
.body--artist.body--pro .section-tour {
  padding-top: clamp(3rem, 7vw, 4.5rem);
}

.body--artist.body--pro .shows-grid--tour {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--artist-panel-border);
  border-radius: var(--pro-radius-lg);
  overflow: hidden;
  background: var(--artist-panel-raised);
}

@media (min-width: 960px) {
  .body--artist.body--pro .shows-grid--tour {
    grid-template-columns: unset;
  }
}

.body--artist.body--pro .shows-grid--tour .show-card {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 0 1.25rem;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--artist-panel-border);
  background: transparent;
  box-shadow: none;
}

.body--artist.body--pro .shows-grid--tour .show-card:last-child {
  border-bottom: none;
}

.body--artist.body--pro .shows-grid--tour .show-card:hover {
  background: rgba(201, 169, 98, 0.05);
  transform: none;
}

.body--artist.body--pro .shows-grid--tour .show-card--venue {
  grid-template-columns: 1fr auto;
  border-style: none;
}

.body--artist.body--pro .shows-grid--tour .show-card--venue .show-card__body--full {
  grid-column: 1;
}

.body--artist.body--pro .shows-grid--tour .show-card__deck {
  display: none;
}

.body--artist.body--pro .shows-grid--tour .show-card__cta {
  grid-column: auto;
  grid-row: auto;
  margin: 0;
  white-space: nowrap;
}

.body--artist.body--pro .shows-grid--tour .show-card__date {
  grid-row: 1 / span 2;
  align-self: center;
}

.body--artist.body--pro .shows-head {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.body--artist.body--pro .shows-social {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--pro-muted);
}

.body--artist.body--pro .shows-social a {
  color: var(--pro-gold-light);
  font-weight: 600;
}

/* Music — featured player first */
.body--artist.body--pro .section-music {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.04) 0%, transparent 45%);
}

.body--artist.body--pro #listen .section-split {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.body--artist.body--pro #listen .music-embeds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.body--artist.body--pro #listen .music-embed-panel:first-child {
  order: -1;
}

.body--artist.body--pro #listen .music-embed-panel:first-child .spotify-embed-wrap {
  border-radius: var(--pro-radius-lg);
  overflow: hidden;
  box-shadow: var(--pro-shadow);
}

.body--artist.body--pro #listen .music-embed-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--pro-ink);
  margin-bottom: 0.75rem;
}

.body--artist.body--pro #listen .album-intro {
  text-align: left;
  max-width: 36rem;
}

.body--artist.body--pro #listen .listen-now-row {
  margin-top: 1.25rem;
}

.body--artist.body--pro #listen .album-art-wrap {
  display: none;
}

/* Video — cinematic single feature */
.body--artist.body--pro #videos .music-video-grid {
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .body--artist.body--pro #videos .music-video-grid {
    grid-template-columns: 1fr;
  }
}

.body--artist.body--pro #videos .music-video-card:first-child {
  border-radius: var(--pro-radius-lg);
  overflow: hidden;
  box-shadow: var(--pro-shadow);
}

/* About — scannable */
.body--artist.body--pro #about .section-deck {
  font-size: 1.125rem;
}

/* Gallery — tighter grid */
.body--artist.body--pro #gallery .gallery-lead-wrap {
  max-width: 22rem;
}

.body--artist.body--pro #gallery .visual-grid--gallery-tiles {
  gap: 0.65rem;
}

/* Store — merch hero */
.body--artist.body--pro #store .listen-lead {
  max-width: 42rem;
}

.body--artist.body--pro #store .store-cats {
  display: none;
}

.body--artist.body--pro #store #store-grid {
  margin-top: 2rem;
}

/* Routing section — no duplicate gig list */
.body--artist.body--pro .section-routing .gig-list,
.body--artist.body--pro .section-routing .live-schedule-title,
.body--artist.body--pro .section-routing .live-schedule-lead {
  display: none;
}

.body--artist.body--pro .section-routing .band-ensemble {
  display: none;
}

.body--artist.body--pro .section-routing .live-past-highlights {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--pro-muted);
}

.body--artist.body--pro .section-routing .live-intro > p {
  max-width: 40rem;
  font-size: var(--type-lead);
  line-height: 1.65;
}

/* News — secondary, quieter */
.body--artist.body--pro #news {
  opacity: 1;
}

.body--artist.body--pro #news .timeline-archive-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--artist-panel-border);
}

/* Partners — compact footer band */
.body--artist.body--pro #partners {
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}

.body--artist.body--pro #partners .listen-lead {
  display: none;
}

.body--artist.body--pro #partners .news-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Contact — clear finale */
.body--artist.body--pro #contact {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.body--artist.body--pro #contact .listen-lead {
  display: none;
}

.body--artist.body--pro #contact .contact-elsewhere {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--artist-panel-border);
}

/* Quote — pull quote between tour and music */
.body--artist.body--pro .quote-strip {
  padding: clamp(2rem, 5vw, 3rem) var(--space);
  border-top: 1px solid var(--artist-panel-border);
  border-bottom: 1px solid var(--artist-panel-border);
}

.body--artist.body--pro .quote-strip p {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  max-width: 36rem;
}

/* Utility classes */
.section-head--tight { margin-bottom: 1.5rem; }
.section-head--tight .section-title { margin-bottom: 0; }
.release-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 720px) { .release-row { grid-template-columns: 1fr; } }
.release-tile {
  display: flex; flex-direction: column; gap: 0.45rem; padding: 0.85rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); text-decoration: none; color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.release-tile:hover { border-color: rgba(212, 168, 74, 0.45); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28); }
.release-tile img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--radius) - 2px); }
.release-tile__title { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.25; color: var(--heading-ink); }
.release-tile__year { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.gallery-grid-artist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
@media (min-width: 768px) { .gallery-grid-artist { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gallery-grid-artist .visual-card { aspect-ratio: 4 / 5; }
.show-card--venue { border-style: dashed; border-color: rgba(212, 168, 74, 0.28); }
.show-card--venue .show-card__body--full { grid-column: 1 / -1; }
@media (min-width: 520px) { .show-card--venue { grid-template-columns: 1fr auto; } }

/* ===== Premium refresh: hero CTAs, live feature, booking, EPK, shop, i18n ===== */

.lang-toggle {
  display: inline-flex;
  gap: 0.15rem;
  margin-right: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.15rem;
  background: rgba(0, 0, 0, 0.35);
}

.lang-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 2rem;
}

.lang-toggle__btn.is-active,
.lang-toggle__btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-toggle__btn:focus-visible,
.site-nav a:focus-visible,
.btn:focus-visible,
.form-input:focus-visible,
.nav-toggle:focus-visible,
.site-mode-toggle:focus-visible {
  outline: 2px solid rgba(212, 168, 74, 0.85);
  outline-offset: 2px;
}

.hero__cta--triple {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.hero__cta--triple .btn--hero {
  min-height: 3rem;
  padding-inline: 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hero__live-dates-link {
  display: inline-block;
  margin-right: 0.75rem;
  color: rgba(212, 168, 74, 0.95);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero__live-dates-link:hover {
  text-decoration: underline;
}

.section-live-feature {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.live-feature {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .live-feature {
    grid-template-columns: 1.55fr 1fr;
    align-items: start;
  }
}

.live-feature__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.live-feature__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.live-feature__cap {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.live-feature__side {
  display: grid;
  gap: 0.85rem;
}

.yt-lazy {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.yt-lazy iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-lazy__btn {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  background: #000;
}

.yt-lazy__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.yt-lazy__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  margin: -1.7rem 0 0 -1.7rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.yt-lazy__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent #fff;
}

.music-lead {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 800px) {
  .music-lead {
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 2rem;
  }
}

.music-lead__art img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-lead__kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.music-lead__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.music-lead__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.catalogue-details {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}

.catalogue-details__summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  list-style: none;
}

.catalogue-details__summary::-webkit-details-marker {
  display: none;
}

.catalogue-details__body {
  margin-top: 1rem;
}

.catalogue-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .catalogue-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.verify-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shows-subhead {
  margin: 1.5rem 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.shows-empty {
  margin-top: 0.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(212, 168, 74, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.shows-empty__text {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.shows-past {
  margin-top: 2rem;
  opacity: 0.92;
}

.show-card--past {
  opacity: 0.78;
}

.show-card--cancelled {
  opacity: 0.7;
}

.show-card__badge {
  align-self: center;
  justify-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 120, 120, 0.45);
  color: #ffb4b4;
}

.section-booking {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 168, 74, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.booking-inner {
  max-width: 48rem;
}

.booking-sub {
  margin: -0.35rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: rgba(255, 255, 255, 0.82);
}

.booking-deck {
  max-width: 40rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.booking-actions .btn {
  min-height: 3rem;
}

.about-short-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .about-short-layout {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.bio-homepage p {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 40rem;
}

.epk-photo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.epk-missing {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.epk-missing__label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-simple__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .shop-simple__row {
    grid-template-columns: minmax(200px, 340px) 1fr;
    gap: 2.5rem;
  }
}

.shop-simple__art img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-simple__copy h3,
.shop-simple__copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
}

.shop-simple__hint {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section-fan {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.fan-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.section-title--sm {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.fan-text {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

.section-partners {
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.partners-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .partners-row {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-card--compact {
  padding: 1rem 0;
  border: 0;
  background: transparent;
}

.partner-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.partner-card__text {
  margin: 0 0 0.45rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-form-status {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.contact-form-status--loading {
  color: var(--text-muted);
}

.contact-form-status--success {
  color: #9ddea8;
}

.contact-form-status--error {
  color: #ffb4b4;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  position: relative;
}

@media (max-width: 430px) {
  .hero__cta--triple {
    flex-direction: column;
  }

  .hero__cta--triple .btn--hero,
  .booking-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .header-inner {
    gap: 0.35rem;
  }

  .lang-toggle {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yt-lazy__play,
  .release-tile,
  .hero__cta--triple .btn--hero {
    transition: none;
  }

  .live-feature__video {
    /* Keep controls; avoid autoplay elsewhere */
  }
}

/* ===== Featured special show (Inni Granskauen / Wild Willy) ===== */
.featured-show {
  --fs-red: #b30000;
  --fs-red-soft: rgba(179, 0, 0, 0.85);
  --fs-charcoal: #121010;
  display: grid;
  gap: 1.5rem;
  margin: 0 0 2.25rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(179, 0, 0, 0.18), transparent 55%),
    linear-gradient(165deg, #0a0707 0%, var(--fs-charcoal) 45%, #080606 100%);
  border: 1px solid rgba(179, 0, 0, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .featured-show {
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.featured-show__media {
  margin: 0;
}

.featured-show__poster-link {
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  overflow: hidden;
}

.featured-show__poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 681 / 1024;
  object-fit: contain;
  object-position: center top;
  background: #000;
}

.featured-show__zoom-hint {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-show__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fs-red);
}

.featured-show__headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.02em;
}

.featured-show__feat {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72em;
  color: var(--fs-red);
  letter-spacing: 0.04em;
}

.featured-show__when {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.featured-show__date {
  color: var(--fs-red);
  font-weight: 700;
}

.featured-show__sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.featured-show__guest {
  margin: 0 0 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(179, 0, 0, 0.35);
  border-bottom: 1px solid rgba(179, 0, 0, 0.35);
}

.featured-show__guest-label {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fs-red);
  font-weight: 700;
}

.featured-show__guest-name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.featured-show__bandmate {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
}

.featured-show__music {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.featured-show__hook {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.featured-show__quote {
  margin: 0 0 1.25rem;
  padding: 0 0 0 0.95rem;
  border-left: 3px solid var(--fs-red);
  max-width: 38rem;
}

.featured-show__quote p {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.featured-show__quote footer {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.featured-show__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.featured-show__cta {
  min-height: 3rem;
}

.show-card--special {
  border-color: rgba(179, 0, 0, 0.4);
}

.show-card__guest {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 180, 180, 0.9);
}

/* Gig detail page */
.page-gig {
  background: #080606;
}

.gig-detail {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.gig-detail__layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .gig-detail__layout {
    grid-template-columns: minmax(240px, 380px) 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.gig-detail__poster-wrap {
  margin: 0;
}

.gig-detail__poster {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(179, 0, 0, 0.35);
  background: #000;
}

.gig-detail__poster-cap {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gig-detail__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  line-height: 1.08;
  color: #fff;
}

.gig-detail__when {
  margin-bottom: 1.25rem;
}

.gig-detail__tagline {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.gig-detail__prose {
  max-width: 40rem;
}

.gig-detail__raw {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.gig-detail__subhead {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b30000;
}

.gig-detail__lineup {
  margin: 1.75rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(179, 0, 0, 0.3);
}

.gig-detail__roles {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.gig-detail__roles li {
  font-size: 1.02rem;
}

.gig-detail__badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 0, 0, 0.55);
  color: #ffb4b4;
  vertical-align: middle;
}

.gig-detail__focus {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gig-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.gig-detail__ticket-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 430px) {
  .featured-show {
    padding: 0.85rem;
  }

  .featured-show__actions .btn,
  .gig-detail__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Recovery polish: cinematic hero + featured prominence ===== */
.hero--cinematic {
  position: relative;
  isolation: isolate;
}

.hero--cinematic .hero__layout--pro {
  min-height: min(88vh, 920px);
}

.hero--cinematic .hero__media {
  position: relative;
}

.hero--cinematic .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 2, 6, 0.82) 0%, rgba(3, 2, 6, 0.35) 42%, transparent 70%),
    linear-gradient(0deg, rgba(3, 2, 6, 0.55) 0%, transparent 38%);
}

.hero--cinematic .hero__headline {
  letter-spacing: 0.02em;
}

.hero--cinematic .hero__momentum {
  max-width: 28ch;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(245, 240, 232, 0.88);
}

.section-featured-show {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(179, 0, 0, 0.12), transparent 50%),
    linear-gradient(180deg, #050303 0%, #0a0707 100%);
}

.section-featured-show .featured-show {
  margin-bottom: 0;
}

.shop-simple--compact {
  max-width: 720px;
}

.shop-simple--compact .shop-simple__row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 640px) {
  .shop-simple--compact .shop-simple__row {
    grid-template-columns: 180px 1fr;
  }
}

.shop-simple--compact .shop-simple__art img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-partners {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
}

.partner-card--compact {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.partner-card--compact .partner-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-card--compact a {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.65);
}

.section-credibility-press .collab-pills {
  margin-bottom: 1rem;
}

.credibility-press {
  margin: 0;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
}

.credibility-press a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.epk-live-video {
  margin: 0 0 1rem;
  max-width: 720px;
}

.epk-missing__note {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
}

.epk-missing .btn {
  margin: 0 0.5rem 0.5rem 0;
}

@media (max-width: 430px) {
  .hero--cinematic .hero__layout--pro {
    min-height: auto;
  }

  .hero--cinematic .hero__cta--triple {
    display: grid;
    gap: 0.65rem;
  }

  .hero--cinematic .hero__cta--triple .btn {
    width: 100%;
    justify-content: center;
  }

  .listen-now-row {
    display: grid;
    gap: 0.55rem;
  }

  .listen-now-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--cinematic .hero__media::after,
  .section-featured-show,
  .featured-show {
    transition: none !important;
    animation: none !important;
  }
}

.music-discography--compact {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .music-discography--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shows-routing-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted, rgba(230, 220, 255, 0.72));
}

.shows-routing-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Phase 2 — dynamic featured event (no poster) */
.featured-show--no-poster {
  grid-template-columns: 1fr;
}

.featured-show__body {
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.featured-show__tagline {
  margin: 0.75rem 0 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pro-gold, var(--accent));
}

.featured-show__time {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.92em;
  letter-spacing: 0.08em;
}

.featured-show-fallback {
  margin: 0;
  color: var(--text-muted, var(--pro-muted));
}

@media (min-width: 1100px) {
  .body--artist.body--pro .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }

  .body--artist.body--pro .header-spacer {
    display: none;
  }

  .body--artist.body--pro .header-actions {
    order: 3;
  }

  .body--artist.body--pro .site-nav {
    order: 2;
    justify-self: end;
    margin-right: 0.35rem;
  }
}

/* ==================================================
   PHASE 3 — GLOBAL ARTIST DESIGN SYSTEM (foundation)
   Shared layout, typography utilities, surfaces, motion.
   Homepage section architecture unchanged until Phase 4.
   ================================================== */

/* GLOBAL BASE — subtle site grain (very low opacity) */
.body--artist.body--pro::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

@media (prefers-reduced-motion: reduce) {
  .body--artist.body--pro::before {
    display: none;
  }
}

/* LAYOUT — site containers */
.site-container,
.section-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space);
}

.site-container--wide,
.body--artist.body--pro .section-inner,
.body--artist.body--pro .header-inner,
.body--artist.body--pro .footer-inner {
  max-width: var(--container-wide);
}

.site-container--narrow {
  max-width: var(--container-narrow);
}

/* SECTION SYSTEM — standardized rhythm */
.section {
  padding-block: var(--section-pad-y);
}

.section--tight {
  padding-block: var(--section-pad-y-tight);
}

.section--large {
  padding-block: var(--section-pad-y-large);
}

.section-head,
.section-header {
  margin-bottom: var(--space-lg);
}

.section-eyebrow,
.section-kicker {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-label);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-intro,
.section-deck {
  max-width: 38rem;
  font-size: var(--type-body-lg);
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* TYPOGRAPHY UTILITIES */
.display-xl {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  line-height: 1;
  letter-spacing: -0.02em;
}

.type-h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  line-height: 1.08;
}

.type-h2 {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  line-height: 1.1;
}

.type-h3 {
  font-family: var(--font-sans);
  font-size: var(--type-h3);
  line-height: 1.25;
  font-weight: 700;
}

.type-eyebrow {
  font-family: var(--font-label);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.type-body-lg {
  font-size: var(--type-body-lg);
  line-height: 1.65;
}

.type-body {
  font-size: var(--type-body);
  line-height: 1.68;
}

.type-small {
  font-size: var(--type-small);
  line-height: 1.55;
}

.type-caption {
  font-size: var(--type-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ARTIST WORDMARK — shared treatment */
.wordmark {
  text-decoration: none;
}

.wordmark__name {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.wordmark__tagline {
  font-family: var(--font-label);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* CARDS / SURFACES — restrained foundation */
.surface-card,
.card-base {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.body--artist.body--pro .show-card,
.body--artist.body--pro .news-card,
.body--artist.body--pro .music-card,
.body--artist.body--pro .store-card {
  border-radius: var(--radius-md);
  border-color: var(--color-border);
  background: var(--color-bg-elevated);
  box-shadow: none;
}

.body--artist.body--pro .show-card--featured {
  border-color: rgba(179, 0, 0, 0.35);
}

/* IMAGE TREATMENTS */
.img-editorial,
.img-performance,
.img-poster {
  display: block;
  width: 100%;
  height: auto;
}

.img-editorial {
  border-radius: 0;
  object-fit: cover;
}

.img-performance {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.img-poster {
  border-radius: 0;
  border: 1px solid rgba(179, 0, 0, 0.28);
  background: #000;
}

.img-artwork {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* LINKS — nav, inline, social */
.link-inline {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color var(--motion-fast) var(--ease-out);
}

.link-inline:hover {
  color: var(--color-accent-hover);
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-text);
}

/* FORMS — dark premium fields */
.body--artist.body--pro .form-label {
  color: var(--color-text-muted);
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.body--artist.body--pro .form-input,
.body--artist.body--pro .form-textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition:
    border-color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.body--artist.body--pro .form-input:focus,
.body--artist.body--pro .form-textarea:focus {
  border-color: rgba(179, 0, 0, 0.55);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.body--artist.body--pro .contact-form {
  border-radius: var(--radius-lg);
  border-color: var(--color-border);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
}

/* FOOTER — professional artist foundation */
.body--artist.body--pro .site-footer {
  padding-block: 2.75rem 2.25rem;
}

.body--artist.body--pro .footer-copy {
  font-size: var(--type-small);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.body--artist.body--pro .footer-meta {
  margin-top: 0.65rem;
  font-size: var(--type-small);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.body--artist.body--pro .footer-meta a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

/* MOBILE NAV — full-screen drawer foundation */
@media (max-width: 768px) {
  .body--artist.body--pro .site-nav a:not(.nav-cta) {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 0.85rem 0.75rem;
  }

  .body--artist.body--pro .site-nav .nav-cta {
    margin-top: 0.75rem;
    padding-block: 0.95rem;
    font-size: 0.82rem;
  }
}

/* SECONDARY PAGES — EPK, Shop, Gig detail */
.page-epk.body--artist.body--pro,
.page-press.body--artist.body--pro,
.page-shop.body--artist.body--pro,
.page-gig.body--artist.body--pro {
  background: var(--color-bg);
}

.page-epk.body--artist.body--pro main,
.page-press.body--artist.body--pro main,
.page-shop.body--artist.body--pro main,
.page-gig.body--artist.body--pro main {
  padding-top: var(--space-lg);
}

.page-press .press-archive-section + .press-archive-section {
  margin-top: 2.5rem;
}

.page-press #press-trail {
  margin-top: 2.5rem;
}

.page-press .press-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.5rem;
}

.page-gig .gig-detail__subhead {
  color: var(--color-accent);
}

.page-gig .gig-detail__poster,
.page-gig .gig-detail__poster-wrap img {
  border-radius: 0;
  border-color: rgba(179, 0, 0, 0.35);
}

.page-shop .shop-simple,
.page-epk .epk-section {
  border-color: var(--color-border);
}

/* MOTION — restrained global defaults */
.reveal {
  transition: transform var(--motion-slow) var(--ease-out);
}

a,
.btn,
.nav-link,
.site-nav a {
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--ease-out);
}

@media (hover: hover) {
  .body--artist.body--pro .hero__image,
  .body--artist.body--pro .music-card-cover,
  .body--artist.body--pro .news-card__media img {
    transition: transform var(--motion-base) var(--ease-out);
  }

  .body--artist.body--pro .news-card:hover .news-card__media img,
  .body--artist.body--pro .music-card:hover .music-card-cover {
    transform: scale(1.02);
  }
}

/* LEGACY — neutralize remaining neon dominance on artist pages */
.body--artist.body--pro .quote-strip p,
.body--artist.body--pro .hero__inner {
  text-shadow: none;
  box-shadow: none;
}

.body--artist.body--pro .site-nav {
  border-radius: var(--radius-sm);
}

/* NOTE — Homepage section order follows DOM (content hierarchy pass, 2026). */

/* LEGACY — retained temporarily below this line in older stylesheet sections */

/* ==================================================
   SOCIAL + STREAMING + EDITORIAL NEWS (homepage)
   ================================================== */

.video-section-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.section-social {
  padding-block: var(--section-pad-y-tight);
}

.social-section-deck,
.news-section-deck {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.social-follow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 40rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
}

.social-follow-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.social-follow-item:last-child {
  border-bottom: none;
}

.social-follow-platform {
  font-size: var(--type-caption);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.social-follow-item a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.social-follow-item a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.social-follow-note {
  grid-column: 2;
  font-size: var(--type-small);
  color: var(--color-text-muted);
}

.footer-social a {
  white-space: nowrap;
}

.contact-aside-note {
  margin: 1.25rem 0 0;
  font-size: var(--type-small);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Homepage news — latest 3, editorial list */
.news-grid--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 46rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
}

.news-grid--editorial .news-item--editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem 1rem;
  padding: 1.15rem 1.25rem;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-grid--editorial .news-item--editorial:last-child {
  border-bottom: none;
}

@media (min-width: 720px) {
  .news-grid--editorial .news-item--editorial:has(.timeline-card-media) {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
  }

  .news-grid--editorial .timeline-card-media {
    grid-row: 1 / span 4;
    margin: 0;
  }

  .news-grid--editorial .timeline-card-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: 1px solid var(--color-border);
  }
}

.news-grid--editorial .news-card-kicker,
.news-grid--editorial .timeline-card-date {
  margin: 0;
  font-size: var(--type-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.news-grid--editorial .news-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.2;
}

.news-grid--editorial .news-card-text {
  margin: 0;
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.news-grid--editorial .news-card-links {
  margin: 0.35rem 0 0;
  font-size: var(--type-small);
}

.news-grid--editorial .news-card-links a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.news-grid--editorial .news-card-links a:hover {
  color: var(--color-accent-hover);
}

.press-materials-note {
  margin: 0.75rem 0 0;
  font-size: var(--type-small);
  color: var(--color-text-muted);
}

.press-materials-note a {
  color: var(--color-text);
  font-weight: 600;
}

.press-outlets-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--type-caption);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.link-plain {
  color: inherit;
}

.epk-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85em;
  color: var(--color-text-muted);
}

.news-grid--editorial .link-plain {
  color: var(--color-text-muted);
}

/* ==================================================
   HOMEPAGE CONTENT HIERARCHY PASS (2026)
   ================================================== */

.hero--pro .hero__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero--pro .hero__headline {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.hero--pro .hero__headline-line {
  display: block;
}

.hero__next-show {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__next-show a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(179, 0, 0, 0.35);
}

.hero__next-show a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.section-trio {
  padding-block: var(--section-pad-y-tight);
  border-block: 1px solid rgba(26, 24, 22, 0.08);
}

.trio-feature-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .trio-feature-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
}

.trio-feature__media {
  margin: 0;
  overflow: hidden;
}

.trio-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(15%);
}

.trio-feature__headline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.trio-feature__name {
  display: block;
}

.trio-feature__feat {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82em;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.trio-feature__intro {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.trio-feature__body {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.trio-feature__lineup {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
}

.trio-feature__lineup li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
  font-size: 0.95rem;
}

.trio-feature__tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: var(--color-accent);
}

.music-discography-heading {
  margin: 2rem 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.press-combined {
  max-width: 42rem;
}

.credibility-groups {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.credibility-group__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.credibility-group__items {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.press-history-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
}

.press-history-heading {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.press-history-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.press-history-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.press-history-period {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.press-history-outlet {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.press-history-body {
  grid-column: 2;
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.section-gallery--compact {
  padding-block: var(--section-pad-y-tight);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.gallery-strip__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.03);
}

.section-partners--compact {
  padding-block: 1.5rem 2rem;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
}

.section-partners--compact .partners-row {
  gap: 1.5rem;
}

.bio-homepage--short {
  max-width: 36rem;
}

.bio-homepage--short p:last-child {
  margin-bottom: 0;
}
