/* ============================================================
   ANDRÉ KRENGEL — Static Demo Site
   Design System CSS · Version 1.0
   ============================================================ */

:root {
  --bg:          #0a0a0a;
  --bg-surface:  #111111;
  --bg-card:     #1a1a1a;
  --bg-elevated: #222222;
  --border:      #2a2a2a;
  --border-mid:  #333333;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #a07830;
  --gold-glow:   rgba(201,168,76,.13);
  --gold-glow2:  rgba(201,168,76,.22);
  --text:        #f5f5f0;
  --text-muted:  #b0b0a8;
  --text-faint:  #666660;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fl: 'Montserrat', system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease2: cubic-bezier(.65,0,.35,1);
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--gold-light); }
::selection { background: var(--gold-glow2); color: var(--gold-light); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */

h1,h2,h3,h4,h5,h6 {
  font-family: var(--fd);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem,5vw,3.5rem); }
h2 { font-size: clamp(1.75rem,3.5vw,2.75rem); }
h3 { font-size: clamp(1.3rem,2.5vw,2rem); }
h4 { font-size: 1.25rem; }

.display {
  font-size: clamp(3.5rem,9vw,7rem);
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -.03em;
}

.label {
  font-family: var(--fl);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--fd);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
blockquote cite {
  display: block;
  margin-top: .75rem;
  font-family: var(--fl);
  font-size: .7rem;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT ─────────────────────────────────────────────────── */

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; }

.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.flex { display: flex; align-items: center; }
.flex--between { justify-content: space-between; }
.flex--center { justify-content: center; }
.gap-sm { gap: 16px; }
.gap-md { gap: 24px; }

.divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px 0 20px;
}
.divider--center { margin: 12px auto 20px; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  margin-top: 72px;
}

/* ── NAV ────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: background .32s var(--ease), padding .32s var(--ease), box-shadow .32s var(--ease);
}

.nav.scrolled {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text { font-family: var(--fd); font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.1; }
.nav-logo-text small { display: block; font-family: var(--fl); font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-style: normal; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a {
  display: block;
  padding: 7px 13px;
  font-family: var(--fl);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color .18s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all .18s; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  transition: color .18s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--fl);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { transition: transform .18s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold-light); color: #0a0a0a; box-shadow: 0 4px 20px var(--gold-glow2); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.btn-ghost { background: transparent; color: var(--gold); padding: 13px 0; border-bottom: 1px solid var(--gold); border-radius: 0; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

.btn-lg { padding: 17px 42px; font-size: .78rem; }

/* ── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.15) 0%, rgba(10,10,10,.05) 40%, rgba(10,10,10,.75) 75%, #0a0a0a 100%);
}
.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(201,168,76,.08) 0%, transparent 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 40px 80px;
}
.hero-eyebrow {
  font-family: var(--fl);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
  cursor: pointer;
  transition: opacity .18s;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-indicator span { font-family: var(--fl); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollpulse 2s var(--ease2) infinite; }
@keyframes scrollpulse { 0%,50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);transform-origin:top;opacity:0} }

/* ── TICKER ─────────────────────────────────────────────────── */

.ticker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--bg-surface), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-surface), transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: tickermove 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--fl);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes tickermove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ──────────────────────────────────────────────────── */

.stats-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--fd); font-size: clamp(2.5rem,5vw,3.75rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-family: var(--fl); font-size: .63rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }

/* ── CD CARDS ───────────────────────────────────────────────── */

.cd-feature { padding: 100px 0; }
.cd-feature:nth-child(even) { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cd-cover-wrap { position: relative; }
.cd-cover-wrap img { border-radius: var(--r-md); box-shadow: 0 24px 80px rgba(0,0,0,.65); width: 100%; max-width: 460px; }
.cd-cover-wrap.right img { margin-left: auto; }

.cd-year-badge {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--fl);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  padding: 4px 12px;
  border-radius: 100px;
}

.cd-info { }
.cd-info .label { margin-bottom: 10px; }
.cd-info h2 { margin-bottom: 4px; }
.cd-info .cd-meta { font-size: .875rem; color: var(--text-faint); margin-bottom: 20px; }
.cd-info p { font-size: 1rem; }

.tracklist-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--fl); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  padding: 0; margin-top: 20px;
  transition: color .18s;
}
.tracklist-toggle:hover { color: var(--gold-light); }
.tracklist-toggle svg { transition: transform .3s var(--ease); }
.tracklist-toggle.open svg { transform: rotate(180deg); }

.tracklist {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.tracklist.open { max-height: 500px; }
.tracklist ol { list-style: none; padding: 12px 0; }
.tracklist li {
  display: flex;
  gap: 12px;
  padding: 5px 0;
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.tracklist li:last-child { border-bottom: none; }
.tracklist li .num { color: var(--gold-dark); font-family: var(--fl); font-size: .68rem; min-width: 22px; padding-top: 2px; }
.tracklist li .dur { color: var(--text-faint); margin-left: auto; font-size: .8rem; }

.cd-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.cd-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  font-family: var(--fl); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  transition: all .18s var(--ease);
}
.cd-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* ── AUDIO PLAYER ───────────────────────────────────────────── */

.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin: 24px 0;
}
.audio-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; color: #0a0a0a;
  transition: all .18s var(--ease);
}
.audio-btn:hover { background: var(--gold-light); transform: scale(1.05); }
.audio-info { flex: 1; min-width: 0; }
.audio-title { font-family: var(--fd); font-size: .95rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-artist { font-size: .8rem; color: var(--text-faint); margin-top: 2px; }
.audio-prog { flex: 2; }
.audio-bar {
  width: 100%; height: 3px; background: var(--border-mid); border-radius: 2px;
  cursor: pointer; position: relative; margin-bottom: 6px;
}
.audio-fill { height: 100%; background: var(--gold); border-radius: 2px; position: relative; width: 0; transition: width .1s linear; }
.audio-fill::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.audio-times { display: flex; justify-content: space-between; font-family: var(--fl); font-size: .65rem; color: var(--text-faint); }

/* ── QUOTE SLIDER ───────────────────────────────────────────── */

.quotes-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; position: relative; overflow: hidden; }
.quotes-section::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: var(--fd); font-size: 260px; color: var(--border); line-height: 1; pointer-events: none; user-select: none; }
.quote-slider { position: relative; overflow: hidden; }
.quote-track { display: flex; transition: transform .6s var(--ease); }
.quote-slide { flex: 0 0 100%; padding: 0 40px; text-align: center; }
.quote-slide blockquote { border: none; padding: 0; max-width: 760px; margin: 0 auto; font-size: clamp(1.2rem,2.5vw,1.65rem); }
.quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.quote-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-mid); border: none; cursor: pointer; transition: all .18s var(--ease); padding: 0; }
.quote-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── VIDEO GRID ─────────────────────────────────────────────── */

.video-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .32s var(--ease);
}
.video-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .32s var(--ease);
}
.video-card:hover .video-overlay { background: rgba(10,10,10,.6); }
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,.9);
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.video-card:hover .play-btn { transform: scale(1.12); box-shadow: 0 0 30px var(--gold-glow2); }
.video-info { padding: 16px; }
.video-tag { font-family: var(--fl); font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.video-title { font-family: var(--fd); font-size: .95rem; color: var(--text); line-height: 1.3; }

/* ── LIGHTBOX ───────────────────────────────────────────────── */

.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(10,10,10,.96); align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.5rem; padding: 8px; line-height: 1; transition: color .18s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--r-md); }

/* ── SECTION HEADER ─────────────────────────────────────────── */

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-top: 8px; }
.section-header p { margin-top: 12px; }

/* ── COLLAB CARDS ───────────────────────────────────────────── */

.collab-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all .32s var(--ease);
  position: relative;
  overflow: hidden;
}
.collab-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}
.collab-card:hover { border-color: var(--border-mid); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.collab-card:hover::before { transform: scaleX(1); }
.collab-icon { font-size: 2rem; margin-bottom: 16px; }
.collab-name { font-family: var(--fd); font-size: 1.375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.collab-role { font-family: var(--fl); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.collab-desc { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; }

/* ── TIMELINE ───────────────────────────────────────────────── */

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(to bottom, var(--gold), var(--border), transparent); }
.tl-item { position: relative; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.tl-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -44px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold-glow2); }
.tl-year { font-family: var(--fl); font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-title { font-family: var(--fd); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }

/* ── UPCOMING EVENTS ────────────────────────────────────────── */

.event-list { display: flex; flex-direction: column; gap: 2px; }
.event-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all .18s var(--ease);
}
.event-item:hover { background: var(--bg-elevated); border-color: var(--gold-dark); transform: translateX(4px); }
.event-date { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.event-date small { display: block; font-family: var(--fl); font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px; }
.event-name { font-weight: 500; color: var(--text); margin-bottom: 3px; }
.event-venue { font-size: .875rem; color: var(--text-muted); }

/* ── CONTACT ────────────────────────────────────────────────── */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.manager-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  transition: border-color .18s;
}
.manager-card:hover { border-color: var(--gold-dark); }
.manager-region { font-family: var(--fl); font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.manager-name { font-family: var(--fd); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.manager-detail { font-size: .9375rem; color: var(--text-muted); margin-bottom: 4px; }
.manager-detail a { color: var(--text-muted); }
.manager-detail a:hover { color: var(--gold); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-family: var(--fl); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--fb);
  font-size: .9375rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px var(--gold-glow); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ── PRESS ──────────────────────────────────────────────────── */

.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.press-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .32s var(--ease);
}
.press-item:hover { transform: scale(1.04); border-color: var(--gold-dark); box-shadow: 0 4px 24px rgba(0,0,0,.5); }
.press-item img { width: 100%; height: 200px; object-fit: contain; padding: 12px; background: var(--bg-surface); filter: grayscale(20%); transition: filter .32s; }
.press-item:hover img { filter: none; }

/* ── GUITAR BADGE ───────────────────────────────────────────── */

.guitar-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--fl); font-size: .63rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 24px;
}
.guitar-badge a { color: var(--gold); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 100ms; }
[data-reveal][data-delay="2"] { transition-delay: 200ms; }
[data-reveal][data-delay="3"] { transition-delay: 300ms; }
[data-reveal][data-delay="4"] { transition-delay: 400ms; }

/* ── FOOTER ─────────────────────────────────────────────────── */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-name { font-family: var(--fd); font-size: 1.75rem; font-weight: 700; font-style: italic; color: var(--text); }
.footer-brand-tag { font-family: var(--fl); font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 6px 0 14px; }
.footer-brand-desc { font-size: .9rem; color: var(--text-faint); max-width: 260px; line-height: 1.65; }
.footer-col-title { font-family: var(--fl); font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9375rem; color: var(--text-faint); transition: color .18s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: all .18s var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8125rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8125rem; color: var(--text-faint); }
.footer-legal a:hover { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 10px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 64px; }
  .scroll-indicator { display: none; }
  .event-item { grid-template-columns: 80px 1fr; }
  .event-item .btn { display: none; }
  .cd-cover-wrap img { max-width: 100%; }
  .audio-player { flex-wrap: wrap; }
  .audio-prog { width: 100%; order: 3; }
  .quote-slide blockquote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .btn-lg { padding: 14px 24px; }
}
