@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --yot-cream: #fff5dc;
  --yot-off-white: #f8f2eb;
  --yot-peach: #ffae7c;
  --yot-orange: #ffae7c;
  --yot-charcoal: #232323;
  --yot-ink: #323232;
  --page-gutter: 40px;
  --display-size: clamp(4.5rem, 8.34vw, 7.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--yot-off-white);
  color: var(--yot-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.57;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
  padding-right: var(--menu-scrollbar-width, 0px);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 80px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-gutter);
  color: var(--yot-cream);
  background: rgba(35, 35, 35, 0.2);
  backdrop-filter: blur(10px);
}

.site-header__logo {
  width: 196px;
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header__booking {
  justify-self: end;
}

.menu-trigger {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu-trigger__mark {
  width: 10px;
  height: 6px;
}

.menu-trigger__close-icon {
  display: none;
  width: 24px;
  height: 24px;
}

body.menu-is-open .site-header {
  position: fixed;
  z-index: 110;
  width: calc(100% - var(--menu-scrollbar-width, 0px));
  padding: 0 var(--page-gutter);
  pointer-events: auto;
  background: rgba(35, 35, 35, 0.2);
  backdrop-filter: blur(10px);
}

body.menu-is-open .menu-trigger {
  position: static;
  z-index: 111;
  display: inline-flex;
  pointer-events: auto;
}

body.menu-is-open .menu-trigger__close-icon {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 8px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button span[aria-hidden="true"] {
  display: none;
}

.button::after {
  width: 9px;
  height: 6px;
  flex: 0 0 auto;
  background: center / contain no-repeat url("../images/arrow-light.svg");
  content: "";
}

.button--solid {
  color: var(--yot-cream);
  background: var(--yot-orange);
}

.button--solid.site-header__booking {
  background: var(--yot-peach);
}

.button--solid:hover,
.button--solid:focus-visible {
  color: var(--yot-charcoal);
  background: var(--yot-peach);
}

.button--solid:hover::after,
.button--solid:focus-visible::after {
  background-image: url("../images/arrow-dark.svg");
}

.button--outline {
  border-width: 2px;
  border-color: var(--yot-peach);
  color: var(--yot-peach);
  background: transparent;
}

.button--outline::after {
  display: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--yot-charcoal);
  background: var(--yot-peach);
}

.button--outline-light {
  border-color: var(--yot-cream);
  color: var(--yot-cream);
  background: transparent;
}

/* Shared directional navigation control */
.yot-chevron-control {
  position: relative;
}

.yot-chevron-control.yot-chevron-control {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.yot-chevron-control.yot-chevron-control::before {
  position: absolute;
  inset: 8px;
  border: 0.5px solid rgba(255, 250, 240, 0.3);
  border-radius: 50%;
  background: rgba(248, 242, 235, 0.28);
  box-shadow: 0 4px 14px rgba(20, 25, 28, 0.12);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  content: "";
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.yot-chevron-control.yot-chevron-control::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--yot-charcoal);
  border-right: 1.5px solid var(--yot-charcoal);
  content: "";
}

.yot-chevron-control.yot-chevron-control--previous::after {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.yot-chevron-control.yot-chevron-control--next::after {
  transform: translate(-62%, -50%) rotate(45deg);
}

.yot-chevron-control.yot-chevron-control:hover::before,
.yot-chevron-control.yot-chevron-control:focus-visible::before {
  border-color: rgba(255, 250, 240, 0.46);
  background: rgba(248, 242, 235, 0.42);
  transform: scale(1.06);
}

.yot-chevron-control.yot-chevron-control:focus-visible {
  outline: 1px solid rgba(255, 174, 124, 0.78);
  outline-offset: -6px;
}

.yot-chevron-control.yot-chevron-control:disabled {
  cursor: default;
  opacity: 0.28;
}

@media (max-width: 600px) {
  .yot-chevron-control.yot-chevron-control::before {
    inset: 11px;
  }
}

.site-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  color: var(--yot-cream);
  background-color: #160c0d;
  background-image: url("../images/menu-background.png");
  background-position: center;
  background-size: cover;
  transition: opacity 380ms ease, visibility 380ms ease;
}

.site-menu::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  content: "";
}

.site-menu[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.site-menu__inner {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  padding: 11.7vh 2.8vw 4.6vh;
}

.site-menu__top {
  display: grid;
  min-height: 59vh;
  grid-template-columns: 41.5% 58.5%;
}

.site-menu__primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 3.2vh, 50px);
}

.site-menu__primary a {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 20px;
  font-size: clamp(3rem, 4.86vw, 4.375rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.site-menu__primary a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-menu__primary a:hover,
.site-menu__primary a:focus-visible,
.site-menu__secondary a:hover,
.site-menu__secondary a:focus-visible {
  color: var(--yot-peach);
}

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

.site-menu__secondary > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-menu__secondary h2,
.site-menu__place h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 1.95vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-menu__secondary a {
  color: rgba(255, 245, 234, 0.6);
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  line-height: 2;
  transition: color 180ms ease;
}

.site-menu__divider {
  width: 100%;
  height: 2px;
  background: center / 100% 2px no-repeat url("../images/menu-divider.svg");
}

.site-menu__bottom {
  display: grid;
  grid-template-columns: 16.25% 18.9% 1fr 25%;
  gap: 0;
  align-items: start;
  margin-top: 4.5vh;
}

.site-menu__place p {
  margin: 0;
  color: rgba(255, 245, 234, 0.6);
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  line-height: 1.28;
}

.site-menu__ticket {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}

.site-menu__ticket > img {
  width: 236px;
  height: auto;
}

.site-menu__ticket > span {
  color: rgba(255, 245, 234, 0.6);
  font-size: clamp(1rem, 1.39vw, 1.25rem);
}

.site-menu__ticket .button {
  width: 160px;
}

.hero,
.story-panel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--yot-cream);
  background-color: var(--yot-charcoal);
  background-image: var(--panel-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Canonical rule for the primary banner on every page template. */
#main-content > .site-hero {
  height: max(var(--site-hero-min-height, 760px), 100vh);
  height: max(var(--site-hero-min-height, 760px), 100svh);
}

.hero {
  --site-hero-min-height: 760px;
  background-position: center 42%;
}

.hero::after,
.story-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 28% 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68));
  content: "";
  pointer-events: none;
}

.hero__meta {
  position: absolute;
  z-index: 3;
  top: 120px;
  display: flex;
  flex-direction: column;
  color: var(--yot-cream);
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero__meta--left {
  left: var(--page-gutter);
  padding-top: 23px;
}

.hero__meta--left strong {
  position: absolute;
  top: 0;
  left: 10px;
  white-space: nowrap;
}

.hero-event-status {
  width: min(360px, calc(100vw - (var(--page-gutter) * 2)));
}

.hero-event-status__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-event-status__heading {
  position: absolute;
  top: 0;
  left: 10px;
  display: flex;
  overflow: hidden;
  max-width: calc(100% - 10px);
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.hero-event-status__heading strong {
  position: static;
  flex: 0 0 auto;
}

.hero-event-status__separator {
  flex: 0 0 auto;
  color: var(--yot-peach);
}

.hero-event-status__name,
.hero-event-status__timing {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-event-status__name {
  min-width: 0;
  flex: 1 1 auto;
  font-weight: 600;
}

.hero-event-status__timing {
  color: rgba(255, 245, 220, 0.78);
}

.hero-event-status__timing[hidden] {
  display: none;
}

.hero__meta--right {
  right: var(--page-gutter);
  text-align: right;
}

.live-dot {
  --live-dot-rgb: 255, 174, 124;
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--live-dot-rgb));
  box-shadow: 0 0 0 0 rgba(var(--live-dot-rgb), 0.7);
  animation: yot-pulse 2s infinite;
}

.hero-event-status.is-live .live-dot {
  --live-dot-rgb: 79, 211, 132;
}

.hero-event-status.is-idle .live-dot,
.hero-event-status.is-error .live-dot {
  --live-dot-rgb: 184, 181, 173;
  animation: none;
}

@keyframes yot-pulse {
  70% { box-shadow: 0 0 0 9px rgba(var(--live-dot-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--live-dot-rgb), 0); }
}

.hero__content {
  position: absolute;
  z-index: 3;
  bottom: 52px;
  left: var(--page-gutter);
  max-width: 760px;
}

.hero h1,
.yo-hero h1,
.story-panel h2,
.experience h2,
.events h2,
.social-gallery h2 {
  margin: 0;
  font-size: var(--display-size);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.story-panel h2 {
  line-height: 0.9167;
  letter-spacing: -0.05em;
}

.hero__content p,
.story-panel__content p {
  max-width: 428px;
  margin: 22px 0 0;
}

.glass-actions,
.glass-card {
  position: absolute;
  z-index: 4;
  right: var(--page-gutter);
  bottom: 76px;
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 10px;
  padding: 28px 18px;
  border: 1px solid rgba(248, 242, 235, 0.12);
  background: rgba(248, 242, 235, 0.06);
  backdrop-filter: blur(10px);
}

/* Homepage image CTAs use the button alone, without a surrounding glass box. */
.home .site-hero .glass-actions,
.home .story-panel .glass-card--panel {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.home .site-hero .glass-actions {
  min-height: 36px;
  padding: 0;
  border: 0;
}

.events {
  position: relative;
  min-height: 760px;
  padding: 84px var(--page-gutter) 40px;
  overflow: hidden;
  background: var(--yot-off-white);
}

.events__heading {
  position: relative;
}

.events__heading p {
  position: absolute;
  top: 141px;
  right: 23px;
  width: 370px;
  margin: 0;
  text-align: right;
}

.events__filters {
  position: absolute;
  top: 65px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.filter-button {
  min-height: 36px;
  padding: 8px 18px;
  border: 2px solid var(--yot-orange);
  color: var(--yot-orange);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.filter-button.is-active {
  border-color: var(--yot-peach);
  color: var(--yot-cream);
  background: var(--yot-peach);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 60px;
}

.event-card {
  min-width: 0;
}

.event-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.event-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
}

.event-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.event-card a {
  color: var(--yot-orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.story-panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(20, 20, 20, 0.03);
  content: "";
}

.story-panel__eyebrow {
  position: absolute;
  z-index: 4;
  top: 36px;
  left: var(--page-gutter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  color: var(--yot-cream);
  background: var(--yot-peach);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  white-space: nowrap;
  text-transform: uppercase;
}

.story-panel__content {
  position: absolute;
  z-index: 3;
  bottom: 70px;
  left: var(--page-gutter);
  max-width: 900px;
}

.story-panel__content--top {
  top: 160px;
  bottom: auto;
  left: 15%;
  display: flex;
  height: 80px;
  align-items: center;
  max-width: none;
}

.story-panel--yot-one .story-panel__headline {
  position: absolute;
  z-index: 3;
  top: 135px;
  left: 50%;
  display: flex;
  width: max-content;
  max-width: calc(100% - (2 * var(--page-gutter)));
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
}

.story-panel--yot-one .story-panel__headline .story-panel__mark {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 130px;
}

.story-panel--yot-one .story-panel__headline .story-panel__content--top {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  height: auto;
}

.story-panel__mark {
  position: absolute;
  z-index: 3;
  top: 135px;
  left: 38px;
  width: 130px;
  height: 130px;
  background: var(--yot-cream);
  -webkit-mask: url("../images/yot-one-mark.png") center / contain no-repeat;
  mask: url("../images/yot-one-mark.png") center / contain no-repeat;
}

.story-panel--yot-one {
  background-position: 55% 72.4%;
  background-size: auto 135.27%;
}

.story-panel--yot-one h2 {
  font-size: clamp(4.5rem, 8.333vw, 7.5rem);
  line-height: 0.9167;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.story-panel--yot-one::before {
  background: transparent;
}

.yot-one__ticker {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: rgba(10, 26, 36, 0.01);
  backdrop-filter: blur(10px);
}

.yot-one__ticker-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 2918px;
  height: 80px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.yot-one__ticker-text,
.yot-one__ticker-star {
  position: absolute;
  left: var(--ticker-x);
}

.yot-one__ticker-text {
  top: 20px;
  color: #f8f2eb;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 39px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.yot-one__ticker-text:hover,
.yot-one__ticker-text:focus-visible {
  color: var(--yot-peach);
}

.yot-one__ticker-text:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.yot-one__ticker-star {
  top: 33px;
  width: 8px;
  height: 8px;
  max-width: none;
}

.glass-card {
  min-width: 400px;
  justify-content: flex-end;
}

.glass-card > div {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 245, 220, 0.45);
}

.glass-card small {
  opacity: 0.6;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.glass-card span {
  font-size: 13px;
}

.glass-card--compact {
  min-width: 258px;
}

.glass-card--private {
  right: 40px;
  bottom: 70px;
  width: 400px;
  min-width: 400px;
}

.glass-card--corporate {
  right: 40px;
  bottom: 62px;
  width: 441px;
  min-width: 441px;
}

.booking-card {
  display: block;
  height: 96px;
  min-height: 96px;
  padding: 0;
  border-color: rgba(248, 242, 235, 0.1);
  background: rgba(248, 242, 235, 0.05);
  backdrop-filter: blur(10px);
}

.booking-card > .booking-card__details {
  position: absolute;
  top: 30px;
  left: 33px;
  display: grid;
  height: 36px;
  grid-template-columns: 68px 1px 102px;
  column-gap: 20px;
  align-items: center;
  padding: 0;
  border: 0;
}

.glass-card--corporate > .booking-card__details {
  left: 26px;
  grid-template-columns: 82px 1px 118px;
}

.booking-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.booking-detail small {
  opacity: 0.6;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.62px;
  white-space: nowrap;
}

.booking-detail span {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.booking-card__divider {
  position: relative;
  display: block;
  width: 1px;
  height: 28px;
  font-size: 0;
}

.booking-card__divider img {
  position: absolute;
  top: 13.5px;
  left: -13.5px;
  width: 28px;
  height: 1px;
  max-width: none;
  transform: rotate(-90deg);
}

.booking-card .button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 90px;
  min-height: 36px;
  gap: 7px;
  padding-right: 10px;
  padding-left: 10px;
  background: var(--yot-peach);
  white-space: nowrap;
}

.glass-card--corporate .button {
  right: 24px;
  width: 158px;
}

.story-panel--private {
  background-position: left 78.3%;
  background-size: auto clamp(100%, calc(330px + 52.34vw), 151.5%);
}

.story-panel__single-cta {
  position: absolute;
  z-index: 4;
  right: var(--page-gutter);
  bottom: 62px;
  min-width: 172px;
  min-height: 42px;
  background: var(--yot-peach);
}

.story-panel--private .story-panel__shade {
  inset: 129px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  mix-blend-mode: multiply;
}

.story-panel--corporate .story-panel__shade {
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  mix-blend-mode: multiply;
}

.story-panel--private .story-panel__eyebrow,
.story-panel--corporate .story-panel__eyebrow {
  left: 43px;
  width: 165px;
  height: 30px;
  justify-content: center;
  padding: 0;
}

.story-panel--private .story-panel__eyebrow {
  top: 289px;
}

.story-panel--corporate .story-panel__eyebrow {
  top: 239px;
}

.story-panel--private .story-panel__content,
.story-panel--corporate .story-panel__content {
  inset: 0;
  max-width: none;
}

.story-panel--private .story-panel__content h2,
.story-panel--corporate .story-panel__content h2 {
  position: absolute;
  left: 40px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(4.5rem, 8.333vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9167;
  letter-spacing: -0.05em;
}

.story-panel--private .story-panel__content h2 {
  top: 344px;
  width: 752px;
}

.story-panel--corporate .story-panel__content h2 {
  top: 291px;
  width: 680px;
}

.story-panel--private .story-panel__content p,
.story-panel--corporate .story-panel__content p {
  position: absolute;
  left: 40px;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.story-panel--private .story-panel__content p {
  top: 584px;
  width: 417px;
  max-width: 417px;
}

.story-panel--corporate .story-panel__content p {
  top: 592px;
  width: 376px;
  max-width: 376px;
}

.story-panel--private .story-panel__content strong,
.story-panel--corporate .story-panel__content strong {
  display: block;
}

/* Private-yacht copy follows the rendered headline height at every desktop width. */
.story-panel--private .story-panel__content {
  top: 344px;
  right: auto;
  bottom: auto;
  left: 40px;
  width: min(820px, 62vw);
}

.story-panel--private .story-panel__content h2 {
  position: static;
  width: 100%;
  font-size: clamp(4.75rem, 7.25vw, 7rem);
}

.story-panel--private .story-panel__content p {
  position: static;
  width: 417px;
  max-width: 100%;
  margin-top: clamp(32px, 3vw, 44px);
}

/* Corporate copy follows the rendered heading height at every fluid type size. */
.story-panel--corporate .story-panel__content {
  top: 291px;
  right: auto;
  bottom: auto;
  left: 40px;
  width: min(680px, calc(100% - 80px));
}

.story-panel--corporate .story-panel__content h2 {
  position: static;
  width: 100%;
  font-size: clamp(4.5rem, 8.333vw, 6.5rem);
}

.story-panel--corporate .story-panel__content p {
  position: static;
  width: 376px;
  max-width: 100%;
  margin-top: 22px;
}

.story-panel--locations {
  background-position: center 46.58%;
  background-size: cover;
}

.story-panel--food {
  background-position: center 62.53%;
  background-size: cover;
}

.story-panel--locations .story-panel__shade,
.story-panel--food .story-panel__shade {
  inset: 257px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  mix-blend-mode: multiply;
}

.story-panel--locations .story-panel__eyebrow,
.story-panel--food .story-panel__eyebrow {
  left: 43px;
  width: 165px;
  height: 30px;
  justify-content: center;
  padding: 0;
}

.story-panel--locations .story-panel__eyebrow {
  top: 293px;
}

.story-panel--food .story-panel__eyebrow {
  top: 329px;
}

.story-panel--locations .story-panel__content,
.story-panel--food .story-panel__content {
  inset: 0;
  max-width: none;
}

.story-panel--locations .story-panel__content h2,
.story-panel--food .story-panel__content h2 {
  position: absolute;
  left: 40px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(4.5rem, 8.333vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9167;
  letter-spacing: -0.05em;
}

.story-panel--locations .story-panel__content h2 {
  top: 351px;
  width: 718px;
}

.story-panel--food .story-panel__content h2 {
  top: 391px;
  width: 615px;
}

.story-panel--locations .story-panel__content p,
.story-panel--food .story-panel__content p {
  position: absolute;
  left: 40px;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.story-panel--locations .story-panel__content p {
  top: 591px;
  width: 332px;
  max-width: 332px;
}

.story-panel--food .story-panel__content p {
  top: 631px;
  width: 378px;
  max-width: 378px;
}

.story-panel--locations .story-panel__content strong {
  display: block;
}

.glass-card--panel {
  right: 40px;
  bottom: 63px;
  display: block;
  width: 258px;
  min-width: 258px;
  height: 96px;
  min-height: 96px;
  padding: 0;
  border-color: rgba(248, 242, 235, 0.1);
  background: rgba(248, 242, 235, 0.05);
  backdrop-filter: blur(10px);
}

.glass-card--panel .button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 196px;
  min-height: 36px;
  padding-right: 10px;
  padding-left: 10px;
  background: var(--yot-peach);
  white-space: nowrap;
}

.glass-card--panel .button::after {
  width: 8.5825px;
  height: 5.724px;
  background-image: url("../images/panel-arrow.svg");
}

/* The transparent panel wrapper collapses to the button's true dimensions. */
.home .story-panel .glass-card--panel {
  width: 196px;
  min-width: 196px;
  height: 36px;
  min-height: 36px;
  padding: 0;
}

.home .story-panel .glass-card--panel .button {
  position: static;
  width: 196px;
  min-height: 36px;
}

@media (min-width: 1101px) {
  .home .site-hero .glass-actions {
    bottom: 52px;
  }
}

.experience {
  display: grid;
  min-height: 760px;
  grid-template-columns: 210px 180px 1fr;
  padding: 120px var(--page-gutter) 80px;
  background: var(--yot-off-white);
}

.experience__numbers,
.experience__labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience__numbers span {
  padding: 34px 0;
  border-bottom: 1px solid rgba(50, 50, 50, 0.25);
  color: var(--yot-peach);
  font-size: 92px;
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.05em;
}

.experience__labels span {
  min-height: 129px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.experience__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.experience__copy > a {
  margin-bottom: 80px;
  padding: 7px 16px;
  color: var(--yot-cream);
  background: var(--yot-peach);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.experience__copy p {
  max-width: 370px;
  margin: 26px 0 0;
}

.social-gallery {
  min-height: 760px;
  padding: 90px var(--page-gutter) 52px;
  text-align: center;
  background: var(--yot-off-white);
}

.social-gallery h2 {
  font-size: clamp(4rem, 7.7vw, 7rem);
}

.social-gallery > p {
  max-width: 650px;
  margin: 25px auto 18px;
}

.social-gallery__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr 1fr 1.05fr;
  gap: 7px;
  height: 358px;
  margin-top: 44px;
}

.social-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  min-height: 1024px;
  padding: 126px 5.3% 32px;
  color: var(--yot-cream);
  background: var(--yot-charcoal);
}

.site-footer__top {
  display: flex;
  min-height: 166px;
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer__wordmark {
  width: 48%;
  max-width: 596px;
}

.social-links {
  position: relative;
  width: 145.988px;
  height: 30px;
  margin-top: 50px;
}

.social-links__artwork {
  display: block;
  width: 145.988px;
  height: 30px;
}

.social-links__target {
  position: absolute;
  top: 0;
  height: 30px;
}

.social-links__target--instagram {
  left: 0;
  width: 29.988px;
}

.social-links__target--facebook {
  left: 59.988px;
  width: 30px;
}

.social-links__target--tiktok {
  left: 119.988px;
  width: 26px;
}

.site-footer__rule {
  height: 1px;
  margin-bottom: 60px;
  background: rgba(255, 245, 234, 0.8);
}

.site-footer__content {
  display: grid;
  grid-template-columns: 160px 160px 210px minmax(360px, 1fr);
  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column h2 {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 245, 234, 0.52);
  font-size: 13px;
  line-height: 1;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--yot-cream);
}

.newsletter h2 {
  max-width: 600px;
  margin: -6px 0 72px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.newsletter__form {
  display: grid;
  grid-template-columns: minmax(90px, 150px) minmax(90px, 150px) minmax(140px, 1fr);
  gap: 20px;
}

.newsletter__form label {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--yot-cream);
}

.newsletter__form label span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: var(--yot-cream);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

.newsletter__form input {
  width: 100%;
  height: 36px;
  padding: 7px 10px;
  border: 0;
  outline: 0;
  color: var(--yot-cream);
  background: transparent;
}

.newsletter__form input:focus + span,
.newsletter__form input:not(:placeholder-shown) + span {
  opacity: 0.5;
}

.newsletter__form p {
  grid-column: 1 / -1;
  margin: 56px 0 35px;
  color: rgba(255, 245, 234, 0.5);
  font-size: 13px;
}

.newsletter__form button {
  grid-column: 1 / span 2;
  width: 200px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 145px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 38px;
}

.site-footer__bottom > span:last-child {
  text-align: right;
}

.basic-page {
  min-height: 60vh;
  padding: 160px var(--page-gutter) 80px;
}

@media (max-width: 1430px) {
  .wo-charter__details {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .wo-charter__actions {
    grid-column: 2;
    justify-content: flex-start;
  }

}

/*
 * Keep the canonical four-column footer until its fixed navigation columns and
 * newsletter genuinely run out of room. In the stacked state, the newsletter
 * uses the same measure as its heading so the email rule cannot trail across
 * the full page width.
 */
@media (max-width: 1240px) {
  .site-footer__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

  .newsletter {
    grid-column: 1 / -1;
    width: min(100%, 600px);
    margin-top: 70px;
  }

  .site-footer {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  :root { --display-size: clamp(4rem, 9vw, 6.3rem); }

  .story-panel--private {
    background-position: 30% 78.3%;
  }

  .events__heading {
    grid-template-columns: 1fr auto;
  }

  .events__heading p {
    display: none;
  }

  .event-card > img {
    height: 220px;
  }

}

/* Move hero actions below the copy before the two horizontal regions collide. */
@media (max-width: 1024px) {
  .hero__meta--right {
    display: none;
  }

  .hero__content {
    bottom: 155px;
  }

  .hero__content p {
    max-width: 480px;
  }

  .glass-actions {
    right: auto;
    bottom: 34px;
    left: var(--page-gutter);
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 24px;
  }

  .site-header__logo {
    width: 155px;
  }

  .site-menu__inner {
    padding: 90px 24px 40px;
  }

  .site-menu__top {
    display: block;
    min-height: 0;
  }

  .site-menu__primary {
    gap: 26px;
  }

  .site-menu__primary a {
    gap: 14px;
    font-size: clamp(2.75rem, 8vw, 4rem);
    line-height: 0.9;
  }

  .site-menu__primary a img {
    width: 24px;
    height: 24px;
  }

  .site-menu__secondary {
    margin-top: 70px;
  }

  .site-menu__secondary h2,
  .site-menu__place h2 {
    font-size: 20px;
  }

  .site-menu__secondary a,
  .site-menu__place p,
  .site-menu__ticket > span {
    font-size: 14px;
  }

  .site-menu__divider {
    margin-top: 60px;
  }

  .site-menu__bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .site-menu__ticket {
    grid-column: 1 / -1;
    align-items: flex-start;
    margin-top: 25px;
    text-align: left;
  }

  .events {
    min-height: 560px;
    padding-top: 70px;
  }

  .events__heading {
    display: block;
  }

  .events__filters {
    position: static;
    overflow-x: auto;
    margin-top: 42px;
    padding-bottom: 10px;
  }

  .event-cards {
    grid-template-columns: repeat(4, 260px);
    overflow-x: auto;
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    padding-bottom: 12px;
  }

  .story-panel__content--top {
    top: 145px;
    left: 145px;
  }

  .story-panel--yot-one .story-panel__headline {
    top: 125px;
  }

  .story-panel--yot-one .story-panel__headline .story-panel__mark {
    width: 100px;
    height: 100px;
    flex-basis: 100px;
  }

  .story-panel__mark {
    display: block;
    top: 125px;
    left: var(--page-gutter);
    width: 100px;
    height: 100px;
  }

  .story-panel--yot-one h2 {
    font-size: clamp(3.2rem, 8.333vw, 5rem);
  }

  .glass-card {
    right: var(--page-gutter);
    bottom: 24px;
  }

  .story-panel__content:not(.story-panel__content--top) {
    bottom: 150px;
  }

  .story-panel--private .story-panel__content,
  .story-panel--corporate .story-panel__content {
    inset: 0;
  }

  .story-panel--private .story-panel__content {
    width: auto;
  }

  .story-panel__single-cta {
    right: var(--page-gutter);
    bottom: 24px;
  }

  .story-panel--private {
    background-position: 42% center;
    background-size: cover;
  }

  .story-panel--private .story-panel__eyebrow,
  .story-panel--corporate .story-panel__eyebrow {
    left: var(--page-gutter);
  }

  .story-panel--private .story-panel__eyebrow {
    top: 220px;
  }

  .story-panel--corporate .story-panel__eyebrow {
    top: 120px;
  }

  .story-panel--private .story-panel__content h2,
  .story-panel--corporate .story-panel__content h2 {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
  }

  .story-panel--private .story-panel__content h2 {
    position: absolute;
    top: 270px;
  }

  .story-panel--corporate .story-panel__content h2 {
    top: 180px;
  }

  .story-panel--private .story-panel__content p,
  .story-panel--corporate .story-panel__content p {
    left: var(--page-gutter);
  }

  .story-panel--private .story-panel__content p {
    position: absolute;
    top: 450px;
  }

  .story-panel--corporate .story-panel__content p {
    top: 450px;
  }

  .story-panel--corporate .story-panel__content {
    top: 180px;
    right: var(--page-gutter);
    bottom: auto;
    left: var(--page-gutter);
    width: auto;
  }

  .story-panel--locations,
  .story-panel--food {
    background-size: cover;
  }

  .story-panel--locations {
    background-position: center 46.58%;
  }

  .story-panel--food {
    background-position: center 62.53%;
  }

  .story-panel--locations .story-panel__eyebrow,
  .story-panel--food .story-panel__eyebrow {
    left: var(--page-gutter);
  }

  .story-panel--locations .story-panel__content,
  .story-panel--food .story-panel__content {
    inset: 0;
  }

  .story-panel--locations .story-panel__content h2,
  .story-panel--food .story-panel__content h2 {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
  }

  .story-panel--locations .story-panel__content p,
  .story-panel--food .story-panel__content p {
    left: var(--page-gutter);
  }

  .experience {
    grid-template-columns: minmax(120px, 150px) minmax(120px, 150px) minmax(0, 1fr);
    padding-top: 70px;
  }

  .experience__copy {
    min-width: 0;
  }

  .experience__numbers span {
    font-size: 68px;
  }

  .experience__copy > a {
    margin-bottom: 45px;
  }

  .social-gallery__grid {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    margin-top: 90px;
  }

  .site-footer__bottom > span:last-child {
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --page-gutter: 20px;
    --display-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  .site-header {
    height: 64px;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header__logo {
    width: 118px;
  }

  .site-header__booking {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .menu-trigger {
    font-size: 10px;
  }

  .site-menu__inner {
    padding: 82px 20px 34px;
  }

  .site-menu__primary {
    gap: 20px;
  }

  .site-menu__primary a {
    font-size: clamp(2.35rem, 11.5vw, 3.25rem);
  }

  .site-menu__secondary {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    margin-top: 58px;
  }

  .site-menu__secondary > div:last-child {
    grid-column: 1 / -1;
  }

  .site-menu__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .site-menu__place:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero {
    --site-hero-min-height: 740px;
    background-position: 58% center;
  }

  .hero__meta {
    top: 92px;
  }

  .hero__content {
    right: var(--page-gutter);
    bottom: 170px;
  }

  .hero__content p,
  .story-panel__content p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
  }

  .glass-actions {
    width: calc(100% - (2 * var(--page-gutter)));
    min-height: 88px;
    flex-wrap: wrap;
    padding: 14px;
  }

  .glass-actions .button {
    flex: 1 1 160px;
  }

  .events {
    min-height: 520px;
    padding-top: 70px;
  }

  .events__filters > span {
    display: none;
  }

  .event-cards {
    margin-top: 38px;
  }

  .event-card > img {
    height: 210px;
  }

  .story-panel {
    min-height: 680px;
    background-position: center;
  }

  .story-panel--food {
    background-position: 54% center;
  }

  .story-panel__eyebrow {
    top: 24px;
  }

  .story-panel--locations .story-panel__eyebrow,
  .story-panel--food .story-panel__eyebrow {
    top: 24px;
  }

  .story-panel__content:not(.story-panel__content--top) {
    right: var(--page-gutter);
    bottom: 135px;
  }

  .story-panel__content--top {
    top: 205px;
    right: var(--page-gutter);
    left: var(--page-gutter);
    height: auto;
  }

  .story-panel--yot-one .story-panel__headline {
    top: 105px;
    right: var(--page-gutter);
    left: var(--page-gutter);
    width: auto;
    max-width: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    transform: none;
  }

  .story-panel--yot-one .story-panel__headline .story-panel__mark {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .story-panel--yot-one {
    background-position: 51% 69%;
    background-size: auto 118%;
  }

  .story-panel--yot-one h2 {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
    line-height: 0.95;
    white-space: normal;
  }

  .story-panel--yot-one .story-panel__mark {
    top: 105px;
    left: var(--page-gutter);
    width: 82px;
    height: 82px;
  }

  .yot-one__ticker-text {
    font-size: 15px;
  }

  .story-panel--locations,
  .story-panel--food {
    min-height: 680px;
    background-size: cover;
  }

  .story-panel--locations {
    background-position: 52% center;
  }

  .story-panel--food {
    background-position: 54% center;
  }

  .story-panel--locations .story-panel__eyebrow,
  .story-panel--food .story-panel__eyebrow {
    top: 24px;
    left: var(--page-gutter);
  }

  .story-panel--locations .story-panel__content,
  .story-panel--food .story-panel__content {
    inset: 0;
  }

  .story-panel--locations .story-panel__content h2,
  .story-panel--food .story-panel__content h2 {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .story-panel--locations .story-panel__content h2 {
    top: 150px;
  }

  .story-panel--food .story-panel__content h2 {
    top: 160px;
  }

  .story-panel--locations .story-panel__content p,
  .story-panel--food .story-panel__content p {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: none;
    font-size: 12px;
    line-height: 18px;
  }

  .story-panel--locations .story-panel__content p {
    top: 300px;
  }

  .story-panel--food .story-panel__content p {
    top: 300px;
  }

  .glass-card.glass-card--panel {
    right: var(--page-gutter);
    bottom: 20px;
    width: calc(100% - (2 * var(--page-gutter)));
    min-width: 0;
    padding: 0;
    overflow: visible;
  }

  .story-panel--private,
  .story-panel--corporate {
    min-height: 680px;
  }

  .story-panel--private {
    background-position: 42% center;
    background-size: cover;
  }

  .story-panel--corporate {
    background-position: 58% center;
  }

  .story-panel--private .story-panel__eyebrow,
  .story-panel--corporate .story-panel__eyebrow {
    top: 24px;
    left: var(--page-gutter);
  }

  .story-panel--private .story-panel__content,
  .story-panel--corporate .story-panel__content {
    inset: 0;
  }

  .story-panel--private .story-panel__content {
    width: auto;
  }

  .story-panel--private .story-panel__content h2,
  .story-panel--corporate .story-panel__content h2 {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .story-panel--private .story-panel__content h2 {
    position: absolute;
    top: 180px;
  }

  .story-panel--corporate .story-panel__content h2 {
    top: 140px;
  }

  .story-panel--private .story-panel__content p,
  .story-panel--corporate .story-panel__content p {
    left: var(--page-gutter);
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: none;
    font-size: 12px;
    line-height: 18px;
  }

  .story-panel--private .story-panel__content p {
    position: absolute;
    top: 320px;
  }

  .story-panel--corporate .story-panel__content p {
    top: 328px;
  }

  .story-panel--corporate .story-panel__content {
    top: 140px;
    right: var(--page-gutter);
    bottom: 0;
    left: var(--page-gutter);
    width: auto;
  }

  .story-panel__single-cta {
    right: var(--page-gutter);
    bottom: 20px;
  }

  .glass-card.booking-card {
    right: var(--page-gutter);
    bottom: 20px;
    width: calc(100% - (2 * var(--page-gutter)));
    min-width: 0;
    padding: 0;
    overflow: visible;
  }

  .booking-card > .booking-card__details,
  .glass-card--corporate > .booking-card__details {
    left: 16px;
    grid-template-columns: 64px 1px 74px;
    column-gap: 10px;
  }

  .booking-detail small {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .booking-detail span {
    font-size: 11px;
  }

  .booking-card .button,
  .glass-card--corporate .button {
    right: 16px;
    width: 90px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .glass-card--corporate .button {
    width: 118px;
  }

  .glass-card {
    width: calc(100% - (2 * var(--page-gutter)));
    min-width: 0;
    padding: 15px;
    overflow-x: auto;
  }

  .glass-card > div {
    display: none;
  }

  .experience {
    display: block;
    min-height: 680px;
    padding-top: 70px;
  }

  .experience__numbers,
  .experience__labels {
    position: absolute;
  }

  .experience {
    position: relative;
  }

  .experience__numbers {
    top: 72px;
    left: var(--page-gutter);
  }

  .experience__numbers span {
    width: 82px;
    padding: 17px 0;
    font-size: 48px;
  }

  .experience__labels {
    top: 72px;
    left: 116px;
  }

  .experience__labels span {
    min-height: 67px;
    padding-left: 12px;
    font-size: 10px;
  }

  .experience__copy {
    position: absolute;
    right: var(--page-gutter);
    bottom: 75px;
    left: var(--page-gutter);
  }

  .experience__copy > a {
    margin-bottom: 24px;
  }

  .experience__copy p {
    max-width: 310px;
  }

  .social-gallery {
    min-height: 680px;
    padding-top: 70px;
  }

  .social-gallery h2 {
    font-size: 3.5rem;
    line-height: 0.95;
  }

  .social-gallery__grid {
    height: 300px;
    grid-template-columns: repeat(5, 190px);
    margin-top: 35px;
  }

  .site-footer {
    padding: 70px var(--page-gutter) 30px;
  }

  .site-footer__top {
    min-height: 120px;
    flex-direction: column-reverse;
  }

  .site-footer__wordmark {
    width: 100%;
  }

  .social-links {
    margin-top: 30px;
  }

  .site-footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 30px;
  }

  .footer-column:nth-child(3) {
    grid-column: 1 / -1;
  }

  .newsletter {
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .newsletter h2 {
    margin-bottom: 45px;
    font-size: 34px;
  }

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

  .newsletter__email {
    grid-column: 1 / -1;
  }

  .newsletter__form p {
    margin-top: 38px;
  }

  .site-footer__bottom {
    font-size: 8px;
  }
}

/*
 * Homepage image-copy standard: the hero establishes the gutter, title/copy
 * gap and final-copy-line anchor used by every photographic story panel.
 */
@media (min-width: 601px) {
  .story-panel--private .story-panel__content,
  .story-panel--corporate .story-panel__content,
  .story-panel--locations .story-panel__content,
  .story-panel--food .story-panel__content {
    --story-copy-bottom: 52px;
    --story-copy-gap: 22px;
    top: auto;
    right: auto;
    bottom: var(--story-copy-bottom);
    left: var(--page-gutter);
    display: grid;
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: none;
    grid-template-columns: minmax(0, var(--story-copy-width)) minmax(0, 1fr);
    column-gap: clamp(24px, 6vw, 96px);
  }

  .story-panel--private .story-panel__content {
    --story-copy-width: 417px;
  }

  .story-panel--corporate .story-panel__content {
    --story-copy-width: 376px;
  }

  .story-panel--locations .story-panel__content {
    --story-copy-width: 332px;
  }

  .story-panel--food .story-panel__content {
    --story-copy-width: 378px;
  }

  .story-panel--private .story-panel__content h2,
  .story-panel--corporate .story-panel__content h2,
  .story-panel--locations .story-panel__content h2,
  .story-panel--food .story-panel__content h2 {
    position: static;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .story-panel--private .story-panel__content h2 {
    max-width: 820px;
  }

  .story-panel--corporate .story-panel__content h2 {
    max-width: 680px;
  }

  .story-panel--locations .story-panel__content h2 {
    max-width: 718px;
  }

  .story-panel--food .story-panel__content h2 {
    max-width: 615px;
  }

  .story-panel--private .story-panel__content p,
  .story-panel--corporate .story-panel__content p,
  .story-panel--locations .story-panel__content p,
  .story-panel--food .story-panel__content p {
    position: static;
    width: 100%;
    max-width: none;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin: var(--story-copy-gap) 0 0;
  }

  .story-panel--private .story-panel__single-cta,
  .story-panel--corporate .story-panel__single-cta,
  .story-panel--locations .glass-card--panel,
  .story-panel--food .glass-card--panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
  }
}

@media (min-width: 601px) and (max-width: 820px) {
  .story-panel--private .story-panel__content,
  .story-panel--corporate .story-panel__content,
  .story-panel--locations .story-panel__content,
  .story-panel--food .story-panel__content {
    --story-copy-bottom: 52px;
    column-gap: 24px;
  }

  .story-panel--private .story-panel__content,
  .story-panel--corporate .story-panel__content {
    --story-copy-width: 58%;
  }

  .story-panel--locations .story-panel__content,
  .story-panel--food .story-panel__content {
    --story-copy-width: 48%;
  }
}

/*
 * Keep every homepage eyebrow attached to its rendered headline as the type
 * scales and wraps. JavaScript updates --story-eyebrow-top from the live title
 * position; these fluid dimensions preserve the approved desktop proportions
 * while avoiding oversized labels at narrower widths.
 */
.home .story-panel--private {
  --story-eyebrow-gap: clamp(24px, 3.32vw, 52px);
}

.home .story-panel--corporate {
  --story-eyebrow-gap: clamp(20px, 1.34vw, 21px);
}

.home .story-panel--locations {
  --story-eyebrow-gap: clamp(22px, 2.1vw, 33px);
}

.home .story-panel--food {
  --story-eyebrow-gap: clamp(24px, 2.62vw, 41px);
}

.home .story-panel > .story-panel__eyebrow {
  top: var(--story-eyebrow-top, 36px);
  left: var(--page-gutter);
  width: clamp(140px, 11.46vw, 165px);
  height: clamp(28px, 2.08vw, 30px);
  margin-bottom: var(--story-eyebrow-gap, 24px);
  padding: 0;
  font-size: clamp(9px, 0.694vw, 10px);
  letter-spacing: clamp(2.2px, 0.208vw, 3px);
}

/*
 * On phones, keep the complete copy cluster tied to the bottom edge instead of
 * reverting to per-element top coordinates. The CTA becomes the final row so
 * narrower text wrapping can only grow the cluster upward, never make it jump.
 */
@media (max-width: 600px) {
  .home .story-panel--private .story-panel__content,
  .home .story-panel--corporate .story-panel__content,
  .home .story-panel--locations .story-panel__content,
  .home .story-panel--food .story-panel__content {
    top: auto;
    right: var(--page-gutter);
    bottom: 20px;
    left: var(--page-gutter);
    display: grid;
    width: auto;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
  }

  .home .story-panel--private .story-panel__content h2,
  .home .story-panel--corporate .story-panel__content h2,
  .home .story-panel--locations .story-panel__content h2,
  .home .story-panel--food .story-panel__content h2 {
    position: static;
    width: 100%;
    grid-column: 1;
    grid-row: 1;
  }

  .home .story-panel--private .story-panel__content p,
  .home .story-panel--corporate .story-panel__content p,
  .home .story-panel--locations .story-panel__content p,
  .home .story-panel--food .story-panel__content p {
    position: static;
    width: 100%;
    max-width: none;
    grid-column: 1;
    grid-row: 2;
    margin: 18px 0 0;
  }

  .home .story-panel--private .story-panel__single-cta,
  .home .story-panel--corporate .story-panel__single-cta,
  .home .story-panel--locations .glass-card--panel,
  .home .story-panel--food .glass-card--panel {
    position: static;
    right: auto;
    bottom: auto;
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    margin-top: 22px;
  }
}

/* On compact phones, image CTAs return to the copy gutter. */
@media (max-width: 550px) {
  .home .story-panel--private .story-panel__single-cta,
  .home .story-panel--corporate .story-panel__single-cta,
  .home .story-panel--locations .glass-card--panel,
  .home .story-panel--food .glass-card--panel {
    justify-self: start;
  }
}

/* What’s On · Figma node 4144:1228 */
.whats-on-page {
  --wo-border: rgba(20, 25, 28, 0.14);
  overflow-x: clip;
  color: #14191c;
  background: var(--yot-off-white);
}

.whats-on-page .button--solid {
  background: var(--yot-peach);
}

.whats-on-page .button {
  white-space: nowrap;
}

.wo-hero {
  --site-hero-min-height: 680px;
  position: relative;
  overflow: hidden;
  color: var(--yot-cream);
  background-color: var(--yot-charcoal);
  background-image: var(--wo-image);
  background-position: center;
  background-size: cover;
}

.wo-hero::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  content: "";
  pointer-events: none;
}

.wo-hero__content {
  position: absolute;
  z-index: 2;
  bottom: 93px;
  left: var(--page-gutter);
  width: 510px;
}

.wo-hero__content h1 {
  margin: 0 0 20px;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -5px;
}

.wo-hero__content p {
  width: 504px;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.wo-featured {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #fff;
}

.wo-featured__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wo-featured__track::-webkit-scrollbar,
.wo-upcoming__rail::-webkit-scrollbar {
  display: none;
}

.wo-featured__slide {
  display: grid;
  min-width: 100%;
  grid-template-columns: 1fr 1fr;
  scroll-snap-align: start;
}

.wo-featured__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--yot-cream);
}

.wo-featured__visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 196px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  content: "";
  pointer-events: none;
}

.wo-featured__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wo-featured__flag {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  width: 149px;
  height: 31px;
  padding-top: 7px;
  color: #14191c;
  background: #f6eee4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.47px;
  text-align: center;
  text-transform: uppercase;
}

.wo-featured__boarding {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.wo-featured__boarding strong {
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
}

.wo-featured__boarding span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.47px;
  text-transform: uppercase;
}

.wo-featured__details {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 40px 58px 40px 74px;
  background: #f9f5f0;
}

.wo-featured__details-inner {
  width: 100%;
  max-width: 587px;
}

.wo-eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.wo-featured__details h2 {
  margin: 24px 0 31px;
  font-size: clamp(48px, 4.17vw, 60px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -2px;
}

.wo-featured__description {
  min-height: 44px;
  margin: 0 0 39px;
  color: rgba(20, 25, 28, 0.7);
  font-size: 14px;
  line-height: 22px;
}

.wo-featured__facts {
  display: grid;
  min-height: 92px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0 0 40px;
  border-top: 1px solid var(--wo-border);
  border-bottom: 1px solid var(--wo-border);
}

.wo-featured__facts div {
  min-width: 0;
}

.wo-featured__facts dt {
  color: rgba(20, 25, 28, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.42px;
  text-transform: uppercase;
}

.wo-featured__facts dd {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 24px;
}

.wo-featured__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wo-featured__actions .button {
  width: 160px;
}

.wo-featured__actions > a:last-child {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-featured__nav {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.wo-featured__nav [data-featured-count] {
  position: absolute;
  right: 22px;
  bottom: 20px;
  min-width: 36px;
  height: 30px;
  padding: 6px 9px;
  border: 0;
  color: var(--yot-cream);
  background: var(--yot-charcoal);
  font-size: 9px;
  letter-spacing: 1px;
}

.wo-featured__nav button {
  position: absolute;
  top: 50%;
  pointer-events: auto;
  transform: translateY(-50%);
}

.wo-featured__nav button:hover,
.wo-featured__nav button:focus-visible {
  transform: translateY(-50%);
}

.wo-featured__nav [data-featured-prev] {
  left: 12px;
}

.wo-featured__nav [data-featured-next] {
  right: 12px;
}

.wo-season {
  min-height: 1918px;
  padding: 80px var(--page-gutter) 80px;
  background: var(--yot-off-white);
}

.wo-season__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.wo-season__intro h2 {
  margin: 0 0 20px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
}

.wo-season__intro p {
  width: 540px;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.wo-season__utilities {
  display: flex;
  align-items: center;
  gap: 22px;
}

.wo-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
}

.wo-toggle input {
  position: absolute;
  opacity: 0;
}

.wo-toggle i {
  position: relative;
  display: block;
  width: 56px;
  height: 30px;
  border: 2px solid var(--yot-peach);
  border-radius: 20px;
}

.wo-toggle i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yot-peach);
  content: "";
  transition: transform 180ms ease;
}

.wo-toggle input:checked + i::after {
  transform: translateX(26px);
}

.wo-view-switch {
  display: flex;
  height: 37px;
  border: 2px solid var(--yot-peach);
}

.wo-view-switch button {
  min-width: 66px;
  padding: 0 13px;
  border: 0;
  color: #585a5a;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.36px;
  text-transform: uppercase;
}

.wo-view-switch button.is-active {
  color: #f6eee4;
  background: var(--yot-peach);
}

.wo-season__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
}

.wo-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wo-filter-group > span {
  margin-right: 12px;
  font-size: 14px;
  font-weight: 500;
}

.wo-filter-group button {
  height: 36px;
  padding: 0 14px;
  border: 2px solid var(--yot-peach);
  color: rgba(20, 25, 28, 0.7);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.36px;
  white-space: nowrap;
  text-transform: uppercase;
}

.wo-filter-group button.is-active {
  color: #f6eee4;
  background: var(--yot-peach);
}

.wo-season__months {
  margin-top: 56px;
}

.wo-month {
  margin-top: 60px;
}

.wo-month:first-child {
  margin-top: 0;
}

.wo-month > header {
  display: flex;
  height: 59px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--wo-border);
}

.wo-month > header h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.1px;
}

.wo-month > header h3 span,
.wo-month > header > span {
  color: rgba(10, 26, 36, 0.4);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.wo-month > header h3 span {
  margin-left: 6px;
}

.wo-event-row {
  display: grid;
  min-height: 84px;
  grid-template-columns: 135px minmax(220px, 318px) 174px 266px 181px minmax(90px, 1fr) 96px;
  align-items: center;
  border-bottom: 1px solid var(--wo-border);
  transition: opacity 180ms ease;
}

.wo-event-row > div {
  min-width: 0;
}

.wo-event-row__image {
  display: none;
}

.wo-event-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wo-event-row strong,
.wo-event-row span:not(.wo-event-row__button) {
  display: block;
  font-weight: 400;
}

.wo-event-row > div:not(.wo-event-row__date) strong,
.wo-event-row > div:not(.wo-event-row__date) span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wo-event-row > div:not(.wo-event-row__date) strong {
  font-size: 14px;
  line-height: 18px;
}

.wo-event-row > div:not(.wo-event-row__date) span {
  margin-top: 4px;
  color: rgba(10, 26, 36, 0.4);
  font-size: 12px;
  line-height: 16px;
}

.wo-event-row__date {
  display: grid;
  grid-template-columns: 72px 42px;
  align-items: center;
}

.wo-event-row__date > strong {
  font-size: 54px;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -3px;
}

.wo-event-row__date > span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.wo-event-row__date small {
  display: block;
  margin-top: 4px;
  color: rgba(10, 26, 36, 0.4);
  font-size: 10px;
  letter-spacing: 1.8px;
}

.wo-event-row__price strong {
  color: var(--yot-peach);
}

.wo-event-row__button {
  display: inline-flex;
  width: 96px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--yot-cream);
  background: var(--yot-charcoal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.wo-event-row__button--disabled,
.wo-event-row__button--member {
  color: var(--yot-cream);
  background: #aaa7a3;
}

.wo-event-row.is-sold-out {
  opacity: 0.35;
}

.wo-event-row[hidden],
.wo-month[hidden] {
  display: none !important;
}

.wo-season__months.is-card-view .wo-month > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.wo-season__months.is-card-view .wo-event-row {
  min-height: 446px;
  grid-template-columns: 104px 1fr 110px;
  grid-template-rows: 220px auto auto auto;
  grid-template-areas:
    "image image image"
    "date name button"
    "date place time"
    "date price price";
  gap: 14px;
  padding: 0 25px 25px;
  overflow: hidden;
  border: 1px solid var(--wo-border);
}

.wo-season__months.is-card-view .wo-event-row__image {
  display: block;
  width: calc(100% + 50px);
  height: 220px;
  grid-area: image;
  margin: 0 -25px;
  overflow: hidden;
}

.wo-season__months.is-card-view .wo-event-row__date { grid-area: date; }
.wo-season__months.is-card-view .wo-event-row__name { grid-area: name; }
.wo-season__months.is-card-view .wo-event-row__place { grid-area: place; }
.wo-season__months.is-card-view .wo-event-row__time { grid-area: time; }
.wo-season__months.is-card-view .wo-event-row__price { grid-area: price; }
.wo-season__months.is-card-view .wo-event-row__button { grid-area: button; }
.wo-season__months.is-card-view .wo-event-row__vessel { display: none; }

.wo-upcoming {
  position: relative;
  display: grid;
  min-height: 880px;
  grid-template-columns: 368px minmax(0, 1fr);
  gap: 40px;
  padding: 103px 0 82px var(--page-gutter);
  overflow: hidden;
  background: var(--yot-off-white);
}

.wo-upcoming__intro h2 {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
}

.wo-upcoming__intro p {
  width: 368px;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.wo-upcoming__rail {
  display: flex;
  width: calc(100% - 72px);
  min-width: 0;
  gap: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.wo-upcoming__rail:focus-visible {
  outline: 1px solid var(--yot-charcoal);
  outline-offset: 8px;
}

.wo-upcoming__rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.wo-upcoming__progress {
  position: absolute;
  right: 0;
  bottom: 97px;
  left: calc(var(--page-gutter) + 408px);
  height: 1px;
  overflow: hidden;
  background: rgba(29, 29, 29, 0.18);
}

.wo-upcoming__progress span {
  display: block;
  width: 40.3226%;
  height: 100%;
  background: var(--yot-charcoal);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.wo-upcoming-card {
  min-width: 380px;
  scroll-snap-align: start;
}

.wo-upcoming-card__visual {
  position: relative;
  height: 380px;
  overflow: hidden;
  color: var(--yot-cream);
}

.wo-upcoming-card__visual::after {
  position: absolute;
  inset: 61% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  content: "";
}

.wo-upcoming-card__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.wo-upcoming-card:nth-child(1) .wo-upcoming-card__photo {
  top: 0.08%;
  left: -24.25%;
  width: 168.75%;
  height: 100%;
}

.wo-upcoming-card:nth-child(2) .wo-upcoming-card__photo {
  top: -23.88%;
  left: -12.02%;
  width: 111.93%;
  height: 139.85%;
}

.wo-upcoming-card:nth-child(3) .wo-upcoming-card__photo {
  top: -16.01%;
  width: 100%;
  height: 179.18%;
}

.wo-upcoming-card__logo {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 18px;
  width: 200px;
  max-height: 83px;
  object-fit: contain;
  object-position: left bottom;
}

.wo-upcoming-card__date {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: flex;
  width: 60px;
  height: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: 1.62px;
  text-transform: uppercase;
}

.wo-upcoming-card__date strong {
  margin-top: 2px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.wo-upcoming-card__price {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px;
  font-size: 10px;
  letter-spacing: 1.62px;
  text-transform: uppercase;
}

.wo-upcoming-card__price strong {
  display: block;
  color: var(--yot-peach);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.wo-upcoming-card__meta {
  margin: 24px 0 24px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.wo-upcoming-card__meta i {
  color: var(--yot-peach);
  font-style: normal;
}

.wo-upcoming-card h3 {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}

.wo-upcoming-card > p:not(.wo-upcoming-card__meta) {
  min-height: 66px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 22px;
}

.wo-upcoming-card .button {
  width: 147px;
}

.wo-campaign {
  position: relative;
  display: grid;
  min-height: 1024px;
  place-items: center;
  overflow: hidden;
  color: var(--yot-cream);
  background-color: var(--yot-charcoal);
  background-image: var(--wo-image);
  background-position: right 76.5%;
  background-size: 107.24% auto;
  text-align: center;
}

.wo-campaign::after {
  position: absolute;
  inset: 17% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.wo-campaign > div {
  position: relative;
  z-index: 2;
  margin-top: -10px;
}

.wo-campaign p {
  margin: 0 0 45px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.wo-campaign h2 {
  margin: 0 0 45px;
  color: var(--yot-peach);
  font-size: 120px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -4px;
}

.wo-campaign span {
  display: block;
  width: 664px;
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.25;
}

.wo-charter {
  background: var(--yot-off-white);
}

.wo-charter__intro {
  display: flex;
  min-height: 348px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 70px var(--page-gutter) 45px;
}

.wo-charter__intro h2 {
  width: 980px;
  max-width: 73%;
  margin: 0;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -4.8px;
}

.wo-charter__intro p {
  width: 340px;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
}

.wo-charter__visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: clamp(420px, 40vw, 520px);
  margin: 0 var(--page-gutter);
  background: var(--yot-off-white);
  touch-action: pan-y;
}

.wo-charter__visual:focus-visible {
  outline: 2px solid var(--yot-peach);
  outline-offset: 3px;
}

.wo-charter__slides,
.wo-charter__slide {
  position: absolute;
  inset: 0;
}

.wo-charter__slide {
  box-sizing: border-box;
  display: flex;
  visibility: hidden;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 0 max(20px, calc((100% - 1160px) / 2));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(2%, 0, 0) scale(0.985);
  transition: opacity 420ms ease, transform 520ms ease, visibility 0s linear 520ms;
}

.wo-charter__slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.wo-charter__slide img {
  display: block;
  width: var(--wo-charter-width, 100%);
  max-width: none;
  height: auto;
  max-height: none;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center bottom;
}

.wo-charter__visual button {
  position: absolute;
  z-index: 2;
  top: 56px;
}

.wo-charter__visual [data-charter-prev] { left: 0; }
.wo-charter__visual [data-charter-next] { right: 0; }

.wo-charter__count {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 12px;
  padding: 6px 8px;
  color: var(--yot-charcoal);
  background: rgba(248, 242, 235, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1;
}

.wo-charter__details {
  display: grid;
  min-height: 310px;
  grid-template-columns: 180px 630px 1fr;
  gap: 35px;
  padding: 71px var(--page-gutter);
  background: #f6e5d5;
}

.wo-charter__details > * {
  min-width: 0;
}

.wo-charter__details h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}

.wo-charter__details.is-changing h3,
.wo-charter__details.is-changing .wo-charter__copy > p {
  animation: wo-charter-copy-in 420ms ease both;
}

.wo-charter__copy > p {
  min-height: 84px;
  margin: 0;
  border-bottom: 1px solid rgba(35, 35, 35, 0.2);
  font-size: 14px;
  line-height: 22px;
}

.wo-charter__copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 0;
}

.wo-charter__copy dt {
  color: var(--yot-peach);
  font-family: "Inter", Arial, sans-serif;
  font-size: 40px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.wo-charter__copy dt.is-counting {
  animation: wo-charter-count-tick 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wo-charter__copy dd {
  margin: 8px 0 0;
  font-size: 10px;
  text-transform: uppercase;
}

.wo-charter__actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.wo-charter__actions .button {
  width: 220px;
  max-width: 100%;
  align-self: start;
}

@keyframes wo-charter-copy-in {
  0% { opacity: 0.25; transform: translate3d(0, 7px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes wo-charter-count-tick {
  0% { opacity: 0.35; transform: translate3d(0, 9px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.wo-testimonial {
  position: relative;
  min-height: 530px;
  margin: 0;
  padding: 109px 11% 70px;
  color: var(--yot-cream);
  background: var(--yot-peach);
}

.wo-testimonial > img {
  position: absolute;
  top: 110px;
  left: var(--page-gutter);
  width: 60px;
  height: 53px;
}

.wo-testimonial blockquote {
  margin: 0;
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2.8px;
}

.wo-testimonial figcaption {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1430px) {
  .wo-charter__details { grid-template-columns: minmax(150px, 180px) minmax(0, 1fr); }
  .wo-charter__actions { grid-column: 2; justify-content: flex-start; }
}

@media (max-width: 1100px) {
  .wo-featured__details { padding: 40px; }
  .wo-featured__details h2 { font-size: 44px; }
  .wo-featured__facts { gap: 16px; }
  .wo-event-row { grid-template-columns: 120px minmax(180px, 1.6fr) 110px minmax(150px, 1.2fr) 100px 90px 88px; }
  .wo-event-row__button { width: 88px; }
  .wo-season__filters { align-items: flex-start; flex-direction: column; margin-top: 70px; }
  .wo-filter-group--city { align-self: flex-end; }
  .wo-charter__intro h2 { font-size: 90px; }
  .wo-charter__details { grid-template-columns: 160px minmax(0, 1fr); }
  .wo-charter__actions { grid-column: 2; justify-content: flex-start; }
  .wo-testimonial blockquote { font-size: 58px; }
}

@media (max-width: 820px) {
  .wo-hero { --site-hero-min-height: 740px; background-position: 56% center; }
  .wo-hero__content { right: var(--page-gutter); bottom: 62px; width: auto; }
  .wo-hero__content h1 { font-size: clamp(72px, 15vw, 102px); }
  .wo-featured { height: 920px; }
  .wo-featured__slide { grid-template-columns: 1fr; grid-template-rows: 52% 48%; }
  .wo-featured__details { align-items: flex-start; padding: 42px var(--page-gutter); }
  .wo-featured__details-inner { max-width: none; }
  .wo-featured__details h2 { margin: 14px 0 20px; }
  .wo-featured__description { min-height: 0; margin-bottom: 24px; }
  .wo-featured__facts { min-height: 78px; margin-bottom: 24px; }
  .wo-season { min-height: 0; padding-top: 70px; }
  .wo-season__intro { display: block; }
  .wo-season__intro h2 { font-size: 48px; }
  .wo-season__utilities { margin-top: 35px; justify-content: space-between; }
  .wo-season__filters { margin-top: 54px; }
  .wo-filter-group { width: 100%; overflow-x: auto; padding-bottom: 8px; }
  .wo-filter-group { scrollbar-width: none; }
  .wo-filter-group::-webkit-scrollbar { display: none; }
  .wo-filter-group > span { position: sticky; left: 0; padding-right: 10px; background: var(--yot-off-white); }
  .wo-filter-group--city { align-self: auto; }
  .wo-season__months { margin-top: 42px; }
  .wo-month { margin-top: 50px; }
  .wo-event-row,
  .wo-season__months.is-card-view .wo-event-row {
    min-height: 124px;
    grid-template-columns: 86px 1fr 96px;
    grid-template-areas:
      "date name button"
      "date place time"
      "date price price";
    gap: 8px 14px;
    padding: 14px 0;
    border-width: 0 0 1px;
  }
  .wo-event-row__date,
  .wo-season__months.is-card-view .wo-event-row__date { grid-area: date; }
  .wo-event-row__name,
  .wo-season__months.is-card-view .wo-event-row__name { grid-area: name; }
  .wo-event-row__place,
  .wo-season__months.is-card-view .wo-event-row__place { grid-area: place; }
  .wo-event-row__time,
  .wo-season__months.is-card-view .wo-event-row__time { grid-area: time; }
  .wo-event-row__price,
  .wo-season__months.is-card-view .wo-event-row__price { grid-area: price; }
  .wo-event-row__button,
  .wo-season__months.is-card-view .wo-event-row__button { grid-area: button; }
  .wo-event-row__vessel { display: none; }
  .wo-season__months.is-card-view .wo-month > div { display: block; padding: 0; }
  .wo-season__months.is-card-view .wo-event-row {
    min-height: 420px;
    grid-template-columns: 86px 1fr 96px;
    grid-template-rows: 200px auto auto auto;
    grid-template-areas:
      "image image image"
      "date name button"
      "date place time"
      "date price price";
    margin-bottom: 20px;
    padding: 0 16px 18px;
    border: 1px solid var(--wo-border);
  }
  .wo-season__months.is-card-view .wo-event-row__image { width: calc(100% + 32px); height: 200px; margin: 0 -16px; }
  .wo-upcoming { display: block; min-height: 0; padding: 80px 0 70px var(--page-gutter); }
  .wo-upcoming__intro { padding-right: var(--page-gutter); }
  .wo-upcoming__rail { width: 100%; margin-top: 50px; }
  .wo-upcoming__progress { position: relative; right: auto; bottom: auto; left: auto; width: 100%; margin-top: 32px; }
  .wo-campaign { min-height: 760px; background-position: 52% center; background-size: cover; }
  .wo-campaign p { font-size: 17px; }
  .wo-campaign h2 { font-size: clamp(74px, 14vw, 104px); }
  .wo-campaign span { font-size: 18px; }
  .wo-charter__intro { display: block; min-height: 0; padding: 70px var(--page-gutter) 50px; }
  .wo-charter__intro h2 { width: auto; max-width: none; font-size: clamp(64px, 13vw, 90px); }
  .wo-charter__intro p { width: auto; margin-top: 32px; text-align: left; }
  .wo-charter__visual { height: 310px; }
  .wo-charter__visual button { top: 20px; }
  .wo-charter__details { display: block; min-height: 0; padding: 55px var(--page-gutter); }
  .wo-charter__copy { margin-top: 30px; }
  .wo-charter__actions { margin-top: 35px; justify-content: flex-start; }
  .wo-testimonial { min-height: 500px; padding: 105px var(--page-gutter) 60px 110px; }
  .wo-testimonial blockquote { font-size: 46px; }
  .wo-testimonial figcaption { font-size: 18px; }
}

@media (max-width: 600px) {
  .wo-hero { --site-hero-min-height: 680px; background-position: 57% center; }
  .wo-hero__content { bottom: 45px; }
  .wo-hero__content h1 { margin-bottom: 16px; font-size: 64px; letter-spacing: -3px; }
  .wo-hero__content p { font-size: 12px; line-height: 18px; }
  .wo-featured { height: 850px; }
  .wo-featured__slide { grid-template-rows: 48% 52%; }
  .wo-featured__boarding { bottom: 24px; left: var(--page-gutter); gap: 10px; }
  .wo-featured__boarding strong { font-size: 25px; }
  .wo-featured__boarding span { font-size: 8px; }
  .wo-featured__details { padding: 30px var(--page-gutter); }
  .wo-eyebrow { font-size: 10px; }
  .wo-featured__details h2 { font-size: 34px; line-height: 1; letter-spacing: -1px; }
  .wo-featured__description { font-size: 12px; line-height: 18px; }
  .wo-featured__facts { grid-template-columns: repeat(2, 1fr); gap: 12px 20px; padding: 12px 0; }
  .wo-featured__facts dd { margin-top: 1px; font-size: 12px; line-height: 16px; }
  .wo-featured__actions { gap: 12px; }
  .wo-featured__actions .button { width: 142px; }
  .wo-featured__actions > a:last-child { font-size: 11px; }
  .wo-featured__nav [data-featured-count] { right: 14px; bottom: 12px; }
  .wo-featured__nav [data-featured-prev] { left: 12px; }
  .wo-featured__nav [data-featured-next] { right: 12px; }
  .wo-season__intro h2 { font-size: 40px; }
  .wo-season__intro p { font-size: 12px; line-height: 18px; }
  .wo-season__utilities { align-items: flex-end; }
  .wo-toggle { align-items: flex-start; flex-direction: column; gap: 6px; font-size: 11px; }
  .wo-toggle i { width: 48px; height: 26px; }
  .wo-toggle i::after { width: 16px; height: 16px; }
  .wo-toggle input:checked + i::after { transform: translateX(22px); }
  .wo-view-switch { height: 32px; }
  .wo-view-switch button { min-width: 55px; font-size: 8px; }
  .wo-filter-group > span { display: none; }
  .wo-filter-group button { height: 32px; padding: 0 11px; font-size: 8px; }
  .wo-month > header { height: 48px; }
  .wo-month > header h3 { font-size: 31px; }
  .wo-month > header h3 span,
  .wo-month > header > span { font-size: 13px; }
  .wo-event-row,
  .wo-season__months.is-card-view .wo-event-row {
    min-height: 150px;
    grid-template-columns: 70px 1fr 82px;
    gap: 10px;
  }
  .wo-event-row__date { grid-template-columns: 44px 26px; }
  .wo-event-row__date { align-self: start; padding-top: 3px; }
  .wo-event-row__date > strong { font-size: 42px; }
  .wo-event-row__date > span { font-size: 9px; letter-spacing: 1px; }
  .wo-event-row__date small { font-size: 8px; letter-spacing: 1px; }
  .wo-event-row > div:not(.wo-event-row__date) strong { font-size: 12px; }
  .wo-event-row > div:not(.wo-event-row__date) span { font-size: 10px; }
  .wo-event-row__button { width: 82px; font-size: 8px; letter-spacing: 1.4px; }
  .wo-season__months.is-card-view .wo-event-row { min-height: 400px; grid-template-columns: 70px 1fr 82px; grid-template-rows: 180px auto auto auto; }
  .wo-season__months.is-card-view .wo-event-row__image { height: 180px; }
  .wo-upcoming__intro h2 { font-size: 34px; }
  .wo-upcoming__intro p { font-size: 12px; line-height: 18px; }
  .wo-upcoming__rail { gap: 24px; }
  .wo-upcoming-card { min-width: 82vw; }
  .wo-upcoming-card__visual { height: 82vw; max-height: 380px; }
  .wo-campaign { min-height: 680px; }
  .wo-campaign > div { padding: 0 var(--page-gutter); }
  .wo-campaign p { margin-bottom: 30px; font-size: 12px; letter-spacing: 2px; }
  .wo-campaign h2 { margin-bottom: 30px; font-size: 61px; letter-spacing: -3px; }
  .wo-campaign span { font-size: 14px; }
  .wo-charter__intro h2 { font-size: 57px; line-height: 0.98; letter-spacing: -3px; }
  .wo-charter__visual { height: 220px; margin: 0; }
  .wo-charter__slide { padding: 0 20px; }
  .wo-charter__visual button { top: 8px; }
  .wo-charter__count { right: 8px; bottom: 8px; font-size: 8px; }
  .wo-charter__details h3 { font-size: 34px; }
  .wo-charter__copy > p { padding-bottom: 22px; }
  .wo-charter__copy dt { font-size: 34px; }
  .wo-charter__actions { flex-direction: column; }
  .wo-charter__actions .button { width: 100%; }
  .wo-testimonial { min-height: 480px; padding: 95px var(--page-gutter) 55px 72px; }
  .wo-testimonial > img { top: 98px; left: var(--page-gutter); width: 34px; height: 30px; }
  .wo-testimonial blockquote { font-size: 36px; line-height: 1.05; letter-spacing: -1.5px; }
  .wo-testimonial figcaption { font-size: 13px; line-height: 1.4; }
}

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

/* YOT ONE · Figma node 4381:235 */
.yot-one-view {
  --yot-orange: #ffae7c;
}

.yot-one-page {
  background: var(--yot-off-white);
}

.yo-hero,
.yo-after-dark,
.yo-food {
  position: relative;
  overflow: hidden;
  color: var(--yot-cream);
  background-color: var(--yot-charcoal);
  background-image: var(--yo-image);
  background-position: center;
  background-size: cover;
}

.yo-hero {
  --site-hero-min-height: 760px;
  background-position: 48% center;
}

.yo-hero::after,
.yo-food::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 380px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68));
  content: "";
  pointer-events: none;
}

.yo-hero__meta-left {
  padding-top: 14px;
}

.yo-hero__meta-left > span:last-child {
  margin-top: 0;
}

.yo-food h2,
.yo-enquire h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.917;
  letter-spacing: -0.05em;
}

.yo-enquire h2 {
  font-size: clamp(84px, 7.5vw, 120px);
  line-height: 0.92;
}

.yo-glass-card {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: 76px;
  display: flex;
  width: 400px;
  height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(248, 242, 235, 0.1);
  background: rgba(248, 242, 235, 0.05);
  backdrop-filter: blur(10px);
}

.yo-glass-card__facts {
  display: flex;
  align-items: center;
  gap: 19px;
}

.yo-glass-card__facts span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  line-height: 1;
}

.yo-glass-card__facts small {
  opacity: 0.6;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.yo-glass-card__facts i {
  width: 1px;
  height: 28px;
  background: rgba(255, 245, 220, 0.5);
}

.yo-glass-card .button {
  width: 116px;
  flex: 0 0 116px;
  padding-right: 16px;
  padding-left: 16px;
}

.yo-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  gap: 60px;
  align-items: start;
}

.yo-section-heading h2,
.yo-sessions h2,
.yo-onboard h2,
.yo-private-hire h2,
.yo-after-dark h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.yo-section-heading p {
  margin: 26px 0 0;
  font-size: 14px;
  line-height: 22px;
}

.yo-coming-next {
  position: relative;
  height: 1080px;
  padding-top: 92px;
  overflow: hidden;
  background: var(--yot-off-white);
}

.yo-coming-next .yo-section-heading {
  padding: 0 var(--page-gutter);
}

.yo-coming-next__side p {
  margin-bottom: 0;
}

.yo-event-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.yo-event-slider-controls [data-yo-event-count] {
  min-width: 58px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-align: center;
}

.yo-event-rail {
  display: flex;
  gap: 30px;
  margin-top: 12px;
  padding: 0 var(--page-gutter) 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.yo-event-rail:active,
.yo-event-rail.is-dragging {
  cursor: grabbing;
}

.yo-event-rail img {
  -webkit-user-drag: none;
  pointer-events: none;
  user-select: none;
}

.yo-event-rail::-webkit-scrollbar {
  display: none;
}

.yo-event-card {
  width: 480px;
  flex: 0 0 480px;
}

.yo-event-card__visual {
  position: relative;
  width: 480px;
  height: 480px;
  overflow: hidden;
  background: var(--yot-charcoal);
}

.yo-event-card__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
  content: "";
  pointer-events: none;
}

.yo-event-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yo-event-card:first-child .yo-event-card__visual > img {
  object-position: center;
}

.yo-event-card:nth-child(2) .yo-event-card__visual > img {
  object-position: center 28%;
}

.yo-event-card:nth-child(3) .yo-event-card__visual > img {
  object-position: center 22%;
}

.yo-event-card__dates {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: auto;
  min-width: 116px;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 245, 220, 0.12);
  color: var(--yot-cream);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.yo-event-card__dates:hover,
.yo-event-card__dates:focus-visible {
  border-color: rgba(255, 245, 220, 0.35);
  background: rgba(0, 0, 0, 0.45);
}

.yo-event-card__dates span {
  font-size: 9px;
  line-height: 12px;
  letter-spacing: 1.25px;
  white-space: nowrap;
}

.yo-event-card__dates strong {
  color: var(--yot-orange);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.yo-event-card__meta {
  margin: 25px 0 0;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.yo-event-card h3 {
  margin: 17px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.yo-event-card > p:not(.yo-event-card__meta) {
  height: 44px;
  margin: 22px 0 0;
  line-height: 22px;
}

.yo-event-card > .button {
  width: 160px;
  margin-top: 18px;
}

.yo-event-progress {
  position: absolute;
  right: 15.55%;
  bottom: 60px;
  left: 15.55%;
  height: 2px;
  overflow: hidden;
  background: rgba(35, 35, 35, 0.2);
}

.yo-event-progress span {
  display: block;
  width: 40.3%;
  height: 100%;
  background: var(--yot-orange);
  transform-origin: left center;
}

.yo-after-dark {
  height: 853px;
  background-position: center 42%;
}

.yo-after-dark::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  content: "";
}

.yo-after-dark__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 230px;
  text-align: center;
}

.yo-eyebrow {
  margin: 0;
  color: var(--yot-orange);
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.yo-after-dark h2 {
  margin-top: 60px;
  color: var(--yot-peach);
  font-size: 120px;
  line-height: 0.82;
}

.yo-after-dark__intro {
  width: 664px;
  margin: 52px auto 0;
  font-size: 18px;
  line-height: 26px;
}

.yo-stat-rail {
  position: absolute;
  right: 11.8%;
  bottom: 75px;
  left: 11.8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.yo-stat {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-left: 1px solid rgba(255, 245, 220, 0.32);
}

.yo-stat:first-child {
  border-left: 0;
}

.yo-stat img {
  width: 32px;
  height: 32px;
  margin-bottom: 7px;
}

.yo-stat strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.yo-stat span {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.yo-sessions {
  height: 1220px;
  padding: 80px var(--page-gutter) 40px;
  background: var(--yot-off-white);
}

.yo-sessions__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 467px;
  gap: 60px;
}

.yo-sessions h2 {
  font-size: 120px;
  line-height: 0.817;
}

.yo-sessions__side > p {
  width: 370px;
  margin: 40px 0 0 auto;
  line-height: 18px;
}

.yo-pill-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.yo-pill-group > span {
  margin-right: auto;
  font-size: 14px;
}

.yo-pill-group button {
  height: 36px;
  padding: 0 20px;
  border: 0;
  color: var(--yot-ink);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.yo-pill-group button.is-active,
.yo-pill-group button:hover,
.yo-pill-group button:focus-visible {
  color: var(--yot-cream);
  background: var(--yot-orange);
}

.yo-session-list {
  margin-top: 75px;
}

.yo-session-row {
  display: grid;
  min-height: 108px;
  grid-template-columns: 135px minmax(300px, 508px) 304px minmax(180px, 1fr) 96px;
  align-items: center;
  border-bottom: 1px solid rgba(50, 50, 50, 0.24);
}

.yo-session-row__day,
.yo-session-row__name,
.yo-session-row__fact {
  display: flex;
  flex-direction: column;
}

.yo-session-row__day strong,
.yo-session-row__name strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.yo-session-row__day span,
.yo-session-row__name span,
.yo-session-row__fact span,
.yo-session-row__fact strong {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.yo-session-row__name span {
  letter-spacing: 0.4px;
  text-transform: none;
}

.yo-session-row__fact strong {
  margin-top: 4px;
  color: var(--yot-orange);
}

.yo-session-row .button {
  width: 96px;
  padding-right: 14px;
  padding-left: 14px;
}

.yo-sessions__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.yo-sessions__footer p {
  width: 454px;
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

.yo-sessions__footer .button {
  width: 220px;
}

.yo-onboard {
  height: 1615px;
  padding-top: 165px;
  background: var(--yot-off-white);
}

.yo-onboard > .yo-section-heading {
  padding: 0 var(--page-gutter);
}

.yo-onboard .yo-section-heading h2 {
  font-size: 96px;
}

.yo-onboard__grid {
  display: grid;
  height: 620px;
  grid-template-columns: 371px minmax(0, 1fr);
  gap: 22px;
  margin: 87px var(--page-gutter) 0;
}

.yo-onboard-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.yo-onboard-card--production img {
  object-position: 35% center;
}

.yo-onboard-card .yo-eyebrow {
  margin-top: 27px;
  line-height: 10px;
}

.yo-onboard-card h3 {
  margin: 21px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 18px;
}

.yo-onboard-card > p:last-child {
  margin: 28px 0 0;
  line-height: 16px;
}

.yo-onboard-card--production > p:last-child {
  width: 363px;
  font-size: 12px;
  line-height: 18px;
}

.yo-onboard__bar {
  width: 100%;
  height: 600px;
  margin-top: 63px;
  object-fit: cover;
  object-position: center 50%;
}

.yo-private-hire {
  height: 760px;
  padding: 244px var(--page-gutter) 0;
  background: var(--yot-off-white);
}

.yo-private-hire__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 467px;
  gap: 60px;
}

.yo-private-hire h2 {
  font-size: 120px;
  line-height: 0.817;
}

.yo-private-hire__header > div > p {
  width: 370px;
  margin: 40px 0 0 auto;
  line-height: 18px;
}

.yo-food {
  height: 760px;
  background-position: center 53%;
}

.yo-food__content {
  position: absolute;
  z-index: 2;
  top: 364px;
  left: var(--page-gutter);
  width: 718px;
}

.yo-food__content p {
  width: 376px;
  margin: 39px 0 0;
  line-height: 22px;
}

.yo-food__enquire {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: 76px;
  width: 116px;
}

.yo-enquire {
  height: 1080px;
  padding: 80px var(--page-gutter);
  background: var(--yot-off-white);
}

.yo-enquire__header {
  display: grid;
  height: 292px;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 60px;
}

.yo-enquire__header h2 {
  margin-top: 20px;
}

.yo-enquire__header h2 span {
  display: block;
  white-space: nowrap;
}

.yo-enquire__header h2 span + span {
  margin-top: 0.1em;
}

.yo-enquire__header > p {
  margin: 76px 0 0;
  text-align: right;
  line-height: 22px;
}

.yo-enquire__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
}

.yo-enquire__form label {
  display: flex;
  height: 60px;
  flex-direction: column;
  gap: 4px;
}

.yo-enquire__form label > span {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.yo-enquire__form input,
.yo-enquire__form select,
.yo-enquire__form textarea {
  width: 100%;
  height: 40px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--yot-ink);
  border-radius: 0;
  outline: 0;
  color: var(--yot-ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 22px;
}

.yo-enquire__form input::placeholder,
.yo-enquire__form textarea::placeholder {
  color: rgba(50, 50, 50, 0.58);
  opacity: 1;
}

.yo-enquire__form select {
  color: rgba(50, 50, 50, 0.68);
}

.yo-enquire__form input:focus,
.yo-enquire__form select:focus,
.yo-enquire__form textarea:focus {
  border-bottom-color: var(--yot-orange);
}

.yo-enquire__requirements {
  grid-column: 1 / -1;
}

.yo-enquire__form textarea {
  resize: none;
}

.yo-enquire__actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 34px;
}

.yo-enquire__actions > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yo-enquire__actions a {
  color: var(--yot-orange);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.yo-enquire__actions small {
  opacity: 0.66;
  font-size: 10px;
}

.yo-enquire__actions .button {
  width: 220px;
}

.yo-enquire__actions .button::after {
  display: none;
}

@media (max-width: 1400px) {
  .yo-enquire__header {
    height: 260px;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
  }

  .yo-enquire__header > p {
    margin-top: 70px;
  }
}

@media (max-width: 1100px) {
  .yo-section-heading h2,
  .yo-onboard .yo-section-heading h2 {
    font-size: 80px;
  }

  .yo-session-row {
    grid-template-columns: 105px minmax(260px, 1fr) 180px 160px 88px;
  }

  .yo-onboard__grid {
    grid-template-columns: 31% 1fr;
  }

  .yo-enquire__header {
    height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 55px;
  }

  .yo-enquire h2 {
    font-size: clamp(68px, 7.64vw, 84px);
  }

  .yo-enquire__header > p {
    width: min(100%, 480px);
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .yo-glass-card {
    bottom: 34px;
  }
}

@media (max-width: 820px) {
  .yo-food h2,
  .yo-sessions h2,
  .yo-private-hire h2,
  .yo-after-dark h2 {
    font-size: clamp(62px, 13vw, 100px);
  }

  .yo-enquire h2 {
    font-size: clamp(62px, 8.3vw, 68px);
  }

  .yo-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .yo-section-heading p {
    width: min(100%, 440px);
    margin-top: 0;
  }

  .yo-coming-next {
    height: 1050px;
  }

  .yo-event-card,
  .yo-event-card__visual {
    width: 420px;
  }

  .yo-event-card {
    flex-basis: 420px;
  }

  .yo-event-card__visual {
    height: 420px;
  }

  .yo-after-dark__intro {
    width: min(86%, 600px);
  }

  .yo-stat-rail {
    right: 6%;
    left: 6%;
  }

  .yo-sessions {
    height: auto;
    min-height: 1220px;
  }

  .yo-sessions__header,
  .yo-private-hire__header,
  .yo-enquire__header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .yo-sessions__side > p,
  .yo-private-hire__header > div > p {
    width: min(100%, 480px);
    margin-left: 0;
  }

  .yo-session-row {
    grid-template-columns: 90px minmax(220px, 1fr) 150px 88px;
  }

  .yo-session-row__fact:nth-of-type(4) {
    display: none;
  }

  .yo-onboard {
    height: auto;
    padding-bottom: 0;
  }

  .yo-onboard__grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .yo-onboard-card {
    margin-bottom: 48px;
  }

  .yo-onboard-card--production > p:last-child {
    width: auto;
  }

  .yo-onboard__bar {
    margin-top: 20px;
  }

  .yo-private-hire {
    height: 700px;
    padding-top: 160px;
  }

  .yo-enquire {
    height: auto;
    min-height: 1080px;
  }

  .yo-enquire__header {
    height: auto;
    margin-bottom: 55px;
  }

  .yo-enquire__header > p {
    width: min(100%, 480px);
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .yo-hero {
    --site-hero-min-height: 740px;
    background-position: 57% center;
  }

  .yo-hero__meta-left > span:last-child {
    max-width: none;
    white-space: nowrap;
  }

  .yo-glass-card {
    right: var(--page-gutter);
    bottom: 20px;
    left: var(--page-gutter);
    width: auto;
    height: 86px;
    padding: 18px;
  }

  .yo-glass-card__facts {
    gap: 10px;
  }

  .yo-glass-card__facts span {
    font-size: 11px;
  }

  .yo-glass-card__facts small {
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .yo-coming-next {
    height: 880px;
    padding-top: 66px;
  }

  .yo-section-heading h2,
  .yo-onboard .yo-section-heading h2 {
    font-size: 56px;
    line-height: 0.9;
  }

  .yo-section-heading p {
    font-size: 12px;
    line-height: 18px;
  }

  .yo-event-rail {
    gap: 16px;
    margin-top: 18px;
  }

  .yo-event-card,
  .yo-event-card__visual {
    width: min(82vw, 340px);
  }

  .yo-event-card {
    flex-basis: min(82vw, 340px);
  }

  .yo-event-card__visual {
    height: min(82vw, 340px);
  }

  .yo-event-card__dates {
    bottom: 14px;
    left: 14px;
    min-width: 108px;
    min-height: 40px;
    padding: 8px 11px;
  }

  .yo-event-card__meta {
    margin-top: 18px;
  }

  .yo-event-card h3 {
    margin-top: 12px;
    font-size: 21px;
  }

  .yo-event-card > p:not(.yo-event-card__meta) {
    height: 42px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 18px;
  }

  .yo-event-card > .button {
    margin-top: 14px;
  }

  .yo-event-progress {
    right: var(--page-gutter);
    bottom: 36px;
    left: var(--page-gutter);
  }

  .yo-after-dark {
    height: 780px;
  }

  .yo-after-dark__content {
    padding-top: 120px;
  }

  .yo-after-dark h2 {
    margin-top: 38px;
    font-size: 70px;
  }

  .yo-after-dark__intro {
    margin-top: 34px;
    font-size: 14px;
    line-height: 21px;
  }

  .yo-stat-rail {
    right: var(--page-gutter);
    bottom: 44px;
    left: var(--page-gutter);
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .yo-stat {
    min-height: 90px;
  }

  .yo-stat:nth-child(3) {
    border-left: 0;
  }

  .yo-sessions {
    min-height: 0;
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .yo-sessions h2,
  .yo-private-hire h2,
  .yo-food h2,
  .yo-enquire h2 {
    font-size: 58px;
    line-height: 0.9;
  }

  .yo-pill-group {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .yo-pill-group > span {
    width: 100%;
    margin: 0 0 5px;
  }

  .yo-pill-group button {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .yo-sessions__side > p,
  .yo-private-hire__header > div > p {
    margin-top: 28px;
    font-size: 12px;
    line-height: 18px;
  }

  .yo-session-list {
    margin-top: 50px;
  }

  .yo-session-row {
    position: relative;
    min-height: 132px;
    grid-template-columns: 68px minmax(0, 1fr) 76px;
    gap: 12px;
    padding: 18px 0;
  }

  .yo-session-row__day strong,
  .yo-session-row__name strong {
    font-size: 17px;
    line-height: 20px;
  }

  .yo-session-row__day span,
  .yo-session-row__name span,
  .yo-session-row__fact span,
  .yo-session-row__fact strong {
    font-size: 8px;
    line-height: 12px;
  }

  .yo-session-row__fact {
    display: none;
  }

  .yo-session-row .button {
    width: 76px;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .yo-sessions__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 42px;
  }

  .yo-sessions__footer p {
    width: 100%;
  }

  .yo-onboard {
    padding-top: 66px;
  }

  .yo-onboard__grid {
    gap: 0;
    margin-top: 48px;
  }

  .yo-onboard-card img {
    height: 320px;
  }

  .yo-onboard-card .yo-eyebrow {
    line-height: 14px;
  }

  .yo-onboard-card h3 {
    margin-top: 16px;
  }

  .yo-onboard-card > p:last-child {
    margin-top: 20px;
    font-size: 12px;
    line-height: 18px;
  }

  .yo-onboard__bar {
    height: 390px;
    object-position: center;
  }

  .yo-private-hire {
    height: 640px;
    padding-top: 130px;
  }

  .yo-private-hire__header {
    gap: 70px;
  }

  .yo-food {
    height: 720px;
    background-position: 53% center;
  }

  .yo-food__content {
    top: 220px;
    right: var(--page-gutter);
    width: auto;
  }

  .yo-food__content p {
    width: 100%;
    max-width: 340px;
    margin-top: 28px;
    font-size: 12px;
    line-height: 18px;
  }

  .yo-food__enquire {
    right: var(--page-gutter);
    bottom: 20px;
  }

  .yo-enquire {
    min-height: 1460px;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .yo-enquire__header {
    gap: 28px;
    margin-bottom: 50px;
  }

  .yo-enquire__header h2 {
    margin-top: 18px;
  }

  .yo-enquire__header h2 span {
    white-space: normal;
  }

  .yo-enquire__header > p {
    font-size: 12px;
    line-height: 18px;
  }

  .yo-enquire__form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .yo-enquire__requirements,
  .yo-enquire__actions {
    grid-column: 1;
  }

  .yo-enquire__actions {
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
  }

  .yo-enquire__actions .button {
    width: 100%;
  }
}

/* R&B Fridays event page */
.rnb-page {
  --rnb-surface: #f5f0e7;
  --rnb-ink: #252523;
  --rnb-cream: #fff7ea;
  --rnb-navy: #071c28;
  --rnb-type-eyebrow: 12px;
  --rnb-type-action: 11px;
  --rnb-type-meta: 12px;
  --rnb-type-supporting: 15px;
  --rnb-type-body: 16px;
  --rnb-type-body-large: 18px;
  color: var(--rnb-ink);
  background: var(--rnb-surface);
}

.rnb-page h2,
.rnb-page h3,
.rnb-page p {
  margin-top: 0;
}

.rnb-page h2,
.rnb-page h3 {
  font-weight: 400;
}

.rnb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rnb-eyebrow {
  margin-bottom: 0;
  color: #ffa876;
  font-size: var(--rnb-type-eyebrow);
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.rnb-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  color: #1e1e1d;
  background: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.rnb-button:hover,
.rnb-button:focus-visible {
  color: #fff7ea;
  background: #ffae7c;
}

.rnb-hero {
  --site-hero-min-height: 840px;
  position: relative;
  overflow: hidden;
  color: var(--rnb-cream);
  background: #13191f;
}

.rnb-hero__image,
.rnb-story__image,
.rnb-atmosphere__media,
.rnb-atmosphere__media img,
.rnb-vip-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.rnb-hero__image {
  object-position: center 47%;
}

.rnb-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.66) 100%),
    rgba(7, 16, 25, 0.18);
}

.rnb-hero__eyebrow {
  position: absolute;
  z-index: 2;
  top: 122px;
  left: 40px;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.rnb-hero__logo {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 215px;
  left: 8.96%;
  width: 245px;
  height: 109px;
  object-fit: contain;
}

.rnb-hero__intro {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 110px;
  left: 8.96%;
  width: 540px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.rnb-hero__booking {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 40px;
  bottom: 92px;
  width: 550px;
}

.rnb-hero__next {
  margin: 0 0 18px 10px;
  color: #ffa876;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.68px;
}

.rnb-glass {
  border: 1px solid rgba(248, 242, 235, 0.1);
  background: rgba(248, 242, 235, 0.05);
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.rnb-hero__glass {
  display: flex;
  width: 481px;
  height: 96px;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
}

.rnb-hero__glass .rnb-button {
  width: 210px;
  flex: 0 0 auto;
}

.rnb-hero__glass span {
  color: var(--rnb-cream);
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.rnb-sessions {
  position: relative;
  height: 650px;
  overflow: hidden;
  padding: 72px 40px 0;
  background: var(--rnb-surface);
}

.rnb-sessions__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.rnb-sessions__heading h2 {
  margin: 14px 0 0;
  font-size: 78px;
  line-height: 84px;
  letter-spacing: -3.12px;
}

.rnb-sessions__helper {
  width: 500px;
  margin: 46px 20px 0 0;
  font-size: var(--rnb-type-supporting);
  line-height: 23px;
  text-align: right;
}

.rnb-sessions__controls {
  position: absolute;
  top: 188px;
  right: 60px;
  z-index: 2;
  width: 102px;
  height: 44px;
}

.rnb-sessions__controls button {
  position: absolute;
  top: 0;
}

.rnb-sessions__controls button:first-of-type { left: 0; }
.rnb-sessions__controls button:last-of-type { right: 0; }

.rnb-session-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 76px;
}

.rnb-session-card {
  position: relative;
  min-width: 0;
  height: 280px;
  padding-top: 26px;
  border-top: 1px solid rgba(37, 37, 35, 0.28);
  border-bottom: 1px solid rgba(37, 37, 35, 0.16);
}

.rnb-session-card h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 1.8vw, 34px);
  line-height: 40px;
  white-space: nowrap;
}

.rnb-session-card__city {
  margin-bottom: 22px;
  color: #ffa876;
  font-size: var(--rnb-type-meta);
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.7px;
}

.rnb-session-card__time {
  margin-bottom: 0;
  font-size: var(--rnb-type-supporting);
  line-height: 22px;
}

.rnb-session-card a {
  position: absolute;
  bottom: 51px;
  left: 0;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.6px;
}

.rnb-story {
  position: relative;
  height: 950px;
  overflow: hidden;
  color: var(--rnb-cream);
  background: #141414;
}

.rnb-story__image {
  object-position: center 42%;
}

.rnb-story__wash,
.rnb-atmosphere__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.6) 100%),
    rgba(5, 6, 7, 0.48);
}

.rnb-story__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 680px minmax(0, 560px);
  justify-content: space-between;
  gap: 60px;
  padding: 88px 7% 0 40px;
}

.rnb-story__intro h2 {
  margin: 20px 0 0;
  font-size: 96px;
  line-height: 92px;
  letter-spacing: -3.84px;
}

.rnb-story__intro > p {
  margin: 90px 0 0;
  font-size: 18px;
  line-height: 29px;
}

.rnb-story__highlights {
  position: absolute;
  z-index: 2;
  bottom: 124px;
  left: 40px;
  display: grid;
  width: calc(100% - 80px);
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rnb-highlight {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 247, 234, 0.34);
}

.rnb-highlight > span {
  display: block;
  color: #ffa876;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -2.56px;
}

.rnb-highlight h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.62px;
}

.rnb-highlight p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 247, 234, 0.84);
  font-size: var(--rnb-type-supporting);
  line-height: 24px;
}

.rnb-story__reserve {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 40px;
  margin: 0;
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 1.44px;
}

.rnb-tickets {
  background: var(--rnb-surface);
}

.rnb-tickets__general {
  min-height: 812px;
  padding: 74px 40px 64px;
}

.rnb-tickets__intro {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(320px, 500px);
  justify-content: space-between;
  gap: 40px;
}

.rnb-tickets__intro h2 {
  margin: 14px 0 0;
  font-size: 80px;
  line-height: 86px;
  letter-spacing: -3.2px;
}

.rnb-tickets__intro > p {
  margin: 42px 0 0;
  font-size: 18px;
  line-height: 29px;
}

.rnb-deck-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 84px;
}

.rnb-deck-card {
  padding-top: 27px;
  border-top: 1px solid rgba(37, 37, 35, 0.26);
}

.rnb-deck-card__price,
.rnb-booth__number {
  margin-bottom: 22px;
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.6px;
}

.rnb-deck-card h3 {
  margin-bottom: 12px;
  font-size: 54px;
  line-height: 60px;
}

.rnb-deck-card > p:not(.rnb-deck-card__price) {
  margin-bottom: 24px;
  color: rgba(37, 37, 35, 0.86);
  font-size: 17px;
  line-height: 27px;
}

.rnb-deck-card .rnb-button {
  width: 250px;
}

.rnb-vip-hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  border-top: 4px solid #ffa876;
  color: var(--rnb-surface);
  background: #07182a;
}

.rnb-vip-hero > img {
  object-position: center 55%;
}

.rnb-vip-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 27, 0.78) 0%, rgba(4, 16, 27, 0.3) 48%, rgba(4, 16, 27, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 16, 27, 0.12) 45%, rgba(4, 16, 27, 0.76) 100%);
}

.rnb-vip-hero__title {
  position: absolute;
  z-index: 2;
  top: 68px;
  left: 40px;
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  align-items: flex-start;
}

.rnb-vip-hero__title .rnb-eyebrow {
  margin: 0;
}

.rnb-vip-hero h2 {
  margin: 26px 0 0;
  font-size: clamp(72px, 5vw, 88px);
  line-height: 1;
  letter-spacing: -3.1px;
}

.rnb-vip-hero__title .rnb-vip-hero__intro {
  width: min(540px, 100%);
  margin: 52px 0 0;
  color: rgba(245, 240, 231, 0.92);
  font-size: var(--rnb-type-body-large);
  line-height: 29px;
}

.rnb-vip-hero__facts {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 234, 0.34);
  font-size: var(--rnb-type-meta);
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.98px;
}

.rnb-vip-hero__compare-cue {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 32px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: var(--rnb-cream);
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.8px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.rnb-vip-hero__compare-cue:hover,
.rnb-vip-hero__compare-cue:focus-visible {
  color: #ffa876;
}

.rnb-vip-hero__compare-arrow {
  display: inline-block;
  color: #ffa876;
  font-size: 20px;
  line-height: 20px;
  animation: rnb-vip-cue 1.45s ease-in-out infinite;
}

@keyframes rnb-vip-cue {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(5px); }
}

.rnb-booth-grid {
  display: grid;
  min-height: 470px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding: 56px 40px 40px;
}

.rnb-booth {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 1px solid rgba(37, 37, 35, 0.22);
}

.rnb-booth__number {
  font-size: var(--rnb-type-meta);
  line-height: 16px;
  letter-spacing: 1.84px;
}

.rnb-booth h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 36px;
}

.rnb-booth__summary {
  width: min(100%, 390px);
  min-height: 60px;
  margin-bottom: 10px;
  color: rgba(37, 37, 35, 0.84);
  font-size: var(--rnb-type-body);
  line-height: 25px;
}

.rnb-booth__toggle {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: #ffa876;
  background: transparent;
  cursor: pointer;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
}

.rnb-booth__inclusions {
  width: min(100%, 390px);
  margin-bottom: 20px;
}

.rnb-booth__inclusions[hidden],
.rnb-faq__answer[hidden] {
  display: none;
}

.rnb-booth__inclusions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(37, 37, 35, 0.84);
  font-size: var(--rnb-type-body);
  line-height: 25px;
}

.rnb-booth__inclusions p {
  margin: 14px 0 0;
  color: rgba(37, 37, 35, 0.72);
  font-size: var(--rnb-type-meta);
  line-height: 20px;
}

.rnb-booth__cta {
  width: 230px;
  margin-top: auto;
}

.rnb-booth-grid__note {
  grid-column: 1 / -1;
  align-self: end;
  margin: 10px 0 0;
  color: rgba(37, 37, 35, 0.72);
  font-size: 14px;
  line-height: 21px;
}

.rnb-booth-grid {
  display: none;
}

.rnb-booth-selector {
  position: relative;
  display: block;
  background: var(--rnb-surface);
}

.rnb-booth-selector__progress {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  height: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(37, 37, 35, 0.72);
}

.rnb-booth-selector__progress button {
  width: 100%;
  height: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.rnb-booth-selector__progress button:hover,
.rnb-booth-selector__progress button:focus-visible,
.rnb-booth-selector__progress button.is-active {
  background: #ffa876;
}

.rnb-booth-selector__status {
  display: none;
}

.rnb-booth-selector__stack {
  position: relative;
}

.rnb-booth-panel {
  position: sticky;
  z-index: calc(var(--rnb-booth-index) + 1);
  top: calc(4px + (var(--rnb-booth-index) * 70px));
  display: flex;
  width: 100%;
  height: 820px;
  flex-direction: column;
  color: var(--rnb-ink);
  background: var(--rnb-surface);
}

.rnb-booth-panel:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(245, 240, 231, 0.88) 0%, rgba(245, 240, 231, 0.68) 56%, rgba(245, 240, 231, 0.8) 100%),
    url("../images/rnb-innerstage-six-booth.jpg") center center / cover no-repeat;
}

.rnb-booth-panel:nth-child(2) {
  color: var(--rnb-cream);
  background:
    linear-gradient(90deg, rgba(7, 28, 40, 0.84) 0%, rgba(7, 28, 40, 0.66) 56%, rgba(7, 28, 40, 0.8) 100%),
    url("../images/rnb-ocean-deck-ten-booth.jpg") center center / cover no-repeat;
}

.rnb-booth-panel:nth-child(3) {
  color: var(--rnb-cream);
  background: var(--rnb-ink);
}

.rnb-booth-panel__header {
  display: grid;
  width: calc(100% - 80px);
  min-height: 70px;
  flex: 0 0 70px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 40px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.rnb-booth-panel__header span {
  display: contents;
}

.rnb-booth-panel__header small {
  overflow: hidden;
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1.8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rnb-booth-panel__header strong {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  white-space: nowrap;
}

.rnb-booth-panel__header b {
  justify-self: end;
  color: #ffa876;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}

.rnb-booth-panel__body {
  position: relative;
  display: block;
  min-height: 0;
  flex: 1;
  padding: 68px 40px 44px;
  touch-action: pan-y;
}

.rnb-booth-panel__summary {
  width: min(780px, 62vw);
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.16;
  letter-spacing: -1.3px;
}

.rnb-booth-panel__label {
  margin: 0 0 16px;
  padding-top: 62px;
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 1.7px;
}

.rnb-booth-panel ul {
  display: grid;
  width: min(720px, 53vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(44px, auto);
  column-gap: 40px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: var(--rnb-type-body);
  line-height: 24px;
  list-style: none;
}

.rnb-booth-panel li {
  min-height: 44px;
  padding: 9px 12px 8px 0;
  border-top: 1px solid currentColor;
}

.rnb-booth-panel li::before {
  color: #ffa876;
  content: "· ";
}

.rnb-booth-panel__note {
  position: absolute;
  right: 8%;
  bottom: 146px;
  width: min(450px, 34vw);
  margin: 0;
  color: inherit;
  font-size: var(--rnb-type-body);
  line-height: 24px;
  opacity: 0.78;
}

.rnb-booth-panel__footer {
  position: absolute;
  right: 8%;
  bottom: 44px;
  display: flex;
  width: min(450px, 34vw);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rnb-booth-panel__footer p {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.rnb-booth-panel__footer strong,
.rnb-booth-panel__footer span {
  font: inherit;
}

.rnb-booth-panel__footer span::after {
  content: " ·";
}

.rnb-booth-panel__footer a {
  display: inline-flex;
  width: 250px;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #1e1e1d;
  background: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.rnb-booth-panel__footer a:hover,
.rnb-booth-panel__footer a:focus-visible {
  color: var(--rnb-cream);
  background: #ffae7c;
}

.rnb-atmosphere {
  position: relative;
  height: 850px;
  overflow: hidden;
  color: var(--rnb-cream);
  background: #111;
}

.rnb-atmosphere__media img {
  object-position: center center;
  animation: rnb-atmosphere-drift 18s ease-in-out infinite alternate;
}

@keyframes rnb-atmosphere-drift {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.rnb-atmosphere.is-paused .rnb-atmosphere__media img {
  animation-play-state: paused;
}

.rnb-atmosphere__wash {
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.6) 100%),
    rgba(8, 10, 13, 0.32);
}

.rnb-atmosphere__eyebrow,
.rnb-atmosphere h2,
.rnb-atmosphere__motion-note,
.rnb-atmosphere__pause,
.rnb-food-card {
  position: absolute;
  z-index: 2;
}

.rnb-atmosphere__eyebrow { top: 80px; left: 40px; }

.rnb-atmosphere h2 {
  top: 108px;
  left: 40px;
  margin: 0;
  font-size: 92px;
  line-height: 100px;
  letter-spacing: -3.68px;
}

.rnb-atmosphere__motion-note {
  top: 128px;
  right: 60px;
  width: 520px;
  color: #ffa876;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.2px;
  text-align: right;
}

.rnb-atmosphere__pause {
  bottom: 98px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--rnb-cream);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.rnb-atmosphere__pause img {
  width: 48px;
  height: 48px;
}

.rnb-food-card {
  right: 40px;
  bottom: 52px;
  width: 540px;
  height: 250px;
  padding: 28px;
  background: rgba(38, 38, 37, 0.92);
}

.rnb-food-card h3 {
  margin: 16px 0 8px;
  font-size: 34px;
  line-height: 40px;
}

.rnb-food-card > p:not(.rnb-eyebrow) {
  margin-bottom: 26px;
  font-size: var(--rnb-type-supporting);
  line-height: 23px;
}

.rnb-food-card a {
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 1.26px;
}

.rnb-boarding {
  position: relative;
  min-height: 690px;
  padding: 38px 40px 48px;
  background: var(--rnb-surface);
}

.rnb-boarding__heading {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 500px);
  justify-content: space-between;
  gap: 40px;
}

.rnb-boarding__heading h2 {
  margin: 28px 0 0;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: -1.92px;
}

.rnb-boarding__heading > p {
  margin: 54px 0 0;
  font-size: 17px;
  line-height: 27px;
}

.rnb-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 46px;
}

.rnb-location-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(37, 37, 35, 0.18);
}

.rnb-location-card__map,
.rnb-location-card__map-fallback,
.rnb-location-card__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rnb-location-card__map {
  z-index: 0;
  overflow: hidden;
  background: #dfe4e3;
}

.rnb-location-card__map-fallback {
  object-fit: cover;
}

.rnb-location-card__map-canvas {
  background: #dfe4e3;
}

.rnb-location-card__map-canvas.maplibregl-map {
  color: var(--rnb-ink);
  font-family: "Inter", Arial, sans-serif;
}

.rnb-location-card__map-canvas .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(37, 37, 35, 0.18);
  border-radius: 0;
  box-shadow: 0 5px 18px rgba(37, 37, 35, 0.12);
}

.rnb-location-card__map-canvas .maplibregl-ctrl-group button {
  border-bottom-color: rgba(37, 37, 35, 0.14);
  color: var(--rnb-ink);
  background: rgba(245, 240, 231, 0.94);
}

.rnb-location-card__map-canvas .maplibregl-ctrl-group button:hover,
.rnb-location-card__map-canvas .maplibregl-ctrl-group button:focus-visible {
  color: var(--rnb-ink);
  background: #ffa876;
}

.rnb-location-card__map-canvas .maplibregl-ctrl-attrib {
  color: rgba(37, 37, 35, 0.72);
  background: rgba(245, 240, 231, 0.88);
}

.rnb-location-card__map-canvas .maplibregl-ctrl-attrib a {
  color: var(--rnb-ink);
}

.rnb-location-card__map-canvas .maplibregl-popup-content {
  color: var(--rnb-ink);
  background: var(--rnb-cream);
  border: 1px solid rgba(255, 168, 118, 0.65);
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(37, 37, 35, 0.18);
}

.rnb-location-card__map-canvas .maplibregl-popup-anchor-top .maplibregl-popup-tip {
  border-bottom-color: var(--rnb-cream);
}

.rnb-location-card__map-canvas .maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  border-top-color: var(--rnb-cream);
}

.rnb-location-card__map-canvas .maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-right-color: var(--rnb-cream);
}

.rnb-location-card__map-canvas .maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-left-color: var(--rnb-cream);
}

.rnb-map-marker {
  display: flex;
  width: 126px !important;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
}

.rnb-map-marker__pin {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border: 5px solid #ffa876;
  border-radius: 50%;
  background: rgba(245, 240, 231, 0.96);
  box-shadow: 0 0 0 3px rgba(245, 240, 231, 0.8);
}

.rnb-map-marker__label {
  padding: 6px 9px;
  color: var(--rnb-cream);
  background: #252523;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

.rnb-location-card__map-gate {
  position: absolute;
  z-index: 600;
  top: 18px;
  left: 50%;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(245, 240, 231, 0.82);
  color: var(--rnb-cream);
  background: rgba(37, 37, 35, 0.9);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.rnb-location-card__map.is-map-gated .rnb-location-card__map-canvas {
  pointer-events: none;
}

.rnb-location-card__map.is-map-active .rnb-location-card__map-gate {
  right: 18px;
  left: auto;
  transform: none;
}

.rnb-location-card__panel {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 150px;
  padding: 13px 20px;
  border: 1px solid rgba(245, 240, 231, 0.55);
  background: rgba(245, 240, 231, 0.92);
  backdrop-filter: blur(10px);
}

.rnb-location-card__panel h3 {
  margin: 0 0 0;
  font-size: 27px;
  line-height: 32px;
  letter-spacing: -0.27px;
}

.rnb-location-card__panel strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
}

.rnb-location-card__panel > p {
  margin: 4px 0 0;
  color: #5c5a54;
  font-size: 14px;
  line-height: 20px;
}

.rnb-location-card__panel .rnb-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 170px;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 18px;
  padding-left: 18px;
  letter-spacing: 1.4px;
}

.rnb-location-card__panel .rnb-button img {
  width: 14px;
  height: 14px;
  margin-left: auto;
}

.rnb-boarding__note {
  margin: 36px 0 0;
  font-size: 13px;
  line-height: 19px;
}

.rnb-details {
  display: grid;
  min-height: 616px;
  grid-template-columns: 480px minmax(0, 820px);
  justify-content: space-between;
  gap: 40px;
  padding: 62px 60px 62px 40px;
  background: var(--rnb-surface);
}

.rnb-details__intro h2 {
  margin: 28px 0 22px;
  font-size: 62px;
  line-height: 68px;
  letter-spacing: -1.86px;
}

.rnb-details__intro > p:not(.rnb-eyebrow) {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: var(--rnb-type-supporting);
  line-height: 24px;
}

.rnb-details__intro > a {
  color: #ffa876;
  font-size: var(--rnb-type-action);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.6px;
}

.rnb-faq {
  border-top: 1px solid rgba(37, 37, 35, 0.22);
}

.rnb-faq__item {
  border-bottom: 1px solid rgba(37, 37, 35, 0.22);
}

.rnb-faq__item h3 {
  margin: 0;
}

.rnb-faq__item button {
  display: flex;
  width: 100%;
  min-height: 81px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  border: 0;
  color: var(--rnb-ink);
  background: transparent;
  cursor: pointer;
  font-size: var(--rnb-type-body);
  line-height: 24px;
  text-align: left;
}

.rnb-faq__icon {
  color: #ffa876;
  font-size: 20px;
  line-height: 24px;
}

.rnb-faq__answer {
  padding: 0 20px 28px;
}

.rnb-faq__answer p {
  max-width: 780px;
  margin: 0;
  font-size: var(--rnb-type-body);
  line-height: 25px;
}

.rnb-related {
  min-height: 536px;
  padding: 48px 60px 50px;
  color: var(--rnb-cream);
  background: var(--rnb-navy);
}

.rnb-related__heading {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(320px, 500px);
  justify-content: space-between;
  gap: 40px;
}

.rnb-related__heading h2 {
  margin: 16px 0 0;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.96px;
}

.rnb-related__heading > p {
  margin: 30px 0 0;
  font-size: var(--rnb-type-body);
  line-height: 25px;
}

.rnb-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 44px;
}

.rnb-related-card {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-radius: 2px;
}

.rnb-related-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.rnb-related-card:first-child > img { object-position: center 31%; }

.rnb-related-card:hover > img,
.rnb-related-card:focus-visible > img {
  transform: scale(1.025);
}

.rnb-related-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 144px;
  padding: 22px 20px;
  background: rgba(10, 26, 36, 0.7);
}

.rnb-related-card span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
  opacity: 0.78;
}

.rnb-related-card h3 {
  margin: 18px 0 5px;
  font-size: 24px;
  line-height: 30px;
}

.rnb-related-card strong {
  color: #ffae7c;
  font-size: 11.5px;
  line-height: 15px;
  letter-spacing: 2px;
}

@media (max-width: 1360px) {
  .rnb-vip-hero__compare-cue {
    bottom: 82px;
  }
}

@media (max-width: 1100px) {
  .rnb-story__intro {
    grid-template-columns: 55% 1fr;
  }

  .rnb-story__intro h2,
  .rnb-tickets__intro h2 {
    font-size: 7vw;
    line-height: 0.98;
  }

  .rnb-session-rail {
    grid-template-columns: repeat(6, 206px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .rnb-session-rail::-webkit-scrollbar { display: none; }

  .rnb-booth-grid,
  .rnb-related__grid,
  .rnb-story__highlights {
    gap: 24px;
  }

  .rnb-vip-hero__title .rnb-vip-hero__intro {
    width: min(500px, 100%);
  }

}

@media (max-width: 820px) {
  .rnb-hero {
    --site-hero-min-height: 820px;
  }

  .rnb-hero__image { object-position: 49% 45%; }

  .rnb-hero__eyebrow { top: 104px; left: 24px; }

  .rnb-hero__logo {
    top: auto;
    bottom: 246px;
    left: 24px;
    width: 210px;
    height: auto;
  }

  .rnb-hero__intro {
    top: auto;
    bottom: 140px;
    left: 24px;
    width: min(540px, calc(100% - 48px));
    font-size: 17px;
    line-height: 26px;
  }

  .rnb-hero__booking {
    top: auto;
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .rnb-hero__next { margin-left: 0; font-size: 10px; }

  .rnb-hero__glass { width: 100%; height: 88px; padding: 20px; }

  .rnb-sessions {
    height: 590px;
    padding: 60px 24px 0;
  }

  .rnb-sessions__heading h2 {
    margin-top: 12px;
    font-size: clamp(48px, 9vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
  }

  .rnb-sessions__helper { display: none; }
  .rnb-sessions__controls { top: 172px; right: 24px; }
  .rnb-session-rail { margin-top: 86px; }

  .rnb-story {
    height: auto;
    min-height: 980px;
    padding: 70px 24px 54px;
  }

  .rnb-story__intro {
    display: block;
    padding: 0;
  }

  .rnb-story__intro h2 {
    margin-top: 18px;
    font-size: clamp(62px, 13vw, 90px);
    line-height: 0.96;
    letter-spacing: -3px;
  }

  .rnb-story__intro > p {
    max-width: 560px;
    margin-top: 42px;
  }

  .rnb-story__highlights {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 90px;
  }

  .rnb-highlight {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0 20px;
  }

  .rnb-highlight > span { grid-row: 1 / span 2; font-size: 50px; }
  .rnb-highlight h3 { margin-top: 4px; }
  .rnb-highlight p { margin-bottom: 8px; }
  .rnb-story__reserve { position: relative; bottom: auto; left: auto; margin-top: 40px; }

  .rnb-tickets__general {
    min-height: 0;
    padding: 64px 24px;
  }

  .rnb-tickets__intro {
    display: block;
  }

  .rnb-tickets__intro h2 {
    margin-top: 16px;
    font-size: clamp(50px, 10vw, 72px);
    line-height: 1;
    letter-spacing: -2.4px;
  }

  .rnb-tickets__intro h2 br { display: none; }

  .rnb-tickets__intro > p {
    max-width: 560px;
    margin-top: 32px;
    font-size: 16px;
    line-height: 25px;
  }

  .rnb-deck-grid {
    gap: 24px;
    margin-top: 64px;
  }

  .rnb-deck-card h3 { font-size: 42px; line-height: 48px; }
  .rnb-deck-card .rnb-button { width: 100%; }

  .rnb-vip-hero {
    height: 720px;
  }

  .rnb-vip-hero > img { object-position: center 65%; }
  .rnb-vip-hero__title {
    top: 48px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .rnb-vip-hero h2 {
    margin-top: 22px;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -2.3px;
  }

  .rnb-vip-hero__title .rnb-vip-hero__intro {
    width: min(540px, 100%);
    margin-top: 52px;
    font-size: 17px;
    line-height: 26px;
  }

  .rnb-vip-hero__compare-cue {
    right: auto;
    bottom: 80px;
    left: 50%;
  }

  .rnb-vip-hero__facts {
    right: 24px;
    bottom: 30px;
    left: 24px;
    gap: 18px;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .rnb-booth-grid {
    display: none;
  }

  .rnb-booth-selector {
    position: relative;
    display: block;
    padding-bottom: 0;
    background: var(--rnb-surface);
  }

  .rnb-booth-selector__progress {
    display: none;
  }

  .rnb-booth-selector__status {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 247, 234, 0.18);
    color: var(--rnb-cream);
    background: rgba(37, 37, 35, 0.96);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.6px;
  }

  .rnb-booth-selector__stack {
    position: relative;
    padding: 16px;
  }

  .rnb-booth-panel {
    position: sticky;
    z-index: calc(var(--rnb-booth-index) + 1);
    top: calc(52px + (var(--rnb-booth-index) * 60px));
    display: flex;
    height: calc(100vh - 52px - (var(--rnb-booth-index) * 60px));
    height: calc(100svh - 52px - (var(--rnb-booth-index) * 60px));
    min-height: 440px;
    flex-direction: column;
    border: 1px solid rgba(37, 37, 35, 0.72);
    color: var(--rnb-ink);
    background: var(--rnb-surface);
    box-shadow: 0 -8px 28px rgba(7, 28, 40, 0.06);
  }

  .rnb-booth-panel:nth-child(1),
  .rnb-booth-panel:nth-child(2),
  .rnb-booth-panel:nth-child(3) {
    color: var(--rnb-ink);
    background: var(--rnb-surface);
  }

  .rnb-booth-panel:nth-child(1) {
    background:
      linear-gradient(rgba(245, 240, 231, 0.78), rgba(245, 240, 231, 0.78)),
      url("../images/rnb-innerstage-six-booth.jpg") center center / cover no-repeat;
  }

  .rnb-booth-panel:nth-child(2) {
    background:
      linear-gradient(rgba(245, 240, 231, 0.78), rgba(245, 240, 231, 0.78)),
      url("../images/rnb-ocean-deck-ten-booth.jpg") center center / cover no-repeat;
  }

  .rnb-booth-panel__header {
    display: flex;
    width: 100%;
    min-height: 60px;
    flex: 0 0 60px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 8px 14px;
    border: 0;
    border-bottom: 1px solid rgba(37, 37, 35, 0.28);
    color: inherit;
    background: var(--rnb-surface);
    cursor: pointer;
    text-align: left;
    transition: border-color 180ms ease, background-color 180ms ease;
  }

  .rnb-booth-panel.is-active .rnb-booth-panel__header {
    border-bottom: 2px solid #ffa876;
    background: #f8f2e9;
  }

  .rnb-booth-panel:nth-child(1) .rnb-booth-panel__header,
  .rnb-booth-panel:nth-child(1).is-active .rnb-booth-panel__header,
  .rnb-booth-panel:nth-child(2) .rnb-booth-panel__header,
  .rnb-booth-panel:nth-child(2).is-active .rnb-booth-panel__header {
    background: rgba(248, 242, 233, 0.88);
    backdrop-filter: blur(6px);
  }

  .rnb-booth-panel__header span {
    display: block;
    min-width: 0;
  }

  .rnb-booth-panel__header small {
    display: block;
    overflow: hidden;
    margin-bottom: 4px;
    color: #ffae7c;
    font-size: 9px;
    font-weight: 600;
    line-height: 10px;
    letter-spacing: 1.2px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .rnb-booth-panel__header strong {
    display: block;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rnb-booth-panel__header b {
    flex: 0 0 auto;
    color: inherit;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
  }

  .rnb-booth-panel__body {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding: 20px 16px 0;
    touch-action: pan-y;
  }

  .rnb-booth-panel__summary {
    width: auto;
    margin-bottom: 18px;
    color: rgba(37, 37, 35, 0.88);
    font-size: 15px;
    line-height: 22px;
    letter-spacing: normal;
  }

  .rnb-booth-panel__label {
    margin: 0 0 10px;
    padding-top: 0;
    color: rgba(37, 37, 35, 0.8);
    font-size: 10px;
    font-weight: 600;
    line-height: 11px;
    letter-spacing: 1.5px;
  }

  .rnb-booth-panel ul {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    color: rgba(37, 37, 35, 0.88);
    font-size: 14px;
    line-height: 20px;
    list-style: none;
  }

  .rnb-booth-panel li {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .rnb-booth-panel li::before {
    content: "· ";
  }

  .rnb-booth-panel__note {
    position: static;
    width: auto;
    margin: 17px 0 20px;
    color: rgba(37, 37, 35, 0.72);
    font-size: 12px;
    line-height: 18px;
    opacity: 1;
  }

  .rnb-booth-panel__footer {
    position: static;
    right: auto;
    bottom: auto;
    display: grid;
    width: auto;
    min-height: 66px;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    margin: auto -16px 0;
    border-top: 1px solid rgba(37, 37, 35, 0.64);
  }

  .rnb-booth-panel__footer p {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 10px 14px;
  }

  .rnb-booth-panel__footer span {
    font-size: 9px;
    font-weight: 600;
    line-height: 9px;
    letter-spacing: 1px;
  }

  .rnb-booth-panel__footer span::after {
    content: none;
  }

  .rnb-booth-panel__footer strong {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }

  .rnb-booth-panel__footer a {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex: auto;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: #1e1e1d;
    background: #ffa876;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .rnb-booth-panel__footer a:hover,
  .rnb-booth-panel__footer a:focus-visible {
    color: var(--rnb-cream);
    background: #ffae7c;
  }

  .rnb-atmosphere {
    height: 760px;
  }

  .rnb-atmosphere__eyebrow { top: 54px; left: 24px; }

  .rnb-atmosphere h2 {
    top: 82px;
    left: 24px;
    font-size: 72px;
    line-height: 78px;
  }

  .rnb-atmosphere__motion-note { display: none; }
  .rnb-atmosphere__pause { bottom: 284px; left: 24px; }

  .rnb-food-card {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .rnb-boarding {
    padding: 48px 24px 56px;
  }

  .rnb-boarding__heading { display: block; }

  .rnb-boarding__heading h2 {
    margin-top: 18px;
    font-size: 56px;
    line-height: 62px;
  }

  .rnb-boarding__heading > p { max-width: 560px; margin-top: 26px; }

  .rnb-location-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .rnb-details {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 58px 24px;
  }

  .rnb-details__intro h2 { font-size: 56px; line-height: 62px; }

  .rnb-related {
    padding: 48px 24px 56px;
  }

  .rnb-related__heading { display: block; }
  .rnb-related__heading > p { max-width: 560px; margin-top: 22px; }

  .rnb-related__grid {
    grid-template-columns: repeat(3, 360px);
    gap: 20px;
    overflow-x: auto;
    margin-right: -24px;
    padding-right: 24px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .rnb-related__grid::-webkit-scrollbar { display: none; }
}

@media (max-width: 600px) {
  .rnb-page {
    --rnb-type-eyebrow: 10px;
    --rnb-type-action: 10px;
    --rnb-type-meta: 11px;
    --rnb-type-supporting: 14px;
    --rnb-type-body: 15px;
    --rnb-type-body-large: 17px;
  }

  .rnb-eyebrow {
    font-size: var(--rnb-type-eyebrow);
    line-height: 14px;
    letter-spacing: 1.7px;
  }

  .rnb-hero {
    --site-hero-min-height: 760px;
  }

  .rnb-hero__eyebrow { top: 92px; left: 20px; }
  .rnb-hero__logo { bottom: 260px; left: 20px; width: 172px; }

  .rnb-hero__intro {
    bottom: 150px;
    left: 20px;
    width: calc(100% - 40px);
    font-size: 16px;
    line-height: 24px;
  }

  .rnb-hero__booking { right: 20px; bottom: 20px; left: 20px; }
  .rnb-hero__next { font-size: 9px; line-height: 13px; letter-spacing: 1px; }

  .rnb-hero__glass {
    height: 92px;
    gap: 12px;
    padding: 16px;
  }

  .rnb-hero__glass .rnb-button { width: 52%; padding: 10px 14px; }
  .rnb-hero__glass span { font-size: 9px; line-height: 13px; letter-spacing: 0.9px; white-space: normal; }

  .rnb-sessions {
    height: 530px;
    padding: 52px 20px 0;
  }

  .rnb-sessions__heading h2 {
    font-size: 50px;
    line-height: 54px;
  }

  .rnb-sessions__controls { top: 148px; right: 20px; }
  .rnb-session-rail { margin-top: 75px; }

  .rnb-story {
    min-height: 0;
    padding: 58px 20px 48px;
  }

  .rnb-story__image { object-position: 48% center; }
  .rnb-story__intro h2 { font-size: 58px; line-height: 0.94; letter-spacing: -2.2px; }
  .rnb-story__intro > p { margin-top: 32px; font-size: 16px; line-height: 25px; }
  .rnb-story__highlights { margin-top: 70px; }

  .rnb-highlight { grid-template-columns: 64px 1fr; gap: 0 14px; }
  .rnb-highlight > span { font-size: 42px; line-height: 48px; }
  .rnb-highlight h3 { font-size: 16px; line-height: 21px; letter-spacing: 1.2px; }
  .rnb-highlight p { font-size: 14px; line-height: 21px; }

  .rnb-tickets__general { padding: 54px 20px; }

  .rnb-tickets__intro h2 {
    font-size: 46px;
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .rnb-deck-grid { grid-template-columns: 1fr; gap: 52px; margin-top: 52px; }
  .rnb-deck-card h3 { font-size: 40px; line-height: 46px; }

  .rnb-vip-hero { height: 720px; }
  .rnb-vip-hero__title { top: 44px; left: 20px; width: calc(100% - 40px); }
  .rnb-vip-hero h2 { margin-top: 18px; font-size: 42px; line-height: 1.04; letter-spacing: -1.7px; }

  .rnb-vip-hero__title .rnb-vip-hero__intro {
    width: 100%;
    margin-top: 48px;
    font-size: 16px;
    line-height: 24px;
  }

  .rnb-vip-hero__compare-cue {
    right: auto;
    bottom: 92px;
    left: 50%;
  }

  .rnb-vip-hero__facts {
    right: 20px;
    bottom: 24px;
    left: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .rnb-booth-grid { padding: 44px 20px; }
  .rnb-booth h3 { font-size: 26px; line-height: 32px; }
  .rnb-booth__cta { width: 100%; }

  .rnb-atmosphere { height: 700px; }
  .rnb-atmosphere__eyebrow { left: 20px; }
  .rnb-atmosphere h2 { top: 80px; left: 20px; font-size: 58px; line-height: 64px; }
  .rnb-atmosphere__pause { bottom: 284px; left: 20px; }

  .rnb-food-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
    height: 240px;
    padding: 24px;
  }

  .rnb-food-card h3 { font-size: 29px; line-height: 35px; }

  .rnb-boarding { padding: 44px 20px 52px; }
  .rnb-boarding__heading h2 { font-size: 48px; line-height: 54px; }
  .rnb-boarding__heading > p { font-size: 16px; line-height: 25px; }

  .rnb-location-card { height: 420px; }
  .rnb-location-card__panel { height: 188px; }

  .rnb-location-card__panel .rnb-button {
    right: 20px;
    bottom: 18px;
    left: 20px;
    width: auto;
  }

  .rnb-details { padding: 50px 20px; }
  .rnb-details__intro h2 { font-size: 48px; line-height: 54px; }
  .rnb-faq__item button { padding-right: 8px; padding-left: 8px; }
  .rnb-faq__answer { padding-right: 8px; padding-left: 8px; }

  .rnb-related { padding: 44px 20px 50px; }

  .rnb-related__heading h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .rnb-related__heading > p { font-size: 15px; line-height: 23px; }
  .rnb-related__grid { grid-template-columns: repeat(3, 300px); margin-right: -20px; padding-right: 20px; }
  .rnb-related-card { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .rnb-atmosphere__media img,
  .rnb-vip-hero__compare-arrow { animation: none; }
}
