@font-face {
  font-display: swap;
  font-family: "Cardo";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/cardo-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Cardo";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/cardo-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Cardo";
  font-style: italic;
  font-weight: 400;
  src: url("assets/fonts/cardo-italic-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: oblique 0deg 10deg;
  font-weight: 100 900;
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
}

:root {
  --base: #000;
  --base-2: #0e0e0e;
  --base-3: #141414;
  --gold: #d1bc89;
  --gold-soft: rgba(209, 188, 137, 0.72);
  --gold-muted: rgba(209, 188, 137, 0.52);
  --bronze: #6d533c;
  --bronze-light: #8c6c4d;
  --line: rgba(209, 188, 137, 0.26);
  --text: rgba(209, 188, 137, 0.92);
  --text-muted: rgba(209, 188, 137, 0.78);
  --shadow: rgba(0, 0, 0, 0.72);
  --max: 1120px;
  --ease: cubic-bezier(0.2, 0.72, 0.18, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--base);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% 12%, rgba(109, 83, 60, 0.14), transparent 34rem),
    linear-gradient(180deg, #000 0%, #000 37%, #0c0c0c 59%, #000 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(209, 188, 137, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(209, 188, 137, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 58%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 25%, rgba(209, 188, 137, 0.05), transparent 22rem),
    radial-gradient(circle at 84% 72%, rgba(151, 60, 32, 0.09), transparent 26rem);
  content: "";
  pointer-events: none;
}

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

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

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

select,
textarea {
  color: inherit;
}

.site-shell {
  overflow-x: clip;
}

main {
  width: 100%;
  overflow-x: clip;
}

.site-header {
  position: relative;
  z-index: 100;
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 22px 0 38px;
}

.nav {
  position: relative;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(112px, 160px) 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 560;
}

.nav > a:not(.brand),
.nav-menu {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  white-space: nowrap;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 120;
  display: grid;
  width: min(300px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(209, 188, 137, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.08), rgba(0, 0, 0, 0.94) 46%),
    #050505;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.nav-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--gold);
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
  transition:
    background 200ms var(--ease),
    color 200ms var(--ease);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(109, 83, 60, 0.34);
  color: #f0d696;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav > a:not(.brand)::after,
.nav-menu::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transition:
    left 260ms var(--ease),
    right 260ms var(--ease),
    opacity 260ms var(--ease);
}

.nav > a:not(.brand):hover::after,
.nav-menu:hover::after,
.nav > a:not(.brand):focus-visible::after,
.nav-menu:focus-within::after,
.nav-menu.is-open::after,
.nav > a.is-active::after,
.nav-menu:has(> a.is-active)::after {
  right: 18%;
  left: 18%;
  opacity: 1;
}

.brand {
  justify-self: center;
  width: clamp(108px, 11vw, 150px);
  filter: drop-shadow(0 14px 24px rgba(209, 188, 137, 0.08));
}

.brand img {
  width: 100%;
}

.chevron {
  display: inline-flex;
  width: 12px;
  color: var(--gold);
}

.chevron svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mobile-nav-toggle,
.mobile-nav-drawer,
.mobile-nav-subtoggle {
  display: none;
}

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

.hero {
  padding-bottom: clamp(82px, 11vw, 152px);
}

.hero-video-wrap {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(209, 188, 137, 0.5);
  border-radius: 18px;
  background: #030303;
  touch-action: pan-y;
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.8) inset,
    0 0 70px rgba(209, 188, 137, 0.08);
}

.hero-video-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 -100px 100px rgba(0, 0, 0, 0.28);
  content: "";
  pointer-events: none;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
}

.intro-copy {
  width: min(640px, 100%);
  margin: clamp(46px, 6vw, 70px) auto 0;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.intro-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.05rem);
}

.intro-copy p {
  margin: 0 auto 10px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: 2rem;
}

.ornament span {
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 188, 137, 0.72));
}

.ornament span:last-child {
  background: linear-gradient(90deg, rgba(209, 188, 137, 0.72), transparent);
}

.experiences {
  width: 100%;
  max-width: none;
  padding: clamp(78px, 10vw, 126px) max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(209, 188, 137, 0.08);
  background:
    radial-gradient(circle at 50% 22%, rgba(209, 188, 137, 0.07), transparent 22rem),
    linear-gradient(180deg, var(--base-2), #0a0a0a 72%, #050505);
}

.section-heading {
  width: min(710px, 100%);
  margin: 0 auto clamp(62px, 8vw, 96px);
  text-align: center;
}

.star {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.section-heading h2,
.newsletter h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p,
.newsletter p {
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.sensory-statement {
  position: relative;
  min-height: clamp(760px, 94vw, 1120px);
  padding-top: clamp(88px, 11vw, 138px);
  padding-bottom: clamp(34px, 5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(209, 188, 137, 0.08), transparent 22rem),
    linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 34%, #000 100%);
}

.sensory-statement::before,
.sensory-statement::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.sensory-statement::before {
  background:
    linear-gradient(180deg, #0d0d0d 0%, rgba(13, 13, 13, 0.88) 10%, rgba(13, 13, 13, 0) 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #000 100%);
}

.sensory-statement::after {
  background:
    radial-gradient(circle at 50% 36%, rgba(209, 188, 137, 0.08), transparent 30rem),
    linear-gradient(90deg, #0d0d0d 0%, rgba(13, 13, 13, 0) 18%, rgba(13, 13, 13, 0) 82%, #0d0d0d 100%);
}

.sensory-statement-heading {
  position: relative;
  z-index: 4;
  margin-bottom: clamp(22px, 4.4vw, 52px);
}

.sensory-statement-heading h2 {
  max-width: 760px;
  margin: 0 auto;
}

.sensory-statement-heading p {
  width: min(730px, 100%);
}

.immersive-showcase {
  position: relative;
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: clamp(480px, 62vw, 760px);
  margin-top: clamp(-8px, 2vw, 22px);
  margin-left: -50vw;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  pointer-events: none;
}

.immersive-showcase::before,
.immersive-showcase::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.immersive-showcase::before {
  background:
    linear-gradient(180deg, #0d0d0d 0%, rgba(13, 13, 13, 0.92) 8%, rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.18) 66%, #000 100%),
    linear-gradient(90deg, #0d0d0d 0%, rgba(13, 13, 13, 0.58) 8%, rgba(13, 13, 13, 0) 28%, rgba(13, 13, 13, 0) 72%, rgba(13, 13, 13, 0.58) 92%, #0d0d0d 100%);
}

.immersive-showcase::after {
  background:
    radial-gradient(ellipse at 50% 54%, transparent 0%, transparent 46%, rgba(0, 0, 0, 0.46) 76%, #000 100%),
    radial-gradient(circle at 28% 60%, rgba(209, 188, 137, 0.1), transparent 20rem),
    radial-gradient(circle at 72% 52%, rgba(126, 180, 202, 0.08), transparent 24rem);
  mix-blend-mode: multiply;
}

.immersive-showcase-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  max-width: none;
  opacity: 0.82;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) contrast(1.14) saturate(0.92);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.immersive-showcase-copy {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 12px));
  bottom: clamp(54px, 7vw, 92px);
  left: max(24px, calc((100vw - var(--max)) / 2 + 12px));
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: center;
  color: rgba(238, 218, 170, 0.74);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.immersive-showcase-copy span {
  position: relative;
}

.immersive-showcase-copy span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(209, 188, 137, 0.54);
  content: "";
  transform: translateY(-50%);
}

.newsletter {
  width: 100%;
  max-width: none;
  padding: clamp(76px, 10vw, 122px) 24px clamp(70px, 8vw, 110px);
  border-top: 1px solid rgba(209, 188, 137, 0.18);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(109, 83, 60, 0.24), transparent 34rem),
    #000;
}

.newsletter-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.newsletter p {
  width: min(650px, 100%);
}

.newsletter strong {
  display: block;
  margin-top: 2px;
  color: var(--gold);
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(209, 188, 137, 0.68);
  text-align: left;
}

.newsletter-form label {
  display: grid;
  gap: 8px;
}

.newsletter-form span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 560;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(209, 188, 137, 0.38);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.84);
  color: var(--gold);
  padding: 0 18px;
  font-size: 0.93rem;
  transition:
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background 240ms var(--ease);
}

.newsletter-form input::placeholder {
  color: rgba(209, 188, 137, 0.56);
}

.newsletter-form input:focus {
  border-color: rgba(209, 188, 137, 0.82);
  background: #030303;
  box-shadow: 0 0 0 4px rgba(209, 188, 137, 0.08);
}

.email-field {
  grid-column: 1 / -1;
  grid-template-columns: 150px 1fr;
  align-items: end;
}

.email-field span {
  padding-bottom: 12px;
}

.newsletter-form button {
  grid-column: 2;
  justify-self: end;
  min-width: 192px;
  height: 58px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bronze-light), var(--bronze));
  color: #050505;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 560;
  transition:
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease),
    filter 260ms var(--ease);
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  box-shadow: 0 18px 34px rgba(109, 83, 60, 0.28);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: right;
}

.booking-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(109, 83, 60, 0.18), transparent 32rem),
    #000;
}

.booking-hero {
  padding: clamp(20px, 3vw, 42px) 0 clamp(54px, 8vw, 92px);
  text-align: center;
}

.booking-hero-copy {
  width: min(780px, 100%);
  margin: 0 auto;
}

.page-mark,
.panel-kicker {
  margin: 0 0 14px;
  color: rgba(209, 188, 137, 0.66);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.booking-hero p:not(.page-mark) {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.booking-hero strong {
  color: var(--gold);
  font-weight: 620;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 3.8vw, 44px);
  align-items: start;
  padding-bottom: clamp(62px, 8vw, 104px);
}

.booking-panel,
.reservation-section {
  border: 1px solid rgba(209, 188, 137, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.055), rgba(0, 0, 0, 0.2) 42%),
    rgba(9, 9, 9, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.booking-panel {
  padding: clamp(24px, 4vw, 38px);
}

.booking-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.booking-panel h2,
.reservation-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.booking-panel p,
.reservation-copy p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.calendar-controls {
  display: inline-flex;
  gap: 10px;
  margin-top: 4px;
}

.calendar-nav {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(209, 188, 137, 0.4);
  border-radius: 999px;
  background: rgba(209, 188, 137, 0.05);
  color: var(--gold);
  cursor: pointer;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  border-color: rgba(209, 188, 137, 0.8);
  background: rgba(109, 83, 60, 0.38);
  transform: translateY(-1px);
}

.calendar-nav svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.calendar-status {
  margin: 34px 0 18px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-transform: capitalize;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: rgba(209, 188, 137, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid rgba(209, 188, 137, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(209, 188, 137, 0.44);
  cursor: default;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
}

.calendar-day span {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  font-weight: 560;
}

.calendar-day.is-outside {
  opacity: 0.28;
}

.calendar-day.is-available,
.calendar-day.is-limited {
  color: var(--gold);
  cursor: pointer;
}

.calendar-day.is-available {
  border-color: rgba(209, 188, 137, 0.46);
  background: rgba(209, 188, 137, 0.075);
}

.calendar-day.is-limited {
  border-color: rgba(140, 108, 77, 0.88);
  background: rgba(109, 83, 60, 0.3);
}

.calendar-day.is-available::after,
.calendar-day.is-limited::after {
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.calendar-day.is-available:hover,
.calendar-day.is-limited:hover,
.calendar-day:focus-visible {
  border-color: rgba(240, 214, 150, 0.9);
  background: rgba(209, 188, 137, 0.13);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  outline: none;
}

.calendar-day.is-selected {
  border-color: rgba(240, 214, 150, 0.98);
  background:
    radial-gradient(circle at 50% 18%, rgba(240, 214, 150, 0.28), transparent 62%),
    rgba(109, 83, 60, 0.56);
  color: #f0d696;
  box-shadow: 0 0 0 3px rgba(209, 188, 137, 0.08);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: rgba(209, 188, 137, 0.68);
  font-size: 0.86rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.legend-dot.is-available {
  background: var(--gold);
}

.legend-dot.is-limited {
  background: var(--bronze-light);
}

.legend-dot.is-unavailable {
  border: 1px solid rgba(209, 188, 137, 0.32);
  background: transparent;
}

.booking-summary {
  position: sticky;
  top: 24px;
}

.selected-date-card {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid rgba(209, 188, 137, 0.25);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.16), transparent 52%),
    rgba(0, 0, 0, 0.36);
}

.selected-date-card span,
.selected-date-card small,
.experience-facts dt {
  color: rgba(209, 188, 137, 0.6);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-date-card strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.selected-date-card small {
  display: block;
  margin-top: 14px;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.guest-count-field {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
}

.guest-count-field span {
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 620;
}

.guest-count-field select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(209, 188, 137, 0.34);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  color-scheme: dark;
  padding: 0 16px;
  font-size: 0.96rem;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.guest-count-field select:focus {
  border-color: rgba(209, 188, 137, 0.84);
  background: #030303;
  box-shadow: 0 0 0 4px rgba(209, 188, 137, 0.08);
}

.guest-count-field small {
  color: rgba(209, 188, 137, 0.58);
  font-size: 0.82rem;
  line-height: 1.42;
}

.experience-facts {
  display: grid;
  gap: 16px;
  margin: 0;
}

.experience-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(209, 188, 137, 0.12);
}

.experience-facts dd {
  margin: 0;
  color: var(--gold);
  text-align: right;
}

.reservation-cta,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  border-radius: 8px;
  text-decoration: none;
}

.reservation-cta {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, var(--bronze-light), var(--bronze));
  color: #050505;
  font-size: 1.02rem;
  font-weight: 650;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    filter 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.reservation-cta:not(.is-disabled):hover,
.reservation-cta:not(.is-disabled):focus-visible {
  box-shadow: 0 18px 34px rgba(109, 83, 60, 0.28);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.reservation-cta.is-disabled {
  cursor: not-allowed;
  opacity: 0.46;
  pointer-events: none;
}

.reserve-helper {
  margin: 12px 0 0;
  color: rgba(209, 188, 137, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

.checkout-hero {
  padding-bottom: clamp(42px, 7vw, 78px);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(24px, 3.8vw, 44px);
  align-items: start;
  padding-bottom: clamp(72px, 10vw, 124px);
}

.checkout-order {
  position: sticky;
  top: 24px;
}

.back-link {
  width: 100%;
  border: 1px solid rgba(209, 188, 137, 0.38);
  background: rgba(209, 188, 137, 0.05);
  color: var(--gold);
  font-weight: 560;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.back-link:hover,
.back-link:focus-visible {
  border-color: rgba(209, 188, 137, 0.78);
  background: rgba(109, 83, 60, 0.28);
  transform: translateY(-1px);
}

.reservation-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto clamp(72px, 10vw, 124px);
  padding: clamp(24px, 4vw, 42px);
}

.reservation-copy {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.reservation-form label {
  display: grid;
  gap: 8px;
}

.reservation-form span {
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 560;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(209, 188, 137, 0.34);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  padding: 0 16px;
  font-size: 0.95rem;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.reservation-form input,
.reservation-form select {
  height: 48px;
}

.reservation-form textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(209, 188, 137, 0.48);
}

.reservation-form select {
  color-scheme: dark;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(209, 188, 137, 0.84);
  background: #030303;
  box-shadow: 0 0 0 4px rgba(209, 188, 137, 0.08);
}

.full-field {
  grid-column: 1 / -1;
}

.form-section-title {
  display: grid;
  gap: 8px;
  padding-bottom: 6px;
}

.form-section-title .panel-kicker {
  margin-bottom: 0;
}

.form-section-title h3,
.additional-guest-card h4 {
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.form-section-title p:not(.panel-kicker) {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.choice-field {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(209, 188, 137, 0.24);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
}

.choice-field legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 620;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-options label {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  min-height: 46px;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(209, 188, 137, 0.28);
  border-radius: 8px;
  background: rgba(209, 188, 137, 0.05);
  cursor: pointer;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.choice-options label:has(input:checked) {
  border-color: rgba(240, 214, 150, 0.86);
  background: rgba(109, 83, 60, 0.34);
}

.reservation-form .choice-options input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--bronze-light);
}

.choice-options span {
  font-weight: 560;
}

.choice-field p {
  margin: 0;
  color: rgba(209, 188, 137, 0.7);
  font-size: 0.9rem;
}

.pairing-field {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(209, 188, 137, 0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.08), transparent 52%),
    rgba(0, 0, 0, 0.34);
}

.pairing-field legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 620;
}

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

.pairing-card {
  position: relative;
  display: grid !important;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(209, 188, 137, 0.25);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.06), rgba(0, 0, 0, 0.18) 52%),
    rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.pairing-card:hover,
.pairing-card:focus-within {
  border-color: rgba(240, 214, 150, 0.68);
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.1), rgba(0, 0, 0, 0.2) 52%),
    rgba(0, 0, 0, 0.48);
  transform: translateY(-1px);
}

.pairing-card:has(input:checked) {
  border-color: rgba(240, 214, 150, 0.9);
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.18), transparent 48%),
    linear-gradient(145deg, rgba(109, 83, 60, 0.34), rgba(0, 0, 0, 0.3) 56%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(240, 214, 150, 0.08) inset;
}

.reservation-form .pairing-card input[type="radio"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  accent-color: var(--bronze-light);
}

.pairing-title {
  padding-right: 30px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.pairing-description {
  color: rgba(209, 188, 137, 0.72);
  font-size: 0.91rem;
  font-weight: 400;
  line-height: 1.48;
}

.additional-guests {
  display: grid;
  gap: 20px;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(209, 188, 137, 0.18);
}

.additional-guests[hidden] {
  display: none;
}

.additional-guests-list {
  display: grid;
  gap: 18px;
}

.additional-guest-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid rgba(209, 188, 137, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.08), transparent 50%),
    rgba(0, 0, 0, 0.28);
}

.additional-guest-card h4 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.reservation-form button {
  grid-column: 2;
  justify-self: end;
  min-width: 270px;
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bronze-light), var(--bronze));
  color: #050505;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 620;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    filter 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.reservation-form button:not(:disabled):hover,
.reservation-form button:not(:disabled):focus-visible {
  box-shadow: 0 18px 34px rgba(109, 83, 60, 0.28);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.reservation-form button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.booking-note {
  text-align: right;
}

.terms-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(209, 188, 137, 0.18);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.arrival-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(240, 96, 76, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(240, 96, 76, 0.12), rgba(0, 0, 0, 0.24)),
    rgba(28, 4, 2, 0.42);
}

.reservation-form .arrival-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #c55243;
}

.arrival-row span {
  color: #f0a08f;
  font-size: 0.95rem;
  font-weight: 520;
  line-height: 1.5;
}

.arrival-row strong {
  color: #ff6e5c;
  font-weight: 800;
}

.reservation-form .terms-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--bronze-light);
}

.terms-row span {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-footer {
  margin-top: -8px;
  text-align: right;
}

.form-footer a {
  color: var(--gold);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.checkout-note {
  text-align: right;
}

.checkout-note.is-error {
  color: #f0a98f;
}

.terms-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(109, 83, 60, 0.18), transparent 34rem),
    linear-gradient(180deg, #000 0%, #070707 58%, #000 100%);
}

.terms-hero {
  padding: clamp(28px, 5vw, 72px) 0 clamp(34px, 6vw, 74px);
  text-align: center;
}

.terms-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.terms-hero p:not(.page-mark) {
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.terms-content {
  width: min(900px, calc(100vw - 48px));
  padding-bottom: clamp(78px, 10vw, 128px);
}

.terms-intro,
.terms-closing {
  margin: 0;
  border: 1px solid rgba(209, 188, 137, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.12), transparent 52%),
    rgba(0, 0, 0, 0.34);
  color: var(--text-muted);
  padding: clamp(20px, 3vw, 28px);
  font-size: 1.02rem;
}

.terms-content article {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3.4vw, 34px);
  border-top: 1px solid rgba(209, 188, 137, 0.18);
}

.terms-content h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.terms-content p {
  margin: 18px 0 0;
  color: rgba(209, 188, 137, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.terms-content strong {
  color: #ead6a1;
  font-weight: 680;
}

.terms-closing {
  margin-top: clamp(34px, 5vw, 58px);
  color: var(--gold);
}

.experience-detail-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(109, 83, 60, 0.2), transparent 34rem),
    linear-gradient(180deg, #000 0%, #060606 58%, #000 100%);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  min-height: clamp(560px, 78vh, 760px);
  padding: clamp(28px, 5vw, 64px) 0 clamp(74px, 10vw, 132px);
}

.detail-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(209, 188, 137, 0.42);
  border-radius: 16px;
  background: #040404;
  box-shadow:
    0 38px 92px rgba(0, 0, 0, 0.76),
    0 0 70px rgba(209, 188, 137, 0.08);
}

.detail-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 16% 10%, rgba(209, 188, 137, 0.18), transparent 22rem);
  content: "";
  pointer-events: none;
}

.detail-hero-media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mountain-sea-page .site-header,
.dynamic-experience-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 140;
}

.mountain-sea-hero,
.dynamic-hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: clamp(660px, 86vh, 900px);
  margin-top: 0;
  padding: clamp(190px, 18vw, 250px) max(24px, calc((100vw - var(--max)) / 2))
    clamp(76px, 9vw, 116px);
  overflow: hidden;
}

.mountain-sea-hero .detail-hero-media,
.dynamic-hero .detail-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mountain-sea-hero .detail-hero-media::after,
.dynamic-hero .detail-hero-media::after {
  background:
    radial-gradient(circle at 12% 62%, rgba(209, 188, 137, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.16) 43%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 40%, rgba(0, 0, 0, 0.48) 100%);
}

.mountain-sea-hero .detail-hero-media video,
.dynamic-hero .detail-hero-media img,
.dynamic-hero .detail-hero-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
}

.mountain-sea-hero .detail-hero-copy,
.dynamic-hero .detail-hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(650px, 100%);
  padding-bottom: clamp(28px, 5vw, 72px);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.78);
}

.mountain-sea-hero .detail-hero-copy h1,
.dynamic-hero .detail-hero-copy h1 {
  font-size: clamp(3.7rem, 8.4vw, 8rem);
}

.mountain-sea-hero .detail-hero-copy p,
.dynamic-hero .detail-hero-copy p {
  color: rgba(229, 214, 177, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.detail-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 7.8vw, 7.1rem);
}

.detail-hero-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.detail-actions.is-centered {
  justify-content: center;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 650;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    filter 220ms var(--ease),
    transform 220ms var(--ease);
}

.primary-link {
  border: 0;
  background: linear-gradient(180deg, var(--bronze-light), var(--bronze));
  color: #050505;
}

.secondary-link {
  border: 1px solid rgba(209, 188, 137, 0.42);
  background: rgba(209, 188, 137, 0.04);
  color: var(--gold);
}

.primary-link:hover,
.primary-link:focus-visible {
  box-shadow: 0 18px 34px rgba(109, 83, 60, 0.28);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: rgba(240, 214, 150, 0.82);
  background: rgba(109, 83, 60, 0.28);
  transform: translateY(-1px);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(209, 188, 137, 0.22);
  border-radius: 14px;
  background: rgba(209, 188, 137, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.detail-facts div {
  min-height: 142px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.12), transparent 56%),
    rgba(8, 8, 8, 0.94);
}

.detail-facts span {
  display: block;
  color: rgba(209, 188, 137, 0.6);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.08;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: clamp(26px, 4.4vw, 58px);
  align-items: start;
  padding: clamp(82px, 10vw, 132px) 0 0;
}

.detail-copy h2,
.detail-cta h2,
.private-request h2 {
  font-size: clamp(2.55rem, 5.4vw, 5rem);
}

.detail-copy p,
.detail-note p,
.flow-item p,
.concept-list p,
.detail-cta p,
.private-request p {
  color: var(--text-muted);
}

.detail-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.detail-note {
  border: 1px solid rgba(209, 188, 137, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.08), rgba(0, 0, 0, 0.34) 48%),
    rgba(8, 8, 8, 0.88);
  padding: clamp(22px, 3vw, 32px);
}

.detail-note h3,
.flow-item h3,
.concept-list h3 {
  font-size: clamp(1.75rem, 3vw, 2.42rem);
}

.experience-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  padding: clamp(72px, 9vw, 118px) 0 0;
}

.flow-item,
.concept-list article {
  border: 1px solid rgba(209, 188, 137, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.36);
  padding: clamp(22px, 3vw, 30px);
}

.flow-item span {
  display: block;
  margin-bottom: 34px;
  color: rgba(209, 188, 137, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.journey-map {
  position: relative;
  width: 100%;
  max-width: none;
  margin: clamp(70px, 9vw, 116px) auto 0;
  padding: clamp(14px, 2vw, 28px) 0 clamp(14px, 2vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(209, 188, 137, 0.055), transparent 50rem),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.58) 18%, rgba(0, 0, 0, 0.58) 82%, transparent 100%);
}

.journey-map::before,
.journey-map::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.journey-map::before {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0) 86%, #000 100%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 8%, rgba(0, 0, 0, 0) 92%, #000 100%);
}

.journey-map::after {
  background:
    radial-gradient(circle at 16% 35%, rgba(209, 188, 137, 0.08), transparent 18rem),
    radial-gradient(circle at 76% 68%, rgba(56, 103, 116, 0.1), transparent 22rem);
  mix-blend-mode: screen;
}

.journey-map-frame {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 24px));
  margin: 0 auto;
  aspect-ratio: 1774 / 887;
  isolation: isolate;
}

.journey-map-frame picture,
.journey-map-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.journey-map-frame img {
  max-width: none;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.03);
}

.template-loading {
  display: grid;
  min-height: 52vh;
  place-items: center;
  text-align: center;
}

.template-loading img {
  width: min(150px, 38vw);
  margin-bottom: 18px;
}

.template-loading h1 {
  max-width: 760px;
  color: var(--gold);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.template-loading p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.dynamic-experience-page .detail-hero-media:empty {
  display: none;
}

.dynamic-experience-page .detail-hero-media img,
.dynamic-experience-page .detail-hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-journey {
  padding-top: clamp(60px, 9vw, 120px);
}

.template-media-frame {
  position: relative;
  width: min(1180px, 100%);
  margin: clamp(32px, 5vw, 60px) auto 0;
  overflow: visible;
  background: radial-gradient(circle at 50% 50%, rgba(209, 188, 137, 0.08), transparent 58%);
  isolation: isolate;
}

.template-media-frame:empty {
  display: none;
}

.template-media-frame img,
.template-media-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.62));
}

.template-media-frame picture {
  position: relative;
  z-index: 1;
  display: block;
}

.template-media-frame video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  mask-image: radial-gradient(ellipse at center, #000 68%, transparent 100%);
}

.template-media-frame.has-template-hotspots::after {
  position: absolute;
  inset: -9% -4%;
  z-index: 2;
  background:
    radial-gradient(circle at 22% 22%, rgba(209, 188, 137, 0.08), transparent 22rem),
    radial-gradient(circle at 78% 68%, rgba(74, 113, 124, 0.11), transparent 26rem);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.template-hotspot-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.template-hotspot {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(44px, 4.4vw, 78px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 243, 205, 0.96) 0 6%, rgba(209, 188, 137, 0.62) 17%, rgba(209, 188, 137, 0.18) 43%, transparent 72%);
  box-shadow:
    0 0 20px rgba(255, 238, 190, 0.6),
    0 0 54px rgba(209, 188, 137, 0.34);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.68);
}

.template-media-frame.is-hotspot-visible .template-hotspot-layer.is-sequential-flash .template-hotspot {
  animation: journeyTemplateFlash 980ms var(--ease) var(--delay) both;
}

.template-media-frame.is-hotspot-visible .template-hotspot-layer.is-soft-pulse .template-hotspot {
  animation: journeyTemplatePulse 2.8s ease-in-out var(--delay) infinite;
}

.template-media-frame.is-hotspot-visible .template-hotspot-layer.is-none .template-hotspot {
  opacity: 0.52;
  transform: translate(-50%, -50%) scale(0.94);
}

@keyframes journeyTemplateFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58);
  }

  22% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(1);
  }

  48% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scale(1.64);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.28);
  }
}

@keyframes journeyTemplatePulse {
  0%,
  100% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.84);
  }

  50% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.journey-stop-light {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  width: clamp(48px, 4.8vw, 82px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 238, 190, 0.95) 0 7%, rgba(209, 188, 137, 0.55) 18%, rgba(209, 188, 137, 0.16) 44%, transparent 72%);
  box-shadow:
    0 0 22px rgba(240, 214, 150, 0.66),
    0 0 54px rgba(209, 188, 137, 0.34);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.65);
}

.journey-map.is-visible .journey-stop-light {
  animation: journeyStopFlash 900ms var(--ease) var(--delay) both;
}

.stop-1 {
  --x: 14.2%;
  --y: 8.4%;
  --delay: 320ms;
}

.stop-2 {
  --x: 17%;
  --y: 68.5%;
  --delay: 760ms;
}

.stop-3 {
  --x: 32.7%;
  --y: 14.8%;
  --delay: 1200ms;
}

.stop-4 {
  --x: 48.3%;
  --y: 44.3%;
  --delay: 1640ms;
}

.stop-5 {
  --x: 64.3%;
  --y: 32.4%;
  --delay: 2080ms;
}

.stop-6 {
  --x: 74.8%;
  --y: 62.1%;
  --delay: 2520ms;
}

.stop-7 {
  --x: 93.8%;
  --y: 65.4%;
  --delay: 2960ms;
}

@keyframes journeyStopFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.64);
  }

  22% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }

  46% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.65);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.35);
  }
}

.concept-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  padding: clamp(74px, 9vw, 118px) 0 0;
}

.detail-cta {
  margin-top: clamp(78px, 10vw, 132px);
  margin-bottom: clamp(74px, 10vw, 122px);
  padding: clamp(34px, 6vw, 66px);
  border: 1px solid rgba(209, 188, 137, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(209, 188, 137, 0.14), transparent 28rem),
    linear-gradient(145deg, rgba(109, 83, 60, 0.26), rgba(0, 0, 0, 0.58) 52%),
    #060606;
  text-align: center;
}

.detail-cta p {
  width: min(660px, 100%);
  margin: 20px auto 0;
}

.detail-cta > .primary-link {
  margin-top: 30px;
}

.private-intro {
  padding: clamp(96px, 12vw, 164px) 0 0;
}

.private-intro .detail-copy {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.private-intro .detail-copy p {
  margin-right: auto;
  margin-left: auto;
}

.private-request {
  margin-top: clamp(78px, 10vw, 132px);
  margin-bottom: clamp(74px, 10vw, 122px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(209, 188, 137, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(209, 188, 137, 0.055), rgba(0, 0, 0, 0.2) 42%),
    rgba(9, 9, 9, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.payment-return {
  display: grid;
  justify-items: center;
  min-height: 58vh;
  padding: clamp(72px, 11vw, 132px) 0 clamp(78px, 10vw, 124px);
  text-align: center;
}

.payment-return img {
  width: 142px;
  margin-bottom: 32px;
}

.payment-return h1 {
  width: min(780px, 100%);
  font-size: clamp(3rem, 7vw, 6rem);
}

.payment-return p {
  width: min(650px, 100%);
  margin: 24px auto 0;
  color: var(--text-muted);
}

body.modal-open {
  overflow: hidden;
}

.dietary-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.dietary-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dietary-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.dietary-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(700px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid rgba(209, 188, 137, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(209, 188, 137, 0.08), rgba(0, 0, 0, 0.96) 44%),
    #060606;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.78);
  padding: clamp(20px, 3vw, 32px);
}

.dietary-modal-panel h2 {
  padding-right: 42px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.dietary-modal-panel p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.46;
}

.dietary-modal-panel p:first-of-type {
  color: var(--gold);
  font-weight: 620;
}

.dietary-modal-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.dietary-modal-panel li {
  position: relative;
  padding-left: 20px;
  color: rgba(209, 188, 137, 0.78);
  font-size: 0.92rem;
  line-height: 1.36;
}

.dietary-modal-panel li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bronze-light);
  content: "";
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(209, 188, 137, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(240, 214, 150, 0.86);
  background: rgba(109, 83, 60, 0.4);
  transform: translateY(-1px);
}

.modal-confirm-row {
  margin-top: 16px;
  padding: 14px;
}

.modal-confirm-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--bronze-light);
}

.modal-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bronze-light), var(--bronze));
  color: #050505;
  cursor: pointer;
  font-weight: 650;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    filter 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.modal-confirm:hover,
.modal-confirm:focus-visible {
  box-shadow: 0 18px 34px rgba(109, 83, 60, 0.28);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  justify-items: center;
  min-height: 310px;
  padding: 42px 24px 88px;
  border-top: 1px solid rgba(209, 188, 137, 0.28);
  background: #000;
  color: var(--gold);
  text-align: center;
}

.site-footer img {
  width: 136px;
  margin-bottom: 26px;
}

.site-footer a {
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(209, 188, 137, 0.48);
  border-radius: 999px;
  background: rgba(209, 188, 137, 0.07);
  color: var(--gold);
  text-decoration: none;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  border-color: rgba(240, 214, 150, 0.82);
  background: rgba(109, 83, 60, 0.42);
  color: #f0d696;
  box-shadow: 0 10px 24px rgba(109, 83, 60, 0.24);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:nth-child(2) {
  transition-delay: 110ms;
}

.reveal-card:nth-child(3) {
  transition-delay: 220ms;
}

.immersive-showcase.reveal-card {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(58px) scale(0.985);
  transition:
    opacity 960ms var(--ease),
    filter 960ms var(--ease),
    transform 960ms var(--ease);
  will-change: opacity, filter, transform;
}

.immersive-showcase.reveal-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-card,
  .immersive-showcase.reveal-card {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .journey-map.is-visible .journey-stop-light {
    animation: none;
  }

  .template-hotspot-layer .template-hotspot {
    animation: none;
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.92);
  }
}

@media (max-width: 900px) {
  .site-header {
    width: min(100%, calc(100vw - 32px));
    padding: 20px 0 36px;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px 20px;
  }

  .brand {
    grid-row: 1;
    grid-column: 2;
    width: 118px;
  }

  .nav > a:not(.brand),
  .nav-menu {
    font-size: 0.84rem;
  }

  .nav > a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .nav > a:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: end;
  }

  .nav-menu {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
  }

  .nav > a:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
  }

  .sensory-statement {
    min-height: clamp(720px, 110vw, 960px);
  }

  .immersive-showcase {
    height: clamp(460px, 72vw, 660px);
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    min-height: 0;
  }

  .detail-hero-media {
    order: 2;
  }

  .detail-hero-copy {
    order: 1;
    text-align: center;
  }

  .detail-hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .detail-actions {
    justify-content: center;
  }

  .detail-hero-media video {
    aspect-ratio: 16 / 10;
  }

  .mountain-sea-page .mountain-sea-hero,
  .dynamic-experience-page .dynamic-hero {
    min-height: clamp(660px, 88vh, 860px);
    padding-top: clamp(170px, 20vw, 220px);
  }

  .mountain-sea-hero .detail-hero-media,
  .dynamic-hero .detail-hero-media {
    order: initial;
  }

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

  .booking-summary,
  .checkout-order {
    position: static;
  }
}

@media (max-width: 760px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    position: relative;
    z-index: 220;
    width: min(100%, calc(100vw - 30px));
    padding: 16px 0 30px;
  }

  .site-header.reveal,
  .site-header.reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .mountain-sea-page .site-header {
    position: absolute;
  }

  .nav {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 0;
    align-items: center;
    min-height: 76px;
  }

  .nav::before {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: block;
    background: rgba(0, 0, 0, 0.72);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms var(--ease);
  }

  .nav.is-drawer-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a:not(.brand),
  .nav-menu {
    display: none;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 112px;
  }

  .brand img {
    width: 100%;
    margin: 0 auto;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 230;
    grid-column: 3;
    grid-row: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(209, 188, 137, 0.34);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.36);
    color: var(--gold);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease);
  }

  .mobile-nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .mobile-nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav.is-drawer-open .mobile-nav-toggle span:first-child {
    transform: rotate(42deg);
  }

  .nav.is-drawer-open .mobile-nav-toggle span:last-child {
    transform: rotate(-42deg);
  }

  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: grid;
    width: min(340px, calc(100vw - 34px));
    min-height: 100dvh;
    align-content: start;
    gap: 10px;
    padding: 98px 22px 28px;
    border-left: 1px solid rgba(209, 188, 137, 0.28);
    background:
      radial-gradient(circle at 100% 0%, rgba(209, 188, 137, 0.16), transparent 18rem),
      linear-gradient(145deg, rgba(109, 83, 60, 0.22), rgba(0, 0, 0, 0.98) 42%),
      #030303;
    box-shadow: -28px 0 72px rgba(0, 0, 0, 0.64);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition:
      opacity 260ms var(--ease),
      transform 320ms var(--ease);
  }

  .nav.is-drawer-open .mobile-nav-drawer {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav-drawer a {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid rgba(209, 188, 137, 0.14);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 620;
  }

  .mobile-nav-group {
    display: grid;
    border-bottom: 1px solid rgba(209, 188, 137, 0.14);
  }

  .mobile-nav-subtoggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    padding: 0;
    font: inherit;
    font-size: 1rem;
    font-weight: 620;
    text-align: left;
  }

  .mobile-nav-subtoggle svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 220ms var(--ease);
  }

  .mobile-nav-subtoggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-nav-submenu {
    display: grid;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 260ms var(--ease),
      opacity 220ms var(--ease);
  }

  .mobile-nav-group.is-open .mobile-nav-submenu {
    max-height: 112px;
    opacity: 1;
  }

  .mobile-nav-submenu a {
    min-height: 44px;
    border-bottom: 0;
    padding-left: 14px;
    color: rgba(209, 188, 137, 0.76);
    font-size: 0.9rem;
    font-weight: 560;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: min(100%, calc(100vw - 30px));
    padding: 16px 0 30px;
  }

  .nav {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 112px;
    margin: 0;
  }

  .brand img {
    width: 100%;
    margin: 0 auto;
  }

  .nav > a:not(.brand),
  .nav-menu {
    display: none;
  }

  .section {
    width: min(100%, calc(100vw - 30px));
  }

  .hero-video-wrap {
    border-radius: 12px;
  }

  .intro-copy {
    max-width: 100%;
    margin-top: 34px;
  }

  .intro-copy h1 {
    font-size: 2.35rem;
  }

  .experiences,
  .newsletter {
    width: 100vw;
    max-width: 100vw;
    padding-right: 15px;
    padding-left: 15px;
  }

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

  .section-heading h2,
  .newsletter h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .sensory-statement {
    min-height: 720px;
    padding-top: 74px;
    padding-bottom: 0;
  }

  .sensory-statement-heading {
    margin-bottom: 18px;
  }

  .immersive-showcase {
    height: 520px;
    margin-top: -4px;
  }

  .immersive-showcase-video {
    inset: -8%;
    width: 116%;
    height: 116%;
    object-position: 50% 56%;
  }

  .immersive-showcase-copy {
    bottom: 48px;
    gap: 8px 18px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .immersive-showcase-copy span:not(:last-child)::after {
    right: -12px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .booking-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .booking-hero p:not(.page-mark) {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .booking-shell,
  .checkout-shell,
  .reservation-section {
    width: min(100%, calc(100vw - 30px));
  }

  .detail-hero {
    padding-top: 20px;
    padding-bottom: 58px;
  }

  .mountain-sea-page .mountain-sea-hero,
  .dynamic-experience-page .dynamic-hero {
    min-height: 720px;
    padding-top: 150px;
    padding-bottom: 58px;
  }

  .detail-hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .detail-actions,
  .detail-actions.is-centered {
    display: grid;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .detail-facts,
  .experience-flow,
  .concept-list {
    grid-template-columns: 1fr;
  }

  .detail-facts div {
    min-height: 116px;
    padding: 22px;
  }

  .detail-grid,
  .experience-flow,
  .concept-list {
    padding-top: 58px;
  }

  .journey-map {
    margin-top: 58px;
    padding: 0 0 12px;
  }

  .journey-map-frame {
    width: min(520px, calc(100vw - 20px));
    aspect-ratio: 941 / 1672;
  }

  .journey-stop-light {
    width: clamp(44px, 15vw, 68px);
  }

  .template-hotspot {
    width: clamp(38px, 13vw, 62px);
  }

  .stop-1 {
    --x: 26.5%;
    --y: 4.6%;
  }

  .stop-2 {
    --x: 22%;
    --y: 28.4%;
  }

  .stop-3 {
    --x: 55.7%;
    --y: 9.4%;
  }

  .stop-4 {
    --x: 48.3%;
    --y: 38.5%;
  }

  .stop-5 {
    --x: 68.1%;
    --y: 44.4%;
  }

  .stop-6 {
    --x: 30.8%;
    --y: 69.1%;
  }

  .stop-7 {
    --x: 75.4%;
    --y: 74.9%;
  }

  .detail-cta,
  .private-request {
    width: min(100%, calc(100vw - 30px));
    border-radius: 12px;
    padding: 24px 16px;
  }

  .booking-panel,
  .reservation-section {
    border-radius: 12px;
    padding: 22px 16px;
  }

  .booking-panel-head {
    display: grid;
  }

  .calendar-day {
    min-height: 48px;
    border-radius: 8px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-legend {
    gap: 10px 14px;
  }

  .selected-date-card strong {
    font-size: 1.65rem;
  }

  .experience-facts div {
    display: grid;
  }

  .experience-facts dd {
    text-align: left;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

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

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

  .full-field,
  .reservation-form button {
    grid-column: auto;
  }

  .reservation-form button {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .booking-note {
    text-align: center;
  }

  .form-footer,
  .checkout-note {
    text-align: center;
  }

  .email-field {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .email-field span {
    padding-bottom: 0;
  }

  .newsletter-form button {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .form-note {
    text-align: center;
  }
}
