:root {
  --black: #030405;
  --night: #080a0d;
  --charcoal: #101318;
  --graphite: #171b22;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --white: #f7fbff;
  --soft-white: rgba(247, 251, 255, 0.78);
  --muted: rgba(247, 251, 255, 0.55);
  --steel: #9fb0c3;
  --blue-light: #dceeff;
  --silver: #c7d1dc;
  --shadow: rgba(0, 0, 0, 0.45);
  --max-width: 1240px;
  --header-height: 76px;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(220, 238, 255, 0.05), transparent 340px),
    linear-gradient(135deg, #020303 0%, #0a0d11 42%, #040506 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 75%);
}

.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(220, 238, 255, 0.06) 34%, transparent 48%),
    linear-gradient(245deg, transparent 0 34%, rgba(255, 255, 255, 0.04) 45%, transparent 57%);
  opacity: 0.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(146px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 5, 0.66);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 4, 5, 0.88);
  box-shadow: 0 20px 40px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 12px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), #2b313a 42%, #060708);
  box-shadow: 0 0 22px rgba(220, 238, 255, 0.42);
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a {
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--soft-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.site-header .btn {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(247, 251, 255, 0.68);
  color: #020304;
  background:
    linear-gradient(180deg, #ffffff 0%, #d8e6f2 48%, #9ba8b3 100%);
  box-shadow: 0 0 26px rgba(220, 238, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--white);
  box-shadow: 0 0 36px rgba(220, 238, 255, 0.38);
}

.btn-secondary,
.btn-card {
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-card:hover,
.btn-card:focus-visible {
  border-color: rgba(247, 251, 255, 0.52);
  background: rgba(247, 251, 255, 0.1);
}

.btn-small {
  min-width: 146px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.btn-card {
  min-width: 98px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.btn:disabled {
  color: rgba(247, 251, 255, 0.36);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.03);
  transform: none;
  box-shadow: none;
}

.section-frame,
.section-pad,
.next-show,
.site-footer {
  width: min(var(--max-width), calc(100% - 56px));
  margin-inline: auto;
}

.hero.section-frame {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  min-height: 96svh;
  padding: calc(var(--header-height) + 76px) max(28px, calc((100vw - var(--max-width)) / 2)) 148px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 42%, rgba(220, 238, 255, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.98) 0%, rgba(3, 4, 5, 0.86) 38%, rgba(3, 4, 5, 0.48) 68%, rgba(3, 4, 5, 0.84) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.24), transparent 36%, rgba(3, 4, 5, 0.9));
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 260px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(247, 251, 255, 0.22), transparent) center bottom / min(1180px, calc(100% - 56px)) 1px no-repeat,
    radial-gradient(ellipse at 72% 14%, rgba(220, 238, 255, 0.11), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 5, 0.62) 48%, #030405 100%);
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.76;
  filter: saturate(0.88) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.hero-light {
  position: absolute;
  top: -4%;
  bottom: 0;
  z-index: 1;
  width: 44%;
  pointer-events: none;
  opacity: 0.72;
  filter: blur(1px);
}

.hero-light-left {
  left: -6%;
  background: linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, 0.08) 28%, rgba(220, 238, 255, 0.05) 46%, transparent 68%);
  clip-path: polygon(19% 0, 62% 0, 100% 100%, 0 100%);
}

.hero-light-right {
  right: -10%;
  background: linear-gradient(250deg, transparent 6%, rgba(220, 238, 255, 0.1) 26%, rgba(255, 255, 255, 0.035) 48%, transparent 68%);
  clip-path: polygon(32% 0, 76% 0, 100% 100%, 0 100%);
}

.hero-noise {
  position: absolute;
  inset: 8% -20% 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.045) 48%, transparent 78%);
  opacity: 0.24;
  transform: skewY(-4deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 5.4rem;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(220, 238, 255, 0.18);
}

.hero-subtitle {
  margin: 22px 0 0;
  color: var(--silver);
  font-size: 2rem;
  font-weight: 700;
}

.hero-copy {
  margin: 12px 0 0;
  color: var(--soft-white);
  font-size: 1.08rem;
}

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

.portrait-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.portrait-halo {
  position: absolute;
  width: 76%;
  height: 96%;
  border: 1px solid rgba(247, 251, 255, 0.13);
  border-radius: 999px 999px 8px 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(220, 238, 255, 0.12), transparent 72%);
  box-shadow: inset 0 0 60px rgba(220, 238, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.52);
}

.masked-portrait {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: 8px;
  background: #050607;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.72), 0 0 70px rgba(220, 238, 255, 0.06), inset 0 0 52px rgba(255, 255, 255, 0.035);
}

.masked-portrait::before,
.masked-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.masked-portrait::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.42), transparent 18%, transparent 82%, rgba(3, 4, 5, 0.5)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
}

.masked-portrait::after {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.42);
}

.masked-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.masked-portrait figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 3px;
  margin: 0;
}

.masked-portrait figcaption span {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
}

.masked-portrait figcaption small {
  color: var(--soft-white);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.next-show {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto auto;
  align-items: center;
  gap: 28px;
  margin-top: -72px;
  min-height: 142px;
  padding: 24px 28px;
  border: 1px solid rgba(247, 251, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(220, 238, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(7, 9, 12, 0.82);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.next-show h2 {
  font-size: 3.2rem;
  line-height: 1;
}

.next-show-details p,
.next-show-details span {
  display: block;
  margin: 0;
}

.next-show-details p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.next-show-details span {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(247, 251, 255, 0.3);
  border-radius: 999px;
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-pad {
  padding: 108px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-heading h2 {
  font-size: 3.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading .eyebrow {
  margin: 0;
}

.tour-grid {
  display: grid;
  gap: 12px;
}

.tour-card {
  display: grid;
  grid-template-columns: 116px minmax(170px, 1fr) minmax(120px, auto) auto;
  align-items: center;
  gap: 22px;
  min-height: 102px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tour-card:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 251, 255, 0.26);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.052);
}

.tour-card time {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.tour-card h3 {
  font-size: 1.15rem;
}

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

.card-status {
  color: var(--soft-white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card.past {
  opacity: 0.72;
}

.tour-card.featured {
  border-color: rgba(220, 238, 255, 0.5);
  background:
    linear-gradient(110deg, rgba(220, 238, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 32px rgba(220, 238, 255, 0.045), 0 24px 70px rgba(0, 0, 0, 0.4);
}

.tour-card.featured .card-status {
  color: var(--blue-light);
}

.tour-card.muted {
  opacity: 0.62;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
}

.about-section .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.about-copy {
  margin: 0;
  color: var(--soft-white);
  font-size: 1.28rem;
  line-height: 1.72;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-tile {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.value-tile span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.value-tile h3 {
  margin-top: 62px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: #07090c;
  isolation: isolate;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-card::before,
.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.gallery-card::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.82) 100%);
}

.gallery-card::after {
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 48%, transparent 62%),
    rgba(255, 255, 255, 0.055);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(247, 251, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gallery-card:hover::after,
.gallery-card:focus-within::after {
  opacity: 1;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.08) brightness(0.94);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.82);
  transform: scale(1.001);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-card-subtitle {
  color: var(--soft-white);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  min-height: 68px;
  padding: 20px 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--soft-white);
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 112px;
  padding: 30px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.instagram-link {
  color: var(--soft-white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--white);
  text-shadow: 0 0 18px rgba(220, 238, 255, 0.28);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid rgba(247, 251, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 45%),
    #080a0d;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal h2 {
  font-size: 2.4rem;
  text-transform: uppercase;
}

.modal p:not(.eyebrow) {
  margin: 14px 0 28px;
  color: var(--soft-white);
  font-size: 1.06rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
    gap: 38px;
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 132px;
  }

  h1 {
    font-size: 4.45rem;
  }

  .hero-subtitle {
    font-size: 1.7rem;
  }

  .portrait-wrap {
    min-height: 460px;
  }

  .masked-portrait {
    width: 340px;
  }

  .next-show {
    margin-top: -58px;
  }

  .tour-card {
    grid-template-columns: 102px minmax(160px, 1fr) minmax(112px, auto) auto;
    gap: 16px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 132px;
  }

  body {
    font-size: 15px;
  }

  .section-frame,
  .section-pad,
  .next-show,
  .site-footer {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    justify-self: start;
  }

  .site-header .btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 132px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-self: stretch;
    gap: 4px;
    overflow: visible;
  }

  .nav-links a {
    min-width: 0;
    padding-inline: 6px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-inline: 16px;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 44px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.96), rgba(3, 4, 5, 0.76)),
      linear-gradient(180deg, rgba(3, 4, 5, 0.22), transparent 34%, rgba(3, 4, 5, 0.98));
  }

  .hero::after {
    height: 150px;
    background:
      linear-gradient(90deg, transparent, rgba(247, 251, 255, 0.18), transparent) center bottom / calc(100% - 32px) 1px no-repeat,
      linear-gradient(180deg, transparent 0%, rgba(3, 4, 5, 0.74) 56%, #030405 100%);
  }

  .hero-stage-image {
    object-position: center;
    opacity: 0.56;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .portrait-wrap {
    width: min(310px, 100%);
    min-height: 0;
    justify-content: flex-start;
  }

  .masked-portrait {
    width: min(300px, 100%);
  }

  .portrait-halo {
    width: 84%;
    height: 106%;
  }

  .next-show {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    padding: 22px 18px;
    border-radius: 0;
  }

  .next-show h2 {
    font-size: 2.6rem;
  }

  .section-pad {
    padding-top: 82px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 6px;
    font-size: 2.45rem;
  }

  .tour-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 18px;
  }

  .tour-card time {
    font-size: 1.4rem;
  }

  .tour-card .btn {
    width: 100%;
  }

  .about-copy {
    font-size: 1.08rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .value-tile {
    min-height: 138px;
  }

  .value-tile h3 {
    margin-top: 38px;
  }

  .site-footer {
    margin-top: 82px;
  }

  .modal {
    padding: 30px 22px 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 134px;
  }

  .brand {
    gap: 8px;
    font-size: 0.72rem;
  }

  .brand-mark {
    width: 10px;
    height: 24px;
  }

  .site-header .btn {
    min-width: 104px;
    padding-inline: 10px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    min-height: 34px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .masked-portrait {
    max-width: 270px;
  }

  .section-heading h2,
  .modal h2 {
    font-size: 2.05rem;
  }

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

  .gallery-card-content {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }

  .btn {
    min-width: 0;
    width: 100%;
    padding-inline: 16px;
  }

  .site-header .btn {
    width: auto;
    padding-inline: 10px;
  }
}
