/* ══════════════════════════════════════════════
   RO JAMES — XIX  |  styles.css
   Aesthetic: Ember × Soul × Cinematic Dark
   ══════════════════════════════════════════════ */


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

:root {
  --ember:    #C8612A;
  --ember2:   #E0732A;
  --gold:     #D4A843;
  --gold2:    #F0C96A;
  --cream:    #F5EDD8;
  --smoke:    #A89880;
  --char:     #0D0B09;
  --deep:     #1A1208;
  --dim:      rgba(245,237,216,0.45);
}

html { scroll-behavior: smooth; }

body {
  background: var(--char);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, opacity 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.22s, height 0.22s, border-color 0.22s;
}
body.cursor-hover #cursor { transform: translate(-50%,-50%) scale(2.5); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,168,67,0.7); }

/* ── GRAIN ── */
#grain {
  position: fixed; inset: 0; z-index: 9997; 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grain-shift 0.35s steps(1) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0,0) }     10%  { transform: translate(-3%,-4%) }
  20%  { transform: translate(4%,2%) }   30%  { transform: translate(-2%,4%) }
  40%  { transform: translate(3%,-3%) }  50%  { transform: translate(-4%,3%) }
  60%  { transform: translate(2%,-2%) }  70%  { transform: translate(-3%,4%) }
  80%  { transform: translate(4%,-3%) }  90%  { transform: translate(-2%,2%) }
  100% { transform: translate(3%,3%) }
}

/* ── KEYFRAMES ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes name-reveal {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes ember-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(200,97,42,0.25), 0 0 50px rgba(200,97,42,0.08); }
  50%     { box-shadow: 0 0 40px rgba(200,97,42,0.55), 0 0 90px rgba(200,97,42,0.18); }
}
@keyframes flame-flicker {
  0%,100% { opacity:1; transform: translate(-50%,-50%) scaleY(1) skewX(0deg); }
  25%     { opacity:0.88; transform: translate(-50%,-50%) scaleY(1.06) skewX(1.5deg); }
  50%     { opacity:0.82; transform: translate(-50%,-50%) scaleY(0.96) skewX(-1.5deg); }
  75%     { opacity:0.93; transform: translate(-50%,-50%) scaleY(1.03) skewX(0.8deg); }
}
@keyframes smoke-rise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  20%  { opacity: 0.45; }
  100% { opacity: 0; transform: translateY(-130px) scaleX(2.8); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-bar-anim {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.25; }
}
@keyframes float-up {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* ── FIXED NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s, backdrop-filter 0.35s, transform 0.4s;
}
#site-nav.scrolled {
  background: rgba(13,11,9,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 0.5px solid rgba(212,168,67,0.1);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
  color: var(--cream); text-decoration: none; cursor: none; letter-spacing: 0.04em;
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-pill {
  display: flex; gap: 2px;
  background: rgba(13,11,9,0.45); backdrop-filter: blur(40px);
  border: 0.5px solid rgba(212,168,67,0.12); border-radius: 100px;
  padding: 7px 22px;
}
.nav-link {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em;
  color: rgba(245,237,216,0.5); padding: 6px 12px;
  text-decoration: none; cursor: none;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--cream); }
.nav-cta {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; font-weight: 500;
  background: var(--ember); color: var(--cream); border: none;
  padding: 11px 22px; cursor: none; text-decoration: none;
  clip-path: polygon(5px 0,100% 0,100% calc(100% - 5px),calc(100% - 5px) 100%,0 100%,0 5px);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--ember2); }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
#hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  /* !! SWAP THIS URL with hosted version of IMG_3716.jpeg !! */
  background-image: url('hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  filter: saturate(1.3) contrast(1.1);
  transform: scale(1.06);
  animation: fade-in 2.5s ease both;
}
#hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 58% 44%, rgba(200,97,42,0.22) 0%, transparent 68%),
    radial-gradient(ellipse 40% 50% at 28% 58%, rgba(212,168,67,0.10) 0%, transparent 60%),
    linear-gradient(to bottom,
      rgba(13,11,9,0.38) 0%,
      rgba(13,11,9,0.05) 30%,
      rgba(13,11,9,0.65) 70%,
      rgba(13,11,9,1)    100%
    );
}
/* Scanlines */
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px
  );
}
/* Flame glow centered on the lighter in the image */
#flame-glow {
  position: absolute; z-index: 3;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse,
    rgba(200,97,42,0.55) 0%,
    rgba(212,168,67,0.22) 35%,
    transparent 70%
  );
  border-radius: 50%;
  top: 40%; left: 58%;
  animation: flame-flicker 1.9s ease-in-out infinite;
  pointer-events: none;
}
/* Smoke particles near the flame */
.smoke {
  position: absolute; border-radius: 50%; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse, rgba(168,152,128,0.55), transparent);
  animation: smoke-rise 4s ease-out infinite;
}
.s1 { width: 55px; height: 75px; top: 36%; left: 59%; animation-delay: 0s;   animation-duration: 3.6s; }
.s2 { width: 38px; height: 55px; top: 38%; left: 61%; animation-delay: 1.4s; animation-duration: 4.2s; }
.s3 { width: 28px; height: 45px; top: 34%; left: 57%; animation-delay: 2.7s; animation-duration: 3.1s; }

#hero-content {
  position: relative; z-index: 10;
  width: 90%; margin: 0 auto;
  padding-bottom: 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: flex-end; gap: 48px;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fade-up 0.9s ease both;
}
.eyebrow-line { display: block; width: 24px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 10.5vw, 9rem);
  font-weight: 900; line-height: 0.88; letter-spacing: -0.02em;
}
.name-line { display: block; overflow: hidden; }
.name-inner {
  display: block;
  opacity: 0; animation: name-reveal 1s cubic-bezier(0.16,1,0.3,1) both;
}
.gold-italic { font-style: italic; color: var(--gold); }
.hero-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem,1.8vw,1.25rem);
  font-weight: 300; font-style: italic; color: var(--dim);
  margin-top: 24px; line-height: 1.65;
  opacity: 0; animation: fade-up 0.9s ease both;
}
.hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 18px;
  opacity: 0; animation: fade-up 0.9s ease both;
}
.hero-badge {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
  color: var(--cream); background: rgba(200,97,42,0.22);
  border: 0.5px solid rgba(200,97,42,0.45);
  padding: 9px 18px; animation: ember-pulse 3.2s ease-in-out infinite;
}
.hero-releases {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; text-align: right; line-height: 1.6;
}
.hero-releases strong { color: var(--gold); font-weight: 600; }
.hero-releases .dim { color: var(--dim); font-style: italic; font-size: 0.9rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10;
  opacity: 0; animation: fade-up 1s ease 1.8s both;
}
.scroll-hint span {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.28em;
  color: rgba(245,237,216,0.3);
}
.scroll-bar {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-bar-anim 2s ease-in-out infinite;
}

/* ── TICKER ── */
.ticker-wrap {
  position: relative; z-index: 10; overflow: hidden;
  border-top: 0.5px solid rgba(212,168,67,0.2);
  border-bottom: 0.5px solid rgba(212,168,67,0.2);
  padding: 15px 0;
  background: rgba(13,11,9,0.55); backdrop-filter: blur(20px);
}
.ticker-inner {
  display: flex; width: max-content;
  animation: ticker 32s linear infinite;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.22em;
  color: rgba(212,168,67,0.5);
}
.ti { padding: 0 44px; }
.ts { color: var(--ember); }

/* ── SHARED ── */
.spacer { height: 160px; }
.container { position: relative; z-index: 10; width: 90%; margin: 0 auto; }
.sep { border-top: 0.5px solid rgba(245,237,216,0.07); padding-top: 80px; }
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1) var(--d,0s),
              transform 0.9s cubic-bezier(0.16,1,0.3,1) var(--d,0s);
}
.reveal.vis { opacity: 1; transform: none; }
.sec-label {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.28em;
  color: var(--ember); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.sec-label::after {
  content: ''; flex: 1; height: 0.5px;
  background: linear-gradient(to right, rgba(200,97,42,0.4), transparent);
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.01em;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-body {
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: var(--dim); line-height: 1.8; margin-top: 20px;
}

/* ── SHARED BUTTONS ── */
.btn-ember {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.15em; font-weight: 500;
  background: var(--ember); color: var(--cream); border: none; cursor: none;
  padding: 16px 34px; text-decoration: none; display: inline-block;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: background 0.2s, transform 0.2s;
}
.btn-ember:hover { background: var(--ember2); transform: scale(1.02); }
.btn-ghost {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.15em;
  background: transparent; border: 0.5px solid rgba(245,237,216,0.22);
  color: var(--cream); cursor: none; padding: 16px 34px;
  text-decoration: none; display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── MUSIC ── */
.music-intro {
  display: grid; grid-template-columns: 5fr 4fr; gap: 80px;
  align-items: end; margin-bottom: 56px;
}
.stream-links {
  display: flex; flex-direction: column;
  border-top: 0.5px solid rgba(245,237,216,0.1);
}
.stream-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 0.5px solid rgba(245,237,216,0.07);
  text-decoration: none; color: inherit; cursor: none;
  transition: padding-left 0.25s;
}
.stream-row:hover { padding-left: 10px; }
.stream-row:hover .sr-name { color: var(--gold); }
.stream-row:hover .sr-arrow { color: var(--gold); transform: translateX(4px); }
.sr-platform {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  color: var(--smoke); min-width: 110px;
}
.sr-name {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  flex: 1; padding: 0 20px; transition: color 0.25s;
}
.sr-arrow { font-size: 1rem; transition: color 0.25s, transform 0.25s; color: var(--smoke); }

.tracks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  border: 0.5px solid rgba(245,237,216,0.07);
}
.decade-section { margin-bottom: 56px; }
.decade-section:last-child { margin-bottom: 0; }
.decade-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(200,97,42,0.18);
  display: flex; align-items: baseline; justify-content: space-between;
}
.decade-label .decade-count {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(245,237,216,0.32);
}
.track-card {
  background: rgba(13,11,9,0.72); backdrop-filter: blur(10px);
  padding: 30px 26px; cursor: none;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.track-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--ember), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.track-card:hover { background: rgba(200,97,42,0.06); }
.track-card:hover::before { transform: scaleX(1); }
.track-num {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.18em;
  color: rgba(245,237,216,0.22); margin-bottom: 28px;
}
.track-art {
  position: relative;
  width: 100%; aspect-ratio: 1;
  background: rgba(200,97,42,0.06);
  border: 0.5px solid rgba(200,97,42,0.14);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-style: italic;
  color: rgba(212,168,67,0.18); margin-bottom: 18px;
  overflow: hidden;
}
.track-art img,
.track-art video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.track-art::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(13,11,9,0.55) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(13,11,9,0.25) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.track-card:hover .track-art img,
.track-card:hover .track-art video {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.1);
}
.track-card:hover .track-art::after {
  opacity: 0.4;
}
.track-era {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  color: var(--ember); background: rgba(200,97,42,0.09);
  display: inline-block; padding: 4px 10px; margin-bottom: 10px;
}
.track-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 5px;
}
.track-meta {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--smoke); letter-spacing: 0.1em;
}

/* ── TOURS ── */
.tour-layout { display: grid; grid-template-columns: 6fr 4fr; gap: 80px; margin-top: 56px; }
.tour-list { display: flex; flex-direction: column; }
.tour-row {
  display: flex; align-items: center;
  padding: 22px 0; border-bottom: 0.5px solid rgba(245,237,216,0.07);
  cursor: none; transition: padding-left 0.25s, border-color 0.25s;
}
.tour-row:hover { padding-left: 16px; border-color: rgba(212,168,67,0.18); }
.tour-row:hover .t-city { color: var(--gold); }
.tour-row:hover .t-btn { background: var(--gold); color: var(--char); border-color: var(--gold); }
.t-date {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em;
  color: var(--smoke); min-width: 130px;
}
.t-city {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  flex: 1; padding: 0 20px; transition: color 0.25s;
}
.t-venue {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--smoke);
  letter-spacing: 0.08em; text-align: right; margin-right: 20px;
}
.t-btn {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  background: transparent; border: 0.5px solid rgba(245,237,216,0.2);
  color: var(--cream); padding: 8px 16px; cursor: none; text-decoration: none;
  white-space: nowrap; transition: all 0.2s;
}
.tours-aside { position: sticky; top: 110px; }
.t-stat { border-top: 0.5px solid rgba(245,237,216,0.12); padding: 24px 0; }
.stat-n {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900;
  color: var(--ember); line-height: 1; margin-bottom: 4px;
}
.stat-l {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  color: var(--smoke); text-transform: uppercase;
}
.tour-quote {
  margin-top: 36px; padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(212,168,67,0.05);
}
.tour-quote p {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-style: italic; color: rgba(245,237,216,0.65); line-height: 1.7;
}
.tour-quote cite {
  display: block; margin-top: 12px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em;
  color: var(--gold); font-style: normal;
}

/* ── SOCIAL ── */
.social-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  border: 0.5px solid rgba(245,237,216,0.07); margin-top: 56px;
}
.social-card {
  background: rgba(13,11,9,0.65); padding: 38px 26px;
  cursor: none; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.social-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,97,42,0.07), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.social-card:hover { background: rgba(200,97,42,0.04); }
.social-card:hover::after { opacity: 1; }
.social-card:hover .sc-handle { color: var(--gold); }
.social-card:hover .sc-icon { color: var(--gold); transform: translateY(-3px); }
.sc-platform {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
  color: var(--ember); margin-bottom: 28px;
}
.sc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: var(--cream);
  margin-bottom: 18px;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: float-up 3s ease-in-out infinite;
}
.sc-icon svg { width: 100%; height: 100%; display: block; }
.social-card:nth-child(2) .sc-icon { animation-delay: 0.5s; }
.social-card:nth-child(3) .sc-icon { animation-delay: 1s; }
.social-card:nth-child(4) .sc-icon { animation-delay: 1.5s; }
.social-card:nth-child(5) .sc-icon { animation-delay: 2s; }
.sc-handle {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; transition: color 0.25s;
}
.sc-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; font-style: italic;
  color: var(--dim); line-height: 1.6; flex: 1;
}
.sc-cta {
  margin-top: 24px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  color: var(--smoke); transition: color 0.25s;
}
.social-card:hover .sc-cta { color: var(--gold); }

/* ── INNER CIRCLE CTA ── */
#inner-circle {
  padding: 120px 5% 0;
  border-top: 0.5px solid rgba(245,237,216,0.07);
}
.cta-wrap {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-overline {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em;
  color: var(--ember); margin-bottom: 24px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.02em; max-width: 780px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-weight: 300; font-style: italic; color: var(--dim);
  margin-top: 24px; max-width: 460px; line-height: 1.75;
}
.cta-form {
  display: flex; gap: 0; margin-top: 52px; width: 100%; max-width: 480px;
}
.email-input {
  flex: 1; background: rgba(245,237,216,0.04);
  border: 0.5px solid rgba(245,237,216,0.2); border-right: none;
  color: var(--cream); padding: 17px 22px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic;
  outline: none; transition: border-color 0.25s;
}
.email-input::placeholder { color: rgba(245,237,216,0.3); }
.email-input:focus { border-color: var(--gold); }
.email-submit {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; font-weight: 500;
  background: var(--ember); color: var(--cream);
  border: 0.5px solid var(--ember); padding: 17px 28px; cursor: none;
  transition: background 0.2s; white-space: nowrap;
}
.email-submit:hover { background: var(--ember2); }
.form-fine {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em;
  color: rgba(245,237,216,0.22); margin-top: 16px;
}
.form-success {
  margin-top: 20px;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic;
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  margin-top: 80px; padding: 32px 5%;
  border-top: 0.5px solid rgba(245,237,216,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 10;
}
.f-copy {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,237,216,0.28);
}
.f-links { display: flex; gap: 28px; }
.f-link {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  color: rgba(245,237,216,0.28); text-decoration: none; cursor: none;
  transition: color 0.25s;
}
.f-link:hover { color: var(--gold); }
.f-sig {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic;
  color: var(--ember);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-pill { display: none; }
  #hero-content { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; }
  .music-intro { grid-template-columns: 1fr; gap: 48px; }
  .tracks-grid { grid-template-columns: 1fr 1fr; }
  .tour-layout { grid-template-columns: 1fr; }
  .tours-aside { position: static; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .t-venue { display: none; }
}
@media (max-width: 1100px) and (min-width: 961px) {
  .social-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 540px) {
  .tracks-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .email-input { border-right: 0.5px solid rgba(245,237,216,0.2); border-bottom: none; }
}

/* ── MOBILE NAV (hamburger + overlay) ───────── */
.nav-burger {
  display: none;
  background: transparent;
  border: 0.5px solid rgba(212,168,67,0.3);
  width: 40px; height: 40px;
  padding: 0;
  align-items: center; justify-content: center;
  cursor: none;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px; height: 1.2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0;
  background: rgba(13,11,9,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  cursor: none;
}
.nav-mobile a em { font-style: italic; color: var(--gold); font-weight: 400; }
.nav-mobile a:hover, .nav-mobile a:focus { color: var(--gold); }
.nav-mobile .nav-mobile-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}
body.nav-locked { overflow: hidden; }

@media (max-width: 960px) {
  .nav-burger { display: inline-flex; }
}
