:root {
  --ink: #101318;
  --ink-soft: #232832;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --line: #dfe3e8;
  --muted: #606772;
  --orange: #ff6b1a;
  --orange-dark: #d94a00;
  --lime: #b7ec3d;
  --blue: #29b9ef;
  --blue-dark: #087ca8;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 55px rgba(16, 19, 24, 0.12);
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 98px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 50;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.announcement__inner a {
  margin-left: 10px;
  font-weight: 900;
}

.announcement__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.17);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(16, 19, 24, 0.1);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 142px;
  flex: 0 0 142px;
  align-self: stretch;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img,
.brand .custom-logo {
  width: auto;
  max-width: 142px;
  max-height: 70px;
  object-fit: contain;
}

.brand .custom-logo-link {
  display: flex;
  align-items: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .menu a {
  position: relative;
  display: block;
  color: #363b44;
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
}

.primary-nav .menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav .menu a:hover::after,
.primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
}

.menu-toggle__lines {
  width: 25px;
  display: grid;
  gap: 5px;
}

.menu-toggle__lines span {
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 19px;
  font-size: 0.86rem;
}

.button--large {
  min-height: 56px;
  padding: 15px 28px;
  font-size: 1rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(41, 185, 239, 0.3);
}

.button--primary:hover {
  background: linear-gradient(135deg, #159fd4 0%, #066b91 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(8, 124, 168, 0.38);
}

.nav-book {
  min-height: 50px;
  padding: 13px 24px;
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 920;
  box-shadow: 0 9px 24px rgba(41, 185, 239, 0.32);
}

.nav-book:hover {
  background: linear-gradient(135deg, #159fd4 0%, #066b91 100%);
  color: #fff;
  box-shadow: 0 13px 28px rgba(8, 124, 168, 0.4);
}

@media (min-width: 1024px) {
  :root {
    --header-height: 90px;
  }

  .site-header__inner {
    gap: 18px;
  }

  .brand {
    width: 132px;
    flex-basis: 132px;
  }

  .brand img,
  .brand .custom-logo {
    max-width: 132px;
    max-height: 64px;
  }

  .primary-nav {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 15px;
    padding: 0;
  }

  .primary-nav .menu {
    flex-wrap: nowrap;
    gap: clamp(9px, 1.05vw, 16px);
  }

  .primary-nav .menu li {
    flex: 0 0 auto;
  }

  .primary-nav .menu a {
    white-space: nowrap;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .nav-book {
    min-width: 118px;
    min-height: 47px;
    flex: 0 0 auto;
    padding: 12px 19px;
    white-space: nowrap;
    font-size: 0.88rem;
  }
}

.button--ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 25px rgba(16, 19, 24, 0.18);
}

.button--ink:hover {
  background: #292e37;
  color: #fff;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.button--white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 19, 24, 0.2);
}

.button--white:hover {
  background: var(--lime);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link--light {
  color: #fff;
  text-decoration-color: var(--lime);
}

.button--disabled {
  cursor: not-allowed;
  background: #d7dce2;
  color: #5f6670;
  box-shadow: none;
}

.button--disabled:hover {
  transform: none;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #fff;
}

.eyebrow--lime {
  color: var(--lime);
}

.lead {
  color: #454c56;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.94) 0%, rgba(7, 10, 14, 0.76) 43%, rgba(7, 10, 14, 0.12) 78%),
    linear-gradient(0deg, rgba(7, 10, 14, 0.5) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 95px 82px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 920;
}

.hero h1 span {
  color: var(--lime);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero__facts {
  max-width: 730px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 52px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.hero__facts li {
  padding-inline: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero__facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.quick-plan {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-plan__grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-left: 1px solid var(--line);
}

.quick-plan__grid > div:last-child {
  border-right: 1px solid var(--line);
}

.quick-plan__number {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 900;
}

.quick-plan p,
.quick-plan strong,
.quick-plan p span {
  display: block;
  margin: 0;
}

.quick-plan strong {
  font-size: 0.93rem;
}

.quick-plan p span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(72px, 9vw, 125px);
}

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

.section--ink {
  background: var(--ink);
  color: #fff;
}

.section--party {
  background: #fff7f0;
}

.party-weekday-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 11px 18px 11px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(8, 124, 168, 0.25);
}

.party-weekday-banner span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.party-weekday-banner strong {
  font-weight: 900;
}

.section-heading {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 40px;
}

.section-heading--split > p {
  margin: 0;
  color: var(--muted);
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading--center {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:not(.eyebrow) {
  color: var(--muted);
}

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

.session-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 19, 24, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.session-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
  content: "";
}

.session-card--blue::before {
  background: var(--blue);
}

.session-card--lime::before {
  background: var(--lime);
}

.session-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe3e8;
}

.session-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.session-card:hover .session-card__image > img {
  transform: scale(1.025);
}

.session-card__image--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.session-card__image--split > img {
  min-width: 0;
}

.session-card__badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(16, 19, 24, 0.9);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 850;
}

.session-card__body {
  padding: 26px;
}

.session-card__kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.session-card h3 {
  margin-bottom: 13px;
  font-size: 2.25rem;
}

.session-card__body > p:not(.session-card__kicker) {
  min-height: 84px;
  color: var(--muted);
  font-size: 0.94rem;
}

.session-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.session-card__footer span {
  color: var(--muted);
  font-size: 0.74rem;
}

.session-card__footer strong {
  display: block;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.session-card__footer a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.fine-print {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.fine-print--dark {
  color: rgba(255, 255, 255, 0.55);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.offer-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.offer-card--featured {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.offer-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--lime);
  font-size: 1.2rem;
  font-weight: 900;
}

.offer-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card__label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card--featured .offer-card__label {
  margin-top: 48px;
  color: rgba(16, 19, 24, 0.65);
}

.offer-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 2rem;
}

.offer-card--featured h3 {
  color: var(--ink);
}

.offer-card > p:not(.offer-card__label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.offer-card--featured > p:not(.offer-card__label) {
  color: rgba(16, 19, 24, 0.76);
}

.offer-card > a {
  margin-top: auto;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.offer-card--featured > a {
  color: var(--ink);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
}

.feature-split--reverse .feature-split__media {
  order: 2;
}

.feature-split__content h2 {
  margin-bottom: 22px;
}

.feature-split__content .lead {
  margin-bottom: 25px;
}

.rounded-media {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack {
  position: relative;
  padding: 0 28px 28px 0;
}

.image-stack::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 65%;
  border-radius: var(--radius);
  background: var(--orange);
  content: "";
}

.image-stack__main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack__note {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 48px;
  min-width: 175px;
  padding: 17px 20px;
  border-radius: 16px;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(16, 19, 24, 0.2);
  color: var(--ink);
  transform: rotate(2deg);
}

.image-stack__note strong,
.image-stack__note span {
  display: block;
}

.image-stack__note strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-stack__note span {
  font-size: 1.2rem;
  font-weight: 900;
}

.section--party .image-stack__note {
  right: -20px;
  min-width: 245px;
  padding: 21px 24px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 17px 38px rgba(16, 19, 24, 0.25);
}

.section--party .image-stack__note span {
  font-size: 1.42rem;
  line-height: 1.05;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 31px;
  color: #3e444d;
}

.tick-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 950;
}

.tick-list .tick-list__highlight {
  color: var(--blue-dark);
  font-weight: 900;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-block: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.mini-stat-grid div {
  padding: 20px;
  background: #fff;
}

.mini-stat-grid strong,
.mini-stat-grid span {
  display: block;
}

.mini-stat-grid strong {
  color: var(--orange-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.mini-stat-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.info-grid article {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-grid__icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.95rem;
  font-weight: 900;
}

.info-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(45px, 8vw, 100px);
}

.faq-layout__heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.faq-layout__heading h2 {
  margin-bottom: 20px;
}

.faq-layout__heading > p:not(.eyebrow) {
  color: var(--muted);
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
}

.accordion-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 850;
  list-style: none;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease;
}

.accordion-list details[open] summary::after {
  background: var(--lime);
  transform: rotate(45deg);
}

.accordion-list details > div {
  padding: 0 48px 20px 0;
}

.accordion-list details p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(75px, 10vw, 125px);
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.final-cta--compact {
  padding-block: 75px;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin-bottom: 18px;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.final-cta__shape {
  position: absolute;
  border: 42px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.final-cta__shape--one {
  width: 330px;
  height: 330px;
  top: -170px;
  left: -70px;
}

.final-cta__shape--two {
  width: 430px;
  height: 430px;
  right: -120px;
  bottom: -280px;
}

.page-hero {
  overflow: hidden;
  background: var(--soft);
}

.page-hero__grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.page-hero__content {
  align-self: center;
  padding: 75px 70px 75px 0;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 920;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero--party .eyebrow {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  letter-spacing: 0.13em;
}

.page-hero--blue h1 span {
  color: var(--blue-dark);
}

.page-hero--lime h1 span {
  padding-inline: 0.05em;
  background: linear-gradient(transparent 62%, var(--lime) 62%);
  color: var(--ink);
}

.page-hero__media {
  position: relative;
  min-height: 520px;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  border-left: 8px solid var(--orange);
  content: "";
  pointer-events: none;
}

.page-hero--blue .page-hero__media::after {
  border-color: var(--blue);
}

.page-hero--lime .page-hero__media::after {
  border-color: var(--lime);
}

.page-hero__media img {
  width: calc(100% + max(20px, (100vw - 1180px) / 2));
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.page-hero--school .page-hero__media {
  display: block;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e9f8ff, #d4f1ff);
}

.page-hero--school .page-hero__grid,
.page-hero--school .page-hero__media {
  height: 500px;
  min-height: 0;
}

.page-hero--school .page-hero__media img {
  width: calc(100% + max(20px, (100vw - 1180px) / 2));
  max-width: none;
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.activity-list {
  display: grid;
  gap: 50px;
}

.activity-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 15px 42px rgba(16, 19, 24, 0.07);
}

.activity-feature--reverse .activity-feature__media {
  order: 2;
}

.activity-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.activity-feature__body {
  align-self: center;
  padding: clamp(35px, 5vw, 65px);
}

.activity-feature__body > span {
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-feature__body h2 {
  margin: 8px 0 20px;
}

.activity-feature__body p {
  color: var(--muted);
}

.activity-feature__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.activity-feature__body li {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.feature-card-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card-grid img {
  width: 100%;
  height: 250px;
  flex: 0 0 250px;
  object-fit: cover;
  object-position: center;
}

.feature-card-grid article > div {
  flex: 1;
  padding: 23px;
}

.feature-card-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.toddler-panel {
  background: var(--blue);
}

.toddler-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 7vw, 85px);
}

.toddler-panel .eyebrow {
  color: var(--ink);
}

.toddler-panel h2 {
  margin-bottom: 18px;
}

.toddler-panel p:not(.eyebrow) {
  max-width: 750px;
  margin: 0;
  color: rgba(16, 19, 24, 0.76);
}

.toddler-panel__visual {
  position: relative;
  padding: 0 18px 18px 0;
}

.toddler-panel__visual img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 12px 12px 0 rgba(16, 19, 24, 0.22);
}

.toddler-panel__visual .price-pill {
  position: absolute;
  right: -6px;
  bottom: -4px;
}

.price-pill {
  width: 170px;
  height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
  transform: rotate(2deg);
}

.price-pill strong {
  font-size: 3rem;
  line-height: 1;
}

.price-pill span {
  max-width: 110px;
  margin-top: 7px;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.3;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(16, 19, 24, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 23px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-size: 1.08rem;
}

.comparison-table tbody td {
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table strong {
  color: var(--orange-dark);
  font-size: 1.18rem;
}

.comparison-table small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  white-space: nowrap;
}

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

.party-tier {
  position: relative;
  min-height: 470px;
  padding: 38px 34px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 7px solid var(--orange);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 19, 24, 0.06);
}

.party-tier--deluxe {
  border-top-color: var(--blue);
  background: linear-gradient(155deg, #fff 0 68%, #e9f8ff 100%);
  box-shadow: 0 20px 48px rgba(8, 124, 168, 0.14);
  transform: translateY(-10px);
}

.party-tier--ultimate {
  border-top-color: var(--lime);
  background: linear-gradient(155deg, #fff 0 68%, #f2fbdc 100%);
}

.party-tier__badge {
  position: absolute;
  top: 20px;
  right: -39px;
  width: 170px;
  margin: 0;
  padding: 7px 10px;
  background: var(--blue);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 920;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
}

.party-tier--ultimate .party-tier__badge {
  background: var(--lime);
}

.party-tier__kicker {
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.party-tier h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.party-tier__price {
  min-height: 64px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.party-tier__price strong {
  margin-right: 5px;
  color: var(--orange-dark);
  font-size: 2.2rem;
}

.party-tier ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.party-tier li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
  font-size: 0.9rem;
}

.party-tier li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 950;
}

.party-tier-note {
  max-width: 850px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.party-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.party-steps li {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.party-steps li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.party-steps li:nth-child(2) > span {
  background: var(--orange);
  color: #fff;
}

.party-steps li:nth-child(3) > span {
  background: var(--blue);
  color: var(--ink);
}

.party-steps__label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.party-steps h3 {
  margin-bottom: 12px;
}

.party-steps li div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.party-card-link {
  height: 100%;
  display: block;
  border-radius: var(--radius);
  text-decoration: none;
}

.party-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.party-card-link:hover .party-card,
.party-card-link:focus-visible .party-card {
  box-shadow: 0 18px 42px rgba(16, 19, 24, 0.14);
  transform: translateY(-6px);
}

.party-card--blue {
  border-top-color: var(--blue);
}

.party-card--lime {
  border-top-color: var(--lime);
}

.party-card__duration {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.party-card h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.party-card > p:not(.party-card__duration),
.party-card li {
  color: var(--muted);
  font-size: 0.9rem;
}

.party-card ul {
  display: grid;
  flex: 1;
  gap: 8px;
  margin: 22px 0 0;
  padding: 20px 0 0 20px;
  border-top: 1px solid var(--line);
}

.party-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.party-card--blue .party-card__link {
  text-decoration-color: var(--blue-dark);
}

.party-card--lime .party-card__link {
  text-decoration-color: #6c9500;
}

.party-inclusions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 100px);
}

.party-inclusions h2,
.party-inclusions h3 {
  color: #fff;
}

.party-inclusions .lead {
  color: rgba(255, 255, 255, 0.67);
}

.party-invitation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-bottom: clamp(58px, 8vw, 96px);
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(41, 185, 239, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 15%, rgba(176, 255, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #effaff 0%, #fff 68%);
  box-shadow: var(--shadow-soft);
}

.party-invitation__icon {
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--blue);
  color: #fff;
  transform: rotate(-3deg);
  box-shadow: 10px 10px 0 var(--lime);
}

.party-invitation__icon svg {
  width: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.party-invitation__content h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
}

.party-invitation__content > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.party-invitation__button {
  white-space: nowrap;
}

.party-invitation__button span {
  font-size: 1.25em;
}

.party-planning {
  scroll-margin-top: calc(var(--header-height) + 30px);
}

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

.inclusion-grid article {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--ink-soft);
}

.inclusion-grid article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.inclusion-grid h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.inclusion-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
}

.group-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.group-options-grid--single {
  max-width: 980px;
  grid-template-columns: 1fr;
  margin-inline: auto;
}

.group-option {
  padding: clamp(32px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.group-option--school {
  background: #ebf9ff;
}

.group-option--social {
  background: #fff8ed;
}

.group-option h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.group-option > p:not(.eyebrow) {
  color: var(--muted);
}

.group-rate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  margin: 32px 0 18px;
}

.group-rate-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.group-rate {
  padding: 28px;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.group-rate--small {
  background: var(--ink);
  color: #fff;
}

.group-rate__label {
  margin: 0 0 7px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.group-rate--small .group-rate__label {
  color: var(--lime);
}

.group-rate h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.group-option__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

.group-option__price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 25px;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.group-option__price strong {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.group-option__price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.group-option__price span b {
  color: var(--ink);
  font-size: 0.92rem;
}

.group-option__price--featured {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.group-option__price--featured span,
.group-option__price--featured span b {
  color: #fff;
}

.group-option__minimum {
  margin: 0 0 28px;
  font-size: 0.88rem;
}

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

.benefit-grid article,
.rule-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.benefit-grid article > span,
.rule-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefit-grid h3,
.rule-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.benefit-grid p,
.rule-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.booking-process ol {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.booking-process li {
  position: relative;
  padding-right: 28px;
}

.booking-process li::after {
  position: absolute;
  top: 21px;
  right: 0;
  left: 46px;
  height: 2px;
  background: var(--line);
  content: "";
}

.booking-process li:last-child::after {
  display: none;
}

.booking-process li > span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.booking-process h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.booking-process p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(45px, 8vw, 100px);
}

.visit-main > h2 {
  margin-bottom: 40px;
}

.checklist {
  display: grid;
  gap: 0;
}

.checklist article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
}

.checklist article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
}

.checklist h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-card {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 35px);
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.visit-card .eyebrow {
  color: var(--lime);
}

.visit-card h2 {
  color: #fff;
}

.visit-card address {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.visit-card > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.visit-card .button,
.visit-card .text-link {
  width: 100%;
  margin-top: 12px;
}

.visit-card .text-link {
  justify-content: center;
  color: #fff;
  text-decoration-color: var(--lime);
}

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

.bring-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.bring-grid h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.bring-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bring-grid__note {
  margin: 25px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.79rem;
}

.safety-banner {
  background: var(--lime);
}

.safety-banner p {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.safety-banner p span::before {
  margin-right: 24px;
  content: "•";
}

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

.safety-card {
  padding: clamp(35px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.safety-card--jump {
  border-top: 8px solid var(--orange);
}

.safety-card--climb {
  border-top: 8px solid var(--blue);
}

.safety-card h2 {
  margin-bottom: 25px;
}

.safety-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 23px;
  color: var(--muted);
}

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

.rule-grid article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.85rem;
}

.legal-note .site-shell {
  max-width: 820px;
  padding: 45px;
  border-left: 7px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
}

.legal-note h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.legal-note p {
  color: var(--muted);
}

.faq-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 8vw, 100px);
}

.faq-page-grid__aside {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 35px);
  padding: 34px;
  border-radius: var(--radius);
  background: var(--soft);
}

.faq-page-grid__aside h2 {
  font-size: 2rem;
}

.faq-page-grid__aside > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-page-grid__aside .button,
.faq-page-grid__aside .text-link {
  width: 100%;
  margin-top: 12px;
}

.faq-page-grid__aside .text-link {
  justify-content: center;
}

.accordion-list--large > h2 {
  margin: 50px 0 15px;
  font-size: 1.55rem;
}

.accordion-list--large > h2:first-child {
  margin-top: 0;
}

.faq-section-title {
  padding-left: 15px;
  border-left: 5px solid currentColor;
}

.faq-section-title--orange {
  color: var(--orange-dark);
}

.faq-section-title--blue {
  color: var(--blue-dark);
}

.faq-section-title--green {
  color: #628500;
}

.faq-section-title--pink {
  color: #c21870;
}

.simple-hero {
  padding-block: 90px;
  background: var(--soft);
}

.simple-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
}

.entry-content {
  overflow-wrap: break-word;
}

.entry-content--narrow {
  max-width: 850px;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.6em;
}

.entry-content img {
  height: auto;
  border-radius: var(--radius);
}

.entry-content a {
  color: var(--orange-dark);
  font-weight: 700;
}

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

.post-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-card__date {
  color: var(--muted);
  font-size: 0.77rem;
}

.post-card h2 {
  font-size: 1.5rem;
}

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

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 19, 24, 0.08);
}

@media (min-width: 768px) {
  .event-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  }

  .event-card--featured .event-card__image {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .event-card--featured .event-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.event-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.035);
}

.event-card__date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 68px;
  padding: 9px;
  border-radius: 15px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.event-card__date strong,
.event-card__date span {
  display: block;
  line-height: 1;
}

.event-card__date strong {
  font-size: 1.75rem;
}

.event-card__date span {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card__body {
  padding: 25px;
}

.event-card__when {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.event-card h3 a {
  color: inherit;
  text-decoration: none;
}

.event-card__body > p:not(.event-card__when) {
  min-height: 76px;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.event-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(41, 185, 239, 0.28);
  border-radius: 28px;
  background: linear-gradient(135deg, #effaff 0%, #fff 72%);
  box-shadow: var(--shadow-soft);
}

.event-empty__mark {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--lime);
  color: var(--ink);
  font-size: 2rem;
  box-shadow: 9px 9px 0 var(--blue);
}

.event-empty h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.event-empty p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.events-cta {
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--ink);
  color: #fff;
}

.events-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.events-cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.events-cta p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.event-single__hero {
  padding-block: clamp(46px, 7vw, 90px);
  background: linear-gradient(135deg, #effaff, #fff 65%);
}

.event-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.event-single__back {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--ink);
  font-weight: 850;
}

.event-single h1 {
  margin-bottom: 24px;
}

.event-single__when {
  margin-bottom: 28px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.event-single__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink-soft);
  box-shadow: 16px 16px 0 var(--lime);
}

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

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding-block: 80px;
}

.not-found__inner {
  max-width: 760px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found__inner > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.not-found .button-row {
  justify-content: center;
  margin-top: 30px;
}

/* Gift Cards */
.gift-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 135px);
  background:
    radial-gradient(circle at 82% 18%, rgba(41, 185, 239, 0.2), transparent 28%),
    radial-gradient(circle at 95% 92%, rgba(183, 236, 61, 0.18), transparent 30%),
    var(--soft);
}

.gift-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.gift-hero__content h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 7vw, 6.5rem);
}

.gift-hero__content h1 span {
  color: var(--blue-dark);
}

.gift-hero__content .lead {
  max-width: 640px;
  margin-bottom: 30px;
}

.gift-card-preview {
  position: relative;
  aspect-ratio: 1.58 / 1;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(132deg, transparent 0 59%, rgba(41, 185, 239, 0.9) 59% 69%, rgba(244, 53, 145, 0.9) 69% 79%, rgba(255, 107, 26, 0.9) 79% 89%, rgba(183, 236, 61, 0.9) 89%),
    var(--ink);
  box-shadow: 0 28px 70px rgba(16, 19, 24, 0.25);
  color: #fff;
  transform: rotate(2deg);
}

.gift-card-preview::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  content: "";
}

.gift-card-preview__top,
.gift-card-preview__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gift-card-preview__top img {
  width: 120px;
  height: 82px;
  object-fit: contain;
}

.gift-card-preview__top > span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-card-preview--photo {
  aspect-ratio: 1.48 / 1;
  padding: 0;
  background: #000;
  transform: rotate(2deg);
}

.gift-card-preview--photo::before {
  display: none;
}

.gift-card-preview--photo > img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.gift-card-preview > p {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 5vw, 58px) 0 25px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.gift-card-preview > p strong {
  color: var(--lime);
}

.gift-card-preview__footer {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-store-notice {
  padding-block: 28px;
  background: var(--blue-dark);
  color: #fff;
}

.gift-store-notice__inner {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.gift-store-notice__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: var(--lime);
  box-shadow: 6px 6px 0 rgba(16, 19, 24, 0.28);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 950;
}

.gift-store-notice .eyebrow {
  margin-bottom: 7px;
}

.gift-store-notice h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.gift-store-notice p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.gift-store-notice .button {
  white-space: nowrap;
}

.gift-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gift-step-grid li {
  min-height: 245px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 19, 24, 0.06);
}

.gift-step-grid li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-weight: 950;
}

.gift-step-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.gift-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gift-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.gift-choice-grid__content h2 {
  margin-bottom: 20px;
}

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

.gift-choice-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.gift-choice-list article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--ink);
  color: var(--lime);
  font-size: 1.4rem;
  font-weight: 950;
}

.gift-choice-list h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.gift-choice-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.gift-cta {
  padding-block: clamp(65px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(41, 185, 239, 0.2), transparent 28%),
    var(--ink);
  color: #fff;
}

.gift-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.gift-cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.gift-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Memberships */
.membership-home {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 118px);
  background:
    radial-gradient(circle at 82% 20%, rgba(41, 185, 239, 0.24), transparent 30%),
    linear-gradient(135deg, #101318 0%, #172c39 100%);
  color: #fff;
}

.membership-home__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.membership-home h2,
.membership-home__visual strong {
  color: #fff;
}

.membership-home h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.membership-home__content > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.membership-home__visual {
  min-height: 320px;
  display: grid;
  place-content: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(41, 185, 239, 0.93), rgba(8, 124, 168, 0.98));
  box-shadow: 18px 18px 0 var(--lime);
  text-align: center;
  transform: rotate(2deg);
}

.membership-home__visual strong {
  display: block;
  font-size: clamp(7rem, 13vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.membership-home__visual span {
  margin-top: 25px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.membership-hero {
  overflow: hidden;
  padding-block: clamp(75px, 10vw, 132px);
  background:
    radial-gradient(circle at 90% 12%, rgba(183, 236, 61, 0.15), transparent 27%),
    radial-gradient(circle at 4% 90%, rgba(41, 185, 239, 0.19), transparent 30%),
    var(--ink);
  color: #fff;
}

.membership-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.membership-hero__content h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.9rem, 7.5vw, 7rem);
  line-height: 0.9;
}

.membership-hero__content h1 span {
  color: var(--lime);
}

.membership-hero__content .lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.membership-hero__pass {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(41, 185, 239, 0.98), rgba(8, 124, 168, 0.98));
  box-shadow: 20px 20px 0 var(--lime), 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(2.5deg);
}

.membership-hero__pass::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -120px;
  border: 42px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.membership-hero__pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.membership-hero__pass-top img {
  width: 105px;
  height: 72px;
  object-fit: contain;
}

.membership-hero__pass-top span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.membership-hero__number {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.membership-hero__number strong {
  color: #fff;
  font-size: clamp(9rem, 15vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.membership-hero__number span {
  padding-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.membership-hero__pass > p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

.membership-benefit-grid article {
  min-height: 285px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 19, 24, 0.06);
}

.membership-benefit-grid article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 17px;
  background: var(--blue);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.membership-benefit-grid h3 {
  margin-bottom: 10px;
}

.membership-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.membership-how {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 105px);
}

.membership-how > div .lead {
  max-width: 480px;
}

.membership-how ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-how li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.membership-how li > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 950;
}

.membership-how h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.membership-how li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.membership-cta {
  padding-block: clamp(65px, 8vw, 100px);
  background: linear-gradient(135deg, #087ca8, #101318);
  color: #fff;
}

.membership-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.membership-cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.membership-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  padding-block: 75px 25px;
  background: #0a0c10;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1fr 1fr;
  gap: 55px;
}

.site-footer__brand img {
  max-width: 145px;
  max-height: 105px;
  margin-bottom: 22px;
  object-fit: contain;
  filter: none;
}

.site-footer__brand > a {
  display: inline-block;
}

.site-footer__brand p,
.site-footer__cta p,
.footer-hours {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.site-footer .menu,
.footer-contact {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .menu a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  text-decoration: none;
}

.site-footer .menu a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-hours {
  margin-top: 18px;
}

.site-footer__cta .button {
  margin-top: 8px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.mobile-book-bar {
  display: none;
}

@media (max-width: 1100px) {
  .site-header__inner {
    gap: 14px;
  }

  .brand {
    width: 120px;
    flex-basis: 120px;
  }

  .primary-nav .menu {
    gap: 9px;
  }

  .primary-nav .menu a {
    font-size: 0.74rem;
  }

  .nav-book {
    min-width: 108px;
    padding-inline: 16px;
  }

  .feature-card-grid,
  .info-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 1023px) {
  :root {
    --header-height: 72px;
  }

  .admin-bar .site-header {
    top: 32px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 100;
    top: calc(38px + var(--header-height));
    right: 0;
    left: 0;
    height: calc(100dvh - 38px - var(--header-height));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background:
      radial-gradient(circle at 5% 5%, rgba(41, 185, 239, 0.16), transparent 36%),
      radial-gradient(circle at 95% 92%, rgba(183, 236, 61, 0.2), transparent 38%),
      #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .admin-bar .primary-nav {
    top: calc(70px + var(--header-height));
    height: calc(100dvh - 70px - var(--header-height));
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav .menu {
    display: grid;
    gap: 0;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .primary-nav .menu li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .menu a {
    padding: 14px 4px;
    font-size: clamp(1.05rem, 5vw, 1.28rem);
  }

  .primary-nav .menu a::after {
    display: none;
  }

  .nav-book {
    width: min(100%, 520px);
    margin: 20px auto 0;
  }

  .session-grid,
  .offer-grid,
  .party-steps,
  .party-tier-grid,
  .party-card-grid,
  .bring-grid {
    grid-template-columns: 1fr;
  }

  .session-card__body > p:not(.session-card__kicker) {
    min-height: auto;
  }

  .offer-card {
    min-height: 290px;
  }

  .feature-split,
  .page-hero__grid,
  .activity-feature,
  .party-inclusions,
  .visit-grid,
  .safety-columns,
  .faq-page-grid,
  .gift-hero__grid,
  .gift-choice-grid {
    grid-template-columns: 1fr;
  }

  .gift-hero__visual {
    width: min(100%, 620px);
  }

  .group-option__prices {
    grid-template-columns: 1fr;
  }

  .group-rate-grid {
    grid-template-columns: 1fr;
  }

  .feature-split__media,
  .feature-split--reverse .feature-split__media,
  .activity-feature__media,
  .activity-feature--reverse .activity-feature__media {
    order: 0;
  }

  .feature-split--reverse .feature-split__content {
    order: 1;
  }

  .page-hero__grid {
    width: 100%;
  }

  .page-hero__content {
    width: var(--shell);
    margin-inline: auto;
    padding: 65px 0;
  }

  .page-hero__media {
    min-height: 380px;
  }

  .page-hero--school .page-hero__grid {
    height: auto;
  }

  .page-hero--school .page-hero__media {
    height: 380px;
  }

  .page-hero__media::after {
    border-top: 8px solid var(--orange);
    border-left: 0;
  }

  .page-hero--blue .page-hero__media::after {
    border-top-color: var(--blue);
  }

  .page-hero--lime .page-hero__media::after {
    border-top-color: var(--lime);
  }

  .page-hero__media img {
    width: 100%;
  }

  .toddler-panel__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .toddler-panel__visual {
    width: min(100%, 560px);
  }

  .activity-feature__media img {
    min-height: 360px;
  }

  .visit-card,
  .faq-layout__heading,
  .faq-page-grid__aside {
    position: static;
  }

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

  .booking-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 0;
  }

  .booking-process li:nth-child(2)::after,
  .booking-process li:last-child::after {
    display: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .primary-nav {
    top: calc(88px + var(--header-height));
    height: calc(100dvh - 88px - var(--header-height));
  }
}

@media (max-width: 767px) {
	.party-invitation {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 18px 16px;
		margin-bottom: 46px;
		padding: 24px 20px;
		border-radius: 22px;
	}

	.party-invitation__icon {
		width: 54px;
		border-radius: 16px;
		box-shadow: 6px 6px 0 var(--lime);
	}

	.party-invitation__content h2 {
		font-size: clamp(1.8rem, 9vw, 2.35rem);
	}

	.party-invitation__content > p:last-child {
		grid-column: 1 / -1;
		font-size: 0.92rem;
	}

	.party-invitation__button {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 2px;
	}
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 58px;
    font-size: 16px;
  }

  .announcement__inner {
    min-height: 42px;
    justify-content: flex-start;
    padding-block: 7px;
    text-align: left;
  }

  .primary-nav {
    top: calc(42px + var(--header-height));
    height: calc(100dvh - 42px - var(--header-height));
  }

  .admin-bar .primary-nav {
    top: calc(88px + var(--header-height));
    height: calc(100dvh - 88px - var(--header-height));
  }

  .announcement__inner a {
    display: none;
  }

  .brand {
    width: 120px;
    flex-basis: 120px;
  }

  .brand img,
  .brand .custom-logo {
    max-width: 120px;
    max-height: 60px;
  }

  .hero {
    min-height: 690px;
    align-items: end;
  }

  .hero__media img {
    object-position: 65% center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(7, 10, 14, 0.98) 0%, rgba(7, 10, 14, 0.8) 57%, rgba(7, 10, 14, 0.2) 100%);
  }

  .hero__content {
    padding-block: 150px 42px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    margin-top: 35px;
  }

  .hero__facts li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .quick-plan__grid {
    grid-template-columns: 1fr;
    padding-block: 5px;
  }

  .quick-plan__grid > div,
  .quick-plan__grid > div:last-child {
    min-height: auto;
    padding: 17px 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-plan__grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading--split,
  .faq-layout,
  .toddler-panel__inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 18px;
  }

  .session-card__body {
    padding: 23px 20px;
  }

  .session-card__footer {
    align-items: center;
  }

  .feature-split {
    gap: 42px;
  }

  .image-stack {
    padding: 0 15px 15px 0;
  }

  .image-stack__note {
    right: -5px;
    bottom: 27px;
    min-width: 145px;
  }

  .info-grid,
  .feature-card-grid,
  .benefit-grid,
  .rule-grid,
  .inclusion-grid,
  .site-footer__grid,
  .post-list {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 30px;
  }

  .faq-layout__heading {
    position: static;
  }

  .page-hero__content {
    padding-block: 50px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .page-hero__media {
    min-height: 290px;
  }

  .page-hero--school .page-hero__media {
    height: 300px;
    padding: 0;
  }

  .page-hero--school .page-hero__media img {
    width: 100%;
  }

  .activity-feature__media img {
    min-height: 260px;
  }

  .activity-feature__body {
    padding: 30px 24px;
  }

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

  .feature-card-grid article > div {
    padding: 18px;
  }

  .feature-card-grid img {
    height: 220px;
    flex-basis: 220px;
  }

  .toddler-panel__inner {
    justify-items: start;
  }

  .toddler-panel__visual {
    padding-right: 10px;
  }

  .toddler-panel__visual .price-pill {
    right: -2px;
    bottom: -8px;
  }

  .price-pill {
    width: 145px;
    height: 145px;
  }

  .party-steps li {
    min-height: auto;
  }

  .party-steps li > span {
    margin-bottom: 28px;
  }

  .party-tier {
    min-height: 0;
  }

  .party-tier--deluxe {
    transform: none;
  }

  .group-options-grid {
    grid-template-columns: 1fr;
  }

  .booking-process ol {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-process li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
    padding: 0;
  }

  .booking-process li::after {
    display: none;
  }

  .booking-process li > span {
    margin: 0;
  }

  .legal-note .site-shell {
    padding: 30px 24px;
  }

  .safety-banner p {
    justify-content: flex-start;
    padding-block: 18px;
  }

  .safety-banner p span::before {
    margin-right: 10px;
  }

  .site-footer {
    padding-bottom: 35px;
  }

  .site-footer__grid {
    gap: 38px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-book-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 25px rgba(16, 19, 24, 0.18);
  }

  .mobile-book-bar a {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-book-bar a:last-child {
    background: var(--ink);
  }

  /* Mobile-only card rails: readable cards without a long vertical stack. */
  .session-grid,
  .offer-grid,
  .party-steps,
  .party-tier-grid,
  .party-card-grid,
  .bring-grid,
  .feature-card-grid,
  .info-grid,
  .benefit-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: minmax(84%, 1fr);
    grid-auto-flow: column;
    align-items: stretch;
    gap: 16px;
    margin-inline: -2px;
    padding: 4px 2px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .session-grid::-webkit-scrollbar,
  .offer-grid::-webkit-scrollbar,
  .party-steps::-webkit-scrollbar,
  .party-tier-grid::-webkit-scrollbar,
  .party-card-grid::-webkit-scrollbar,
  .bring-grid::-webkit-scrollbar,
  .feature-card-grid::-webkit-scrollbar,
  .info-grid::-webkit-scrollbar,
  .benefit-grid::-webkit-scrollbar {
    display: none;
  }

  .session-grid > *,
  .offer-grid > *,
  .party-steps > *,
  .party-tier-grid > *,
  .party-card-grid > *,
  .bring-grid > *,
  .feature-card-grid > *,
  .info-grid > *,
  .benefit-grid > * {
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 479px) {
  .feature-card-grid {
    grid-template-columns: none;
  }

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

  .session-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .group-option__price {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1023px) and (max-height: 560px) {
  .primary-nav {
    padding-block: 10px;
  }

  .primary-nav .menu a {
    padding-block: 8px;
    font-size: 0.98rem;
  }

  .nav-book {
    min-height: 44px;
    margin-top: 10px;
  }
}

/* 1.0.12 — purpose-built phone layout. Desktop and tablet rules remain unchanged. */
@media (max-width: 767px) {
  :root {
    --header-height: 66px;
    --shell: min(100% - 32px, 1180px);
    --radius: 18px;
    --radius-lg: 24px;
  }

  html { scroll-padding-top: 76px; }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
    background: #f7f8f9;
    font-size: 15.5px;
    line-height: 1.6;
  }

  main { overflow: clip; }

  input,
  select,
  textarea,
  button { font-size: 16px; }

  .announcement { font-size: 0.72rem; }

  .announcement__inner {
    min-height: 36px;
    justify-content: center;
    padding-block: 0;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
  }

  .announcement__dot {
    width: 6px;
    height: 6px;
    box-shadow: none;
  }

  .site-header__inner { gap: 12px; }

  .brand {
    width: 108px;
    flex-basis: 108px;
  }

  .brand img,
  .brand .custom-logo {
    max-width: 108px;
    max-height: 56px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(16, 19, 24, 0.07);
  }

  .menu-toggle__lines { width: 22px; }

  .primary-nav {
    top: calc(36px + var(--header-height));
    height: calc(100dvh - 36px - var(--header-height));
    padding: 20px 24px max(24px, env(safe-area-inset-bottom));
  }

  .admin-bar .primary-nav {
    top: calc(82px + var(--header-height));
    height: calc(100dvh - 82px - var(--header-height));
  }

  .primary-nav .menu a {
    padding: 12px 6px;
    font-size: clamp(1.02rem, 5vw, 1.22rem);
  }

  .nav-book {
    min-height: 50px;
    margin-top: 16px;
  }

  .section { padding-block: 54px; }

  .section + .section { border-top: 1px solid rgba(16, 19, 24, 0.05); }

  .section-heading { margin-bottom: 28px; }

  .section-heading--split { gap: 12px; }

  .section-heading--center { text-align: left; }

  .section-heading h2,
  .faq-layout__heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.69rem;
    letter-spacing: 0.14em;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .button {
    min-height: 50px;
    padding: 12px 19px;
  }

  .button--large {
    min-height: 52px;
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  .hero { min-height: 625px; }

  .hero__media img { object-position: 61% center; }

  .hero__content { padding-block: 118px 32px; }

  .hero h1 {
    max-width: 7.5em;
    margin-bottom: 17px;
    font-size: clamp(3rem, 14vw, 4.15rem);
    line-height: 0.9;
  }

  .hero__lead {
    max-width: 35em;
    margin-bottom: 23px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero .button-row .button {
    width: auto;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .hero__facts {
    gap: 14px 0;
    margin-top: 28px;
    padding-top: 17px;
  }

  .hero__facts li { padding-inline: 13px; }

  .hero__facts strong { font-size: 1.2rem; }

  .hero__facts span { font-size: 0.67rem; }

  .quick-plan {
    padding-block: 18px 8px;
    background: var(--soft);
  }

  .quick-plan__grid {
    grid-template-columns: none;
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    gap: 12px;
    padding: 2px 0 14px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .quick-plan__grid::-webkit-scrollbar { display: none; }

  .quick-plan__grid > div,
  .quick-plan__grid > div:last-child {
    min-height: 86px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 19, 24, 0.05);
    scroll-snap-align: start;
  }

  .quick-plan__number {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .session-grid,
  .offer-grid,
  .party-steps,
  .party-tier-grid,
  .party-card-grid,
  .bring-grid,
  .feature-card-grid,
  .info-grid,
  .benefit-grid {
    grid-auto-columns: minmax(86%, 1fr);
    gap: 14px;
    padding-bottom: 16px;
  }

  .session-card,
  .offer-card,
  .party-tier,
  .party-card,
  .bring-grid article,
  .feature-card-grid article,
  .info-grid article,
  .benefit-grid article {
    box-shadow: 0 12px 30px rgba(16, 19, 24, 0.08);
  }

  .session-card__image,
  .session-card__image > img { height: 215px; }

  .session-card__body { padding: 21px 19px; }

  .session-card h3 { font-size: 1.55rem; }

  .session-card__footer {
    align-items: flex-end;
    flex-direction: row;
  }

  .offer-card {
    min-height: 270px;
    padding: 25px 22px;
  }

  .feature-split {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 19, 24, 0.07);
  }

  .feature-split__media,
  .feature-split--reverse .feature-split__media { order: 0; }

  .feature-split__content,
  .feature-split--reverse .feature-split__content {
    order: 1;
    padding: 26px 22px 29px;
  }

  .feature-split__content h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .feature-split__content .lead { margin-bottom: 18px; }

  .rounded-media {
    height: 245px;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    object-position: center;
  }

  .image-stack { padding: 0; }

  .image-stack::before { display: none; }

  .image-stack__main {
    height: 245px;
    border-radius: 0;
    box-shadow: none;
  }

  .image-stack__note {
    right: 14px;
    bottom: 14px;
    min-width: 138px;
    padding: 12px 15px;
    border-radius: 14px;
    transform: none;
  }

  .image-stack__note span { font-size: 1rem; }

  .tick-list { margin-bottom: 22px; }

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

  .mini-stat-grid div { padding: 16px; }

  .center-action { margin-top: 26px; }

  .center-action .button,
  .final-cta .button { width: 100%; }

  .page-hero { background: #fff; }

  .page-hero__content { padding-block: 38px 30px; }

  .page-hero h1 {
    margin-bottom: 15px;
    font-size: clamp(2.9rem, 14vw, 3.85rem);
    line-height: 0.91;
  }

  .page-hero__media,
  .page-hero--school .page-hero__media {
    min-height: 0;
    height: 265px;
    padding: 0;
    overflow: hidden;
  }

  .page-hero__media img,
  .page-hero--school .page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero__media::after { border-top-width: 6px; }

  .activity-feature {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 19, 24, 0.07);
  }

  .activity-feature__media img {
    width: 100%;
    height: 235px;
    min-height: 0;
    object-fit: cover;
  }

  .activity-feature__body { padding: 25px 21px 28px; }

  .activity-feature__body h2 { font-size: 2.15rem; }

  .feature-card-grid img {
    height: 210px;
    flex-basis: 210px;
  }

  .feature-card-grid article > div { padding: 19px; }

  .toddler-panel { padding-block: 52px; }

  .toddler-panel__inner { gap: 28px; }

  .toddler-panel h2 { font-size: 2.6rem; }

  .toddler-panel__visual {
    width: 100%;
    padding: 0;
  }

  .toddler-panel__visual img {
    width: 100%;
    height: 230px;
    border-radius: 20px;
    object-fit: cover;
  }

  .toddler-panel__visual .price-pill,
  .price-pill {
    right: 10px;
    bottom: 10px;
    width: 112px;
    height: 112px;
  }

  .comparison-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-table,
  .comparison-table tbody {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .comparison-table thead { display: none; }

  .comparison-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 19, 24, 0.05);
  }

  .comparison-table th,
  .comparison-table td,
  .comparison-table tbody tr:last-child th,
  .comparison-table tbody tr:last-child td {
    display: block;
    padding: 0;
    border: 0;
  }

  .comparison-table tbody th {
    grid-column: 1 / -1;
    font-size: 1.28rem;
  }

  .comparison-table td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .comparison-table td:nth-child(2)::before { content: "Duration"; }
  .comparison-table td:nth-child(3)::before { content: "Minimum age"; }
  .comparison-table td:nth-child(4)::before { content: "What to bring"; }
  .comparison-table td:nth-child(5)::before { content: "Price"; }

  .comparison-table td:nth-child(4),
  .comparison-table td:nth-child(5) { grid-column: 1 / -1; }

  .comparison-table td:nth-child(5) {
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .comparison-table td:nth-child(5) strong {
    color: var(--orange-dark);
    font-size: 1.5rem;
  }

  .party-steps li,
  .party-tier,
  .party-card { padding: 24px 21px; }

  .party-tier__price strong { font-size: 2.25rem; }

  .group-option {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .group-option h2 { font-size: 2rem; }

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

  .group-option__price,
  .group-option__price--featured {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 16px 13px;
  }

  .group-option__price strong { font-size: clamp(1.75rem, 9vw, 2.35rem); }

  .group-option__price span { font-size: 0.68rem; }

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

  .rule-grid article,
  .inclusion-grid article {
    min-width: 0;
    padding: 18px 15px;
  }

  .rule-grid h3,
  .inclusion-grid h3 { font-size: 1rem; }

  .benefit-grid article,
  .info-grid article,
  .bring-grid article { padding: 23px 20px; }

  .booking-process ol { gap: 18px; }

  .booking-process li {
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
  }

  .booking-process li > span {
    width: 38px;
    height: 38px;
  }

  .visit-grid { gap: 28px; }

  .visit-card,
  .faq-page-grid__aside,
  .safety-card {
    padding: 24px 21px;
    border-radius: 20px;
  }

  .safety-columns,
  .faq-page-grid,
  .faq-layout { gap: 24px; }

  .safety-banner p {
    padding-block: 14px;
    font-size: 0.82rem;
  }

  .faq-layout__heading > p:not(.eyebrow),
  .faq-page-grid__aside > p:not(.eyebrow) { font-size: 0.92rem; }

  .faq-section-title,
  .accordion-list--large > h2 {
    margin-top: 32px;
    padding-left: 13px;
    font-size: 1.35rem;
  }

  .accordion-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 15px 44px 15px 0;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .accordion-list summary::after {
    top: 13px;
    width: 30px;
    height: 30px;
  }

  .accordion-list details > div { padding: 0 36px 18px 0; }

  .final-cta,
  .final-cta--compact { padding-block: 56px; }

  .final-cta p:not(.eyebrow) {
    margin-bottom: 23px;
    font-size: 0.96rem;
  }

  .legal-note .site-shell { padding: 25px 20px; }

  .site-footer { padding-block: 50px 22px; }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .site-footer__brand,
  .site-footer__cta { grid-column: 1 / -1; }

  .site-footer__brand img {
    max-width: 122px;
    max-height: 82px;
    margin-bottom: 14px;
  }

  .site-footer h2 { margin-bottom: 13px; }

  .site-footer__cta {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-footer__cta .button { width: 100%; }

  .site-footer__bottom {
    gap: 6px;
    margin-top: 34px;
    padding-top: 18px;
  }

  .mobile-book-bar {
    height: calc(62px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
  }

  .mobile-book-bar a {
    min-height: 62px;
    font-size: 0.8rem;
  }

  .gift-hero {
    padding-block: 45px 56px;
  }

  .gift-hero__grid {
    gap: 34px;
  }

  .gift-hero__content h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 14vw, 4.1rem);
    line-height: 0.91;
  }

  .gift-hero__content .lead {
    margin-bottom: 22px;
    font-size: 0.98rem;
  }

  .gift-hero__content .button-row {
    display: grid;
    gap: 13px;
  }

  .gift-hero__content .button {
    width: 100%;
  }

  .gift-hero__content .text-link {
    justify-content: center;
  }

  .gift-card-preview {
    width: 96%;
    margin-inline: auto;
    padding: 22px;
    border-radius: 24px;
    transform: rotate(1deg);
  }

  .gift-card-preview::before {
    border-radius: 18px;
  }

  .gift-card-preview__top img {
    width: 92px;
    height: 62px;
  }

  .gift-card-preview__top > span {
    padding: 5px 9px;
    font-size: 0.61rem;
  }

  .gift-card-preview > p {
    margin: 23px 0 18px;
    font-size: clamp(1.7rem, 9vw, 2.45rem);
  }

  .gift-card-preview__footer {
    max-width: 165px;
    font-size: 0.58rem;
  }

  .gift-card-preview--photo {
    padding: 0;
  }

  .gift-store-notice {
    padding-block: 24px;
  }

  .gift-store-notice__inner {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }

  .gift-store-notice__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .gift-store-notice h2 {
    font-size: 1.55rem;
  }

  .gift-store-notice p:not(.eyebrow) {
    font-size: 0.84rem;
  }

  .gift-store-notice .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .gift-step-grid {
    grid-template-columns: none;
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    gap: 14px;
    padding: 3px 1px 17px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .gift-step-grid::-webkit-scrollbar {
    display: none;
  }

  .gift-step-grid li {
    min-height: 225px;
    padding: 24px 21px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gift-step-grid li > span {
    margin-bottom: 29px;
  }

  .gift-choice-grid {
    gap: 28px;
  }

  .gift-choice-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .gift-choice-list article > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.15rem;
  }

  .gift-choice-list h3 {
    font-size: 1.1rem;
  }

  .gift-choice-list p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .gift-cta {
    padding-block: 56px;
  }

  .gift-cta__inner {
    display: grid;
    gap: 24px;
  }

  .gift-cta h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .gift-cta .button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .event-grid {
    grid-template-columns: none;
    grid-auto-columns: 88%;
    grid-auto-flow: column;
    gap: 14px;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding: 2px calc((100vw - var(--shell)) / 2) 18px 0;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .event-grid::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 20px;
  }

  .event-card__body {
    padding: 21px 19px;
  }

  .event-card__body > p:not(.event-card__when) {
    min-height: 0;
  }

  .event-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .event-empty {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 20px 16px;
    padding: 25px 21px;
    border-radius: 22px;
  }

  .event-empty__mark {
    width: 56px;
    border-radius: 17px;
    font-size: 1.35rem;
    box-shadow: 6px 6px 0 var(--blue);
  }

  .event-empty h3 {
    font-size: 1.75rem;
  }

  .event-empty .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .events-cta {
    padding-block: 56px;
  }

  .events-cta__inner {
    display: grid;
    gap: 24px;
  }

  .events-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .events-cta .button {
    width: 100%;
  }

  .event-single__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .event-single__content {
    order: 2;
  }

  .event-single__media {
    order: 1;
    border-radius: 21px;
    box-shadow: 9px 9px 0 var(--lime);
  }

  .event-single__back {
    margin-bottom: 24px;
  }

  .event-single h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

@media (max-width: 1023px) {
  .membership-home__inner,
  .membership-hero__grid,
  .membership-how {
    grid-template-columns: 1fr;
  }

  .membership-home__visual,
  .membership-hero__pass {
    width: min(620px, calc(100% - 24px));
    margin-inline: auto;
  }

  .membership-hero__pass {
    min-height: 420px;
  }

  .membership-how {
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .party-weekday-banner {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding: 10px 13px 10px 10px;
    border-radius: 18px;
    font-size: 0.83rem;
    line-height: 1.25;
  }

  .section--party .image-stack__note {
    right: 12px;
    bottom: 12px;
    min-width: min(205px, calc(100% - 24px));
    padding: 14px 16px;
    border-width: 1px;
  }

  .section--party .image-stack__note span {
    font-size: 1.08rem;
  }

  .membership-home {
    padding-block: 58px 70px;
  }

  .membership-home__inner {
    gap: 38px;
  }

  .membership-home h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .membership-home__content .button,
  .membership-hero__content .button,
  .membership-cta .button {
    width: 100%;
  }

  .membership-home__visual {
    min-height: 255px;
    padding: 25px;
    box-shadow: 10px 10px 0 var(--lime);
    transform: rotate(1deg);
  }

  .membership-hero {
    padding-block: 58px 72px;
  }

  .membership-hero__grid {
    gap: 43px;
  }

  .membership-hero__content h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .membership-hero__content .button-row {
    display: grid;
  }

  .membership-hero__content .text-link {
    justify-content: center;
  }

  .membership-hero__pass {
    width: calc(100% - 12px);
    min-height: 350px;
    padding: 25px 22px;
    border-radius: 25px;
    box-shadow: 10px 10px 0 var(--lime);
    transform: rotate(1.5deg);
  }

  .membership-hero__pass-top img {
    width: 88px;
    height: 60px;
  }

  .membership-hero__pass-top span {
    max-width: 145px;
    text-align: center;
  }

  .membership-hero__number {
    gap: 17px;
  }

  .membership-hero__number strong {
    font-size: clamp(8rem, 40vw, 10rem);
  }

  .membership-hero__number span {
    font-size: 1.5rem;
  }

  .membership-benefit-grid {
    grid-template-columns: none;
    grid-auto-columns: 84%;
    grid-auto-flow: column;
    gap: 14px;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding: 3px calc((100vw - var(--shell)) / 2) 18px 0;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .membership-benefit-grid::-webkit-scrollbar {
    display: none;
  }

  .membership-benefit-grid article {
    min-height: 255px;
    padding: 25px 22px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .membership-benefit-grid article > span {
    margin-bottom: 35px;
  }

  .membership-how li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 20px 17px;
  }

  .membership-how li > span {
    width: 48px;
    height: 48px;
  }

  .membership-cta {
    padding-block: 58px;
  }

  .membership-cta__inner {
    display: grid;
    gap: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media print {
  .announcement,
  .site-header,
  .site-footer,
  .mobile-book-bar,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .section {
    padding-block: 28px;
  }
}
