:root {
  --cream: #f6dfcc;
  --ivory: #fff5e5;
  --paper: #f7ead7;
  --blush: #c9796f;
  --rose: #a85850;
  --rose-soft: #dba69a;
  --burgundy: #7d2b32;
  --burgundy-dark: #3c1618;
  --oxblood: #633034;
  --gold: #f5d373;
  --old-gold: #c59b49;
  --champagne: #ffe5a3;
  --black: #211313;
  --ink: #2d1816;
  --muted: #7c5a53;
  --line: rgba(197, 155, 73, 0.38);
  --shadow: 0 28px 90px rgba(72, 31, 28, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 229, 163, 0.36), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(201, 121, 111, 0.24), transparent 26rem),
    linear-gradient(90deg, rgba(197, 155, 73, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, var(--ivory), var(--cream) 46%, #e7b9a9);
  background-size: auto, auto, 54px 54px, auto;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

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

img,
video,
iframe {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--ivory);
  background: linear-gradient(90deg, rgba(91, 40, 38, 0.72), rgba(177, 91, 81, 0.5));
  border-bottom: 1px solid rgba(255, 229, 163, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  object-fit: contain;
  background: rgba(45, 24, 22, 0.86);
  border: 1px solid rgba(255, 229, 163, 0.48);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.brand small {
  color: rgba(255, 250, 240, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 14px);
  padding: 8px 20px;
  background: rgba(255, 245, 229, 0.18);
  border: 1px solid rgba(255, 229, 163, 0.24);
  border-radius: 999px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 245, 229, 0.9);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(213, 173, 90, 0.45);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ivory);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 7vw, 96px) 76px;
  color: var(--ivory);
}

.hero::after {
  position: absolute;
  right: 7vw;
  bottom: -90px;
  width: 280px;
  height: 520px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 229, 163, 0.34), transparent 66%);
  filter: blur(34px);
  transform: rotate(18deg);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(146, 73, 66, 0.9), rgba(185, 104, 91, 0.62) 46%, rgba(60, 22, 24, 0.18)),
    linear-gradient(180deg, rgba(80, 37, 34, 0.08), rgba(74, 29, 27, 0.5)),
    radial-gradient(circle at 72% 44%, rgba(255, 229, 163, 0.32), transparent 30rem);
}

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

.kicker,
.section-label {
  color: var(--old-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.kicker {
  color: var(--champagne);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(64px, 12vw, 142px);
  font-weight: 700;
}

h2 {
  font-size: clamp(40px, 6vw, 74px);
}

h3 {
  color: var(--burgundy-dark);
  font-size: 34px;
}

.lead {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 245, 229, 0.86);
  font-size: 17px;
}

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

.hero-card {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 6vw, 82px);
  bottom: 76px;
  width: min(310px, calc(100% - 40px));
  padding: 24px;
  background: rgba(91, 40, 38, 0.72);
  border: 1px solid rgba(255, 229, 163, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card a {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.hero-card p {
  margin: 10px 0 18px;
  color: rgba(255, 250, 240, 0.76);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #5d2926;
  background: linear-gradient(135deg, var(--ivory), var(--champagne) 44%, var(--gold));
  box-shadow: 0 14px 34px rgba(93, 41, 38, 0.22);
}

.button.secondary,
.button.ghost {
  color: var(--ivory);
  background: rgba(255, 245, 229, 0.14);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(90deg, #6d3432, #b7665c, #6d3432);
  color: var(--ivory);
  border-top: 1px solid rgba(255, 229, 163, 0.32);
  border-bottom: 1px solid rgba(255, 229, 163, 0.32);
}

.feature-strip p {
  margin: 0;
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 229, 163, 0.24);
  color: rgba(255, 245, 229, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 34px);
  text-align: center;
}

.feature-strip p:last-child {
  border-right: 0;
}

.intro-section,
.audio-section,
.offer-section,
.calendar-section,
.program-section,
.repertoire-section,
.news-section,
.gallery-section,
.testimonials-section,
.contact-section {
  padding: clamp(74px, 9vw, 124px) clamp(20px, 7vw, 96px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 420px) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: 18px;
}

.intro-title p,
.intro-copy {
  color: var(--muted);
  font-size: 17px;
}

.portrait-frame {
  margin: 0;
  padding: 10px;
  background: linear-gradient(135deg, #6d3432, #2d1816);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--burgundy);
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

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

.section-heading.compact p {
  color: var(--muted);
  font-size: 17px;
}

.audio-section {
  background:
    linear-gradient(180deg, rgba(255, 245, 229, 0.86), rgba(246, 223, 204, 0.96)),
    url("assets/gallery-entrance.jpg") center / cover fixed;
}

.audio-player {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background: linear-gradient(135deg, rgba(94, 45, 43, 0.96), rgba(45, 24, 22, 0.96));
  color: var(--ivory);
  border: 1px solid rgba(255, 229, 163, 0.44);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.record {
  position: relative;
  display: grid;
  width: 190px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--champagne) 0 16%, #6d3432 17% 30%, #211313 31% 100%);
  box-shadow: inset 0 0 0 22px #2d1816, inset 0 0 0 24px rgba(245, 211, 115, 0.26);
}

.record.is-playing {
  animation: spin 2.8s linear infinite;
}

.record span {
  width: 26px;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.track-list {
  display: grid;
  gap: 10px;
}

.track {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  color: var(--ivory);
  text-align: left;
  background: rgba(255, 245, 229, 0.08);
  border: 1px solid rgba(255, 229, 163, 0.22);
  border-radius: 6px;
  cursor: pointer;
}

.track.active {
  border-color: var(--gold);
  background: rgba(201, 121, 111, 0.24);
}

.track span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
}

.track strong,
.track small {
  display: block;
}

.track small {
  color: rgba(255, 250, 240, 0.62);
}

.player-controls {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.icon-button {
  width: 58px;
  height: 44px;
  color: var(--black);
  background: var(--gold);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 10px;
  font-weight: 700;
}

.icon-button.is-playing span {
  font-size: 0;
}

.icon-button.is-playing span::after {
  content: "Stop";
  font-size: 10px;
}

.progress {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.12);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--ivory));
}

.now-playing {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 245, 229, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  object-position: center 26%;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.94) contrast(1.03);
}

.service-body {
  padding: 24px 26px 28px;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--old-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.program-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(99, 48, 52, 0.94), rgba(177, 91, 81, 0.78)),
    url("assets/hero-stage.png") center / cover;
}

.program-copy p,
.contact-section p {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 17px;
}

.shop-preview {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: rgba(45, 24, 22, 0.5);
  border: 1px solid rgba(255, 229, 163, 0.42);
  border-radius: 8px;
}

.album-cover {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201, 121, 111, 0.42), rgba(45, 24, 22, 0.28)),
    url("assets/gallery-stage-gold.jpg") center / cover;
  border: 1px solid rgba(255, 229, 163, 0.48);
  border-radius: 8px;
}

.album-cover img {
  width: 74%;
  padding: 10px;
  background: rgba(33, 19, 19, 0.84);
  border-radius: 6px;
}

.shop-preview strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
}

.cart-note,
.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.repertoire-grid,
.news-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.repertoire-grid article,
.news-grid article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  background: rgba(255, 245, 229, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.repertoire-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.news-section {
  background: linear-gradient(180deg, var(--cream), #e9b9aa);
}

.news-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid time {
  color: var(--old-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-grid p,
.testimonial-grid p {
  color: var(--muted);
}

.calendar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(60, 22, 24, 0.94), rgba(177, 91, 81, 0.78)),
    url("assets/gallery-stage-blue.jpg") center / cover;
}

.calendar-copy p {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 17px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.82);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.concert,
.event.concert time {
  background: var(--gold);
}

.dot.wedding,
.event.wedding time {
  background: #f4ded6;
}

.dot.farewell,
.event.farewell time {
  background: #9b9b9b;
}

.dot.available,
.event.available time {
  background: #d8caa6;
}

.calendar-panel {
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 245, 229, 0.95);
  border: 1px solid rgba(197, 155, 73, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.calendar-header strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.calendar-header span {
  color: var(--muted);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.event-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.event-form input,
.event-form select {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff3df;
  border: 1px solid rgba(157, 121, 53, 0.28);
  border-radius: 4px;
}

.event-form .button {
  width: 100%;
}

.event-form .ghost {
  color: var(--burgundy);
  background: transparent;
}

.event-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.event {
  display: grid;
  grid-template-columns: 126px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: #fff3df;
  border: 1px solid rgba(157, 121, 53, 0.22);
  border-radius: 8px;
}

.event time {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: var(--black);
  border-radius: 6px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.event strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.event p {
  margin: 6px 0 0;
  color: var(--muted);
}

.event-actions {
  display: flex;
  gap: 8px;
}

.event-actions button {
  padding: 8px 10px;
  color: var(--burgundy);
  background: transparent;
  border: 1px solid rgba(116, 23, 39, 0.28);
  border-radius: 4px;
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-section h2 {
  max-width: 820px;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  background: var(--burgundy-dark);
  border: 1px solid rgba(157, 121, 53, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.tile-wide {
  grid-row: span 2;
  min-height: 360px;
}

.tile-dark img {
  object-position: center top;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.video-card {
  overflow: hidden;
  background: rgba(255, 245, 229, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-card video,
.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
}

.video-card h3 {
  padding: 18px;
  font-size: 28px;
}

.testimonials-section {
  color: var(--ivory);
  background: linear-gradient(135deg, #633034, #b7665c);
}

.testimonial-grid blockquote {
  background: rgba(45, 24, 22, 0.28);
  border-color: rgba(255, 229, 163, 0.36);
}

.testimonial-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.testimonial-grid cite {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 229, 163, 0.16), transparent 24rem),
    linear-gradient(135deg, #3c1618, #8f4d47);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ivory);
  background: rgba(255, 245, 229, 0.1);
  border: 1px solid rgba(255, 229, 163, 0.42);
  border-radius: 4px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 7vw, 96px);
  color: rgba(255, 250, 240, 0.72);
  background: #2d1816;
  border-top: 1px solid rgba(255, 229, 163, 0.32);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 78px);
    padding: 18px clamp(20px, 7vw, 54px) 28px;
    overflow-y: auto;
    background: rgba(13, 11, 10, 0.98);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(213, 173, 90, 0.18);
  }

  .menu-toggle {
    display: block;
  }

  .cards,
  .repertoire-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    display: none;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  }

  .intro-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
  }

  .brand strong {
    font-size: 22px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 11, 10, 0.95), rgba(69, 16, 26, 0.82)),
      linear-gradient(180deg, transparent, rgba(13, 11, 10, 0.46));
  }

  .hero-actions,
  .site-footer,
  .event-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-strip,
  .intro-grid,
  .audio-player,
  .calendar-section,
  .program-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .audio-player {
    justify-items: center;
  }

  .track-list,
  .player-controls {
    grid-column: 1;
    width: 100%;
  }

  .feature-strip p {
    border-right: 0;
    border-bottom: 1px solid rgba(213, 173, 90, 0.18);
  }

  .section-heading {
    display: block;
  }

  .cards,
  .gallery-grid,
  .video-grid,
  .repertoire-grid,
  .news-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .event,
  .event-form {
    grid-template-columns: 1fr;
  }

  .calendar-header {
    display: block;
  }

  .gallery-tile,
  .tile-wide {
    min-height: 250px;
  }

  .tile-wide {
    grid-row: auto;
  }
}
