:root {
  --black: #030806;
  --ink: #eff8f2;
  --muted: rgba(239, 248, 242, 0.72);
  --soft: #e9efe4;
  --forest: #10281d;
  --leaf: #8fa65d;
  --water: #77d7e4;
  --water-deep: #1e6574;
  --gold: #e4b757;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #f7f4e8;
  --paper-ink: #172019;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--black);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1220px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  padding-top: max(0.35rem, env(safe-area-inset-top));
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.brand span {
  line-height: 1.05;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 12, 9, 0.34);
  backdrop-filter: blur(22px);
}

.site-nav a {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .book-now {
  color: #08100d;
  background: white;
  font-weight: 850;
}

.hero-screen {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade,
.creek-canvas {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: image-breathe 38s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(119, 215, 228, 0.32), transparent 20rem),
    linear-gradient(90deg, rgba(3, 8, 6, 0.92), rgba(3, 8, 6, 0.52) 48%, rgba(3, 8, 6, 0.18)),
    linear-gradient(0deg, rgba(3, 8, 6, 0.86), transparent 44%);
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(119, 215, 228, 0.18) 43%, transparent 48%),
    repeating-linear-gradient(112deg, transparent 0 52px, rgba(255, 255, 255, 0.055) 53px 55px, transparent 56px 112px);
  opacity: 0.78;
  animation: sheen 24s linear infinite;
  pointer-events: none;
}

.creek-canvas {
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 7.5rem;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9.5ch;
  margin-bottom: 1.1rem;
  font-size: clamp(4rem, 13vw, 11.6rem);
  line-height: 0.83;
  letter-spacing: -0.06em;
}

.hero-copy p:not(.kicker) {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #07100c;
  background: white;
  box-shadow: 0 16px 46px rgba(255, 255, 255, 0.2);
}

.button.glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.sound-pill {
  position: absolute;
  right: max(1rem, calc((100% - 1220px) / 2));
  bottom: 4rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(18px);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sound-pill:hover,
.sound-pill:focus-visible,
.sound-pill[aria-pressed="true"] {
  transform: translateY(-2px);
  border-color: rgba(119, 215, 228, 0.54);
  background: rgba(119, 215, 228, 0.16);
}

.sound-pill span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--water);
  box-shadow: 0 0 0 0 rgba(119, 215, 228, 0.64);
  animation: pulse 2.8s ease-in-out infinite;
}

.sound-pill[aria-pressed="true"] span {
  background: var(--gold);
  animation-duration: 1.7s;
}

.portal-section {
  --portal-progress: 0;
  position: relative;
  min-height: 172svh;
  background: #030806;
}

.portal-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.portal-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06);
  transform: scale(calc(1.18 - (var(--portal-progress) * 0.16))) translateY(calc(var(--portal-progress) * -3svh));
  transform-origin: 50% 55%;
}

.portal-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 58%, rgba(119, 215, 228, calc(0.14 + var(--portal-progress) * 0.2)), transparent 25rem),
    linear-gradient(180deg, rgba(3, 8, 6, 0.32), rgba(3, 8, 6, 0.86));
}

.portal-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, transparent calc(18% + var(--portal-progress) * 34%), rgba(3, 8, 6, 0.88) calc(36% + var(--portal-progress) * 28%)),
    linear-gradient(180deg, rgba(3, 8, 6, 0.7), transparent 32%, transparent 70%, rgba(3, 8, 6, 0.88));
  opacity: calc(0.98 - var(--portal-progress) * 0.42);
}

.portal-water {
  position: absolute;
  inset: auto -8% 0;
  z-index: 3;
  height: 54%;
  opacity: calc(0.32 + var(--portal-progress) * 0.52);
  transform: translateY(calc((1 - var(--portal-progress)) * 16svh));
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(119, 215, 228, 0.2) 39%, rgba(255, 255, 255, 0.4) 42%, transparent 49%),
    repeating-linear-gradient(104deg, transparent 0 46px, rgba(255, 255, 255, 0.12) 47px 49px, transparent 50px 92px);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: portal-water 9s linear infinite;
}

.portal-forest {
  position: absolute;
  top: -8%;
  bottom: -8%;
  z-index: 5;
  width: calc(47% - var(--portal-progress) * 28%);
  background:
    linear-gradient(90deg, rgba(3, 8, 6, 0.98), rgba(9, 34, 24, 0.9) 55%, rgba(9, 34, 24, 0.1)),
    repeating-linear-gradient(95deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 3px 32px);
  filter: blur(calc(var(--portal-progress) * 1.2px));
  transform: translateX(calc(var(--portal-progress) * -20%));
}

.portal-forest.right {
  right: 0;
  transform: translateX(calc(var(--portal-progress) * 20%)) scaleX(-1);
}

.portal-forest.left {
  left: 0;
}

.portal-copy {
  position: relative;
  z-index: 6;
  width: min(980px, calc(100% - 2rem));
  text-align: center;
  opacity: calc(0.18 + var(--portal-progress) * 0.82);
  transform: translateY(calc((1 - var(--portal-progress)) * 5rem)) scale(calc(0.94 + var(--portal-progress) * 0.06));
}

.portal-copy span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--water);
  font-weight: 900;
  text-transform: uppercase;
}

.portal-copy h2 {
  margin: 0 auto 1.2rem;
  max-width: 10.5ch;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.portal-copy p {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.cinema {
  position: relative;
  min-height: 165svh;
  background: #071812;
}

.cinema-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.stage-visual {
  position: relative;
  min-height: min(72svh, 720px);
  border-radius: 26px;
  overflow: hidden;
  background: #0a1712;
  box-shadow: var(--shadow);
}

.stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms ease, transform 900ms ease;
}

.stage-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.stage-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(119, 215, 228, 0.34), transparent 20rem),
    linear-gradient(0deg, rgba(3, 8, 6, 0.54), transparent 52%);
}

.stage-copy {
  position: relative;
  z-index: 2;
}

.stage-count {
  color: var(--water);
  font-weight: 900;
}

.stage-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.stage-copy p:not(.stage-count) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.scene {
  min-height: 48svh;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 38svh;
  color: transparent;
}

.scene span,
.scene h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.place-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(119, 215, 228, 0.22), transparent 24rem),
    linear-gradient(180deg, #f8f4e8 0%, #e7eddf 100%);
}

.place-intro,
.feature-ribbon,
.immersive-grid,
.prices-head,
.price-panel,
.fineprint,
.booking-section,
.site-footer {
  width: min(1220px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.place-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 0.5fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.place-intro h2,
.prices-head h2,
.booking-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.place-section .kicker,
.prices-section .kicker,
.booking-section .kicker {
  color: var(--water-deep);
}

.feature-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(23, 32, 25, 0.18);
  box-shadow: 0 18px 60px rgba(23, 32, 25, 0.14);
}

.feature-ribbon div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.feature-ribbon strong {
  display: block;
  font-size: 1.1rem;
}

.feature-ribbon span {
  color: rgba(23, 32, 25, 0.68);
}

.immersive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.immersive-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border-radius: 22px;
  color: white;
  background:
    linear-gradient(180deg, transparent, rgba(3, 8, 6, 0.82)),
    radial-gradient(circle at 30% 20%, rgba(119, 215, 228, 0.28), transparent 12rem),
    #123328;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.immersive-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(18, 51, 40, 0.28);
}

.immersive-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.immersive-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 0.7fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #071812;
}

.gallery-strip img {
  width: 100%;
  height: clamp(260px, 40vw, 620px);
  object-fit: cover;
  border-radius: 22px;
}

.prices-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--paper-ink);
  background: var(--paper);
}

.prices-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.56fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.prices-head p:last-child {
  color: rgba(23, 32, 25, 0.68);
  font-size: 1.1rem;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
}

.price-card,
.price-list {
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 60px rgba(23, 32, 25, 0.12);
}

.price-card {
  padding: 1.5rem;
}

.price-card span {
  color: var(--water-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 0.25rem 0 0.6rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.price-card p {
  color: rgba(23, 32, 25, 0.68);
}

.price-list {
  display: grid;
  padding: 0.6rem;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(23, 32, 25, 0.1);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list strong {
  white-space: nowrap;
}

.fineprint {
  margin-top: 1.2rem;
  color: rgba(23, 32, 25, 0.62);
  font-size: 0.95rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 0.55fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.booking-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.booking-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 0%, rgba(119, 215, 228, 0.22), transparent 16rem),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.booking-card a,
.booking-card address {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
}

.booking-card address {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a {
  color: white;
}

@keyframes image-breathe {
  from {
    transform: scale(1.05) translate3d(-0.6%, -0.3%, 0);
  }

  to {
    transform: scale(1.11) translate3d(0.6%, 0.3%, 0);
  }
}

@keyframes sheen {
  from {
    transform: translateX(-8%);
  }

  to {
    transform: translateX(8%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(119, 215, 228, 0.6);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(119, 215, 228, 0);
  }
}

@keyframes portal-water {
  from {
    transform: translateX(-5%) translateY(calc((1 - var(--portal-progress)) * 16svh));
  }

  to {
    transform: translateX(5%) translateY(calc((1 - var(--portal-progress)) * 16svh));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(68px + env(safe-area-inset-top));
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 2rem));
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

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

  .site-nav a {
    text-align: center;
  }

  .hero-copy {
    padding-top: 7.4rem;
    padding-bottom: 4.2rem;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(3.55rem, 17vw, 6.4rem);
  }

  .hero-copy p:not(.kicker) {
    max-width: 21rem;
    font-size: 1.08rem;
  }

  .portal-section {
    min-height: 118svh;
  }

  .portal-stage {
    min-height: 82svh;
  }

  .portal-stage::after {
    background:
      radial-gradient(ellipse at 50% 50%, transparent calc(32% + var(--portal-progress) * 32%), rgba(3, 8, 6, 0.82) calc(62% + var(--portal-progress) * 20%)),
      linear-gradient(180deg, rgba(3, 8, 6, 0.56), transparent 36%, transparent 68%, rgba(3, 8, 6, 0.88));
    opacity: calc(0.78 - var(--portal-progress) * 0.3);
  }

  .portal-forest {
    width: calc(38% - var(--portal-progress) * 22%);
  }

  .portal-copy {
    opacity: calc(0.42 + var(--portal-progress) * 0.58);
    transform: translateY(calc((1 - var(--portal-progress)) * 2.4rem)) scale(calc(0.97 + var(--portal-progress) * 0.03));
  }

  .portal-copy h2 {
    font-size: clamp(2.7rem, 13vw, 5.4rem);
  }

  .portal-copy p {
    max-width: 21rem;
    font-size: 1rem;
  }

  .sound-pill {
    display: none;
  }

  .cinema-stage,
  .place-intro,
  .prices-head,
  .price-panel,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .cinema {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .cinema-stage {
    position: relative;
    min-height: auto;
    gap: 1.25rem;
    padding: 0;
  }

  .scene {
    display: block;
    min-height: auto;
    width: min(1220px, calc(100% - 2rem));
    margin: 0.75rem auto 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
  }

  .scene span,
  .scene h3 {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
  }

  .scene span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 0.65rem;
    border-radius: 50%;
    color: #071812;
    background: var(--water);
    font-weight: 900;
  }

  .scene h3 {
    margin: 0;
    font-size: 1.15rem;
  }

  .scene.is-active {
    border-color: rgba(119, 215, 228, 0.55);
    background: rgba(119, 215, 228, 0.14);
  }

  .stage-visual {
    min-height: clamp(320px, 72vw, 520px);
    border-radius: 22px;
  }

  .stage-copy h2,
  .place-intro h2,
  .prices-head h2,
  .booking-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4.8rem);
    letter-spacing: -0.045em;
  }

  .place-section,
  .prices-section {
    padding: 4.5rem 0;
  }

  .booking-section {
    padding: 4.5rem 0 5rem;
  }

  .feature-ribbon,
  .immersive-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .brand span {
    max-width: 9rem;
  }

  .hero-copy {
    width: calc(100% - 1.25rem);
    padding-bottom: 3.5rem;
  }

  .kicker {
    font-size: 0.72rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .cinema-stage,
  .place-intro,
  .prices-head,
  .price-panel,
  .booking-section,
  .feature-ribbon,
  .immersive-grid {
    width: calc(100% - 1.25rem);
  }

  .stage-copy p:not(.stage-count),
  .prices-head p:last-child,
  .booking-section p {
    font-size: 1rem;
  }

  .feature-ribbon {
    border-radius: 18px;
  }

  .feature-ribbon div {
    padding: 1rem;
  }

  .immersive-grid article {
    min-height: 210px;
    border-radius: 18px;
  }

  .gallery-strip {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .gallery-strip img {
    height: 240px;
    border-radius: 18px;
  }

  .price-card,
  .price-list,
  .booking-card {
    border-radius: 20px;
  }

  .price-card strong {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .price-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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