:root {
  --bg: #06101a;
  --bg-soft: #0c1627;
  --panel: rgba(10, 18, 31, 0.88);
  --panel-strong: rgba(13, 23, 39, 0.96);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(235, 199, 96, 0.34);
  --text: #f4f5f8;
  --muted: #b8c3d6;
  --gold: #ebc760;
  --gold-soft: #f7de9c;
  --ice: #81d5ff;
  --pink: #ed6ea9;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --content-width: 1260px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(237, 110, 169, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(129, 213, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom center, rgba(235, 199, 96, 0.11), transparent 34%),
    linear-gradient(180deg, #06101a 0%, #09131f 40%, #08111d 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  width: min(calc(100% - 28px), var(--content-width));
  margin: 0 auto;
  padding: 108px 0 44px;
}

main {
  display: grid;
  justify-items: center;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.65;
  animation: floatGlow 16s ease-in-out infinite;
}

.ambient-one {
  top: 80px;
  left: 3%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(237, 110, 169, 0.3), transparent 70%);
}

.ambient-two {
  top: 220px;
  right: 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(129, 213, 255, 0.28), transparent 70%);
  animation-delay: -4s;
}

.ambient-three {
  bottom: 120px;
  left: 30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(235, 199, 96, 0.22), transparent 70%);
  animation-delay: -8s;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.06);
  }
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  width: min(calc(100% - 28px), var(--content-width));
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 13, 23, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand-logo {
  height: clamp(46px, 6vw, 62px);
  width: auto;
}

.nav-skater-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
  z-index: 5;
}

.nav-skater {
  position: absolute;
  top: 50%;
  left: -64px;
  width: 52px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.nav-skater.is-skating-ltr {
  animation: nav-skate-ltr 3.8s linear forwards;
}

.nav-skater.is-skating-rtl {
  transform: translateY(-50%) scaleX(-1);
  animation: nav-skate-rtl 3.8s linear forwards;
}

@keyframes nav-skate-ltr {
  0%   { left: -64px; opacity: 1; transform: translateY(-50%); }
  88%  { opacity: 1; }
  100% { left: calc(100% + 64px); opacity: 0; transform: translateY(-50%); }
}

@keyframes nav-skate-rtl {
  0%   { left: calc(100% + 64px); opacity: 1; transform: translateY(-50%) scaleX(-1); }
  88%  { opacity: 1; }
  100% { left: -64px; opacity: 0; transform: translateY(-50%) scaleX(-1); }
}

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

.site-nav a {
  padding: 12px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 42px 0 20px;
  width: 100%;
  max-width: 1180px;
}

.hero-home {
  grid-template-columns: 1.06fr 0.94fr;
}

body[data-page="home"] .hero-home {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 1180px;
  gap: 16px;
}

body[data-page="home"] .hero-copy {
  max-width: 860px;
  text-align: center;
}

body[data-page="home"] .hero-copy h1 {
  max-width: none;
}

body[data-page="home"] .hero-text {
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .hero-actions {
  justify-content: center;
}

.hero-home-frame {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy-home {
  max-width: 760px;
  margin: 0 auto;
}

.hero-mobile-copy {
  display: none;
}

.hero-featured-video-shell-mobile,
.hero-video-overlay-mobile,
.hero-copy-overlay-mobile {
  display: none;
}

.hero-copy-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
  pointer-events: none;
}

.hero-actions-home {
  margin-top: 28px;
  justify-content: center;
}

.hero-schedule {
  grid-template-columns: 1fr 360px;
}

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy h1,
.spotlight-card h2,
.section-heading h2,
.visit-copy h2,
.schedule-column h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  max-width: 13ch;
}

.hero-text,
.section-heading p,
.session-card p,
.benefit-card p,
.policy-card p,
.event-card p,
.visit-card p,
.status-text,
.spotlight-note {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 62ch;
  line-height: 1.75;
  font-size: 1.06rem;
}

.hero-actions,
.visit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 148px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-primary {
  color: #0a1020;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.spotlight-desc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  min-width: 0;
}

.spotlight-desc-row .spotlight-note {
  flex: 1;
  min-width: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-details-btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0;
  padding: 4px 14px;
  border: 1px solid rgba(129, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(129, 213, 255, 0.08);
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease;
}

.spotlight-details-btn:hover {
  background: rgba(129, 213, 255, 0.16);
}

.button-pill-inline {
  display: inline-flex;
  min-height: 36px;
  min-width: unset;
  padding: 0 16px;
  font-size: 0.85rem;
  vertical-align: middle;
  margin-top: 10px;
}

.live-status-card,
.spotlight-card,
.hero-side-panel,
.session-card,
.benefit-card,
.policy-card,
.visit-card,
.event-card,
.event-pill,
.schedule-column,
.embedded-calendar-card,
.lightbox,
.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.96), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.live-status-card {
  margin-top: 22px;
  padding: 18px 20px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual-illustration {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 0 60px rgba(255, 100, 180, 0.25), 0 20px 40px rgba(0,0,0,0.5);
}

.hero-visual-video {
  min-height: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1180px;
}

.hero-video-frame {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(237, 110, 169, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(129, 213, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.95));
  box-shadow: var(--shadow);
}

.hero-featured-video-shell {
  border-radius: 24px;
}

body[data-page="home"] .hero-featured-video-shell {
  border-radius: 20px;
  overflow: hidden;
}

body[data-page="home"] .hero-featured-video-shell iframe {
  aspect-ratio: 16 / 9;
  min-height: clamp(260px, 42vw, 500px);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.12) 0%, rgba(4, 8, 16, 0.2) 28%, rgba(4, 8, 16, 0.72) 72%, rgba(4, 8, 16, 0.9) 100%);
}

.hero-overlay-top,
.hero-overlay-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 720px);
  text-align: center;
}

.hero-overlay-top {
  top: clamp(22px, 3vw, 34px);
}

.hero-overlay-bottom {
  bottom: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy-overlay h1 {
  max-width: 10ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-overlay-bottom .hero-text {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-overlay a,
.hero-video-overlay button {
  pointer-events: auto;
}

.hero-video-overlay .hero-actions {
  justify-content: center;
}

.hero-video-overlay .eyebrow {
  color: var(--gold-soft);
}

.hero-video-overlay .hero-text {
  max-width: 56ch;
  color: rgba(244, 245, 248, 0.9);
}

.hero-video-overlay .button-secondary {
  background: rgba(7, 13, 23, 0.52);
  backdrop-filter: blur(8px);
}

.hero-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-card-main {
  position: absolute;
  inset: 20px 60px 100px 0;
}

.hero-card-secondary {
  position: absolute;
  right: 0;
  top: 0;
  width: 240px;
  height: 300px;
}

.hero-card-float {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 220px;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(129, 213, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(16, 25, 42, 0.95), rgba(10, 18, 31, 0.95));
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float img {
  object-fit: contain;
}

.spotlight-grid,
.benefits-grid,
.policy-grid,
.schedule-board,
.media-grid {
  display: grid;
  gap: 16px;
  width: 100%;
}

.spotlight-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 8px 0 0;
}

.spotlight-card,
.hero-side-panel,
.session-card,
.benefit-card,
.policy-card,
.visit-card,
.event-card,
.schedule-column {
  padding: 24px;
}

.spotlight-next-session {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(18, 29, 48, 0.96), rgba(9, 16, 28, 0.95));
  background-size: cover;
  background-position: center;
  transition: background 0.4s ease;
}

.spotlight-next-session.session-theme-retro {
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(34, 15, 47, 0.88), rgba(91, 32, 84, 0.7)),
    url("assets/Gallery/Dancing in the Middle.webp") center/cover no-repeat;
}

.spotlight-next-session.session-theme-family {
  background:
    radial-gradient(circle at top right, rgba(129, 213, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(11, 45, 68, 0.84), rgba(23, 85, 122, 0.62)),
    url("assets/Gallery/Normal Skating Session.webp") center/cover no-repeat;
}

.spotlight-next-session.session-theme-lessons {
  background:
    radial-gradient(circle at top right, rgba(129, 213, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(14, 34, 52, 0.86), rgba(40, 84, 118, 0.62)),
    url("assets/Gallery/Castle Skating Figure.jpg") center/cover no-repeat;
}

.spotlight-next-session.session-theme-afternoon {
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(62, 90, 124, 0.74), rgba(173, 111, 48, 0.48)),
    url("assets/Gallery/Our Arcade.jpg") center/cover no-repeat;
}

.spotlight-next-session.session-theme-evening {
  background:
    radial-gradient(circle at top right, rgba(100, 80, 200, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(9, 16, 34, 0.84), rgba(39, 29, 88, 0.62)),
    url("assets/Gallery/The Castle Dragon.jpg") center/cover no-repeat;
}

.spotlight-next-session.session-theme-sunday {
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(50, 95, 141, 0.72), rgba(146, 119, 60, 0.48)),
    url("assets/Gallery/The Dice Game.jpg") center/cover no-repeat;
}

.spotlight-next-session.session-theme-default {
  background:
    radial-gradient(circle at top right, rgba(129, 213, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.78), rgba(9, 16, 28, 0.58)),
    linear-gradient(135deg, rgba(15, 34, 54, 0.8), rgba(33, 65, 102, 0.58)),
    url("assets/Gallery/Our Pro Shop.jpg") center/cover no-repeat;
}

.spotlight-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.spotlight-next-special {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 0;
  overflow: hidden;
}

.spotlight-next-special .panel-label {
  grid-column: 1;
  grid-row: 1;
  padding: 14px 18px 0;
}

.spotlight-next-special h2 {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  margin: 2px 0 0;
}

.next-special-text {
  grid-column: 1;
  grid-row: 2;
  padding: 6px 18px 14px;
  min-width: 0;
}

.next-special-img-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  width: 110px;
  cursor: pointer;
}

.next-special-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.spotlight-time {
  margin: 12px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.spotlight-meta {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.spotlight-note-full {
  margin: 0;
  max-width: none;
  line-height: 1.75;
}

.big-link {
  font-size: 1.6rem;
  font-weight: 800;
}

.panel-link {
  color: var(--ice);
  text-decoration: none;
}

.section {
  padding-top: 72px;
  width: 100%;
  max-width: 1180px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
}

.section-heading p {
  margin: 12px 0 0;
  line-height: 1.75;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: center;
}

.chip-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.chip-button.is-active,
.chip-button:hover {
  color: #0b1020;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

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

.session-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at bottom right, rgba(129, 213, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
}

.session-visual {
  position: relative;
  min-height: 138px;
  margin: -24px -24px 18px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

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

.session-visual::after {
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.1), rgba(5, 11, 20, 0.78));
}

.session-visual-date,
.session-visual-title {
  position: relative;
  z-index: 1;
  margin: 0;
}

.session-visual-date {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-visual-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.08;
  max-width: 15ch;
  text-wrap: balance;
}

.session-theme-retro .session-visual {
  background:
    linear-gradient(135deg, rgba(34, 15, 47, 0.88), rgba(91, 32, 84, 0.7)),
    url("assets/Gallery/Dancing in the Middle.webp") center/cover;
}

.session-theme-retro .session-visual::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
}

.session-theme-family .session-visual {
  background:
    linear-gradient(135deg, rgba(11, 45, 68, 0.84), rgba(23, 85, 122, 0.62)),
    url("assets/Gallery/Normal Skating Session.webp") center/cover;
}

.session-theme-family .session-visual::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
}

.session-theme-lessons .session-visual {
  background:
    linear-gradient(135deg, rgba(14, 34, 52, 0.86), rgba(40, 84, 118, 0.62)),
    url("assets/Gallery/Castle Skating Figure.jpg") center/cover;
}

.session-theme-lessons .session-visual::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
}

.session-theme-afternoon .session-visual {
  background:
    linear-gradient(135deg, rgba(62, 90, 124, 0.74), rgba(173, 111, 48, 0.48)),
    url("assets/Gallery/Our Arcade.jpg") center/cover;
}

.session-theme-afternoon .session-visual::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.session-theme-evening .session-visual {
  background:
    linear-gradient(135deg, rgba(9, 16, 34, 0.84), rgba(39, 29, 88, 0.62)),
    url("assets/Gallery/The Castle Dragon.jpg") center/cover;
}

.session-theme-evening .session-visual::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22));
}

.session-theme-sunday .session-visual {
  background:
    linear-gradient(135deg, rgba(50, 95, 141, 0.72), rgba(146, 119, 60, 0.48)),
    url("assets/Gallery/The Dice Game.jpg") center/cover;
}

.session-theme-sunday .session-visual::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.session-theme-default .session-visual {
  background:
    linear-gradient(135deg, rgba(15, 34, 54, 0.8), rgba(33, 65, 102, 0.58)),
    url("assets/Gallery/Our Pro Shop.jpg") center/cover;
}

.session-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 199, 96, 0.16), transparent 72%);
}

.session-card h3,
.benefit-card h3,
.policy-card h3,
.event-card h3,
.schedule-row h4 {
  margin: 10px 0 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.session-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.meta-line strong {
  color: var(--text);
}

[data-page="home"] .session-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.session-expand-hint {
  display: none;
  font-size: 0.8rem;
  color: var(--accent, #ebc760);
  margin-top: 8px;
}

.session-card--expandable .session-expand-hint {
  display: block;
}

.session-card--expandable,
.spotlight-card--clickable {
  cursor: pointer;
}

.session-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(4, 9, 18, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.session-detail-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.session-detail-panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.99), rgba(8, 15, 26, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
}

.session-detail-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.session-detail-close:hover {
  color: var(--text);
}

.session-detail-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.session-detail-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 0 0 16px;
}

.session-detail-desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.session-detail-meta {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.session-detail-img-wrap {
  position: relative;
  margin: 12px 0 20px;
  cursor: pointer;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.session-detail-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 280px;
  border-radius: calc(var(--radius) - 4px);
  transition: transform 0.2s ease;
}

.session-detail-img-wrap:hover .session-detail-img {
  transform: scale(1.02);
}

.session-detail-img-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.event-stack,
.event-list,
.schedule-list,
.story-copy {
  display: grid;
  gap: 16px;
}

.event-date-group {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: start;
}

.event-group-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.event-card {
  display: grid;
  gap: 16px;
  align-items: start;
}

.event-card-copy {
  display: grid;
  gap: 12px;
}

.event-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.event-card-head h3 {
  margin: 0;
}

.event-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.event-tile {
  grid-template-columns: 1fr;
}

.event-tile.event-card-has-media {
  grid-template-columns: 220px 1fr;
}

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

.event-media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.04);
}

.event-media-button {
  width: 100%;
  padding: 0;
  appearance: none;
  cursor: zoom-in;
}

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

.event-media:hover img {
  transform: scale(1.04);
}

.event-media-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 13, 23, 0.82);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-media-small {
  min-height: 148px;
}

.event-date {
  display: grid;
  gap: 2px;
  padding: 18px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(235, 199, 96, 0.16), rgba(235, 199, 96, 0.05));
  text-align: center;
}

.event-date .month {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2.35rem;
  font-weight: 800;
}

.event-date .year {
  color: var(--muted);
  font-size: 0.9rem;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.event-details-top {
  margin-top: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: flex-start;
  flex-shrink: 0;
}

.event-more {
  margin-top: 10px;
}

.event-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ice);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.event-more summary::-webkit-details-marker {
  display: none;
}

.event-more[open] summary {
  margin-bottom: 10px;
}

.event-more p {
  margin: 0 0 10px;
}

.event-more p:last-child {
  margin-bottom: 0;
}

.event-more a {
  color: var(--ice);
}

.event-inline-details {
  margin-top: 12px;
}

.event-inline-details p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.event-inline-details p:last-child {
  margin-bottom: 0;
}

.event-inline-details strong {
  color: var(--text);
}

.event-inline-details a {
  color: var(--ice);
}

.event-share-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(129, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(129, 213, 255, 0.08);
  color: var(--ice);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
}

.event-share-button:hover {
  background: rgba(129, 213, 255, 0.16);
  border-color: rgba(129, 213, 255, 0.38);
}

.event-action-row {
  display: none;
  gap: 10px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.calendar-picker {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: #1a2038;
  border: 1px solid rgba(129, 213, 255, 0.2);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  min-width: 190px;
  white-space: nowrap;
}

.calendar-picker::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(129, 213, 255, 0.2);
}

.calendar-picker-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--ice);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms ease;
}

.calendar-picker-option:hover,
.calendar-picker-option:focus-visible {
  background: rgba(129, 213, 255, 0.1);
}

.next-special-share-button[hidden] {
  display: none !important;
}

.next-special-calendar-button[hidden] {
  display: none !important;
}

.event-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  width: 100%;
}

.gallery-grid-large {
  position: relative;
  display: block;
  min-height: 860px;
  padding: 10px 0 48px;
}

.gallery-card {
  position: relative;
  display: block;
  width: clamp(170px, 16vw, 240px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 10px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.96));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-grid-large .gallery-card {
  position: absolute;
  margin: 0;
}

.gallery-grid-large .gallery-card:nth-child(1) {
  top: 0;
  left: 2%;
  width: clamp(220px, 21vw, 290px);
  aspect-ratio: 4 / 5;
  transform: rotate(-8deg);
  z-index: 10;
}

.gallery-grid-large .gallery-card:nth-child(2) {
  top: 12px;
  left: 22%;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 16 / 11;
  transform: rotate(7deg);
  z-index: 9;
}

.gallery-grid-large .gallery-card:nth-child(3),
.gallery-grid-large .gallery-card:nth-child(4),
.gallery-grid-large .gallery-card:nth-child(5),
.gallery-grid-large .gallery-card:nth-child(6),
.gallery-grid-large .gallery-card:nth-child(7),
.gallery-grid-large .gallery-card:nth-child(8) {
  aspect-ratio: 4 / 5;
}

.gallery-grid-large .gallery-card:nth-child(3) {
  top: 6px;
  right: 3%;
  width: clamp(180px, 15vw, 230px);
  transform: rotate(-4deg);
  z-index: 8;
}

.gallery-grid-large .gallery-card:nth-child(4) {
  top: 170px;
  left: 8%;
  width: clamp(180px, 15vw, 225px);
  transform: rotate(11deg);
  z-index: 6;
}

.gallery-grid-large .gallery-card:nth-child(5) {
  top: 180px;
  left: 28%;
  width: clamp(195px, 16vw, 245px);
  transform: rotate(-6deg);
  z-index: 11;
}

.gallery-grid-large .gallery-card:nth-child(6) {
  top: 188px;
  right: 7%;
  width: clamp(200px, 16vw, 250px);
  transform: rotate(9deg);
  z-index: 5;
}

.gallery-grid-large .gallery-card:nth-child(7) {
  top: 360px;
  left: 16%;
  width: clamp(185px, 15vw, 235px);
  transform: rotate(-10deg);
  z-index: 4;
}

.gallery-grid-large .gallery-card:nth-child(8) {
  top: 352px;
  right: 16%;
  width: clamp(190px, 16vw, 245px);
  transform: rotate(6deg);
  z-index: 3;
}

.gallery-card::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.7);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card:hover,
.gallery-card:focus-within {
  z-index: 20;
  transform: scale(1.03) rotate(0deg);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-callout-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

body[data-page="gallery"] .gallery-grid-large {
  display: block;
  column-count: 4;
  column-gap: 14px;
  min-height: 0;
  padding: 0;
}

body[data-page="gallery"] .gallery-grid-large .gallery-card {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  aspect-ratio: auto;
  padding: 10px 10px 34px;
  transform: none;
}

body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(1) { transform: rotate(-4deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(2) { transform: rotate(4deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(3) { transform: rotate(-6deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(4) { transform: rotate(5deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(5) { transform: rotate(-3deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(6) { transform: rotate(6deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(7) { transform: rotate(-5deg); }
body[data-page="gallery"] .gallery-grid-large .gallery-card:nth-child(8) { transform: rotate(4deg); }

body[data-page="gallery"] .gallery-card img {
  height: auto;
}

body[data-page="gallery"] .gallery-card:hover,
body[data-page="gallery"] .gallery-card:focus-within {
  transform: translateY(-4px) rotate(0deg) scale(1.01);
}

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

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

.media-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.media-card-feature {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(237, 110, 169, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(129, 213, 255, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(16, 25, 42, 0.97), rgba(8, 15, 26, 0.94));
}

.media-card-feature h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-family: "Cinzel", serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.media-frame-card {
  overflow: hidden;
  padding: 14px;
}

.featured-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070d17;
  transition: opacity 500ms ease;
}

.page-loader img {
  width: 120px;
  height: auto;
  animation: loader-bounce 0.7s ease-in-out infinite alternate;
}

@keyframes loader-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  transition: opacity 400ms ease;
}

.video-loader img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(210, 40, 40, 0.55));
}

.video-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.media-frame-card iframe,
.featured-video-shell iframe,
.featured-video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  background: #000;
  transform: none;
  transform-origin: center center;
}

.media-video-card {
  padding: 10px;
  background:
    radial-gradient(circle at top right, rgba(237, 110, 169, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(129, 213, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(16, 25, 42, 0.97), rgba(8, 15, 26, 0.94));
}

.media-video-card iframe {
  background: #000;
}

.media-frame-card-wide .featured-video-shell {
  aspect-ratio: 16 / 9;
}

.benefit-card,
.policy-card {
  background:
    radial-gradient(circle at top right, rgba(237, 110, 169, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(13, 23, 39, 0.97), rgba(8, 15, 26, 0.93));
}

.policy-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.policy-card--has-hover-note {
  text-align: left;
}

.policy-card--has-hover-note h3 {
  margin: 10px 0 10px;
  text-align: left;
}

.policy-card--has-hover-note p {
  width: 100%;
  text-align: left;
  margin: 10px 0 0;
}

.hover-note--policy-top-right {
  position: absolute;
  top: 34px;
  right: 24px;
  margin-top: 0;
}

.hover-note--policy-top-right .hover-note-popup {
  left: auto;
  right: 0;
  bottom: auto;
  top: calc(100% + 10px);
  transform: translate(0, 8px);
}

.hover-note--policy-top-right .hover-note-popup::after {
  left: auto;
  right: 18px;
  top: -7px;
  bottom: auto;
  transform: rotate(225deg);
}

.hover-note--policy-top-right:hover .hover-note-popup,
.hover-note--policy-top-right:focus-within .hover-note-popup {
  transform: translate(0, 0);
}

.visit-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.visit-card-desktop {
  display: grid;
}

.visit-address {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text);
}

.visit-sidebar,
.live-links {
  display: grid;
  gap: 12px;
}

.visit-sidebar p {
  margin: 0;
}

.visit-sidebar a,
.live-links a {
  color: var(--ice);
}

/* ── Castle Adventure Banner ───────────────────────────────── */

.castle-adventure-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
  padding: 40px 44px;
  border: 1px solid rgba(235, 199, 96, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(235, 199, 96, 0.09), transparent 55%),
    radial-gradient(ellipse at 20% 50%, rgba(129, 213, 255, 0.07), transparent 50%),
    linear-gradient(135deg, rgba(14, 24, 40, 0.98), rgba(9, 16, 28, 0.97));
  box-shadow:
    0 0 0 1px rgba(235, 199, 96, 0.1),
    0 28px 64px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.castle-adventure-banner-mobile {
  display: none;
}

.castle-adventure-banner::before {
  content: "🏰";
  position: absolute;
  right: -24px;
  bottom: -32px;
  font-size: 10rem;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.adventure-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px !important;
  padding: 4px 10px;
  border: 1px solid rgba(235, 199, 96, 0.36);
  border-radius: 999px;
  background: rgba(235, 199, 96, 0.1);
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em;
}

.adventure-title {
  margin: 0 0 12px !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-family: "Cinzel", serif;
  color: var(--gold-soft) !important;
  line-height: 1.1;
}

.adventure-desc {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}

.adventure-desc strong {
  color: var(--gold-soft);
}

.adventure-perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.adventure-perks li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.adventure-perk-icon {
  font-size: 1.1rem;
}

.adventure-mobile-info {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.adventure-mobile-address {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.adventure-mobile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Start button */
.adventure-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.adventure-start-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
}

.adventure-btn-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(235, 199, 96, 0.55);
  animation: adventure-ring-pulse 2s ease-out infinite;
}

.adventure-btn-ring-2 {
  animation-delay: 1s;
}

@keyframes adventure-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.adventure-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 204px;
  height: 204px;
  border-radius: 50%;
  border: 2px solid rgba(235, 199, 96, 0.7);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 240, 180, 0.26), transparent 46%),
    linear-gradient(145deg, rgba(42, 62, 96, 0.98), rgba(14, 22, 36, 0.98));
  box-shadow:
    0 0 0 6px rgba(235, 199, 96, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.adventure-start-btn:hover .adventure-btn-inner,
.adventure-start-btn:focus-visible .adventure-btn-inner {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow:
    0 0 0 8px rgba(235, 199, 96, 0.18),
    0 0 36px rgba(235, 199, 96, 0.32),
    0 22px 56px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.adventure-start-btn:focus-visible {
  outline: 0;
}

.adventure-btn-logo {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.adventure-btn-label {
  font-family: "Cinzel", serif;
  margin-top: -8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.adventure-cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .castle-adventure-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .adventure-desc {
    max-width: 100%;
  }

  .adventure-perks {
    justify-content: center;
  }

  .adventure-cta-wrap {
    padding-top: 8px;
  }

  .adventure-mobile-links {
    justify-content: center;
  }
}

.hero-side-panel {
  display: grid;
  gap: 14px;
}

.schedule-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.story-copy p {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 23, 39, 0.97), rgba(8, 15, 26, 0.93));
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.85;
}

.story-copy h3 {
  margin: 8px 0 0;
  padding: 20px 26px 18px;
  border: 1px solid rgba(235, 199, 96, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(235, 199, 96, 0.07), rgba(13, 23, 39, 0.92));
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.schedule-column {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 24, 40, 0.96), rgba(9, 16, 28, 0.94));
}

.schedule-column-header {
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.schedule-column h3 {
  font-size: 1.3rem;
  margin: 0;
  text-align: center;
}

.schedule-list {
  display: grid;
  gap: 0;
}

.schedule-row {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

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

.schedule-row-main {
  display: grid;
  gap: 12px;
}

.schedule-row-title-wrap {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.schedule-row h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  text-align: center;
}

.schedule-row-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.schedule-row p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.schedule-label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-row-ending-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(235, 199, 96, 0.28);
  background: rgba(235, 199, 96, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.schedule-row-detail {
  width: fit-content;
  justify-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ice);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.schedule-row-detail:hover,
.schedule-row-detail:focus-visible {
  color: var(--gold);
}

.schedule-row-detail-disabled {
  color: var(--muted);
  cursor: default;
}

.schedule-rentals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 28px;
}

.schedule-rental-tile {
  text-align: left;
}

.hover-note-popup--wide {
  width: min(320px, 82vw);
}

.skatemate-popup-img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.schedule-rental-tile h3 {
  margin: 0 0 10px;
}

.schedule-rental-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hover-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  outline: none;
}

.hover-note--policy-top-right {
  position: absolute;
  top: 34px;
  right: 24px;
  margin-top: 0;
}

.hover-note-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(129, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(129, 213, 255, 0.08);
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: help;
}

.hover-note-popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(280px, 72vw);
  padding: 12px 14px;
  border: 1px solid rgba(235, 199, 96, 0.22);
  border-radius: 16px;
  background: rgba(7, 13, 23, 0.97);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 10;
}

.hover-note-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(235, 199, 96, 0.22);
  border-bottom: 1px solid rgba(235, 199, 96, 0.22);
  background: rgba(7, 13, 23, 0.97);
  transform: translateX(-50%) rotate(45deg);
}

.hover-note:hover .hover-note-popup,
.hover-note:focus-within .hover-note-popup {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hover-note--policy-top-right .hover-note-popup {
  left: auto;
  right: 0;
  bottom: auto;
  top: calc(100% + 10px);
  transform: translate(0, 8px);
}

.hover-note--policy-top-right .hover-note-popup::after {
  left: auto;
  right: 18px;
  top: -7px;
  bottom: auto;
  transform: rotate(225deg);
}

.hover-note--policy-top-right:hover .hover-note-popup,
.hover-note--policy-top-right:focus-within .hover-note-popup {
  transform: translate(0, 0);
}


.embedded-calendar-card {
  padding: 14px;
  width: 100%;
}

.embedded-calendar-frame {
  display: block;
  width: 100%;
  min-height: 1240px;
  border: 0;
  border-radius: 22px;
  background: #0a1020;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2, 7, 14, 0.9);
  z-index: 1000;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1280px);
  max-height: 80vh;
  border-radius: 22px;
}

.lightbox p {
  margin: 16px 0 0;
  color: var(--text);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* shown via JS only when gallery nav is active */
  align-items: center;
  justify-content: center;
  transition: background 140ms;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  line-height: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 480px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 72px;
  padding: 22px 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  padding: 8px 12px 7px;
  border: 1px solid rgba(129, 213, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 50%, rgba(129, 213, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(13, 23, 39, 0.92), rgba(8, 15, 26, 0.88));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-footer-brand img {
  display: block;
  width: auto;
  height: 38px;
  image-rendering: -webkit-optimize-contrast;
}

.site-footer-brand span {
  display: block;
  width: 38px;
  color: var(--text);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

/* ── Footer Social Icons ───────────────────────────────────── */

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
  background: rgba(255, 255, 255, 0.04);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--text);
  border-color: rgba(129, 213, 255, 0.55);
  background: rgba(129, 213, 255, 0.1);
  transform: translateY(-3px);
  outline: 0;
}

/* ── Party Cards (index.html) ─────────────────────────────── */

.party-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.party-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  background: linear-gradient(145deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.party-feature-card:hover {
  transform: translateY(-5px);
}

.party-card-birthday {
  position: relative;
  overflow: hidden;
  border-color: rgba(237, 110, 169, 0.28);
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.18), rgba(4, 9, 18, 0.58)),
    linear-gradient(145deg, rgba(14, 24, 40, 0.56), rgba(8, 15, 26, 0.72)),
    url("assets/images/hero-birthday-photo.png") center/cover no-repeat;
}

.party-card-birthday:hover {
  border-color: rgba(237, 110, 169, 0.6);
  box-shadow: var(--shadow), 0 0 55px rgba(237, 110, 169, 0.13);
}

.party-card-birthday::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(237, 110, 169, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.08), rgba(5, 11, 20, 0.48));
  pointer-events: none;
  z-index: 0;
}

.party-card-birthday > * {
  position: relative;
  z-index: 1;
}

.party-card-birthday .party-card-tag,
.party-card-birthday .party-card-title,
.party-card-birthday .party-price-big,
.party-card-birthday .party-price-note,
.party-card-birthday .party-card-desc,
.party-card-birthday .party-card-times {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.party-card-private {
  position: relative;
  overflow: hidden;
  border-color: rgba(129, 213, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.16), rgba(4, 9, 18, 0.56)),
    linear-gradient(145deg, rgba(14, 24, 40, 0.52), rgba(8, 15, 26, 0.7)),
    url("assets/images/hero-private-photo.png") center/cover no-repeat;
}

.party-card-private:hover {
  border-color: rgba(129, 213, 255, 0.6);
  box-shadow: var(--shadow), 0 0 55px rgba(129, 213, 255, 0.13);
}

.party-card-private::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(129, 213, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.06), rgba(5, 11, 20, 0.5));
  pointer-events: none;
  z-index: 0;
}

.party-card-private > * {
  position: relative;
  z-index: 1;
}

.party-card-private .party-card-tag,
.party-card-private .party-card-title,
.party-card-private .party-price-big,
.party-card-private .party-price-note,
.party-card-private .party-card-desc,
.party-card-private .party-card-times {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.party-card-tag {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.party-card-title {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-family: "Cinzel", serif;
  font-weight: 800;
  line-height: 1.1;
}

.party-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.party-price-big {
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  font-weight: 800;
  font-family: "Cinzel", serif;
  color: var(--gold);
  line-height: 1;
}

.party-price-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.party-card-desc {
  flex-grow: 1;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.party-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.party-card-times {
  color: var(--muted);
}

.party-card-arrow {
  font-weight: 700;
  white-space: nowrap;
  transition: color 200ms ease;
}

.party-card-arrow-glow {
  display: inline-block;
  color: #ffe7a6;
  text-shadow:
    0 0 10px rgba(255, 221, 128, 0.35),
    0 0 22px rgba(255, 221, 128, 0.18);
  animation: party-arrow-breathe 2.4s ease-in-out infinite;
}

.party-feature-card:hover .party-card-arrow {
  color: var(--gold);
}

@keyframes party-arrow-breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
    text-shadow:
      0 0 8px rgba(255, 221, 128, 0.28),
      0 0 18px rgba(255, 221, 128, 0.14);
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
    text-shadow:
      0 0 14px rgba(255, 231, 166, 0.55),
      0 0 30px rgba(255, 221, 128, 0.3);
  }
}

.party-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.party-extra-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: var(--text);
  transition: border-color 200ms ease, background 200ms ease;
}

a.party-extra-card:hover {
  border-color: rgba(235, 199, 96, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

a.party-extra-card:hover .party-card-arrow {
  color: var(--gold);
}

.party-extra-detail {
  flex-grow: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Package Cards (birthday-parties.html) ────────────────── */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.pkg-shared {
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.96), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.pkg-shared h3 {
  margin: 0 0 16px;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
}

.pkg-shared-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  color: var(--muted);
}

.pkg-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(175deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
}

.pkg-card-featured {
  border-color: rgba(235, 199, 96, 0.38);
  background:
    radial-gradient(circle at 90% 10%, rgba(235, 199, 96, 0.1), transparent 48%),
    linear-gradient(175deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
}

.pkg-header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.pkg-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(235, 199, 96, 0.13);
  border: 1px solid rgba(235, 199, 96, 0.32);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pkg-name {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-family: "Cinzel", serif;
  font-weight: 800;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 6px;
}

.pkg-price-amount {
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 800;
  font-family: "Cinzel", serif;
  color: var(--gold);
  line-height: 1;
}

.pkg-price-unit {
  font-size: 0.9rem;
  color: var(--muted);
}

.pkg-min {
  margin: 2px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.pkg-includes {
  flex-grow: 1;
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.5;
}

.pkg-includes li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 800;
  margin-top: 1px;
}

.pkg-includes li strong {
  color: var(--text);
}

.pkg-action {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-action .button {
  margin-top: 0 !important;
  text-align: center;
}

.pkg-action .button:first-child {
  animation: package-book-pulse 1.9s ease-in-out infinite;
}

.pkg-action .button:first-child:hover {
  animation-play-state: paused;
}

@keyframes package-book-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(235, 199, 96, 0.34);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 10px rgba(235, 199, 96, 0);
  }
}

/* Available times */
.times-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.time-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.time-block h3 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold);
}

.time-block p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Policy tiles */
.policy-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.policy-tile {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.policy-tile h3 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  font-weight: 700;
}

.policy-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Book CTA band */
.book-cta {
  text-align: center;
  padding: 56px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(235, 199, 96, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.book-cta h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.book-cta p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Private Rental Page ──────────────────────────────────── */

.avail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.avail-block {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.avail-block h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ice);
}

.avail-block p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.avail-block .avail-note {
  font-size: 0.82rem;
  color: rgba(184, 195, 214, 0.7);
  margin-top: 8px;
}

.rental-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rental-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
}

.rental-detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.rental-detail-card h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.rental-detail-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Booking notice banner */
.booking-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid rgba(235, 199, 96, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at right, rgba(235, 199, 96, 0.09), transparent 55%),
    linear-gradient(145deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.booking-notice-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.booking-notice-text h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}

.booking-notice-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* Extras / add-ons grid */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
  transition: border-color 180ms ease, background 180ms ease;
}

.extra-item:hover {
  border-color: rgba(235, 199, 96, 0.32);
  background: rgba(255, 255, 255, 0.048);
}

.extra-price {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Cinzel", serif;
  color: var(--gold);
  line-height: 1;
}

.extra-name {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* book-cta button row */
.book-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 0;
}

/* 30-day schedule list */
.s30-day {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.s30-day-today {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 20px rgba(235, 199, 96, 0.12);
}

.s30-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
}

.s30-weekday {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.s30-date {
  font-size: 0.88rem;
  color: var(--muted);
}

.s30-today-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(235, 199, 96, 0.12);
  border: 1px solid rgba(235, 199, 96, 0.3);
  border-radius: 20px;
  padding: 2px 10px;
}

.s30-row {
  display: grid;
  grid-template-columns: 130px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 120ms ease;
}

.s30-row:last-of-type {
  border-bottom: none;
}

.s30-row-clickable {
  cursor: pointer;
  user-select: none;
}

.s30-row-clickable:hover {
  background: rgba(255, 255, 255, 0.04);
}

.s30-row-clickable.is-open {
  background: rgba(255, 255, 255, 0.05);
}

.s30-row-special {
  background: rgba(129, 213, 255, 0.05);
}

.s30-row-special .s30-title {
  color: var(--ice);
}

.s30-time {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.s30-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s30-title {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
}

.s30-ending-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(235, 199, 96, 0.28);
  background: rgba(235, 199, 96, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.s30-price {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.s30-chevron {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 200ms ease;
  line-height: 1;
}

.s30-row-clickable.is-open .s30-chevron {
  transform: rotate(90deg);
}

.cal-desc {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.cal-desc ul,
.cal-desc ol {
  margin: 6px 0 6px 20px;
  padding: 0;
}

.cal-desc li {
  margin-bottom: 4px;
}

.cal-desc p {
  margin: 0 0 6px;
}

.cal-desc p:last-child {
  margin-bottom: 0;
}

.s30-detail {
  padding: 10px 18px 14px 166px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255,255,255,0.025);
}

.s30-detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.s30-detail-row:last-child {
  margin-bottom: 0;
}

.s30-dl {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.s30-detail-notes {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 4px;
  line-height: 1.6;
}

.s30-detail-price {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0;
  font-weight: 600;
}

.s30-detail-ending,
.s30-detail-link {
  color: var(--text);
}

.s30-detail-link {
  text-decoration: none;
}

.s30-detail-link:hover {
  color: var(--ice);
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - min(calc(100% - 28px), var(--content-width))) / 2 + 12px));
  bottom: 22px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(235, 199, 96, 0.68);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 236, 173, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(36, 54, 84, 0.98), rgba(11, 19, 33, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 0 6px rgba(235, 199, 96, 0.08);
  color: #fff6d6;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: back-to-top-pulse 1.8s ease-in-out infinite;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(255, 236, 173, 0.96);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 244, 198, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(54, 77, 114, 0.98), rgba(14, 24, 40, 0.98));
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(235, 199, 96, 0.14);
  transform: translate3d(0, -4px, 0) scale(1.08);
}

.back-to-top:focus-visible {
  outline: 0;
}

@keyframes back-to-top-pulse {
  0%, 100% {
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.36),
      0 0 0 6px rgba(235, 199, 96, 0.08);
  }
  50% {
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.36),
      0 0 0 10px rgba(235, 199, 96, 0.16);
  }
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 7, 14, 0.76);
}

.schedule-modal.is-open {
  display: flex;
}

.schedule-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(80vh, 760px);
  overflow: auto;
  padding: 28px 26px 24px;
  border: 1px solid rgba(235, 199, 96, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(235, 199, 96, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.985), rgba(8, 15, 26, 0.97));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.schedule-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.schedule-modal-card h3 {
  margin: 0 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.schedule-modal-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.schedule-modal-body p:last-child {
  margin-bottom: 0;
}

.schedule-modal-body strong {
  color: var(--text);
}

.schedule-modal-body a {
  color: var(--ice);
}

.schedule-jump-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.schedule-jump-btn {
  animation: jump-btn-breathe 2.4s ease-in-out infinite;
}

.schedule-jump-btn:nth-child(2) {
  animation-delay: 1.2s;
}

@keyframes jump-btn-breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(129, 213, 255, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(129, 213, 255, 0.14), 0 0 22px rgba(129, 213, 255, 0.22);
    transform: scale(1.03);
  }
}

.schedule-30-empty {
  color: var(--muted);
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 600px) {
  .s30-row {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    gap: 6px 10px;
  }

  .s30-time {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.8rem;
  }

  .s30-info {
    grid-column: 1;
    grid-row: 1;
  }

  .s30-price {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .s30-chevron {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .s30-detail {
    padding: 10px 16px 14px 16px;
  }

  .s30-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .schedule-modal {
    padding: 14px;
  }

  .schedule-modal-card {
    padding: 24px 18px 20px;
    max-height: 84vh;
  }

  .schedule-row-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .schedule-rentals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .schedule-rentals-grid {
    grid-template-columns: 1fr;
  }
}

/* Schedule page inline header */
.schedule-page-header {
  padding-top: 48px;
  padding-bottom: 0;
  text-align: center;
}

.schedule-page-title {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.3;
  margin: 6px 0 0;
}

.schedule-page-sub {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 60ch;
}

/* About page hero — flush side-by-side layout */
body[data-page="about"] .hero-home {
  align-items: stretch;
}

body[data-page="about"] .hero-visual {
  min-height: 0;
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
}

body[data-page="about"] .hero-card-main {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
}

/* About rink crossfade swap */
.about-rink-swap {
  position: relative;
  overflow: hidden;
}

.about-rink-swap .rink-swap-a {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rink-fade-a 10s ease-in-out infinite;
}

.about-rink-swap .rink-swap-b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rink-fade-b 10s ease-in-out infinite;
}

@keyframes rink-fade-a {
  0%, 40%   { opacity: 1; }
  50%, 90%  { opacity: 0; }
  100%      { opacity: 1; }
}

@keyframes rink-fade-b {
  0%, 40%   { opacity: 0; }
  50%, 90%  { opacity: 1; }
  100%      { opacity: 0; }
}

/* About welcome block */
.about-welcome-block {
  width: 100%;
  text-align: left;
  padding: 48px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(129, 213, 255, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.about-welcome-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.about-welcome-block p:last-child {
  margin-bottom: 0;
}

.about-welcome-closing {
  font-size: 1.15rem !important;
  color: var(--text) !important;
  font-weight: 600;
}

/* Confirmation block */
.confirmation-block {
  text-align: center;
  padding: 56px 28px;
  border: 1px solid rgba(255, 215, 77, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(255, 215, 77, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.94));
  box-shadow: var(--shadow);
}

.confirmation-block h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.confirmation-block p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.confirmation-block .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Party Room Panorama Viewer ─────────────────────────────── */

.pano-widget {
  width: 100%;
  display: grid;
  gap: 16px;
}

.pano-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.pano-tabs {
  display: flex;
  gap: 10px;
}

.pano-glow-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.pano-glow-toggle:hover,
.pano-glow-toggle:focus-visible {
  border-color: rgba(235, 199, 96, 0.5);
  background: rgba(235, 199, 96, 0.1);
  outline: 0;
}

.pano-glow-toggle.is-glow {
  border-color: rgba(237, 110, 169, 0.55);
  background: rgba(237, 110, 169, 0.12);
  color: var(--pink);
  box-shadow: 0 0 28px rgba(237, 110, 169, 0.2);
}

.pano-glow-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.pano-viewport {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.pano-viewport:active {
  cursor: grabbing;
}

.pano-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  will-change: transform;
  transition: opacity 280ms ease;
}

.pano-img.is-loading {
  opacity: 0;
}

.pano-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5, 9, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 500ms ease;
}

.pano-hint.is-hidden {
  opacity: 0;
}


.pano-scrubber {
  display: none; /* desktop: hidden */
}

@media (max-width: 780px) {
  .pano-scrubber {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2px;
    touch-action: none;
  }
}

.pano-scrubber-arrow {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  user-select: none;
}

.pano-scrubber-track {
  position: relative;
  flex: 1;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: grab;
}

.pano-scrubber-track:active {
  cursor: grabbing;
}

.pano-scrubber-thumb {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 199, 96, 0.75), rgba(235, 199, 96, 1));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  min-width: 48px;
  cursor: grab;
}

.pano-scrubber-thumb::before,
.pano-scrubber-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.32);
}

.pano-scrubber-thumb::before { left: calc(50% - 5px); }
.pano-scrubber-thumb::after  { left: calc(50% + 3px); }

.pano-widget.is-glow-mode .pano-scrubber-thumb {
  background: linear-gradient(90deg, rgba(237, 110, 169, 0.75), rgba(237, 110, 169, 1));
}

.pano-status {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pano-widget.is-glow-mode .pano-viewport {
  border-color: rgba(237, 110, 169, 0.38);
  box-shadow: 0 0 44px rgba(237, 110, 169, 0.14);
}

@media (max-width: 780px) {
  .pano-viewport {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .pano-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .pano-tabs {
    justify-content: center;
  }

  .pano-glow-toggle {
    justify-content: center;
  }
}

/* ── Responsive overrides ──────────────────────────────────── */

@media (max-width: 1120px) {
  .hero-home,
  .hero-schedule,
  .spotlight-grid,
  .visit-card,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .session-grid,
  .benefits-grid,
  .policy-grid,
  .schedule-board,
  .gallery-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-large {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
  }

  .gallery-grid-large .gallery-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-large .gallery-card:nth-child(1),
  .gallery-grid-large .gallery-card:nth-child(2),
  .gallery-grid-large .gallery-card:nth-child(3),
  .gallery-grid-large .gallery-card:nth-child(4),
  .gallery-grid-large .gallery-card:nth-child(5),
  .gallery-grid-large .gallery-card:nth-child(6),
  .gallery-grid-large .gallery-card:nth-child(7),
  .gallery-grid-large .gallery-card:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual-video {
    min-height: 0;
  }

  body[data-page="gallery"] .gallery-grid-large {
    column-count: 3;
  }
}

@media (min-width: 901px) {
  .castle-adventure-banner-mobile {
    display: none;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    min-width: 0;
  }

  .pkg-grid,
  .party-card-grid,
  .party-extra-grid,
  .pkg-shared-list,
  .policy-tiles,
  .rental-details-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-notice {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .times-row,
  .avail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mobile-copy {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-home-frame,
  .hero-visual,
  .hero-visual-video {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body[data-page="home"] .hero-featured-video-shell {
    display: none;
  }

  .hero-featured-video-shell-mobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 128px);
    border-radius: 24px;
    overflow: hidden;
    background: #000;
  }

  .hero-featured-video-shell-mobile iframe {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 128px);
    aspect-ratio: auto;
  }

  .hero-mobile-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 128px);
    object-fit: cover;
    opacity: 1;
    transition: opacity 320ms ease;
  }

  .hero-mobile-video.is-loop-fading {
    opacity: 0;
  }

  .hero-video-overlay-mobile,
  .hero-copy-overlay-mobile {
    display: block;
  }

.hero-copy-overlay-mobile {
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: opacity 500ms ease;
  }

  .hero-overlay-top-mobile.is-faded-out {
    opacity: 0;
  }

  .hero-overlay-top-mobile,
  .hero-overlay-bottom-mobile {
    width: min(calc(100% - 28px), 560px);
    max-width: calc(100% - 28px);
  }

  .hero-overlay-top-mobile {
    top: 28px;
  }

  .hero-overlay-bottom-mobile {
    bottom: 30px;
  }

  .hero-copy-overlay-mobile h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.98;
    max-width: 8ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy-overlay-mobile .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    color: var(--gold-soft);
  }

  .hero-copy-overlay-mobile .button {
    min-width: 0;
    padding: 0 14px;
    min-height: 44px;
    width: 100%;
    font-size: 0.8rem;
    flex: 1 1 0;
    max-width: 100%;
  }

  .hero-copy-overlay-mobile .hero-actions-home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .spotlight-grid,
  .spotlight-card,
  .spotlight-next-special,
  .next-special-text,
  .spotlight-next-special h2,
  .spotlight-next-special p,
  .panel-link,
  .big-link {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .visit-card-desktop {
    display: none;
  }

  .castle-adventure-banner-mobile {
    display: grid;
    margin-top: 0;
  }

  body[data-page="gallery"] .gallery-grid-large {
    column-count: 2;
  }
}

@media (max-width: 780px) {
  .times-row,
  .avail-grid {
    grid-template-columns: 1fr;
  }

  .party-feature-card {
    padding: 26px 22px;
  }

  .party-price-big,
  .pkg-price-amount {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .site-shell {
    width: min(calc(100% - 18px), var(--content-width));
    padding-top: 98px;
    overflow-x: clip;
  }

  body[data-page="home"] .site-shell {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    overflow-x: hidden;
  }

  .site-header {
    width: min(calc(100% - 18px), var(--content-width));
    top: 9px;
  }

  main,
  .section,
  .section-heading,
  .spotlight-grid,
  .session-grid,
  .event-stack,
  .media-grid,
  .visit-card,
  .gallery-grid,
  .gallery-grid-large,
  .policy-grid,
  .benefits-grid,
  .schedule-board {
    width: 100%;
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 14, 25, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  body[data-page="home"] .hero {
    padding-top: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 11vw, 4.4rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-video {
    min-height: 0;
  }

  .hero-home-frame {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(237, 110, 169, 0.12), transparent 34%),
      radial-gradient(circle at bottom left, rgba(129, 213, 255, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(14, 24, 40, 0.97), rgba(8, 15, 26, 0.95));
    box-shadow: var(--shadow);
  }

  body[data-page="home"] .hero-home-frame {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .hero-featured-video-shell {
    border-radius: 18px;
  }

  body[data-page="home"] .hero-featured-video-shell iframe {
    min-height: 220px;
  }

  .hero-featured-video-shell-mobile {
    min-height: calc(100vh - 112px);
    border-radius: 18px;
  }

  body[data-page="home"] .hero-featured-video-shell-mobile {
    min-height: 100svh;
    border-radius: 0;
  }

  .hero-featured-video-shell-mobile iframe {
    min-height: calc(100vh - 112px);
  }

  .hero-mobile-video {
    min-height: calc(100vh - 112px);
  }

  body[data-page="home"] .hero-mobile-video {
    min-height: 100svh;
  }

  body[data-page="home"] .hero-overlay-top-mobile {
    top: 118px;
  }

  body[data-page="home"] .hero-overlay-bottom-mobile {
    bottom: 34px;
  }

  body[data-page="home"] main > :not(.hero) {
    width: min(calc(100% - 18px), var(--content-width));
    max-width: min(calc(100% - 18px), var(--content-width));
  }

  .hero-actions-home {
    justify-content: center;
    margin-top: 14px;
    gap: 10px;
    width: 100%;
  }

  .hero-actions,
  .visit-links {
    justify-content: center;
  }

  .button {
    max-width: 100%;
  }

  .spotlight-card,
  .media-card,
  .benefit-card,
  .policy-card,
  .visit-card,
  .event-card {
    text-align: center;
  }

  .panel-link,
  .visit-sidebar,
  .live-links,
  .session-meta {
    justify-content: center;
  }

  .event-details {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .event-date,
  .event-group-tiles {
    justify-items: center;
    text-align: center;
  }

  .hero-card-main {
    inset: 0 0 92px 0;
  }

  .hero-card-secondary {
    display: none;
  }

  .hero-card-float {
    width: 176px;
    right: 6px;
  }

  .session-grid,
  .benefits-grid,
  .policy-grid,
  .schedule-board,
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .gallery-grid-large {
    display: grid;
    min-height: 0;
    padding: 0;
    gap: 14px;
  }

  body[data-page="gallery"] .gallery-grid-large {
    display: block;
    column-count: 1;
  }

  .gallery-grid-large .gallery-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-large .gallery-card {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

  .event-tile.event-card-has-media {
    grid-template-columns: 1fr;
  }

  .event-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-row p {
    align-items: center;
    gap: 4px;
  }

  .event-card h3 {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .event-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .event-details {
    gap: 8px;
  }

  .event-details-top {
    justify-content: flex-start;
    align-items: stretch;
  }

  .event-date-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spotlight-desc-row {
    flex-direction: column;
    align-items: stretch;
  }

  .spotlight-desc-row .spotlight-note {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }

  .spotlight-details-btn {
    align-self: flex-start;
  }

  .session-card {
    text-align: left;
  }

  .session-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .session-meta .meta-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
  }

  .session-meta .meta-line:only-child {
    grid-column: 1 / -1;
  }

  .session-meta .meta-line span,
  .session-meta .meta-line strong {
    display: block;
    width: 100%;
  }

  .session-meta .meta-line span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .session-meta .meta-line strong {
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
  }

  .event-date,
  .event-group-tiles,
  .event-card,
  .event-card-copy,
  .event-card-head,
  .event-card p,
  .event-card h3 {
    text-align: left;
    justify-items: stretch;
  }

  .event-date {
    display: grid;
    gap: 2px;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
  }

  .event-date .month,
  .event-date .day,
  .event-date .year {
    display: block;
  }

  .event-date .month,
  .event-date .day {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .event-date .year {
    font-size: 1rem;
  }

  .event-group-tiles {
    width: 100%;
  }

  .event-card-copy {
    gap: 14px;
  }

  .event-media {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .event-card-head h3 {
    width: 100%;
    text-align: center;
  }

  .event-card-copy > p,
  .event-card-copy .cal-desc,
  .event-card-copy .event-more,
  .event-card-copy .event-more p {
    text-align: center;
  }

  .event-card-copy .event-details,
  .event-card-copy .event-details-top {
    justify-content: center;
    align-items: stretch;
    margin-top: 2px;
  }

  .event-share-button {
    display: inline-flex;
    flex: 1 1 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .event-action-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 2px auto 0;
    width: 100%;
    max-width: 370px;
  }

  .next-special-action-row {
    justify-content: center;
    margin-top: 14px;
  }

  .event-details,
  .event-details-top {
    width: 100%;
  }

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

  .event-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .event-details .event-pill:only-child {
    grid-column: 1 / -1;
  }

  .spotlight-next-special {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .spotlight-next-special .panel-label {
    grid-column: 1;
    grid-row: 1;
    padding: 16px 18px 0;
  }

  .next-special-img-wrap {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 220px;
    margin: 12px auto 0;
    align-self: start;
  }

  .next-special-text {
    grid-column: 1;
    grid-row: 3;
    padding: 14px 18px 18px;
    text-align: center;
  }

  .spotlight-next-special h2 {
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .spotlight-next-special .spotlight-time,
  .spotlight-next-special .spotlight-note {
    margin-left: 0;
    margin-right: 0;
  }

  .featured-video-shell iframe {
    height: 100%;
    margin-top: 0;
  }

  .embedded-calendar-frame {
    min-height: 1380px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
  }

  .site-footer-brand {
    justify-self: start;
  }

  .footer-social {
    justify-self: center;
    gap: 10px;
  }

  #footerYear {
    justify-self: end;
    font-size: 0.72rem;
    text-align: right;
  }

  .site-footer-brand img {
    height: 28px;
  }

  .footer-social-link {
    width: 38px;
    height: 38px;
  }
}
