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

:root {
  --bg:          #0C0B0A;
  --surface-1:   #141210;
  --surface-2:   #1D1A17;
  --surface-3:   #272320;
  --text-1:      #EDE8DF;
  --text-2:      #8A8278;
  --text-3:      #504B45;
  --accent:      #C8A86A;
  --accent-dim:  #7A6438;
  --border:      rgba(200, 168, 106, 0.12);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --mono:        'Space Mono', 'Courier New', monospace;
}

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

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}
nav.scrolled {
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../herobg.jpg');
  background-size: cover;
  background-position: center 30%;
  animation: breathe 12s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 80%, rgba(12, 11, 10, 0.85) 0%, transparent 60%),
    linear-gradient(to top, rgba(12, 11, 10, 0.92) 0%, rgba(12, 11, 10, 0.3) 50%, rgba(12, 11, 10, 0.15) 100%);
}
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.hero-noise {
  position: absolute;
  inset: 0;
  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: 200px 200px;
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 58%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
  opacity: 0.5;
}
.hero-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 55%;
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
}
.hero-name em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  margin-top: 32px;
  max-width: 320px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-2);
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
section { padding: 120px 48px; }
.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--border);
}
.about-left { padding-top: 8px; }
.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-1);
  margin-top: 24px;
}
.about-quote span { color: var(--accent); }
.about-right { padding-top: 80px; }
.about-bio {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 24px;
}
.about-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.credit-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 6px 12px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.credit-tag:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

/* ── LISTEN ── */
.listen {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.listen-left .section-title { margin-top: 16px; }
.listen-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.listen-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.listen-embed { overflow: hidden; }
.listen-embed iframe { display: block; border-radius: 0 !important; }

/* ── EVENTS ── */
.events { border-top: 1px solid var(--border); }
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.music-link {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}
.music-link:hover { opacity: 0.7; }
.events-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.event-row::before {
  content: '';
  position: absolute;
  inset: 0 -48px;
  background: rgba(200, 168, 106, 0.03);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.event-row:hover::before { opacity: 1; }
.event-date {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.event-venue-link { text-decoration: none; color: inherit; }
.event-venue-link:hover .event-venue { color: var(--accent); }
.event-venue {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.event-location {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
}
.event-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 5px 12px;
}
.event-tag.sold-out {
  color: var(--text-3);
  border-color: var(--text-3);
}

/* ── BOOKING ── */
.booking {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 160px 48px;
}
.booking-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 48px;
}
.booking-email {
  display: inline-block;
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.08em;
  color: var(--text-1);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.booking-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── SOCIAL ── */
.social-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}
.social-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 36px;
  text-decoration: none;
  border: 1px solid var(--border);
  min-width: 110px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social-grid a:hover {
  border-color: var(--accent-dim);
  background: var(--surface-1);
  transform: translateY(-4px);
}
.social-icon {
  font-size: 1.8rem;
  color: var(--text-2);
  line-height: 1;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-grid a:hover .social-icon { color: var(--accent); }
.social-name {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.25s ease;
}
.social-grid a:hover .social-name { color: var(--accent); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { gap: 20px; }
  .hero { padding: 0 24px 64px; }
  .hero-name { max-width: 100%; }
  .hero-line { display: none; }
  section { padding: 80px 24px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-right { padding-top: 0; }
  .listen { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .event-row { grid-template-columns: 1fr; gap: 8px; }
  .event-tag { display: none; }
  .social-grid { gap: 8px; }
  .social-grid a { padding: 24px 20px; min-width: 80px; }
  .social-section { padding: 60px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
}
