:root {
  --ink: #0d0d0f;
  --paper: #fffaf7;
  --white: #ffffff;
  --muted: rgba(13, 13, 15, 0.66);
  --line: rgba(13, 13, 15, 0.12);
  --red: #b80010;
  --pink: #f3a1b8;
  --violet: #8b79e9;
  --green: #0f5c4d;
  --gold: #d7b56d;
  --spark: #fff4bf;
  --shadow: 0 30px 90px rgba(10, 8, 12, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  overflow: hidden;
}

.transition-layer {
  position: fixed;
  inset: 0;
  z-index: 26;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0), rgba(184, 0, 16, 0.62), rgba(13, 13, 15, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transform: translateY(100%) scaleY(0.86);
}

body.is-page-changing .transition-layer {
  animation: pageCurtain 820ms cubic-bezier(0.76, 0, 0.24, 1);
}

.magic-layer {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.magic-layer span {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  transform: translate3d(0, 26px, 0) rotate(45deg) scale(0.4);
  animation: sparkleDrift 8s linear infinite;
}

.magic-layer span::before,
.magic-layer span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 191, 0.95), transparent);
  transform: translate(-50%, -50%);
}

.magic-layer span::before {
  width: 26px;
  height: 2px;
}

.magic-layer span::after {
  width: 2px;
  height: 26px;
}

.magic-layer span:nth-child(1) { left: 7%; top: 18%; animation-delay: -1.2s; }
.magic-layer span:nth-child(2) { left: 18%; top: 74%; animation-delay: -4.4s; animation-duration: 9.5s; }
.magic-layer span:nth-child(3) { left: 28%; top: 38%; animation-delay: -7s; }
.magic-layer span:nth-child(4) { left: 42%; top: 16%; animation-delay: -2.7s; animation-duration: 10s; }
.magic-layer span:nth-child(5) { left: 52%; top: 66%; animation-delay: -5.2s; }
.magic-layer span:nth-child(6) { left: 63%; top: 26%; animation-delay: -8.1s; animation-duration: 9s; }
.magic-layer span:nth-child(7) { left: 72%; top: 82%; animation-delay: -3.6s; }
.magic-layer span:nth-child(8) { left: 84%; top: 42%; animation-delay: -6.5s; animation-duration: 11s; }
.magic-layer span:nth-child(9) { left: 92%; top: 18%; animation-delay: -9.2s; }
.magic-layer span:nth-child(10) { left: 12%; top: 48%; animation-delay: -10.4s; animation-duration: 10.5s; }
.magic-layer span:nth-child(11) { left: 36%; top: 86%; animation-delay: -11.3s; }
.magic-layer span:nth-child(12) { left: 78%; top: 10%; animation-delay: -12.6s; animation-duration: 9.8s; }

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
}

.brand,
.nav-links,
.hero-actions,
.booking-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  font-size: 15px;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.nav-links a,
.nav-button,
.header-cta,
.button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-button:hover,
.header-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
}

button {
  font: inherit;
}

.nav-button,
.header-cta,
.button {
  cursor: pointer;
}

.nav-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.snap-pages {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.snap-pages::-webkit-scrollbar {
  display: none;
}

.page {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  align-items: center;
  padding: 92px clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
}

.page {
  isolation: isolate;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(110deg, transparent 0 64px, rgba(255, 244, 191, 0.16) 65px 67px, transparent 68px 132px);
  opacity: 0;
  transform: translateX(-120%);
}

.page.is-active::after {
  animation: sectionSweep 1180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page .hero-photo-wrap img,
.page .page-photo,
.page .feature-card,
.page .split-photos img,
.page .package-cards article,
.page .visit-photo,
.page .booking-collage img,
.page .process-steps article {
  transition:
    opacity 820ms ease,
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 820ms ease;
}

.page:not(.is-active) .hero-photo-wrap img,
.page:not(.is-active) .page-photo,
.page:not(.is-active) .feature-card,
.page:not(.is-active) .split-photos img,
.page:not(.is-active) .package-cards article,
.page:not(.is-active) .visit-photo,
.page:not(.is-active) .booking-collage img,
.page:not(.is-active) .process-steps article {
  opacity: 0.34;
  transform: translateY(42px) scale(0.93) rotateX(5deg);
  filter: saturate(0.68) contrast(0.88) blur(1px);
}

.page.is-active .feature-card:nth-child(2),
.page.is-active .split-photos img:nth-child(2),
.page.is-active .package-cards article:nth-child(2),
.page.is-active .booking-collage img:nth-child(2),
.page.is-active .process-steps article:nth-child(2) {
  transition-delay: 90ms;
}

.page.is-active .feature-card:nth-child(3),
.page.is-active .split-photos img:nth-child(3),
.page.is-active .package-cards article:nth-child(3),
.page.is-active .booking-collage img:nth-child(3),
.page.is-active .process-steps article:nth-child(3) {
  transition-delay: 170ms;
}

.page.is-active .split-photos img:nth-child(4),
.page.is-active .booking-collage img:nth-child(4) {
  transition-delay: 240ms;
}

.page.is-active .reveal.is-visible {
  animation: textRise 980ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page.is-active .hero-photo-wrap img,
.page.is-active .page-photo {
  animation: heroSettle 1180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page.is-active .feature-card,
.page.is-active .split-photos img,
.page.is-active .package-cards article,
.page.is-active .visit-photo,
.page.is-active .booking-collage img,
.page.is-active .process-steps article {
  animation: photoSettle 1050ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.snap-pages.is-snapping .page.is-active h1,
.snap-pages.is-snapping .page.is-active h2 {
  animation: titleSnap 980ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.snap-pages.is-snapping .page:not(.is-active) {
  transform: scale(0.985);
}

.snap-pages.is-snapping .page {
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes pageCurtain {
  0% {
    opacity: 0;
    transform: translateY(100%) scaleY(0.65);
  }

  36% {
    opacity: 0.78;
    transform: translateY(0) scaleY(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%) scaleY(0.7);
  }
}

@keyframes sectionSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes textRise {
  0% {
    opacity: 0;
    transform: translateY(54px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  0% {
    opacity: 0.22;
    transform: translateX(70px) scale(1.08);
    filter: saturate(0.72) contrast(0.9) blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1) contrast(1);
  }
}

@keyframes photoSettle {
  0% {
    opacity: 0;
    transform: translateY(58px) scale(0.88) rotateX(7deg);
    filter: saturate(0.68) contrast(0.86) blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1) contrast(1);
  }
}

@keyframes titleSnap {
  0% {
    opacity: 0;
    transform: translateY(44px);
  }

  52% {
    opacity: 1;
    transform: translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkleDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0) rotate(45deg) scale(0.35);
  }

  12% {
    opacity: 0.85;
  }

  34% {
    opacity: 0.25;
    transform: translate3d(18px, -32px, 0) rotate(135deg) scale(1);
  }

  56% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translate3d(-18px, -118px, 0) rotate(225deg) scale(0.42);
  }
}

@keyframes buttonGleam {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(430%) skewX(-18deg);
  }
}

@keyframes cardGleam {
  0%,
  64% {
    opacity: 0;
    transform: translateX(-45%) rotate(6deg);
  }

  74% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(72%) rotate(6deg);
  }
}

@media (max-height: 820px) and (min-width: 921px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    padding: 10px 16px;
  }

  .header-cta {
    padding: 10px 17px;
  }

  .page {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(52px, 8.4vw, 112px);
  }

  h2 {
    font-size: clamp(38px, 5.2vw, 68px);
  }

  .hero-content p:not(.eyebrow),
  .showcase-copy p:not(.eyebrow),
  .session-copy > p,
  .booking-copy > p:not(.eyebrow),
  .experience-panel > p {
    margin-top: 18px;
    font-size: clamp(15px, 1.25vw, 19px);
  }

  .hero-actions,
  .booking-actions {
    margin-top: 24px;
  }

  .button {
    min-height: 46px;
  }

  .hero-note {
    bottom: 24px;
    padding: 18px;
  }

  .showcase-grid {
    grid-auto-rows: minmax(150px, 24vh);
  }

  .split-photos {
    grid-template-rows: repeat(2, minmax(150px, 25vh));
  }

  .process-steps {
    margin-top: 28px;
  }

  .process-steps article {
    min-height: 170px;
    padding: 24px;
  }

  .booking {
    gap: clamp(24px, 4vw, 54px);
  }

  .booking-collage {
    grid-template-rows: repeat(2, minmax(128px, 22vh));
    gap: 10px;
  }
}

.page-photo,
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-photo {
  object-fit: cover;
}

.hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background:
    radial-gradient(circle at 72% 48%, rgba(184, 0, 16, 0.34), transparent 34%),
    linear-gradient(90deg, #120000 0 42%, #700007 42% 100%);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/glam-red-full.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.62;
}

.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: min(58vw, 860px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.04) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 42%);
}

.shade.lavender {
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.86), rgba(42, 25, 79, 0.62) 58%, rgba(103, 82, 202, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 46%);
}

.hero {
  color: var(--white);
}

.hero-content,
.showcase-copy,
.session-copy,
.experience-panel,
.booking-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2 {
  width: 100%;
  max-width: 980px;
  font-size: clamp(56px, 10vw, 142px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.94;
}

h3 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
}

.hero-content p:not(.eyebrow),
.showcase-copy p:not(.eyebrow),
.session-copy > p,
.booking-copy > p:not(.eyebrow),
.experience-panel > p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.booking-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.booking-actions {
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  overflow: hidden;
}

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

.button::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 191, 0.74), transparent);
  opacity: 0;
  transform: skewX(-18deg);
}

.button:hover::before,
.button:focus-visible::before {
  animation: buttonGleam 780ms ease;
}

.social-link {
  width: 52px;
  padding: 0;
  flex: 0 0 52px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.primary {
  background: var(--white);
  color: var(--ink);
}

.secondary {
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  z-index: 2;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  backdrop-filter: blur(20px);
}

.hero-note span,
.feature-card span,
.session-list span,
.process-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.15;
}

.showcase {
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(34px, 5.4vw, 80px);
  background:
    linear-gradient(90deg, #0d0d0f 0 34%, #230407 34% 63%, #f8d6dd 63%);
  color: var(--white);
}

.showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(210px, 30vh);
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
  isolation: isolate;
  cursor: zoom-in;
}

.feature-card::before,
.package-cards article::before,
.visit-photo::before,
.booking-collage img {
  backface-visibility: hidden;
}

.feature-card::before,
.package-cards article::before,
.visit-photo::before {
  content: "";
  position: absolute;
  inset: -35% -60%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 244, 191, 0.55), transparent 62%);
  opacity: 0;
  transform: translateX(-45%) rotate(6deg);
}

.page.is-active .feature-card::before,
.page.is-active .package-cards article::before,
.page.is-active .visit-photo::before {
  animation: cardGleam 4.8s ease-in-out infinite;
}

.page.is-active .feature-card:nth-child(2)::before,
.page.is-active .package-cards article:nth-child(2)::before {
  animation-delay: 1s;
}

.page.is-active .feature-card:nth-child(3)::before,
.page.is-active .package-cards article:nth-child(3)::before {
  animation-delay: 2s;
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #140407;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.feature-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}

.feature-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
}

.feature-card strong {
  display: block;
  max-width: 310px;
  color: var(--white);
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.12;
}

.red-card img {
  object-position: 52% 42%;
}

.split-page {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 78px);
  background:
    linear-gradient(90deg, #f59eb8, #fff7fb 48%, #f6efe7);
}

.split-photos {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(210px, 32vh));
  gap: 12px;
}

.split-photos img,
.booking-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(13, 13, 15, 0.92);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.page-photo,
.hero-photo-wrap img {
  cursor: zoom-in;
}

.split-photos img:first-child {
  grid-row: span 2;
  object-position: 50% 32%;
}

.split-photos img:nth-child(2) {
  object-position: 50% 30%;
}

.split-photos img:nth-child(3),
.split-photos img:nth-child(4) {
  object-position: 50% 26%;
}

.session-copy {
  color: var(--ink);
}

.session-copy .eyebrow {
  color: var(--red);
}

.session-copy > p {
  color: var(--muted);
}

.session-list {
  margin-top: 34px;
  border-top: 1px solid rgba(13, 13, 15, 0.14);
}

.session-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: clamp(18px, 3vh, 30px) 0;
  border-bottom: 1px solid rgba(13, 13, 15, 0.14);
}

.session-list span {
  color: var(--red);
}

.session-list p,
.process-steps p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.experience {
  color: var(--white);
}

.experience .page-photo {
  object-position: 62% 50%;
  filter: saturate(1.05) contrast(1.02);
}

.experience-panel {
  width: min(1000px, 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.18);
}

.process-steps article {
  min-height: 220px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(9, 8, 13, 0.72);
  backdrop-filter: blur(18px);
}

.process-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.package-page {
  grid-template-columns: minmax(320px, 0.68fr) minmax(640px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.36) 38%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, #fff8f9 0%, #f5adc2 48%, #2a090e 100%);
  color: var(--ink);
}

.package-copy,
.package-cards,
.visit-copy,
.visit-photo {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.package-copy .eyebrow,
.visit-copy .eyebrow {
  color: var(--red);
}

.package-copy p:not(.eyebrow),
.visit-copy > p {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.package-copy .button {
  margin-top: 30px;
  border-color: rgba(13, 13, 15, 0.12);
  background: var(--ink);
  color: var(--white);
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  background: rgba(13, 13, 15, 0.12);
  box-shadow: var(--shadow);
}

.package-cards article {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 244, 0.92)),
    var(--white);
}

.package-cards article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 214, 221, 0.96)),
    var(--white);
}

.package-cards span,
.visit-details span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-cards strong {
  display: block;
  margin-bottom: 14px;
  max-width: 100%;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

.package-cards p {
  color: rgba(13, 13, 15, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.visit-page {
  grid-template-columns: minmax(360px, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(135deg, #0d0d0f 0 38%, #f8d6dd 38% 70%, #fffaf7 70% 100%);
  color: var(--ink);
}

.visit-photo {
  position: relative;
  width: 100%;
  height: min(66vh, 620px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.visit-details {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: rgba(13, 13, 15, 0.14);
}

.visit-details article {
  padding: clamp(18px, 2.6vw, 26px);
  background: rgba(255, 255, 255, 0.88);
}

.visit-details p {
  color: rgba(13, 13, 15, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.visit-actions .primary {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(13, 13, 15, 0.12);
}

.visit-actions .secondary {
  border-color: rgba(13, 13, 15, 0.12);
  background: var(--white);
  color: var(--ink);
}

.booking {
  grid-template-columns: minmax(320px, 0.74fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 18%, rgba(243, 161, 184, 0.2), transparent 34%),
    linear-gradient(135deg, #0d0d0f 0%, #260306 48%, #9d000d 100%);
  color: var(--white);
}

.booking-collage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: repeat(2, minmax(150px, 24vh));
  gap: 10px;
  width: min(100%, 760px);
  justify-self: end;
}

.booking-collage img:first-child {
  grid-row: span 2;
  object-position: 50% 26%;
}

.booking-collage img:nth-child(2) {
  object-position: 50% 32%;
}

.booking-collage img:nth-child(3) {
  object-position: 52% 36%;
}

.booking-collage img:nth-child(4) {
  object-position: 50% 32%;
}

.booking-copy .eyebrow {
  color: var(--gold);
}

.booking-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1;
}

.booking-copy > p:not(.eyebrow) {
  display: inline-flex;
  max-width: 520px;
  align-items: center;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.image-missing img {
  display: none;
}

.image-missing {
  position: relative;
  background: linear-gradient(135deg, #161616, #b80010);
}

.image-missing::before {
  content: "Add photo";
  position: absolute;
  inset: auto 16px 16px auto;
  z-index: 3;
  padding: 8px 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.photo-modal,
.pricing-modal,
.booking-modal {
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
}

.scroll-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 28;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.scroll-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: height 280ms ease, background 280ms ease, transform 280ms ease;
}

.scroll-dots button.is-active {
  height: 34px;
  background: var(--white);
  transform: translateY(-1px);
}

.photo-modal::backdrop,
.pricing-modal::backdrop,
.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.photo-modal {
  overflow: visible;
  text-align: center;
}

.photo-modal img {
  display: block;
  width: auto;
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 104px);
  margin: 0 auto;
  object-fit: contain;
  box-shadow: var(--shadow);
  background: #080808;
}

.photo-modal .modal-photo {
  opacity: 1;
  visibility: visible;
}

.photo-modal p {
  max-width: min(760px, 100%);
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.photo-close {
  top: -54px;
  right: 0;
}

.pricing-modal {
  overflow: auto;
}

.pricing-shell,
.booking-shell {
  position: relative;
  padding: clamp(22px, 4vw, 44px);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-shell {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.58), rgba(65, 5, 13, 0.38) 48%, rgba(10, 10, 12, 0.58)),
    linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.5)),
    url("assets/pic1.jpg") left center / cover no-repeat,
    url("assets/pic2.jpg") right center / cover no-repeat,
    linear-gradient(135deg, rgba(13, 13, 15, 0.98) 0%, rgba(52, 4, 10, 0.98) 48%, rgba(151, 0, 13, 0.98) 100%);
}

.booking-shell {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.64), rgba(65, 5, 13, 0.5) 48%, rgba(10, 10, 12, 0.58)),
    linear-gradient(180deg, rgba(8, 8, 10, 0.12), rgba(8, 8, 10, 0.5)),
    url("assets/pic2.jpg") center center / cover no-repeat,
    linear-gradient(135deg, rgba(13, 13, 15, 0.98) 0%, rgba(52, 4, 10, 0.98) 48%, rgba(151, 0, 13, 0.98) 100%);
}

.pricing-shell::before,
.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 72px, rgba(255, 244, 191, 0.08) 73px 75px, transparent 76px 140px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.9;
}

.pricing-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
  opacity: 0.45;
}

.booking-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
  opacity: 0.45;
}

.pricing-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 244, 191, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.14));
  z-index: 0;
}

.pricing-header,
.booking-modal-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-header img,
.booking-modal-header img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.pricing-header .eyebrow,
.booking-modal-header .eyebrow,
.pricing-section h3,
.price-card span {
  color: var(--gold);
}

.pricing-header h2,
.booking-modal-header h2 {
  font-size: clamp(34px, 5vw, 68px);
  color: var(--white);
}

.pricing-section {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.price-card {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(18, 13, 14, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px) saturate(1.06);
}

.price-card.wide {
  grid-column: 1 / -1;
}

.price-card span {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 36px);
}

.price-card p,
.rate-grid p,
.reminder-grid li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.pricing-section h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

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

.rate-grid > div,
.reminder-grid > div {
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.rate-grid h4,
.reminder-grid h4 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.1;
}

.rate-grid p + p {
  margin-top: 5px;
}

.reminder-grid ul {
  margin: 0;
  padding-left: 20px;
}

.reminder-grid li + li {
  margin-top: 7px;
}

.booking-modal {
  width: min(920px, calc(100vw - 32px));
  overflow: auto;
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.booking-form input,
.booking-form select {
  min-height: 46px;
  padding: 0 13px;
}

.booking-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px;
}

.booking-form-wide {
  grid-column: 1 / -1;
}

.booking-form-note,
.booking-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.booking-submit {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.18);
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.booking-status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 32;
  color: var(--white);
  font-family: inherit;
}

.chat-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.chat-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.chat-unread {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding-inline: 5px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.chat-unread[hidden] {
  display: none;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(13, 13, 15, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(184, 0, 16, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header strong {
  font-size: 17px;
  line-height: 1.1;
}

.chat-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.chat-close {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.chat-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(184, 0, 16, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.02);
}

.chat-compose {
  display: grid;
  gap: 10px;
}

.chat-compose[hidden] {
  display: none;
}

.chat-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-log {
  display: grid;
  min-height: 130px;
  max-height: 210px;
  overflow-y: auto;
  gap: 8px;
  padding: 4px 4px 8px;
  scrollbar-width: thin;
}

.chat-bubble {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.38;
}

.chat-staff {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
}

.chat-staff img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.chat-message {
  display: block;
}

.chat-meta {
  display: block;
  margin-top: 5px;
  color: rgba(17, 17, 19, 0.48);
  font-size: 10px;
  line-height: 1;
  text-align: right;
}

.chat-bubble.staff .chat-meta {
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.chat-bubble.visitor {
  justify-self: end;
  background: var(--white);
  border-bottom-right-radius: 5px;
}

.chat-bubble.visitor.is-failed {
  border: 1px solid rgba(184, 0, 16, 0.35);
  background: rgba(255, 238, 240, 0.96);
}

.chat-bubble.visitor.is-failed .chat-meta {
  color: var(--red);
  font-weight: 850;
}

.chat-bubble.staff {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.chat-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.chat-form input {
  min-height: 40px;
  padding: 0 12px;
}

.chat-form textarea {
  min-height: 76px;
  resize: vertical;
  padding: 12px;
}

.chat-compose button[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin-top: 0;
}

.chat-compose button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-session {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-session[hidden] {
  display: none;
}

.chat-session-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.chat-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
}

.chat-session-message {
  position: relative;
}

.chat-session-message span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.security-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-holder {
  position: fixed;
  inset: auto 0 0 auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.chat-form .chat-session-message textarea {
  min-height: 44px;
  max-height: 104px;
  padding: 12px 14px;
  border-radius: 22px;
  resize: none;
}

.chat-send,
.chat-end {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.chat-send {
  width: 66px;
  min-height: 44px;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
}

.chat-end {
  width: fit-content;
  min-height: 28px;
  margin-inline: auto;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.chat-end:hover,
.chat-end:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.chat-send:disabled,
.chat-end:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-status {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

@media (max-height: 820px) and (min-width: 921px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .page {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(52px, 8.4vw, 112px);
  }

  h2 {
    font-size: clamp(38px, 5.2vw, 68px);
  }

  .hero-content p:not(.eyebrow),
  .showcase-copy p:not(.eyebrow),
  .session-copy > p,
  .booking-copy > p:not(.eyebrow),
  .experience-panel > p {
    margin-top: 18px;
    font-size: clamp(15px, 1.25vw, 19px);
  }

  .hero-actions,
  .booking-actions {
    margin-top: 24px;
  }

  .button {
    min-height: 46px;
  }

  .showcase-grid {
    grid-auto-rows: minmax(150px, 24vh);
  }

  .split-photos {
    grid-template-rows: repeat(2, minmax(150px, 25vh));
  }

  .process-steps {
    margin-top: 28px;
  }

  .process-steps article {
    min-height: 170px;
    padding: 24px;
  }

  .booking {
    gap: clamp(24px, 4vw, 54px);
  }

  .package-cards article {
    min-height: 230px;
  }

  .visit-photo {
    height: min(60vh, 520px);
  }

  .booking-collage {
    grid-template-rows: repeat(2, minmax(138px, 25vh));
    gap: 10px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .snap-pages {
    scroll-snap-type: y proximity;
  }

  .nav-links {
    display: none;
  }

  .page {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    align-items: start;
    overflow: hidden;
    padding-top: 94px;
    padding-bottom: 34px;
  }

  .hero-photo-wrap {
    justify-content: center;
    opacity: 0.88;
  }

  .hero-photo-wrap img {
    width: min(92vw, 640px);
  }

  .showcase,
  .split-page,
  .package-page,
  .visit-page,
  .booking {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase {
    background: linear-gradient(180deg, #0d0d0f 0%, #230407 58%, #0d0d0f 100%);
  }

  .split-page {
    background: linear-gradient(180deg, #fff7fb 0%, #f59eb8 48%, #f6efe7 100%);
  }

  .package-page {
    background: linear-gradient(180deg, #fff8f9 0%, #f3a1b8 58%, #2a090e 100%);
  }

  .visit-page {
    background: linear-gradient(180deg, #fffaf7 0%, #f8d6dd 58%, #0d0d0f 100%);
  }

  .page:not(.is-active) .hero-photo-wrap img,
  .page:not(.is-active) .page-photo,
  .page:not(.is-active) .feature-card,
  .page:not(.is-active) .split-photos img,
  .page:not(.is-active) .package-cards article,
  .page:not(.is-active) .visit-photo,
  .page:not(.is-active) .booking-collage img,
  .page:not(.is-active) .process-steps article {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .showcase-grid,
  .split-photos,
  .package-cards,
  .booking-collage {
    width: 100%;
    min-width: 0;
    grid-auto-rows: minmax(180px, 26vh);
  }

  .package-cards {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .package-cards article,
  .package-cards article:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .visit-photo {
    height: min(54vh, 480px);
  }

  .feature-card img {
    object-fit: cover;
    background: #140407;
  }

  .experience-panel,
  .booking-copy,
  .session-copy,
  .showcase-copy,
  .package-copy,
  .visit-copy {
    width: 100%;
  }

  .scroll-dots {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    display: none;
  }

  .header-cta {
    padding-inline: 15px;
    min-height: 44px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.04;
  }

  .page {
    padding-inline: 18px;
    padding-top: 84px;
    padding-bottom: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-photo-wrap img {
    width: min(112vw, 520px);
    opacity: 0.72;
  }

  .shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 54%);
  }

  .hero-content p:not(.eyebrow),
  .showcase-copy p:not(.eyebrow),
  .session-copy > p,
  .booking-copy > p:not(.eyebrow),
  .experience-panel > p {
    font-size: 16px;
  }

  .showcase-grid,
  .split-photos,
  .booking-collage {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 4px;
    gap: 12px;
  }

  .feature-card,
  .split-photos img,
  .booking-collage img {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    scroll-snap-align: none;
  }

  .feature-card.large,
  .split-photos img:first-child,
  .booking-collage img:first-child {
    grid-row: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 24px;
  }

  .booking-actions,
  .hero-actions,
  .visit-actions {
    align-items: stretch;
    width: 100%;
  }

  .booking-actions > .button,
  .hero-actions .button,
  .visit-actions .button {
    flex: 1 1 100%;
  }

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

  .booking-actions .social-link {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .booking {
    gap: 18px;
    padding-bottom: 96px;
  }

  .booking-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-auto-rows: auto;
    gap: 8px;
    margin-top: 0;
  }

  .booking-collage img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }

  .booking-collage img:nth-child(n + 3) {
    display: none;
  }

  .booking-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.03;
  }

  .booking-copy > p:not(.eyebrow) {
    display: block;
    max-width: 100%;
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .booking-actions {
    margin-top: 20px;
    padding-right: 0;
  }

  .booking-actions > .button:first-child {
    min-height: 48px;
  }

  .process-steps article {
    min-height: 0;
    padding: 20px;
  }

  .session-list article {
    grid-template-columns: 1fr;
  }

  .photo-close {
    top: 12px;
    right: 12px;
  }

  .photo-modal img {
    max-height: calc(100vh - 92px);
  }

  .pricing-modal,
  .booking-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    overscroll-behavior: contain;
  }

  .pricing-shell,
  .booking-shell {
    padding: 18px;
  }

  .pricing-shell {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.62), rgba(65, 5, 13, 0.5)),
      url("assets/pic1.jpg") center top / cover no-repeat,
      url("assets/pic2.jpg") center bottom / cover no-repeat,
      linear-gradient(160deg, rgba(13, 13, 15, 0.98) 0%, rgba(55, 4, 10, 0.98) 54%, rgba(142, 0, 12, 0.98) 100%);
  }

  .booking-shell {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.66), rgba(65, 5, 13, 0.54)),
      url("assets/pic2.jpg") center top / cover no-repeat,
      linear-gradient(160deg, rgba(13, 13, 15, 0.98) 0%, rgba(55, 4, 10, 0.98) 54%, rgba(142, 0, 12, 0.98) 100%);
  }

  .pricing-modal .modal-close,
  .booking-modal .modal-close {
    position: sticky;
    top: 0;
    right: auto;
    z-index: 8;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 14px;
    min-height: 38px;
    padding-inline: 13px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
  }

  .pricing-header,
  .booking-modal-header {
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .pricing-header,
  .booking-modal-header,
  .booking-form-grid,
  .packages,
  .rate-grid,
  .reminder-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header img,
  .booking-modal-header img {
    width: 58px;
    height: 58px;
  }

  .pricing-header h2,
  .booking-modal-header h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .price-card span {
    font-size: clamp(24px, 7vw, 32px);
  }

  .price-card strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .price-card,
  .rate-grid > div,
  .reminder-grid > div {
    padding: 16px;
  }

  .price-card p,
  .rate-grid p,
  .reminder-grid li {
    font-size: 14px;
  }

  .pricing-section h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .booking-form input,
  .booking-form select {
    min-height: 44px;
  }

  .booking-form textarea {
    min-height: 96px;
  }

  .booking-submit {
    width: 100%;
  }

  .chat-widget {
    right: 14px;
    bottom: 78px;
  }

  .chat-toggle {
    min-height: 46px;
    padding-inline: 14px;
  }

  .chat-panel {
    width: calc(100vw - 28px);
    max-height: min(620px, calc(100svh - 86px));
    overflow-y: auto;
  }

  .chat-fields {
    grid-template-columns: 1fr;
  }

  .chat-log {
    min-height: 104px;
    max-height: 168px;
  }

  .chat-form {
    padding: 12px;
  }

  .chat-form textarea {
    min-height: 70px;
  }
}

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

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

  .page:not(.is-active) .hero-photo-wrap img,
  .page:not(.is-active) .page-photo,
  .page:not(.is-active) .feature-card,
  .page:not(.is-active) .split-photos img,
  .page:not(.is-active) .package-cards article,
  .page:not(.is-active) .visit-photo,
  .page:not(.is-active) .booking-collage img,
  .page:not(.is-active) .process-steps article {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .page::after {
    display: none;
  }

  .magic-layer,
  .feature-card::before,
  .package-cards article::before,
  .visit-photo::before,
  .button::before {
    display: none;
  }
}

/* ============================================================
   ENHANCED ANIMATION SYSTEM — TAP Studio
   Layered motion design cohesive with the red/gold/dark palette
   ============================================================ */

/* ---------- Scroll progress bar ---------- */
.tap-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: progressShimmer 2.4s linear infinite;
  transition: width 120ms linear;
  pointer-events: none;
}

@keyframes progressShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}



/* ---------- Hero section — pulse aura on photo ---------- */
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 72% 50%, rgba(184, 0, 16, 0.36), transparent 52%);
  animation: heroAuraPulse 4.2s ease-in-out infinite;
}

@keyframes heroAuraPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.92; transform: scale(1.06); }
}

/* ---------- Eyebrow line-draw underline ---------- */
.eyebrow {
  position: relative;
  display: inline-block;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .eyebrow::after,
.reveal.is-visible .eyebrow::after {
  width: 100%;
}

/* ---------- Staggered word-reveal for h1 / h2 ---------- */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms ease;
}

.page.is-active .word-inner,
.reveal.is-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered delay for each word */
.word-wrap:nth-child(1)  .word-inner { transition-delay: 60ms; }
.word-wrap:nth-child(2)  .word-inner { transition-delay: 130ms; }
.word-wrap:nth-child(3)  .word-inner { transition-delay: 200ms; }
.word-wrap:nth-child(4)  .word-inner { transition-delay: 270ms; }
.word-wrap:nth-child(5)  .word-inner { transition-delay: 340ms; }
.word-wrap:nth-child(6)  .word-inner { transition-delay: 410ms; }
.word-wrap:nth-child(7)  .word-inner { transition-delay: 480ms; }
.word-wrap:nth-child(8)  .word-inner { transition-delay: 550ms; }
.word-wrap:nth-child(9)  .word-inner { transition-delay: 620ms; }
.word-wrap:nth-child(10) .word-inner { transition-delay: 690ms; }

/* ---------- Session list — staggered reveal ---------- */
.session-list article {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .session-list article:nth-child(1) { opacity: 1; transform: none; transition-delay: 280ms; }
.page.is-active .session-list article:nth-child(2) { opacity: 1; transform: none; transition-delay: 420ms; }
.page.is-active .session-list article:nth-child(3) { opacity: 1; transform: none; transition-delay: 560ms; }

/* Session list hover accent line */
.session-list article {
  position: relative;
}

.session-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  opacity: 0.7;
  transition: width 280ms ease;
}

.session-list article:hover::before {
  width: 3px;
}

.session-list article:hover {
  background: rgba(184, 0, 16, 0.03);
}

/* ---------- Process steps — pop-up stagger ---------- */
.process-steps article {
  position: relative;
  overflow: hidden;
}

.process-steps article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 0, 16, 0.12), transparent);
  opacity: 0;
  transition: opacity 340ms ease;
}

.process-steps article:hover::after {
  opacity: 1;
}

.process-steps article {
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 640ms ease;
}

/* ---------- Package cards — number highlight on hover ---------- */
.package-cards strong {
  transition: color 280ms ease, letter-spacing 280ms ease;
}

.package-cards article:hover strong {
  color: var(--red);
  letter-spacing: -0.01em;
}

/* Package card entrance — scale up from below */
.package-cards article {
  transform-origin: bottom center;
}

/* ---------- Visit details — slide-in rows ---------- */
.visit-details article {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .visit-details article:nth-child(1) { opacity: 1; transform: none; transition-delay: 300ms; }
.page.is-active .visit-details article:nth-child(2) { opacity: 1; transform: none; transition-delay: 440ms; }
.page.is-active .visit-details article:nth-child(3) { opacity: 1; transform: none; transition-delay: 580ms; }

.visit-details article {
  transition: background 240ms ease, padding-left 240ms ease;
}

.visit-details article:hover {
  background: rgba(255, 255, 255, 1);
  padding-left: calc(clamp(18px, 2.6vw, 26px) + 6px);
}

/* Restore the transition (override the hover-only above with combined) */
.visit-details article {
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 240ms ease,
    padding-left 240ms ease;
}

/* ---------- Hero CTA buttons — entrance stagger ---------- */
.hero-actions .button {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition:
    opacity 540ms ease,
    transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .hero-actions .button:nth-child(1) {
  opacity: 1; transform: none; transition-delay: 520ms;
}

.page.is-active .hero-actions .button:nth-child(2) {
  opacity: 1; transform: none; transition-delay: 660ms;
}

/* ---------- Hero note — fade-slide from right ---------- */
.hero-note {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .hero-note,
.reveal.is-visible.hero-note {
  opacity: 1;
  transform: none;
  transition-delay: 780ms;
}

/* ---------- Booking collage — hover depth parallax ---------- */
.booking-collage img {
  transition:
    opacity 820ms ease,
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 820ms ease;
}

.booking-collage:hover img:nth-child(1) { transform: scale(1.03) translateY(-4px); }
.booking-collage:hover img:nth-child(2) { transform: scale(1.04) translateY(-6px); transition-delay: 40ms; }
.booking-collage:hover img:nth-child(3) { transform: scale(1.03) translateY(-5px); transition-delay: 80ms; }
.booking-collage:hover img:nth-child(4) { transform: scale(1.04) translateY(-7px); transition-delay: 120ms; }

/* ---------- Booking actions — entrance ---------- */
.booking-actions .button {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page.is-active .booking-actions .button:nth-child(1) { opacity: 1; transform: none; transition-delay: 460ms; }
.page.is-active .booking-actions .button:nth-child(2) { opacity: 1; transform: none; transition-delay: 580ms; }
.page.is-active .booking-actions .button:nth-child(3) { opacity: 1; transform: none; transition-delay: 700ms; }
.page.is-active .booking-actions .button:nth-child(4) { opacity: 1; transform: none; transition-delay: 820ms; }

/* ---------- Chat toggle — heartbeat attention pulse ---------- */
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(184, 0, 16, 0); }
  50%       { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 10px rgba(184, 0, 16, 0); }
  40%       { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(184, 0, 16, 0.25); }
}

.chat-toggle {
  animation: chatPulse 3.6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.chat-toggle:hover {
  transform: translateY(-3px) scale(1.04);
  animation-play-state: paused;
}

/* ---------- Chat panel slide-up entrance ---------- */
.chat-panel {
  transform-origin: bottom right;
  transform: scale(0.92) translateY(14px);
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease;
  pointer-events: none;
}

.chat-panel:not([hidden]) {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* ---------- Nav links hover — colour glide ---------- */
.nav-links a,
.nav-button {
  position: relative;
  transition: color 220ms ease, transform 180ms ease;
}

.nav-links a::after,
.nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links a:hover::after,
.nav-button:hover::after {
  width: 100%;
}

/* ---------- Brand mark — rotate on hover ---------- */
.brand-mark {
  transition: transform 460ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.45);
}

/* ---------- Scroll dots — ripple on activation ---------- */
.scroll-dots button {
  transition: height 280ms ease, background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.scroll-dots button.is-active {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* ---------- Feature card — label slide up on hover ---------- */
.feature-card div {
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover div {
  transform: translateY(-6px);
}

/* ---------- Price card hover lift ---------- */
.price-card {
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(13, 13, 15, 0.18);
}

/* ---------- Social link wiggle ---------- */
@keyframes socialWiggle {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-8deg); }
  40%  { transform: rotate(8deg); }
  60%  { transform: rotate(-4deg); }
  80%  { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

.social-link:hover svg {
  animation: socialWiggle 480ms ease;
}

/* ---------- Reduced motion overrides ---------- */
@media (prefers-reduced-motion: reduce) {
  .tap-progress,
  .hero-photo-wrap::after,
  .eyebrow::after,
  .word-wrap,
  .word-inner,
  .chat-toggle,
  .brand-mark {
    animation: none !important;
    transition: none !important;
  }

  .hero-note,
  .hero-actions .button,
  .booking-actions .button,
  .visit-details article,
  .session-list article,
  .chat-panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
