@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Mono:wght@300;400&family=Outfit:wght@200;300;400;500;600&display=swap');

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

:root {
  --bg: #0c0b0e;
  --bg2: #1e1d24;
  --panel: #f2efe8;
  --text: #ece9e2;
  --text-dark: #1a1a1a;
  --text-dim: #8a8780;
  --text-ghost: #4a4844;
  --accent: #c9a96e;
  --accent-soft: rgba(201,169,110,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', monospace;
  --sans: 'Outfit', sans-serif;
}

html {
  background: var(--bg);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  height: 100%;
}
html::-webkit-scrollbar { display: none }
body {
  display: flex;
  height: 100vh;
  width: max-content;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ===== TRACK & PANELS ===== */
.track { display: flex; height: 100vh; width: max-content }
.panel {
  flex: 0 0 auto;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
}
nav > * { pointer-events: auto }
.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-menu-btn {
  display: flex; align-items: center; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text);
}
.menu-bars { display: flex; flex-direction: column; gap: 5px; width: 24px }
.menu-bars span { display: block; height: 1.5px; background: var(--text); transition: all 0.4s }
.menu-bars span:nth-child(2) { width: 16px; margin-left: auto }
.nav-menu-btn:hover .menu-bars span:nth-child(2) { width: 24px }

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s;
}
.menu-overlay.open { opacity: 1; pointer-events: auto }
.menu-list {
  list-style: none; text-align: center;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.menu-list a {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.4s;
}
.menu-list a:hover { color: var(--text) }
.menu-close {
  position: absolute; top: 2rem; right: 3rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text);
  display: flex; align-items: center; gap: 1rem;
}
.close-x { width: 24px; height: 24px; position: relative }
.close-x::before, .close-x::after {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px; background: var(--text);
}
.close-x::before { transform: rotate(45deg) }
.close-x::after { transform: rotate(-45deg) }

/* ===== PANEL: PHOTO ===== */
.panel-photo { width: 55vw; min-width: 400px; background: #000 }
.photo-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-portrait.jpg');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
}
.photo-label {
  position: absolute; bottom: 2rem; left: 2.5rem;
  font-family: var(--mono); font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); z-index: 2;
}
.photo-socials {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  display: flex; gap: 1.2rem; z-index: 5;
}
.social-icon {
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.35);
  transition: color 0.4s, transform 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.social-icon svg { width: 100%; height: 100% }
.social-icon:hover { color: var(--accent); transform: translateY(-2px) }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-ghost); z-index: 5;
}

/* ===== PANEL: SHOWS ===== */
.panel-shows {
  width: 40vw; min-width: 380px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.shows-inner { width: 100%; max-width: 420px }
.slabel {
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.slabel::before { content: ''; width: 2rem; height: 1px; background: var(--accent) }
.stitle {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; margin-bottom: 2rem;
}
.show-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}
.show-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.05) }
.show-item:hover { padding-left: 0.5rem }
.show-date { min-width: 70px; text-align: center }
.show-day {
  display: block; font-family: var(--serif);
  font-size: 1.3rem; font-weight: 400; color: var(--text); line-height: 1;
}
.show-month {
  display: block; font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-ghost); margin-top: 0.25rem;
}
.show-info { flex: 1 }
.show-venue {
  display: block; font-family: var(--serif);
  font-size: 1rem; font-weight: 400; color: var(--text);
}
.show-city {
  display: block; font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 0.15rem;
}
.show-ticket {
  font-family: var(--sans); font-size: 0.55rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  padding: 0.5rem 1.2rem; border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s; white-space: nowrap;
}
.show-ticket:hover { color: var(--accent); border-color: rgba(201,169,110,0.3) }
.shows-note {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 200;
  color: var(--text-ghost); margin-top: 2rem; font-style: italic;
}

/* ===== PANEL: ALBUM ===== */
.panel-album {
  width: 35vw; min-width: 360px;
  background: var(--panel);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 3rem;
}
.release-artist {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400; color: var(--text-dark);
  letter-spacing: 0.02em; margin-bottom: 0.5rem; text-align: center;
}
.release-divider { width: 180px; height: 4px; background: var(--text-dark); margin: 0.8rem auto 2rem }
.release-artwork { width: min(260px, 60%); aspect-ratio: 1; margin: 0 auto 2rem }
.release-artwork svg { width: 100%; height: 100%; opacity: 0.85 }
.release-title {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--text-dark);
  letter-spacing: 0.05em; text-align: center; margin-bottom: 2rem;
}
.release-bottom {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 320px; margin-top: auto;
}
.release-status {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dark); line-height: 1.6;
}
.release-cta {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  padding: 0.6rem 1.2rem; border-bottom: 2px solid var(--text-dark);
  transition: all 0.4s;
}
.release-cta:hover { color: #555; border-color: #555 }

/* ===== PANEL: DARK CARDS ===== */
.panel-card {
  width: 35vw; min-width: 320px;
  background: var(--bg);
  display: flex; align-items: flex-end;
  padding: 3rem; position: relative;
}
.card-bg {
  position: absolute; inset: 0;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.panel-card:hover .card-bg { transform: scale(1.04) }
.cb1 { background: linear-gradient(160deg, #302820, #1e1a14, #28221a) }
.cb1::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201,169,110,0.1), transparent 55%);
}
.cb2 { background: linear-gradient(160deg, #3a3530, #252220, #302b28) }
.cb2::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 55%, rgba(201,169,110,0.08), transparent 55%);
}
.card-content { position: relative; z-index: 2 }
.card-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; color: var(--text);
  letter-spacing: 0.02em; margin-bottom: 0.8rem;
}
.card-sub {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}

/* ===== PANEL: ABOUT ===== */
.panel-about {
  width: 45vw; min-width: 400px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3.5rem;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.about-inner { max-width: 500px }
.about-headline {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.35; margin-bottom: 2rem;
}
.about-headline em { font-style: italic; color: var(--accent) }
.about-body {
  font-size: 0.9rem; font-weight: 200; line-height: 2;
  color: var(--text-dim); margin-bottom: 2rem;
}
.about-tags { display: flex; gap: 0.6rem; flex-wrap: wrap }
.about-tag {
  font-family: var(--mono); font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-ghost); padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s; cursor: default;
}
.about-tag:hover { color: var(--accent); border-color: rgba(201,169,110,0.25) }

/* ===== PANEL: CONTACT ===== */
.panel-contact {
  width: 40vw; min-width: 380px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem; text-align: center;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.contact-inner { max-width: 400px; width: 100% }
.contact-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.3; margin-bottom: 2.5rem;
}
.contact-title em { font-style: italic; color: var(--accent) }
.contact-links { display: flex; flex-direction: column; gap: 0.8rem; align-items: center }
.contact-btn {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  padding: 0.8rem 2rem; width: 100%; max-width: 260px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.contact-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.contact-btn:hover::before { transform: scaleX(1) }
.contact-btn:hover { color: var(--text); border-color: rgba(201,169,110,0.3) }
.contact-btn span { position: relative; z-index: 1 }
.contact-footer {
  font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.1em; color: var(--text-ghost); margin-top: 3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .panel-photo { width: 100vw; min-width: 0 }
  .photo-bg { background-size: 80% }
  .panel-shows, .panel-album, .panel-card, .panel-about, .panel-contact {
    width: 90vw; min-width: 0;
  }
  .show-item { gap: 1rem; flex-wrap: wrap }
  nav { padding: 1.5rem 2rem }
}
