:root {
  --black: #10070a;
  --ink: #17090e;
  --charcoal: #241018;
  --white: #ffffff;
  --soft-white: #f3e7d6;
  --champagne: #e2cba6;
  --champagne-deep: #a66d45;
  --gold: #bd8f4a;
  --gold-soft: #e5c77c;
  --muted: #c7b7a0;
  --yellow: #d6a84e;
  --yellow-strong: #a66d45;
  --burgundy: #3a101a;
  --burgundy-soft: #5a1a28;
  --plum: #211019;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(0, 0, 0, 0.12);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(90, 26, 40, 0.52), transparent 32%),
    linear-gradient(180deg, #10070a 0%, #1a0b10 48%, #0d0608 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(16, 7, 10, 0.84);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 6px;
}

.site-nav a:hover {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 44px));
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(5, 5, 5, 0) 28%),
    url("assets/voyage/romuva-cocktail.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, var(--black) 0%, rgba(5, 5, 5, 0) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: min(780px, calc(100svh - 44px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 42px) 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

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

.eyebrow.dark {
  color: var(--black);
}

.section-yellow .eyebrow.dark,
.section-gold .eyebrow.dark {
  color: rgba(255, 255, 255, 0.72);
}

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

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(4rem, 10.4vw, 8.8rem);
  line-height: 0.83;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions,
.venue-actions,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  border: 2px solid transparent;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: var(--gold-soft);
  box-shadow: 0 18px 46px rgba(189, 143, 74, 0.24);
}

.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  color: var(--yellow);
  background: var(--black);
}

.event-card {
  align-self: center;
  padding: 24px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(229, 199, 124, 0.98), rgba(166, 109, 69, 0.94)),
    var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--white);
}

.event-card-label,
.event-card p {
  margin: 0;
}

.event-card-label {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 1000;
}

.event-card span {
  display: block;
  font-weight: 850;
}

.event-card-line {
  height: 1px;
  margin: 18px 0;
  background: rgba(0, 0, 0, 0.32);
}

.event-card p + p {
  margin-top: 8px;
}

.section {
  position: relative;
  padding: clamp(70px, 11vw, 132px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-yellow {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(229, 199, 124, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #2a0d15, #5a1a28 54%, #201018);
}

.section-black {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 7, 10, 0.96), rgba(31, 12, 18, 0.82)),
    radial-gradient(circle at 88% 12%, rgba(229, 199, 124, 0.12), transparent 32%),
    url("assets/voyage/red-cocktail.jpg") center / cover fixed,
    linear-gradient(180deg, #10070a, #1f0c12);
}

.section-white {
  color: var(--black);
  background: var(--soft-white);
}

.section-champagne {
  color: var(--black);
  background:
    linear-gradient(120deg, rgba(243, 231, 214, 0.95), rgba(226, 203, 166, 0.88)),
    url("assets/voyage/highballs.jpg") center / cover,
    var(--champagne);
}

.section-gold {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(58, 16, 26, 0.9), rgba(103, 38, 45, 0.82)),
    url("assets/voyage/coupe-cocktail.jpg") center / cover,
    var(--burgundy);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p,
.section-copy {
  color: currentColor;
  opacity: 0.78;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.program-board {
  overflow: hidden;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 8px;
}

.program-row {
  display: grid;
  grid-template-columns: 92px minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 3vw, 34px);
  color: var(--black);
  background: var(--soft-white);
  border-top: 2px solid var(--black);
}

.program-row:first-child {
  border-top: 0;
}

.program-row:nth-child(even) {
  color: var(--white);
  background: var(--black);
}

.program-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 1000;
}

.program-row h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.program-row p {
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.72;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.program-row a {
  color: inherit;
  border-bottom: 2px solid currentColor;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

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

.pass-card,
.benefit-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pass-card {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--champagne), var(--gold));
  box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.12);
}

.pass-card span,
.benefit-card span,
.experience-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: currentColor;
  opacity: 0.66;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pass-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  font-weight: 1000;
}

.pass-card p,
.benefit-card p {
  margin-bottom: 0;
}

.benefit-card {
  min-height: 190px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
}

.benefit-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.experience-grid,
.venue-grid {
  display: grid;
  gap: 18px;
}

.experience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.experience-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.experience-card p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.72);
}

.experience-card a {
  color: inherit;
  border-bottom: 2px solid currentColor;
  font-weight: 950;
}

.experience-card-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.92)),
    url("assets/voyage/highballs.jpg") center / cover,
    radial-gradient(circle at 86% 12%, rgba(216, 175, 74, 0.26), transparent 34%),
    var(--black);
}

.experience-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

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

.venue-card {
  padding: 24px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.venue-card-top {
  margin-bottom: 14px;
}

.venue-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.venue-card iframe {
  width: 100%;
  height: 250px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.1);
}

.social-section h2 {
  margin-bottom: 24px;
}

.video-hub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-block {
  display: grid;
  gap: 8px;
  max-width: 520px;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 850;
}

.contact-block a {
  width: fit-content;
  border-bottom: 2px solid var(--black);
}

.contact-block span {
  color: rgba(0, 0, 0, 0.72);
}

.section-gold .contact-block a {
  border-bottom-color: rgba(255, 255, 255, 0.82);
}

.section-gold .contact-block span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
}

.contact-socials a,
.social-mini a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
}

.section-gold .contact-socials a,
.section-gold .social-mini a {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.section-gold .contact-socials a:hover,
.section-gold .social-mini a:hover {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.featured-video {
  min-height: 340px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88)),
    url("assets/voyage/romuva-cocktail.jpg") center / cover,
    var(--black);
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 1000;
}

.featured-video:hover {
  color: var(--gold-soft);
}

.featured-video small,
.video-link-list small {
  opacity: 0.68;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-video span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.95;
}

.featured-video span::after,
.video-link-list a::after {
  content: "->";
  margin-left: auto;
  font-weight: 1000;
}

.featured-video b {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
}

.featured-video-embed {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(16, 7, 10, 0.48);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.featured-video-embed .instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

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

.video-link-list a {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 950;
}

.video-link-list a:hover {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.video-link-list span {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1;
}

.video-copy {
  display: grid;
  gap: 4px;
}

.video-copy small {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-copy strong {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

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

.video-chip {
  min-height: 64px;
  padding: 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid var(--black);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: left;
}

.video-chip.is-active,
.video-chip:hover {
  color: var(--gold-soft);
  background: var(--black);
}

.video-chip-empty {
  opacity: 0.52;
  cursor: not-allowed;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100svh - 36px);
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(260px, 1fr);
  gap: 18px;
  padding: 18px;
  overflow: auto;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.video-modal-panel .video-copy {
  grid-column: 1 / -1;
  padding-right: 48px;
}

.video-modal-panel video {
  width: 100%;
  max-height: 68svh;
  height: auto;
  object-fit: contain;
  background: var(--black);
  border-radius: 8px;
}

.video-modal-panel .video-rail {
  align-content: start;
  grid-template-columns: 1fr;
}

.video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--gold-soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 1000;
}

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

.social-mini a {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--black);
  background: transparent;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
}

.social-mini a:hover {
  color: var(--gold-soft);
  background: var(--black);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(32px, 6vw, 72px);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

summary {
  min-height: 64px;
  padding: 18px 54px 18px 20px;
  position: relative;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--yellow-strong);
  font-size: 1.45rem;
  font-weight: 1000;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(0, 0, 0, 0.68);
}

.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a {
  color: var(--yellow);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    padding-bottom: 56px;
  }

  .event-card {
    max-width: 360px;
    align-self: auto;
  }

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

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

  .map-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.74) 54%, var(--black) 100%),
      url("assets/voyage/romuva-cocktail.jpg") 62% center / cover no-repeat;
  }

  .hero-inner {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
    min-height: calc(100svh - 38px);
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(3.1rem, 15.5vw, 4.35rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-lead {
    font-size: 1.02rem;
    max-width: 100%;
  }

  .event-card {
    box-shadow: 8px 8px 0 var(--white);
    max-width: calc(100% - 8px);
  }

  .section {
    padding: 68px 0;
  }

  .section-inner {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

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

  .benefit-mosaic,
  .experience-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .program-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .program-number {
    width: 52px;
    height: 52px;
  }

  .pass-card,
  .benefit-card,
  .experience-card {
    min-height: auto;
  }

  .featured-video {
    min-height: 300px;
  }

  .video-rail {
    grid-template-columns: 1fr;
  }

  .video-modal-panel {
    grid-template-columns: 1fr;
  }

  .video-modal-panel video {
    max-height: 58svh;
  }

  .social-mini {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    min-height: 160px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

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