/* ============================================
   S&S ELEV8 ENTERTAINMENT
   styles.css — shared stylesheet
   ============================================ */

/* ---- 1. Design tokens ---- */
:root {
  --bg:           #0a0a0a;
  --bg-soft:      #111111;
  --bg-elev:     #161616;
  --bg-card:      #131313;

  --gold:         #c9a961;
  --gold-bright:  #e6c878;
  --gold-deep:    #8a7544;
  --emerald:      #1a8a63;
  --emerald-soft: rgba(26, 138, 99, 0.18);

  --cream:        #f5f0e8;
  --muted:        #8a8580;
  --muted-dim:    #5a554f;

  --line:         rgba(245, 240, 232, 0.08);
  --line-strong:  rgba(201, 169, 97, 0.28);
  --line-gold:    rgba(201, 169, 97, 0.55);

  --f-display:    "Big Shoulders Display", "Impact", "Arial Narrow", sans-serif;
  --f-serif:      "Cormorant Garamond", "Georgia", serif;
  --f-body:       "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:       "JetBrains Mono", "SF Mono", Menlo, monospace;

  --max-w:        1320px;
  --pad-x:        clamp(1.25rem, 4vw, 3rem);
  --section-y:    clamp(4rem, 10vw, 9rem);

  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- 2. Base reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* ---- 3. Bilingual visibility ---- */
html[data-lang="en"] [data-show="nl"] { display: none !important; }
html[data-lang="nl"] [data-show="en"] { display: none !important; }

/* ---- 4. Custom cursor ---- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.cursor-ring.is-hover {
  width: 60px; height: 60px;
  border-color: var(--gold-bright);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label { cursor: none; }
}

/* ---- 5. Layout primitives ---- */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

/* ---- 6. Typography ---- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--cream);
}
.headline .line { display: block; }
.headline em,
.headline .accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  font-size: 1.05em;
  line-height: 0.95;
  /* background-clip:text paints only inside the box, and this line-height is
     shorter than the italic's descenders, so g/j got shaved off. Grow the paint
     box and pull the same amount back off the layout. */
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.headline em.block,
.headline .accent.block { display: block; }

h2.headline-md {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}
h2.headline-md em,
h2.headline-md .accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
h2.headline-md em.block { display: block; }

p.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--cream);
  max-width: 56ch;
}
p.muted { color: var(--muted); }

.italic-serif {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
}

/* ---- 7. Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav-logo img { height: 40px; }
}
.nav-logo-text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text .sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  list-style: none;
}
.nav-menu a {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  position: relative;
  padding: 0.5rem 0;
  font-weight: 400;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.is-active { color: var(--gold); }
.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-self: end;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.lang-toggle button {
  padding: 0.25rem 0.3rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  text-transform: uppercase;
  font-weight: 500;
}
.lang-toggle button:hover { color: var(--cream); }
.lang-toggle button.is-active { color: var(--gold); }
.lang-toggle .sep { color: var(--muted-dim); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  background: rgba(201, 169, 97, 0.04);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold .arr { transition: transform 0.3s var(--ease); display: inline-block; }
.btn-gold:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-bottom: 1px solid var(--muted-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 940px) {
  /* backdrop-filter creates a containing block for position:fixed children —
     drop it on mobile so the drawer can anchor to the viewport */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.95);
  }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; justify-self: end; }

  body.nav-open .nav-menu,
  body.nav-open .nav-actions {
    display: flex;
    position: fixed;
    right: 0;
    width: min(380px, 85vw);
    background: var(--bg-soft);
    z-index: 99;
    border-left: 1px solid var(--line);
  }
  body.nav-open .nav-menu {
    top: 0;
    bottom: auto;
    height: 100vh;
    padding: 6rem 2rem 11rem;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }
  body.nav-open .nav-menu a {
    font-size: 1.5rem;
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  body.nav-open .nav-actions {
    top: auto;
    bottom: 0;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  body.nav-open .nav-actions .btn-gold { justify-content: center; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
}

/* ---- 8. Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: clamp(7rem, 16vh, 11rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero .eyebrow { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.hero .headline { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.hero .lead { margin-bottom: clamp(2rem, 4vw, 3rem); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 1100px;
  max-height: 1100px;
  background: radial-gradient(circle, rgba(201,169,97,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero with banner image background (home page).
   Image keeps its native 2.4:1 aspect — fills width, takes ~40% of viewport height.
   A dark gradient fades the banner into the page so the headline below sits on solid dark. */
.hero.has-banner {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.75) 30%,
      rgba(10, 10, 10, 0.92) 50%,
      var(--bg) 65%,
      var(--bg) 100%
    ),
    url("banner-hero.jpg");
  background-size: 100% auto, 100% auto;
  background-position: top center, top center;
  background-repeat: no-repeat;
  background-color: var(--bg);
  /* push the text block below the banner */
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero.has-banner::before {
  background: radial-gradient(ellipse at 50% 25%, rgba(201, 169, 97, 0.18) 0%, transparent 55%);
  mix-blend-mode: screen;
  top: 0; right: 0;
  width: 100%; height: 60%;
  max-width: none; max-height: none;
}
@media (max-width: 820px) {
  .hero.has-banner {
    background-size: 160% auto, 160% auto;
    background-position: top center, top center;
    padding-bottom: clamp(2rem, 6vh, 4rem);
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { opacity: 0; transform: translate(0, 0); }
  10%  { opacity: var(--p-op, 0.4); }
  90%  { opacity: var(--p-op, 0.4); }
  100% { opacity: 0; transform: translate(var(--p-dx, 30px), var(--p-dy, -120px)); }
}

/* ---- 9. Marquee ---- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  background: linear-gradient(180deg, transparent, rgba(201,169,97,0.025), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding-right: 4rem;
}
.marquee-track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.6em;
  margin-left: 4rem;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- 10. Section heads, splits, grids ---- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.section-head .label {
  align-self: start;
  padding-top: 0.5rem;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.top-align { align-items: start; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* ---- 11. Stats ---- */
.stats {
  display: grid;
  gap: 1.5rem;
}
.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stats-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) {
  .stats-3 { grid-template-columns: 1fr 1fr; }
  .stats-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 460px) {
  .stats-3, .stats-4 { grid-template-columns: 1fr; }
}
.stat {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.stat-num .suf {
  font-size: 0.4em;
  color: var(--muted);
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.stat-label {
  margin-top: 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ---- 12. Cards ---- */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.card:hover::after { transform: scaleX(1); }
.card-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.card-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.card-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.services-grid .card {
  border: none;
  background: var(--bg);
}
@media (max-width: 940px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- 13. Process steps ---- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .process { grid-template-columns: 1fr; } }
.step {
  border-top: 1px solid var(--line-gold);
  padding-top: 1.5rem;
}
.step-num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.step-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.step-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- 14. Quote ---- */
.quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  color: var(--cream);
  max-width: 32ch;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}
.quote::before {
  content: "“";
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  line-height: 1;
  opacity: 0.7;
}
.quote-attr {
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  text-align: center;
}

/* ---- 15. Artist card ---- */
.artist-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-card);
}
@media (max-width: 820px) { .artist-card { grid-template-columns: 1fr; } }
.artist-visual {
  background: var(--bg-card);
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artist-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 820px) {
  .artist-visual { min-height: 0; aspect-ratio: 1; }
}
.artist-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
  z-index: 2;
}
.artist-visual .placeholder {
  position: relative;
  z-index: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 7.5rem);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.artist-body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artist-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.artist-label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px var(--emerald-soft);
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--emerald-soft); }
  50%      { box-shadow: 0 0 0 8px rgba(26, 138, 99, 0.06); }
}
.artist-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.artist-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.artist-bio {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.artist-meta {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.artist-meta .item {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.artist-meta .item .val {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.artist-body .btn-gold { align-self: flex-start; }

/* ---- 16. TBA placeholder cards ---- */
.tba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 820px) { .tba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tba-grid { grid-template-columns: 1fr; } }
.tba {
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 60%, rgba(201,169,97,0.04) 100%);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.tba:hover {
  border-color: var(--line-gold);
  background: linear-gradient(180deg, transparent 50%, rgba(201,169,97,0.08) 100%);
}
.tba::before {
  content: "TBA";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted-dim);
  border: 1px solid var(--muted-dim);
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}
.tba-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.tba-note {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted-dim);
  text-transform: uppercase;
}

/* ---- 17. CTA strip ---- */
.cta-strip {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,97,0.05) 0%, transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-strip .headline-md {
  margin: 0 auto 2rem;
  max-width: 22ch;
}
.cta-strip .lead {
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
}
.cta-strip .btn-gold { margin-top: 0.5rem; }

/* ---- 18. Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-list li {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.contact-list .email {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: var(--gold);
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
  display: inline-block;
}
.contact-list .email:hover { color: var(--gold-bright); }
.contact-list .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ---- 19. Form ---- */
.form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-group { margin-bottom: 1.75rem; }
.form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color 0.3s var(--ease);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--f-body);
}
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23c9a961' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}
.form-select option {
  background: var(--bg-soft);
  color: var(--cream);
  font-family: var(--f-body);
}
.form-submit {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}
.form-note {
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  text-align: center;
}

/* ---- 20. FAQ ---- */
.faq {
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}
.faq-q {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.faq-a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* ---- 21. Footer ---- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 38ch;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted-dim);
  text-transform: uppercase;
}

/* ---- 22. Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .live .dot, .artist-label .dot { animation: none; }
}

/* ---- 23. Utility ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

.hero-headline-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
