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

@font-face {
  font-family: "AetherNeue";
  src: url("assets/site/fonts/AetherNeue-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oddval";
  src: url("assets/site/fonts/Oddval-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f7f0e6;
  --paper-deep: #eadcc7;
  --sand: #dcc3a4;
  --sun: #f7c76b;
  --sun-soft: #ffdca2;
  --blush: #f2ddd2;
  --clay: #bf7a5d;
  --sea: #72b7b7;
  --sea-deep: #27525f;
  --night: #14111d;
  --night-soft: #241b35;
  --ink: #1d1712;
  --ink-soft: #625347;
  --line-light: rgba(247, 240, 230, 0.18);
  --line-dark: rgba(34, 25, 17, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --shadow-soft: 0 20px 60px rgba(26, 20, 14, 0.12);
  --shadow-deep: 0 30px 80px rgba(10, 8, 16, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  background: #b8b7b3;
  color: var(--ink);
  font-family: "AetherNeue", serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ol,
ul,
dl {
  margin: 0;
}

section[id] {
  scroll-margin-top: 0;
}

::selection {
  background: rgba(247, 199, 107, 0.35);
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow,
.ritual-block__index,
.timeline-step__phase,
.package__index,
.package__subtitle,
.experience-tile__label,
.button,
.scroll-cue,
.hero__meta {
  font-family: "Oddval", sans-serif;
}

.location-link {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.location-link:hover,
.location-link:focus-visible {
  opacity: 0.8;
}

.presentation-root {
  position: relative;
}

.presentation-root > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.presentation-nav {
  position: fixed;
  top: 50%;
  right: 1.25rem;
  z-index: 26;
  display: grid;
  gap: 0.8rem;
  transform: translateY(-50%);
  padding: 0.7rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  background: rgba(20, 17, 29, 0.42);
  box-shadow: 0 20px 50px rgba(10, 8, 16, 0.18);
  backdrop-filter: blur(16px);
}

.presentation-nav__link {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: rgba(247, 240, 230, 0.68);
}

.presentation-nav__dot {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  font-size: 0;
  line-height: 0;
  border-radius: 999px;
  background: rgba(247, 240, 230, 0.24);
  box-shadow: inset 0 0 0 1px rgba(247, 240, 230, 0.18);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.presentation-nav__link:hover .presentation-nav__dot,
.presentation-nav__link.is-active .presentation-nav__dot {
  transform: scale(1.45);
  background: linear-gradient(135deg, var(--sun-soft), var(--sun));
  box-shadow: 0 0 0 0.3rem rgba(247, 199, 107, 0.16);
}

.presentation-nav__link.is-active {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-soft), var(--sun));
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  box-shadow: 0 16px 35px rgba(32, 25, 18, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(32, 25, 18, 0.22);
}

.inline-link {
  color: rgba(247, 240, 230, 0.82);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: color 180ms ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: white;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.8);
}

.eyebrow--dark {
  color: rgba(44, 31, 21, 0.68);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--night);
  padding: calc(8.5rem + env(safe-area-inset-top, 0px)) 0 3rem;
}

.brand-mark {
  opacity: 0.8;
}

.hero__media,
.hero__overlay,
.final-cta__media,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero__media img,
.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero__overlay {
  background:
    radial-gradient(circle at 72% 18%, rgba(247, 199, 107, 0.3), transparent 26%),
    radial-gradient(circle at 12% 84%, rgba(114, 183, 183, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(12, 11, 18, 0.22) 0%, rgba(19, 16, 29, 0.38) 40%, rgba(20, 17, 29, 0.88) 100%);
}

.hero__stars {
  position: absolute;
  top: 4.5rem;
  right: -8rem;
  width: min(40vw, 28rem);
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__content,
.final-cta__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 52rem;
  color: var(--paper);
  display: grid;
  gap: 1.3rem;
}

.hero h1,
.section-heading h2,
.dinner-layout__copy h2,
.final-cta h2 {
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.8rem, 9vw, 7.75rem);
  line-height: 0.92;
}

.hero__lede {
  max-width: 38rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: rgba(247, 240, 230, 0.9);
}

.hero__meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 240, 230, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.scroll-cue {
  position: fixed;
  right: 1.9rem;
  bottom: 3rem;
  z-index: 27;
  transform: translateX(0);
  text-decoration: none;
  animation: scrollCueFloat 2.6s ease-in-out infinite;
}

.scroll-cue__key {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(247, 240, 230, 0.4);
  border-radius: 50%;
  background: rgba(20, 17, 29, 0.22);
  box-shadow:
    inset 0 -0.18rem 0 rgba(247, 240, 230, 0.1),
    0 0.75rem 1.5rem rgba(8, 6, 12, 0.2);
  color: rgba(247, 240, 230, 0.9);
  font-family: "Oddval", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 4vw, 8rem) 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section--cream {
  background: linear-gradient(180deg, #f6eee2 0%, #efe2cf 100%);
}

.section--numbers {
  background:
    radial-gradient(circle at 82% 22%, rgba(247, 199, 107, 0.22), transparent 24%),
    linear-gradient(180deg, #f4ece0 0%, #eadcc7 100%);
}

.section--audience {
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 199, 107, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(114, 183, 183, 0.1), transparent 18%),
    linear-gradient(180deg, #171021 0%, #241734 100%);
}

.section--paper {
  background: linear-gradient(180deg, #fffaf4 0%, #f2e5d6 100%);
}

.section--blush {
  background:
    radial-gradient(circle at 80% 15%, rgba(247, 199, 107, 0.24), transparent 26%),
    linear-gradient(180deg, #f6ebe3 0%, #efd9cc 100%);
}

.section--ocean {
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 18%, rgba(247, 199, 107, 0.18), transparent 22%),
    linear-gradient(180deg, #244652 0%, #305c65 52%, #476e73 100%);
}

.section--night {
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 18%, rgba(247, 199, 107, 0.16), transparent 22%),
    radial-gradient(circle at 15% 78%, rgba(114, 183, 183, 0.12), transparent 20%),
    linear-gradient(180deg, #15111f 0%, #1f1730 100%);
}

.section-heading {
  max-width: 48rem;
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading--compact {
  max-width: 38rem;
}

.section-heading--light p {
  color: rgba(247, 240, 230, 0.8);
}

.section-heading h2,
.dinner-layout__copy h2,
.final-cta h2 {
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.94;
}

.section-heading p:last-child,
.ritual-block p,
.atmosphere-copy p,
.experience-tile p,
.dinner-layout__copy p,
.audience-profile p,
.partner-benefit p,
.package li,
.package__subtitle,
.final-cta p {
  color: inherit;
  font-size: 1.08rem;
}

.section-heading p:last-child,
.ritual-block p,
.dinner-layout__copy p,
.audience-profile p {
  color: var(--ink-soft);
}

.section--ocean .section-heading p:last-child,
.section--audience .section-heading p:last-child,
.section--night .section-heading p:last-child,
.section--ocean .atmosphere-copy p,
.section--audience .audience-profile p,
.section--night .package li,
.section--night .package__subtitle {
  color: rgba(247, 240, 230, 0.82);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  counter-reset: ritual;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.number-stat {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-dark);
}

.number-stat__value {
  display: flex;
  align-items: flex-end;
  gap: 0.35em;
  color: var(--ink);
  font-size: clamp(2.8rem, 4vw, 7.9rem);
  line-height: 0.8;
  letter-spacing: -0.075em; 
}

.number-stat__number {
  display: block;
}

.number-stat__unit {
  /* color: var(--ink-soft);
  font-size: 0.5em;
  letter-spacing: 0.02em; */
  text-transform: uppercase;
}

.number-stat h3 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.number-stat__description {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.ritual-block {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
}

.ritual-block__index {
  color: var(--clay);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ritual-block h3,
.timeline-step h3,
.package h3,
.experience-tile h3,
.audience-profile h3,
.partner-benefit h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  grid-template-areas:
    "lead side-top"
    "lead copy"
    "lead side-bottom";
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-height: 16rem;
}

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

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

.media-frame--tall {
  grid-area: lead;
  min-height: 38rem;
}

.atmosphere-grid > .media-frame:nth-of-type(2) {
  grid-area: side-top;
}

.atmosphere-grid > .media-frame:nth-of-type(3) {
  grid-area: side-bottom;
}

.atmosphere-copy {
  grid-area: copy;
  display: grid;
  gap: 1rem;
  padding: 1rem 0.25rem 1rem 0.5rem;
}

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

.experience-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 26rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--night-soft);
  box-shadow: var(--shadow-soft);
}

.experience-tile__media,
.experience-tile__overlay,
.experience-tile__gradient,
.experience-tile__artwork {
  position: absolute;
  inset: 0;
}

.experience-tile__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-tile__overlay {
  background: linear-gradient(180deg, rgba(18, 14, 23, 0.02) 8%, rgba(18, 14, 23, 0.78) 100%);
}

.experience-tile__gradient {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 220, 162, 0.5), transparent 22%),
    linear-gradient(135deg, #5a72eb 0%, #e59f72 100%);
}

.experience-tile--art .experience-tile__gradient {
  background:
    linear-gradient(180deg, rgba(23, 16, 33, 0.18) 0%, rgba(23, 16, 33, 0.42) 100%);
}

.experience-tile__artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.94;
}

.experience-tile--art .experience-tile__content {
  max-width: 24rem;
}

.experience-tile__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem;
  max-width: 22rem;
  color: var(--paper);
}

.experience-tile__content--dark {
  color: var(--ink);
}

.experience-tile__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.72);
}

.experience-tile__label--dark {
  color: rgba(31, 23, 18, 0.56);
}

.experience-tile__content p:last-child {
  color: rgba(247, 240, 230, 0.8);
}

.experience-tile__content--dark p:last-child {
  color: rgba(31, 23, 18, 0.78);
}

.dinner-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1rem;
  align-items: stretch;
}

.dinner-layout__lead {
  min-height: 38rem;
}

.dinner-layout__copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
}

.dinner-layout__lede {
  color: var(--ink);
  font-size: 1.3rem;
}

.section--night .dinner-layout__copy {
  background: linear-gradient(180deg, rgba(34, 25, 50, 0.84) 0%, rgba(24, 18, 37, 0.92) 100%);
  border: 1px solid rgba(247, 240, 230, 0.12);
  box-shadow: 0 20px 60px rgba(8, 6, 14, 0.34);
}

.section--night .dinner-layout__lede,
.section--night .dinner-layout__copy p {
  color: rgba(247, 240, 230, 0.9);
}

.dinner-facts {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  padding-top: 0.5rem;
}

.dinner-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-dark);
}

.section--night .dinner-facts li {
  border-top-color: rgba(247, 240, 230, 0.14);
}

.dinner-facts span {
  color: rgba(31, 23, 18, 0.56);
  font-family: "Oddval", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--night .dinner-facts span {
  color: rgba(247, 240, 230, 0.56);
}

.dinner-facts strong {
  text-align: right;
}

.section--night .dinner-facts strong {
  color: rgba(247, 240, 230, 0.9);
}

.audience-profile__traits,
.package ul {
  list-style: none;
  padding: 0;
}

.audience-section {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.audience-section__heading {
  margin-bottom: 0;
}

.audience-profiles {
  display: grid;
  gap: 1.5rem;
}

.audience-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-top: 1px solid rgba(247, 240, 230, 0.18);
  overflow: clip;
}

.audience-profile::before {
  content: "";
  position: absolute;
  inset: auto auto 0.75rem 1.25rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 199, 107, 0.18) 0%, rgba(247, 199, 107, 0) 72%);
  pointer-events: none;
}

.audience-profile--connoisseur {
  grid-template-columns: minmax(0, 1.02fr) minmax(15rem, 0.98fr);
}

.audience-profile--connoisseur::before {
  inset: 0.5rem 1.2rem auto auto;
  background: radial-gradient(circle, rgba(114, 183, 183, 0.16) 0%, rgba(114, 183, 183, 0) 72%);
}

.audience-profile__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 23rem;
}

.audience-profile__art::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(247, 240, 230, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(114, 183, 183, 0.1) 0%, rgba(247, 199, 107, 0.08) 100%);
  filter: blur(6px);
}

.audience-profile__illustration {
  position: relative;
  z-index: 1;
  width: min(100%, 23rem);
  max-height: 25rem;
  object-fit: contain;
  transform: rotate(-4deg);
  filter: drop-shadow(0 24px 46px rgba(7, 6, 14, 0.38));
}

.audience-profile__illustration--meditation {
  width: min(100%, 21rem);
  transform: rotate(4deg);
}

.audience-profile__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 31rem;
}

.audience-profile--connoisseur .audience-profile__body {
  justify-self: end;
}

.audience-profile__kicker {
  color: var(--sun);
  font-family: "Oddval", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-profile__lede {
  font-size: 1.12rem;
  color: rgba(247, 240, 230, 0.92);
}

.audience-profile__traits {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.audience-profile__traits li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1.08rem;
  color: rgba(247, 240, 230, 0.82);
}

.audience-profile__traits li::before,
.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--clay));
}

.partner-section__heading {
  max-width: 42rem;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.partner-benefit {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  min-height: 15.5rem;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border: 1px solid rgba(247, 240, 230, 0.16);
  border-radius: calc(var(--radius-lg) - 0.1rem);
  background: linear-gradient(180deg, rgba(84, 54, 132, 0.28) 0%, rgba(47, 29, 67, 0.48) 100%);
  box-shadow: 0 18px 56px rgba(10, 8, 16, 0.16);
}

.partner-benefit__index {
  color: var(--sun);
  font-family: "Oddval", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.section--blush .partner-benefit {
  border-color: rgba(44, 31, 21, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.72) 0%, rgba(255, 248, 241, 0.92) 100%);
  box-shadow: 0 18px 56px rgba(72, 44, 18, 0.08);
}

.section--blush .partner-benefit__index {
  color: var(--clay);
}

.partner-benefit p:last-child {
  max-width: 24rem;
}

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

.package {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-light);
}

.package h3,
.package p,
.package ul {
  margin: 0;
}

.package__index {
  color: rgba(247, 240, 230, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.package__price {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  text-align: left;
}

.package__price-label {
  color: #d4af37;
  font-size: 1rem;
  line-height: 1;
}

.package__price-value {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.package__subtitle {
  color: rgba(247, 240, 230, 0.62);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.package ul {
  display: grid;
  gap: 0.9rem;
}

.package li {
  position: relative;
  padding-left: 1.4rem;
}

.final-cta {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  padding: 8rem 0 3.5rem;
  background: var(--night);
  color: var(--paper);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.final-cta__media img {
  object-position: center 58%;
}

.final-cta__overlay {
  background:
    linear-gradient(180deg, rgba(12, 11, 18, 0.28) 0%, rgba(15, 13, 20, 0.48) 38%, rgba(17, 14, 24, 0.88) 100%),
    radial-gradient(circle at 68% 18%, rgba(247, 199, 107, 0.2), transparent 26%);
}

.final-cta__clouds {
  position: absolute;
  inset: auto -6rem 0rem auto;
  width: min(42vw, 28rem);
  opacity: 0.18;
  pointer-events: none;
}

.final-cta__content {
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}

.final-cta__logo {
  height: auto;
  width: min(11rem, 36vw);
  opacity: 0.9;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-line a {
  color: rgba(247, 240, 230, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 240, 230, 0.32);
  padding-bottom: 0.2rem;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.js .presentation-root > section {
  transition:
    opacity 420ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .presentation-root > section.is-section-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes scrollCueFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(0) translateY(0.5rem);
  }
}

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

  .hero__media,
  .media-frame img,
  .button,
  .scroll-cue,
  html.js [data-reveal] {
    transition: none;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1080px) {
  .presentation-nav {
    display: none;
  }

  .ritual-grid,
  .numbers-grid,
  .audience-profiles,
  .partner-benefits,
  .dinner-layout,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .audience-profile,
  .audience-profile--connoisseur {
    grid-template-columns: 1fr;
  }

  .audience-profile--connoisseur .audience-profile__body {
    justify-self: start;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "lead side-top"
      "copy side-bottom";
  }

  .media-frame--tall,
  .dinner-layout__lead {
    min-height: 28rem;
  }

  .partner-benefit {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: calc(10rem + env(safe-area-inset-top, 0px));
  }

  .hero__stars {
    right: -5rem;
    top: 6.5rem;
    width: min(56vw, 20rem);
  }

  .section-shell {
    width: min(1120px, calc(100% - 1.5rem));
  }

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

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

  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .audience-profile {
    padding-inline: 0;
  }

  .audience-profile__art {
    min-height: 18rem;
  }

  .audience-profile__illustration,
  .audience-profile__illustration--meditation {
    width: min(100%, 18rem);
    max-height: 20rem;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "copy"
      "side-top"
      "side-bottom";
  }

  .media-frame--tall {
    min-height: 24rem;
  }
}

@media (max-width: 560px) {
  html {
    scroll-snap-type: none;
  }

  .hero {
    min-height: 107vh;
    padding-top: calc(10.5rem + env(safe-area-inset-top, 0px));
    padding-bottom: 10rem;
  }

  .section,
  .final-cta {
    min-height: auto;
  }

  .hero__content,
  .final-cta__content {
    gap: 1rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .experience-tile,
  .media-frame,
  .dinner-layout__lead {
    min-height: 18rem;
    border-radius: 1.35rem;
  }

  .dinner-layout__copy {
    border-radius: 1.35rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partner-benefit {
    border-radius: 1.35rem;
  }

  .audience-profile {
    gap: 1.1rem;
    padding-top: 1.4rem;
  }

  .audience-profile__art {
    min-height: 14rem;
  }

  .audience-profile__illustration,
  .audience-profile__illustration--meditation {
    width: min(100%, 14rem);
    max-height: 15rem;
    transform: none;
  }

  .experience-tile__content {
    padding: 1.25rem;
  }

  .experience-tile__artwork {
    width: 60%;
    inset: auto 1rem 1rem auto;
  }

  .contact-line {
    gap: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
