:root {
  --ink: #12100c;
  --paper: #f0e1c7;
  --paper-strong: #fff4dc;
  --green: #172b22;
  --green-soft: #d2c4a2;
  --wine: #7b1f2b;
  --amber: #d79b4b;
  --clay: #955d33;
  --charcoal: #090806;
  --walnut: #24150d;
  --oak: #6f3f21;
  --line: rgba(70, 44, 24, 0.2);
  --shadow: 0 28px 80px rgba(18, 16, 12, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.05), transparent 18%, rgba(0, 0, 0, 0.08) 54%, transparent 88%),
    linear-gradient(180deg, #170f0a 0%, #2a180d 48%, #100b08 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf0;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--paper-strong);
  background: rgba(9, 8, 6, 0.9);
  box-shadow: 0 12px 38px rgba(21, 24, 21, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(215, 155, 75, 0.55);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf0;
  padding: 112px clamp(20px, 6vw, 82px) 48px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 38%, rgba(215, 155, 75, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.62) 44%, rgba(9, 8, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.76) 0%, rgba(9, 8, 6, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1be78;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 10vw, 7.8rem);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.35rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 21px;
  font-weight: 800;
}

.button.primary {
  color: #fffaf0;
  background: var(--wine);
}

.button.secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.55);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(215, 155, 75, 0.34);
}

.intro-band div {
  min-height: 108px;
  padding: 26px clamp(18px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(215, 155, 75, 0.08), transparent 42%),
    #14100c;
  color: var(--paper-strong);
}

.intro-band span,
.date-row p,
.player-panel p,
.site-footer {
  color: rgba(18, 16, 12, 0.66);
}

.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.sensory-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(215, 155, 75, 0.24);
  color: var(--paper-strong);
}

.sensory-strip p {
  min-height: 142px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 28px clamp(18px, 3vw, 40px);
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.04), transparent 34%, rgba(0, 0, 0, 0.18)),
    var(--walnut);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  line-height: 1.12;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 82px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-note,
.section-copy {
  margin: 14px 0 0;
  color: rgba(36, 25, 15, 0.68);
  line-height: 1.75;
}

.section-note {
  max-width: 260px;
  font-size: 0.96rem;
}

.section-copy {
  max-width: 650px;
  font-size: 1.04rem;
}

.duo-grid,
.listen-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.duo-section {
  background:
    linear-gradient(90deg, rgba(111, 63, 33, 0.12), transparent 28%, rgba(23, 43, 34, 0.1)),
    linear-gradient(180deg, var(--paper-strong), #ead7b9);
}

.duo-section .section-heading {
  margin-bottom: 34px;
}

.text-panel {
  columns: 2 280px;
  column-gap: 42px;
  color: rgba(30, 21, 13, 0.8);
  font-size: 1.02rem;
  line-height: 1.76;
}

.text-panel p {
  margin-top: 0;
}

.quote-panel {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 155, 75, 0.13), transparent 42%),
    var(--charcoal);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.quote-panel img {
  width: min(260px, 78%);
  margin: 0 auto 28px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

.quote-panel p {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
  line-height: 1.04;
}

.quote-panel span {
  color: var(--amber);
  font-weight: 700;
}

.room-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.94), rgba(36, 21, 13, 0.92)),
    var(--charcoal);
  color: var(--paper-strong);
}

.room-image-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(215, 155, 75, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-copy {
  align-self: center;
}

.room-copy h2 {
  max-width: 620px;
}

.room-copy p:not(.eyebrow) {
  color: rgba(255, 244, 220, 0.78);
  line-height: 1.85;
}

.repertoire-section {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.84), rgba(36, 21, 13, 0.72)),
    linear-gradient(180deg, #452615, #20110a);
  color: var(--paper-strong);
}

.repertoire-section .section-copy {
  color: rgba(255, 244, 220, 0.72);
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(215, 155, 75, 0.22);
  background: rgba(215, 155, 75, 0.22);
}

.program-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 3.5vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.08), rgba(255, 244, 220, 0.02)),
    rgba(9, 8, 6, 0.68);
}

.program-card .program-number {
  color: var(--amber);
  font-weight: 900;
}

.program-card small {
  display: block;
  margin: 16px 0 34px;
  color: rgba(255, 244, 220, 0.55);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
}

.program-card p {
  margin: 24px 0 0;
  color: rgba(255, 244, 220, 0.72);
  line-height: 1.65;
}

.dates-section {
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.78), rgba(240, 225, 199, 0.92)),
    var(--paper);
}

.dates-list {
  border-top: 1px solid var(--line);
  margin-top: 36px;
}

.date-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.date-row time {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-row h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.date-row p {
  margin: 7px 0 0;
}

.date-row a,
.date-status {
  min-width: 92px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.date-row a {
  color: var(--wine);
  border-color: rgba(123, 31, 43, 0.28);
  background: rgba(255, 244, 220, 0.42);
}

.date-status {
  color: rgba(18, 16, 12, 0.58);
}

.empty-dates {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.empty-dates h3 {
  margin-bottom: 8px;
}

.empty-dates p {
  margin: 0;
  color: rgba(18, 16, 12, 0.66);
  line-height: 1.65;
}

.date-row.muted {
  opacity: 0.72;
}

.listen-section {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92), rgba(36, 21, 13, 0.76)),
    var(--charcoal);
  color: var(--paper-strong);
}

.listen-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.8;
}

.player-panel {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(215, 155, 75, 0.1), transparent 45%),
    rgba(255, 250, 240, 0.06);
}

.play-button {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--ink);
}

.play-button.is-playing span {
  width: 18px;
  height: 24px;
  margin-left: 0;
  border: 0;
  border-left: 6px solid var(--ink);
  border-right: 6px solid var(--ink);
}

.wave {
  grid-column: 1 / -1;
  display: flex;
  height: 72px;
  align-items: center;
  gap: 8px;
}

.wave span {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.52);
  transform-origin: center;
}

.wave span:nth-child(2n) {
  height: 42px;
}

.wave span:nth-child(3n) {
  height: 60px;
  background: var(--clay);
}

.player-panel.is-playing .wave span {
  animation: pulse 900ms ease-in-out infinite alternate;
}

.player-panel.is-playing .wave span:nth-child(2n) {
  animation-delay: 120ms;
}

.player-panel.is-playing .wave span:nth-child(3n) {
  animation-delay: 220ms;
}

@keyframes pulse {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1.08);
  }
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(26, 14, 8, 0.96), rgba(79, 42, 20, 0.74)),
    var(--walnut);
  color: var(--paper-strong);
}

.contact-section p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 244, 220, 0.74);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(215, 155, 75, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf0;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 6vw, 82px);
  border-top: 1px solid rgba(215, 155, 75, 0.2);
  background: var(--charcoal);
  color: var(--paper-strong);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: var(--charcoal);
    color: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 8, 6, 0.82) 0%, rgba(9, 8, 6, 0.46) 72%),
      linear-gradient(90deg, rgba(9, 8, 6, 0.78) 0%, rgba(9, 8, 6, 0.18) 100%);
  }

  .intro-band,
  .sensory-strip,
  .section-heading,
  .duo-grid,
  .room-section,
  .listen-section,
  .contact-section,
  .program-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 14px;
  }

  .text-panel {
    columns: auto;
  }

  .section-note {
    max-width: 100%;
  }

  .room-image-wrap {
    min-height: 360px;
  }

  .program-list {
    gap: 1px;
  }

  .date-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .date-row a,
  .date-status {
    grid-column: 2;
    width: fit-content;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 150px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .program-card {
    min-height: 260px;
  }

  .sensory-strip p {
    min-height: 112px;
  }
}
