:root {
  color-scheme: light;
  --page: #f7f7f4;
  --surface: #ffffff;
  --ink: #191a18;
  --muted: #5f635c;
  --line: #d8ddd2;
  --soft-line: #ebeee6;
  --gold: #e4b72e;
  --blue: #2b6073;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.52;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
}

.site-header,
.page-shell,
.site-footer {
  width: min(1280px, calc(100% - 48px));
  max-width: 100%;
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
  gap: 10px 15px;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-nav a {
  color: inherit;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--blue);
}

.header-email {
  max-width: 100%;
  padding-left: 15px;
  border-left: 1px solid var(--line);
  color: var(--blue) !important;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px 44px;
  align-items: end;
  padding: 42px 0 26px;
  border-bottom: 1px solid var(--line);
}

.intro > * {
  min-width: 0;
}

.kicker {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.05;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.4vw, 1.34rem);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1.2;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  font-weight: 740;
  letter-spacing: 0;
}

.intro-text,
.availability-panel p,
.section-title-row p,
.venue-copy p,
.contact-band p {
  color: var(--muted);
}

.intro-text {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1rem;
}

.email-link {
  grid-column: 2;
  justify-self: start;
  max-width: 100%;
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.availability-panel,
.contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 26px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  max-width: 100%;
}

.availability-panel > *,
.contact-band > * {
  min-width: 0;
}

.availability-panel p,
.contact-band p {
  margin-bottom: 0;
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 740;
  padding: 0 15px;
  text-decoration: none;
  white-space: nowrap;
}

.primary-button,
.availability-panel .primary-button,
.contact-band .primary-button {
  background: var(--ink);
  color: #ffffff;
}

.secondary-button,
.availability-panel .secondary-button,
.contact-band .secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.primary-button:hover,
.availability-panel .primary-button:hover,
.contact-band .primary-button:hover {
  background: var(--blue);
  color: #ffffff;
}

.secondary-button:hover,
.availability-panel .secondary-button:hover,
.contact-band .secondary-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.section-block {
  padding-top: 42px;
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 0.74fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.section-title-row > * {
  min-width: 0;
}

.section-title-row p {
  max-width: 760px;
  margin-bottom: 0;
}

.venue-grid,
.photo-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 20px;
}

.venue-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.venue-copy {
  padding: 18px 18px 14px;
}

.venue-label,
.map-figure figcaption,
.photo-placeholder figcaption,
.site-footer {
  color: var(--muted);
}

.venue-label {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.venue-copy p {
  margin-bottom: 0;
}

.seat-details,
.seat-card-list {
  margin: 16px 0 0;
}

.seat-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.seat-details div,
.seat-card {
  min-width: 0;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fafbf7;
  padding: 10px;
}

.seat-details .wide-detail {
  grid-column: span 2;
}

.seat-details dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.seat-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
}

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

.seat-card {
  display: grid;
  gap: 3px;
}

.seat-card strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.seat-card span {
  color: var(--ink);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.seat-card small {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.premium-seat {
  border-color: rgba(228, 183, 46, 0.7);
  background: #fffaf0;
}

.map-figure,
.photo-placeholder,
.media-panel {
  margin: 0;
}

.map-figure {
  padding: 0 18px 18px;
}

.map-figure img {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fbfcfa;
}

.map-figure figcaption {
  margin-top: 8px;
  font-size: 0.84rem;
}

.photo-placeholder {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 183, 46, 0.24), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, #eef1ea 0 20px, #fafaf6 20px 40px);
  padding: 18px;
}

.photo-placeholder span {
  font-size: 1rem;
  font-weight: 740;
}

.photo-placeholder figcaption {
  font-size: 0.9rem;
}

.media-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.media-panel video {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  display: block;
  object-fit: contain;
  background: #111;
}

.media-panel figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 12px 14px 14px;
}

.contact-band {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.not-found {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 15vh 0;
}

.not-found .brand {
  margin-bottom: 44px;
}

.not-found h1 {
  max-width: 100%;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .header-email {
    width: 100%;
    padding: 8px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intro,
  .section-title-row {
    grid-template-columns: 1fr;
  }

  .availability-panel,
  .contact-band {
    display: block;
  }

  .availability-panel > * + *,
  .contact-band > * + * {
    margin-top: 16px;
  }

  .email-link {
    grid-column: auto;
  }

  .action-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: calc(100% - 40px);
  }

  .site-header {
    gap: 14px;
  }

  .header-nav {
    gap: 9px 13px;
  }

  .intro {
    gap: 16px;
    padding: 30px 0 22px;
  }

  .availability-panel,
  .contact-band {
    padding: 18px;
  }

  .availability-panel h2,
  .contact-band h2,
  .section-title-row p,
  .venue-copy p,
  .seat-card small {
    max-width: 100%;
  }

  .availability-panel h2 {
    max-width: 290px;
  }

  .section-block {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(1.72rem, 9vw, 2.14rem);
  }

  .button,
  .action-row {
    width: 100%;
  }

  .seat-details {
    grid-template-columns: 1fr;
  }

  .seat-details .wide-detail {
    grid-column: auto;
  }
}
