/* ==========================================================
   Maria & The Band, styles.css
   Brazilian forró ensemble (Toronto, Canada)
   Dark coffee canvas, warm off-white type, clay + gold accents.
   ========================================================== */

:root {
  --bg:          #15100c;
  --bg-warm:     #1c1612;
  --bg-raised:   #241c16;
  --bg-deep:     #0b0805;

  --paper:       #efe2c9;
  --paper-soft:  #c8b89e;
  --paper-dim:   #8a7b66;

  --clay:        #c46a4a;
  --clay-deep:   #9c4a30;
  --clay-soft:   #d0856a;
  --gold:        #d4a35c;

  --rule:        rgba(239, 226, 201, 0.16);
  --rule-soft:   rgba(239, 226, 201, 0.07);
  --rule-strong: rgba(239, 226, 201, 0.32);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max:    1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ==========================================================
   RESET, BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
picture { display: block; }

section[id] { scroll-margin-top: 100px; }
#booking-form { scroll-margin-top: 110px; }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--bg);
  color: var(--paper);
  padding: 12px 18px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--clay);
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* ==========================================================
   TYPE PRIMITIVES
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}

.eyebrow-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--paper-soft);
  margin: 0 0 24px;
  max-width: 38ch;
}
.lede em { font-style: italic; color: var(--gold); }
.lede strong { color: var(--paper); font-weight: 600; }

.body-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper-soft);
  margin: 0 0 16px;
  max-width: 60ch;
}
.body-copy strong { color: var(--paper); font-weight: 600; }
.body-copy em      { font-style: italic; color: var(--paper); }
.body-copy.dim     { color: var(--paper-dim); }

.block-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 18px;
}

.link-underline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.link-underline:hover { color: var(--clay-soft); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* ==========================================================
   TOPBAR
   ========================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
.topbar.scrolled {
  background: rgba(21, 16, 12, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px var(--gutter);
  border-bottom-color: var(--rule);
}

.brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.brand .b-amp {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  padding: 0 2px;
}

.nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--paper-soft);
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--clay); }

.topbar-end {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
}
.lang a        { color: var(--paper-dim); transition: color 0.2s ease; }
.lang a.active { color: var(--paper); }
.lang a:hover  { color: var(--clay); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 0;
}

/* ==========================================================
   HERO (kept large)
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(40px, 6vh, 72px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 106, 74, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 163, 92, 0.10) 0%, transparent 60%),
    var(--bg);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.05) contrast(1.05);
  color: transparent;
  font-size: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(21, 16, 12, 0.55) 0%,
      rgba(21, 16, 12, 0.25) 30%,
      rgba(21, 16, 12, 0.55) 60%,
      var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: var(--paper);
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vh, 56px);
}

.hero-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.hero-meta-top .eyebrow-line {
  color: var(--paper-soft);
  margin: 0;
}
.hero-meta-top .eyebrow-line::before {
  background: var(--clay);
  opacity: 1;
  width: 32px;
}

.next-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(239, 226, 201, 0.45);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: rgba(11, 8, 5, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.next-pill:hover {
  background: rgba(11, 8, 5, 0.65);
  border-color: var(--paper);
}
.next-pill .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
}
.next-pill .sep {
  width: 1px;
  height: 14px;
  background: rgba(239, 226, 201, 0.4);
}

.hero-wordmark h1 {
  font-size: clamp(64px, 13vw, 180px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.hero-wordmark h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  display: inline-block;
  padding: 0 0.06em;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 24px;
  color: var(--paper-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}
.hero-tagline strong { color: var(--paper); font-weight: 600; }
.hero-tagline .divot { color: var(--clay); font-weight: 700; }

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

.hero-album-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--paper-soft);
  letter-spacing: 0.01em;
}
.hero-album-note strong { color: var(--paper); font-weight: 600; }
.hero-album-note .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(212, 163, 92, 0.18);
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn.primary {
  background: var(--clay);
  color: var(--paper);
}
.btn.primary:hover { background: var(--clay-deep); }

.btn.ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(239, 226, 201, 0.5);
}
.btn.ghost:hover {
  background: rgba(239, 226, 201, 0.08);
  border-color: var(--paper);
}

/* ==========================================================
   CREDIBILITY STRIP
   ========================================================== */
.credibility {
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px var(--gutter);
}
.credibility-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  flex-wrap: wrap;
}
.cred-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  position: relative;
  padding-right: clamp(16px, 3vw, 28px);
}
.cred-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--rule-strong);
}
.cred-list {
  display: flex;
  gap: clamp(10px, 1.5vw, 18px);
  flex-wrap: wrap;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.cred-list .cred-dot {
  color: var(--clay);
  font-weight: 700;
  user-select: none;
}

/* ==========================================================
   SECTIONS, base
   Reduced padding for scroll discipline.
   ========================================================== */
.section {
  padding: clamp(56px, 9vh, 96px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.section-head h2 { font-size: clamp(36px, 5.5vw, 72px); }
.section-head .head-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  max-width: 30ch;
}
.section-head.compact { padding-bottom: 20px; margin-bottom: 28px; }
.section-head.compact h2 { font-size: clamp(32px, 4.5vw, 56px); }

/* ==========================================================
   WATCH
   ========================================================== */
.video-section {
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: 0;
}
.video-frame { position: relative; }

.video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  overflow: hidden;
  box-shadow:
    -20px 20px 0 var(--bg-raised),
    -20px 20px 0 1px rgba(196, 106, 74, 0.35);
}

.video-facade {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  cursor: pointer;
  overflow: hidden;
}
.video-facade-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05) contrast(1.05);
  transition: filter 0.3s ease, transform 0.6s ease;
  color: transparent;
  font-size: 0;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 8, 5, 0.55) 100%);
  pointer-events: none;
}
.video-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(196, 106, 74, 0.4);
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.video-facade-play svg { margin-left: 5px; }
.video-facade:hover .video-facade-poster-img,
.video-facade:focus-visible .video-facade-poster-img {
  filter: brightness(0.85) saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}
.video-facade:hover .video-facade-play,
.video-facade:focus-visible .video-facade-play {
  background: var(--clay-deep);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 14px rgba(196, 106, 74, 0.14);
}
.video-facade:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: -2px;
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   LISTEN, Bandcamp
   ========================================================== */
.listen-section {
  padding-top: clamp(48px, 8vh, 88px);
  padding-bottom: 0;
}
.listen-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.listen-player {
  background: transparent;
  padding: 14px;
  border: 1px solid var(--rule);
}
.bandcamp-embed {
  border: 0;
  width: 100%;
  height: 588px;
  display: block;
  background: transparent;
}
.listen-context .body-copy { margin-bottom: 18px; }

/* ==========================================================
   9 ROSAS, editorial typographic block
   ========================================================== */
.release-section {
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: clamp(48px, 8vh, 80px);
}
.release-editorial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.release-header {
  /* No sticky here: the .tracklist row spans the full grid below,
     so a sticky header would float over it as the user scrolls. */
}
.release-title {
  font-size: clamp(56px, 9vw, 128px);
  margin: 4px 0 14px;
  letter-spacing: -0.035em;
}
.release-meta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.release-body { padding-top: 4px; }

.collab {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  align-items: baseline;
}
.collab .k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.collab .body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-soft);
}
.collab .body strong { color: var(--paper); font-weight: 600; }
.collab .body em { font-style: italic; color: var(--paper); }

/* Tracklist, compact */
.tracklist { margin: 28px 0 0; grid-column: 1 / -1; }
.tracklist-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper);
  margin-bottom: 4px;
}
.tracklist-head .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.tracklist-head .v {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  text-transform: uppercase;
  font-weight: 500;
}

.tracks { list-style: none; margin: 0; padding: 0; }
.tracks li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.tracks li:last-child { border-bottom: none; }
.tracks .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  font-size: 15px;
  color: var(--gold);
  font-feature-settings: "tnum";
}
.tracks .t {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--paper);
}

/* ==========================================================
   LIVE SHOW, compact next show block
   ========================================================== */
.live-section {
  padding-top: clamp(48px, 8vh, 80px);
  padding-bottom: clamp(48px, 8vh, 80px);
}

.next-show {
  background: var(--bg-raised);
  border-top: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
  padding: clamp(24px, 3vh, 32px) clamp(20px, 3vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.next-show-info {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 6px 24px;
  align-items: baseline;
}
.next-show-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-soft);
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.next-show-date {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  color: var(--paper);
  letter-spacing: -0.015em;
}
.next-show-venue {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.next-show-city {
  font-size: 14px;
  color: var(--paper-soft);
}
.next-show-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================
   LIVE GALLERY, asymmetric 5-image grid
   ========================================================== */
.gallery-section {
  padding-top: clamp(48px, 8vh, 80px);
  padding-bottom: clamp(48px, 8vh, 80px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 14px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-warm) 100%);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05) contrast(1.05);
  color: transparent;
  font-size: 0;
  transition: filter 0.4s ease, transform 0.8s ease;
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: brightness(1.02) saturate(1.1) contrast(1.05);
  transform: scale(1.03);
}
.gallery-item--tall { grid-row: span 2; }

/* ==========================================================
   ABOUT
   ========================================================== */
.about-section { padding-top: clamp(48px, 8vh, 80px); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about-photo {
  margin: 0;
  position: sticky;
  top: 110px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-warm) 100%);
  min-height: 320px;
  max-height: calc(100vh - 140px);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05) contrast(1.04);
  color: transparent;
  font-size: 0;
}
.about-body h2 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 20px;
}
.about-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.about-meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px;
  align-items: baseline;
}
.about-meta-row:last-child { border-bottom: none; }
.about-meta-row .k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.about-meta-row .v { color: var(--paper); }

/* ==========================================================
   BOOKING AND PRESS
   Two columns: performance formats | form
   ========================================================== */
.contact-section {
  background: var(--bg-deep);
  max-width: none;
  margin: 0;
  padding: clamp(56px, 9vh, 96px) var(--gutter);
  border-top: 1px solid var(--rule);
}
.contact-section .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  border-bottom-color: var(--rule);
}

.booking-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.booking-formats { padding-right: 4px; }
.formats-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.formats-list li {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  color: var(--paper);
  letter-spacing: -0.005em;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.formats-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--clay);
}
.formats-list li:last-child { border-bottom: none; }
.formats-note { color: var(--paper-soft); font-size: 14px; line-height: 1.6; }

.booking-form-block .helper-text {
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 56ch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input[name="_gotcha"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form-row { display: block; position: relative; }
.contact-form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-row-split label { display: block; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  display: block;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  padding: 13px 2px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--paper-dim);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--clay);
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-family: var(--sans);
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-form-status {
  margin-top: 14px;
  min-height: 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--paper-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-form-status:not(:empty) { opacity: 1; }
.contact-form-status.success { color: var(--gold); }
.contact-form-status.error   { color: var(--clay-soft); }
.contact-form-status a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.form-fallback {
  margin-top: 18px;
  font-size: 13px;
  color: var(--paper-dim);
}
.form-fallback a {
  color: var(--paper-soft);
  border-bottom: 1px solid var(--rule-strong);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.form-fallback a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

/* ==========================================================
   NEWSLETTER, compact
   ========================================================== */
.newsletter-section {
  background: var(--bg-warm);
  padding: clamp(40px, 7vh, 72px) var(--gutter);
  border-top: 1px solid var(--rule);
}
.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}
.newsletter-text .eyebrow-line { color: var(--gold); }
.newsletter-text .eyebrow-line::before { background: var(--gold); opacity: 1; }

.newsletter-head {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  margin: 0 0 10px;
}
.newsletter-head em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.newsletter-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--paper-soft);
  max-width: 40ch;
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.newsletter-form {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid var(--clay);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 4px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--paper-dim); }
.newsletter-form button {
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 4px 12px 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.newsletter-form button:hover { color: var(--clay); }
.newsletter-form button .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.newsletter-form button:hover .arrow { transform: translateX(4px); }

.newsletter-status {
  min-height: 18px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--paper-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.newsletter-status:not(:empty) { opacity: 1; }
.newsletter-status.success { color: var(--gold); }
.newsletter-status.error   { color: var(--clay-soft); }
.newsletter-status a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ==========================================================
   FOOTER, with contact meta
   ========================================================== */
.footer {
  background: var(--bg-deep);
  padding: clamp(36px, 6vh, 56px) var(--gutter) 28px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.footer-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
  font-size: 14px;
}
.footer-row:last-child { border-bottom: none; }
.footer-row .k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.footer-row .v { color: var(--paper-soft); }
.footer-row .v a {
  color: var(--paper-soft);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-row .v a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
}
.footer-lang a { color: var(--paper-dim); transition: color 0.2s ease; }
.footer-lang a:hover { color: var(--clay); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--rule);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
  .nav a { font-size: 16px; }

  .hero-inner { padding-top: 110px; gap: clamp(24px, 5vh, 40px); }

  .listen-grid,
  .release-editorial,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .release-header,
  .about-photo { position: static; max-height: none; }
  .listen-player { max-width: 380px; }
  .bandcamp-embed { height: 588px; }

  .next-show {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .next-show-info {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .next-show-actions { width: 100%; justify-content: flex-start; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 4 / 3; }
  .gallery-item--tall {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .collab { grid-template-columns: 1fr; gap: 8px; }
  .about-meta-row { grid-template-columns: 110px 1fr; }

  .newsletter-inner { grid-template-columns: 1fr; align-items: start; gap: 28px; }

  .footer-row { grid-template-columns: 90px 1fr; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; }

  .credibility { padding: 22px var(--gutter); }
  .cred-label::after { display: none; }
  .cred-label { padding-right: 0; }
  .cred-list { font-size: 14px; gap: 8px 12px; }
}

@media (max-width: 520px) {
  .hero-meta-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }

  .video-aspect {
    box-shadow:
      -10px 10px 0 var(--bg-raised),
      -10px 10px 0 1px rgba(196, 106, 74, 0.35);
  }
  .video-facade-play { width: 64px; height: 64px; }
  .video-facade-play svg { width: 28px; height: 28px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--tall { aspect-ratio: 4 / 3; grid-column: span 1; }

  .tracks li { grid-template-columns: 30px 1fr; gap: 12px; }
  .tracks .t { font-size: 16px; }

  .formats-list li { font-size: 16px; padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
