/* ============================================================
   RESET & BASE
   ============================================================ */

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

:root {
  --bg:        #ffffff;
  --accent:    #b5a48a;
  --ink:       #111111;
  --ink-muted: #767676;
  --rule:      #e8e8e8;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --max-w: 1100px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-py: clamp(64px, 8vw, 112px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.rule {
  border: none;
  border-top: 0.5px solid var(--rule);
  margin: 0;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--gutter);
}

.placeholder-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   NAV
   ============================================================ */

#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--rule);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1;
}

.nav-name-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.nav-name-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — full-bleed, dark overlay
   ============================================================ */

#hero {
  display: block;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(1);
}

/* Dark overlay across the whole photo */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: clamp(32px, 4vw, 56px) var(--gutter);
}

.hero-bio {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-filled {
  background: var(--ink);
  color: var(--bg);
  border: 0.5px solid var(--ink);
}

.btn-filled:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   LISTEN & WATCH — featured + stack layout
   ============================================================ */

.media-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.media-placeholder {
  width: 100%;
  background: #f2f2f2;
  border: 0.5px solid var(--rule);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.media-placeholder--video {
  aspect-ratio: 16 / 9;
}

.media-placeholder--audio {
  aspect-ratio: 4 / 3;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.media-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}

.media-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-bio p {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-sidebar {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.sidebar-block p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ============================================================
   SHOWS
   ============================================================ */

.shows-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.shows-table {
  width: 100%;
}

.shows-header {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 100px;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.shows-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 100px;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: center;
}

.shows-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.shows-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.shows-venue {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-muted);
}

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 4px 10px;
}

/* ============================================================
   PRESS
   ============================================================ */

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px);
  margin-bottom: 24px;
}

.press-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.press-photo--placeholder {
  background: #f2f2f2;
  border: 0.5px solid var(--rule);
}

.press-note {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.press-note a {
  color: var(--ink);
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 1px;
}

.press-note a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-intro {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-details a,
.contact-details span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}

.contact-details a:hover {
  color: var(--accent);
}

/* Form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--rule);
  padding: 10px 0;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: transparent;
}

.btn-submit {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--ink);
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-submit:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.form-feedback {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.footer-social {
  display: flex;
  gap: 28px;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--ink);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .hero-text-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-stack {
    flex-direction: row;
  }

  .media-stack .media-card {
    flex: 1;
  }

  .media-placeholder--audio {
    aspect-ratio: 16 / 9;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    flex-direction: row;
    gap: 40px;
    border-top: 0.5px solid var(--rule);
    padding-top: 32px;
  }

  .shows-header,
  .shows-row {
    grid-template-columns: 130px 1fr;
  }

  .shows-header span:nth-child(3),
  .shows-header span:nth-child(4),
  .shows-row .shows-venue,
  .shows-row .shows-tag {
    display: none;
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #nav {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--rule);
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 14px var(--gutter);
  }

  .nav-toggle {
    display: flex;
  }

  .media-stack {
    flex-direction: column;
  }

  .about-sidebar {
    flex-direction: column;
    gap: 24px;
  }

  .press-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
