:root {
  --gold: #c19a4a;
  --gold-hover: #a98339;
  --dark: #0a0a0a;
  --white: #ffffff;
  --muted: #999999;
  --header-border: rgba(193, 154, 74, 0.18);
  --header-bg: rgba(10, 10, 10, 0.8);
  --mobile-locked-vh: 100vh;
}

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

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Overpass", sans-serif;
  background: #ffffff;
  color: #111111;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10001;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 9990;
  width: calc(100% - 32px);
  max-width: 1200px;
  height: 50px;
  margin: 0 auto;
  border: 1px solid var(--header-border);
  border-radius: 60px;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 0 26px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
}

.site-header__logo img {
  display: block;
  height: 28px;
  width: auto;
}

.site-header__contact {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header__cta {
  padding: 0 18px !important;
  background: var(--gold);
  color: #000000 !important;
  font-weight: 700 !important;
}

.site-header__cta:hover {
  background: var(--gold-hover) !important;
  color: #000000 !important;
}

.floating-term-cta {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(18px, 3vh, 30px);
  z-index: 9950;
  display: grid;
  place-items: center;
  width: clamp(98px, 8.8vw, 126px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(244, 201, 113, 0.92);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 249, 229, 0.98) 0%, rgba(255, 237, 173, 0.96) 18%, rgba(238, 191, 74, 0.98) 58%, rgba(201, 144, 17, 1) 100%);
  box-shadow:
    0 20px 42px rgba(91, 61, 11, 0.34),
    0 0 0 10px rgba(214, 162, 51, 0.14),
    0 0 34px rgba(243, 190, 61, 0.24);
  color: #3b2400;
  text-align: center;
  text-decoration: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
  isolation: isolate;
  overflow: hidden;
  animation: floating-term-cta-pulse 2.8s ease-in-out infinite;
}

.floating-term-cta.is-hidden-context {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.86);
  animation: none;
}

.floating-term-cta::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 251, 235, 0.82);
  pointer-events: none;
}

.floating-term-cta::after {
  content: "";
  position: absolute;
  inset: 14% 18% auto;
  height: 32%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 253, 244, 0.95) 0%, rgba(255, 253, 244, 0.4) 48%, rgba(255, 253, 244, 0) 100%);
  filter: blur(9px);
  opacity: 0.96;
  pointer-events: none;
}

.floating-term-cta:hover {
  transform: translateY(-3px) scale(1.045);
  box-shadow:
    0 24px 52px rgba(91, 61, 11, 0.38),
    0 0 0 12px rgba(214, 162, 51, 0.18),
    0 0 44px rgba(243, 190, 61, 0.28);
  filter: saturate(1.08);
}

.floating-term-cta__label {
  position: relative;
  z-index: 1;
  width: min(100%, 6.6ch);
  font-family: "Overpass", sans-serif;
  font-size: clamp(0.88rem, 0.74rem + 0.32vw, 1.04rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 247, 223, 0.4);
}

@keyframes floating-term-cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 20px 42px rgba(91, 61, 11, 0.34),
      0 0 0 10px rgba(214, 162, 51, 0.14),
      0 0 34px rgba(243, 190, 61, 0.24);
  }
  50% {
    transform: translateY(-1px) scale(1.038);
    box-shadow:
      0 24px 48px rgba(91, 61, 11, 0.36),
      0 0 0 14px rgba(214, 162, 51, 0.11),
      0 0 42px rgba(243, 190, 61, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-term-cta {
    animation: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefefe;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: contain;
  pointer-events: none;
}

.hero-static-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10, 10, 10, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.is-revealed .hero-overlay {
  opacity: 1;
}

.hero.is-revealed .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 690px;
  padding: 22px 34px 24px;
  margin: 0 auto;
}

.hero-title-frame__horizontal,
.hero-title-frame__vertical {
  position: absolute;
  left: 50%;
  display: block;
  background: var(--gold);
  transform: translateX(-50%);
}

.hero-title-frame__horizontal {
  width: 60px;
  height: 2px;
}

.hero-title-frame__vertical {
  width: 2px;
  height: 14px;
}

.hero-title-frame__horizontal--top,
.hero-title-frame__vertical--top {
  top: 0;
}

.hero-title-frame__horizontal--bottom,
.hero-title-frame__vertical--bottom {
  bottom: 0;
}

.hero-title-frame__line {
  margin: 0;
  text-wrap: balance;
}

.hero-title-frame__line--light {
  margin-bottom: 6px;
  color: #ffffff;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.hero-title-frame__line--accent {
  color: var(--gold);
  font-family: "Overpass", "Sora", sans-serif;
  font-size: clamp(2.7rem, 4.8vw, 4.35rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 980px;
  margin: 40px auto 0;
}

.hero-copy__lead,
.hero-copy__body,
.hero-copy__meta {
  margin: 0;
  text-align: center;
}

.hero-break {
  display: inline;
}

.hero-copy__lead {
  color: #ffffff;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.035em;
}

.hero-copy__body {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Overpass", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.hero-copy__meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Overpass", sans-serif;
  font-size: clamp(1.02rem, 1.15vw, 1.22rem);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: -0.01em;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9a432 0%, #ca962e 100%);
  color: #ffffff;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(204, 153, 51, 0.28);
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cta-pill:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(204, 153, 51, 0.34);
  filter: brightness(1.03);
}

.cta-pill__label {
  display: inline-block;
}

.cta-pill--compact {
  min-width: 244px;
  min-height: 54px;
  padding: 16px 34px 14px;
  border: none;
  border-bottom: 3px solid var(--gold-hover);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.cta-pill--wide {
  min-width: min(100%, 428px);
  min-height: 68px;
  padding: 17px 28px;
  border-bottom: 3px solid #b88628;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
}

.hero-cta {
  margin-top: 22px;
}

.hero-cta:hover {
  color: #ffffff;
}

.hero-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fefefe;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.hero-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-loader__logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero-loader__bar {
  width: 160px;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-loader__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #cc9933, #e8c46a);
  transition: width 0.2s ease;
}

.stories-wrap {
  position: relative;
  z-index: 50;
  width: 100%;
  height: calc(var(--stories-count, 3) * 100vh);
  height: calc(var(--stories-count, 3) * 100svh);
  background: #fefefe;
  overflow: clip;
}

.stories-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.stories-section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 92px 28px 28px;
  background: #fefefe;
  box-sizing: border-box;
}

.stories-heading {
  margin: 0 0 28px;
  color: #1a1a1a;
  font-family: "Overpass", sans-serif;
  font-size: clamp(2.35rem, 4.3vw, 4.15rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-align: center;
}

.stories-heading span {
  color: var(--gold);
  font-weight: 400;
}

.stories-phone {
  position: relative;
  width: min(1160px, 96vw);
  max-width: min(1160px, 96vw);
  height: min(86vh, 920px);
  max-height: min(86vh, 920px);
  min-height: 760px;
  flex: 1;
  overflow: visible;
  background: transparent;
}

.stories-progress,
.stories-header {
  position: absolute;
  left: 50%;
  right: auto;
  width: min(456px, 38vw);
  transform: translate3d(-50%, 0, 0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.stories-progress {
  top: 24px;
  z-index: 7;
  display: flex;
  gap: 5px;
}

.stories-progress-bar {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.stories-progress-fill {
  width: 0;
  height: 100%;
  border-radius: 3px;
  background: #e8c46a;
  transition: width 0.35s ease;
}

.stories-header {
  top: 48px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stories-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #e8c46a;
  border-radius: 50%;
}

.stories-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-username {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.story-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(476px, 38vw);
  height: 100%;
  min-height: 760px;
  margin-left: calc(-1 * min(476px, 38vw) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 36px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  filter: blur(0);
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  transform-origin: center center;
  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease,
    box-shadow 0.65s ease;
  will-change: transform, opacity, filter;
}

.story-card.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 4;
}

.story-card.story-card-preview-1 {
  opacity: 0.88;
  transform: translate3d(344px, 0, 0) scale(0.64);
  filter: blur(3px) saturate(0.9);
  z-index: 3;
}

.story-card.story-card-preview-2 {
  opacity: 0.62;
  transform: translate3d(548px, 0, 0) scale(0.5);
  filter: blur(5px) saturate(0.82);
  z-index: 2;
}

.story-card.story-card-past {
  opacity: 0.42;
  transform: translate3d(-110px, 0, 0) scale(0.74);
  filter: blur(4px) saturate(0.86);
  z-index: 1;
}

.story-card-1 {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2015 50%, #1a1510 100%);
}

.story-card-2 {
  background: linear-gradient(145deg, #0f0f0f 0%, #1a150f 50%, #0a0a0a 100%);
}

.story-card-3 {
  background: linear-gradient(145deg, #1a0a0a 0%, #2a1515 40%, #1a1010 100%);
}

.story-card-title {
  margin-bottom: 20px;
  color: #e8c46a;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 1.2;
}

.story-card-body {
  max-width: 440px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.22vw, 1.08rem);
  line-height: 1.75;
}

.story-card-footer {
  max-width: 420px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 196, 106, 0.2);
  color: #e8c46a;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-style: italic;
  line-height: 1.5;
}

.story-card-reverse {
  justify-content: center;
  gap: 12px;
  padding-bottom: 70px;
}

.story-card-reverse .story-card-body {
  order: 1;
  margin-bottom: 0;
}

.story-card-body-lg {
  color: #ffffff !important;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem) !important;
}

.story-card-body-lg strong {
  color: #e8c46a;
  font-size: 1.15em;
}

.story-card-emoji {
  order: 2;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
}

.story-card-reverse .story-card-title {
  order: 3;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.story-card-reverse .story-card-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 52px);
  max-width: 290px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  text-align: center;
}

.stories-tap {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 44%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.stories-tap-left {
  left: 0;
}

.stories-tap-right {
  right: 0;
  width: 56%;
}

.film-showcase {
  position: relative;
  z-index: 10;
  scroll-margin-top: 76px;
  padding: clamp(88px, 9vw, 126px) 24px clamp(82px, 8vw, 116px);
  background: #ffffff;
}

.film-showcase__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.film-showcase__mobile-copy,
.film-showcase__mobile-desc {
  display: none;
}

.film-showcase__frame {
  position: relative;
  width: min(100%, calc((100dvh - 210px) * 1.7778), 1220px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(17, 12, 10, 0.08);
  border-radius: 22px;
  background: #14100f;
  box-shadow: 0 30px 80px rgba(30, 22, 17, 0.12);
}

.film-showcase__launch,
.film-showcase__player {
  position: absolute;
  inset: 0;
}

.film-showcase__launch {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.film-showcase__launch picture {
  display: block;
  width: 100%;
  height: 100%;
}

.film-showcase__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 4, 0.52) 0%, rgba(8, 5, 4, 0.18) 45%, rgba(8, 5, 4, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 5, 4, 0.08) 0%, rgba(8, 5, 4, 0.22) 100%);
}

.film-showcase__title-desktop {
  position: absolute;
  top: 50%;
  left: clamp(28px, 3.4vw, 48px);
  z-index: 2;
  max-width: min(42%, 390px);
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  text-align: left;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%);
}

.film-showcase__title-mark {
  font-size: 0.56em;
  vertical-align: super;
}

.film-showcase__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.film-showcase__play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: film-showcase-pulse 2s ease-in-out infinite;
}

.film-showcase__play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 24px solid #1a1a1a;
}

.film-showcase__launch:hover .film-showcase__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.38);
}

.film-showcase__player {
  background: #000000;
}

.film-showcase__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-showcase__frame.is-playing .film-showcase__launch {
  opacity: 0;
  pointer-events: none;
}

.film-showcase__cta {
  margin-top: clamp(34px, 4vw, 42px);
}

.film-showcase--guestbook {
  padding-top: clamp(74px, 7vw, 98px);
}

.film-showcase__mobile-copy--guestbook {
  display: none;
}

.film-showcase__frame--guestbook {
  box-shadow: 0 30px 80px rgba(30, 22, 17, 0.14);
}

.film-showcase__shade--soft {
  background:
    linear-gradient(180deg, rgba(8, 5, 4, 0.16) 0%, rgba(8, 5, 4, 0.12) 42%, rgba(8, 5, 4, 0.22) 100%);
}

.section-anchor {
  position: relative;
  scroll-margin-top: 96px;
}

.scenario-flow {
  --scenario-open: 0;
  background:
    radial-gradient(circle at top center, rgba(229, 178, 79, 0.12) 0%, rgba(229, 178, 79, 0) 34%),
    linear-gradient(180deg, #100d0b 0%, #120e0c 100%);
}

.scenario-flow__desktop {
  min-height: 500vh;
}

.scenario-flow__desktop-shell {
  position: sticky;
  top: 0;
  display: block;
  height: 100vh;
  padding: 0 24px;
  overflow: hidden;
}

.scenario-flow__desktop-line {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: none;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(3.45rem, 5.85vw, 5.95rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  will-change: transform, opacity;
  z-index: 3;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.scenario-flow__desktop-line--top {
  top: 50%;
  color: #f1e8db;
  transform: translate3d(-50%, calc(-50% - 0.62em - (var(--scenario-open) * 31vh)), 0);
  opacity: calc(1 - (var(--scenario-open) * 0.08));
}

.scenario-flow__desktop-line--bottom {
  top: 50%;
  color: #e5b24f;
  transform: translate3d(-50%, calc(-50% + 0.62em + (var(--scenario-open) * 31vh)), 0);
  opacity: calc(1 - (var(--scenario-open) * 0.08));
  text-shadow: 0 0 40px rgba(229, 178, 79, 0.28);
}

.scenario-flow__desktop-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(95%, 1520px);
  max-width: 1280px;
  transform: translate(-50%, -50%);
  height: calc(var(--scenario-open) * 68vh);
  opacity: min(1, calc(var(--scenario-open) * 1.8));
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 88px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  z-index: 2;
}

.scenario-flow__desktop-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.scenario-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  padding: 34px clamp(28px, 3vw, 48px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 52px, 0);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.scenario-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.scenario-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.scenario-card__video {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.scenario-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scenario-card__kicker {
  display: none;
}

.scenario-card__title {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(1.32rem, 1.9vw, 1.74rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.scenario-card__title-note {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 500;
}

.scenario-card__body {
  color: #3a342d;
  font-size: clamp(0.92rem, 1.24vw, 1.02rem);
  line-height: 1.72;
}

.scenario-card__body p {
  margin: 0;
}

.scenario-card__body p + p {
  margin-top: 0.72rem;
}

.scenario-card__body strong {
  color: #111111;
}

.scenario-flow__mobile {
  display: none;
}

.compare-section {
  padding: clamp(90px, 9vw, 124px) 24px clamp(88px, 9vw, 126px);
  background:
    radial-gradient(circle at top, rgba(204, 153, 51, 0.08) 0%, rgba(204, 153, 51, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf6 58%, #f8f2e8 100%);
}

.compare-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.compare-section__intro {
  margin: 0 auto clamp(34px, 4vw, 44px);
  text-align: center;
}

.compare-section__quote {
  margin: 0;
  color: #1b1a19;
  font-family: "Overpass", sans-serif;
  font-size: clamp(2.4rem, 4.7vw, 4.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.compare-section__quote span {
  color: var(--gold);
  font-weight: 400;
}

.compare-section__kicker {
  margin: 18px 0 0;
  color: #66615a;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-section__kicker strong {
  color: #1d1b19;
}

.compare-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 24px;
}

.compare-table__header {
  position: relative;
  padding: 0 0 30px;
  color: #211d1a;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
}

.compare-table__header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(204, 153, 51, 0.1) 0%, rgba(204, 153, 51, 0.8) 100%);
  transform: translateX(-50%);
}

.compare-table__header--brand {
  color: #1c1a18;
}

.compare-table__mark {
  font-size: 0.6em;
  vertical-align: super;
}

.compare-row {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  gap: 12px;
}

.compare-row + .compare-row {
  margin-top: 18px;
}

.compare-row__transform {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0;
}

.compare-row__transform::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(204, 153, 51, 0.08) 0%,
    rgba(204, 153, 51, 0.34) 50%,
    rgba(204, 153, 51, 0.08) 100%
  );
  transform: translateY(-50%);
}

.compare-row__transform-label {
  display: none;
}

.compare-row__transform-arrow {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 250, 241, 0.92);
  color: #b98828;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  animation: compare-arrow-drift-x 1.7s ease-in-out infinite;
}

@keyframes compare-arrow-drift-x {
  0%,
  100% {
    transform: translateX(-4px);
    opacity: 0.58;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

.compare-cell {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(38, 31, 24, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 36px rgba(31, 24, 18, 0.06);
}

.compare-cell--brand {
  background: linear-gradient(180deg, rgba(204, 153, 51, 0.1) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(204, 153, 51, 0.18);
}

.compare-cell__label {
  display: none;
  line-height: 1.35;
  text-wrap: balance;
}

.compare-cell p {
  margin: 0;
  color: #2d2824;
  font-size: 1.02rem;
  line-height: 1.7;
}

.question-deck {
  position: relative;
  padding: clamp(96px, 9vw, 132px) 24px clamp(92px, 8vw, 124px);
  background:
    radial-gradient(circle at top, rgba(204, 153, 51, 0.08) 0%, rgba(204, 153, 51, 0) 34%),
    linear-gradient(180deg, #faf7f1 0%, #f7f3ec 48%, #f4efe6 100%);
}

.question-deck::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(92vw, 520px);
  height: 54vh;
  transform: translateX(-50%);
  background: radial-gradient(circle at top, rgba(201, 158, 72, 0.16) 0%, rgba(201, 158, 72, 0) 72%);
  pointer-events: none;
}

.question-deck__sticky {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.question-deck__intro {
  margin: 0 auto clamp(28px, 3vw, 40px);
  text-align: center;
}

.question-deck__hero {
  max-width: min(1120px, 88vw);
  margin: 0 auto;
}

.question-deck__hero-title {
  margin: 0;
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  justify-items: center;
}

.question-deck__hero-line {
  display: block;
  color: #1a1713;
  font-family: "Sora", "Overpass", sans-serif;
  font-weight: 700;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.question-deck__hero-line--top {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.question-deck__hero-line--bottom {
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.question-deck__hero-emoji {
  white-space: nowrap;
  font-size: 0.82em;
}

.question-deck__legacy-title,
.question-deck__legacy-copy {
  display: none;
}

.question-deck__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 340px) minmax(0, 0.94fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
}

.question-deck__lead {
  text-align: right;
}

.question-deck__lead-title {
  margin: 0 0 0 auto;
  max-width: 320px;
  color: #1d1916;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(1.9rem, 2.35vw, 2.85rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.question-deck__lead-title span {
  color: var(--gold);
}

.question-deck__center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.question-deck__center-track {
  width: min(100%, 340px);
}

.question-deck__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.question-deck__item {
  margin: 0;
  width: 100%;
}

.question-deck__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(31, 25, 19, 0.14);
}

.question-deck__narrative {
  display: grid;
  gap: 14px;
  align-content: center;
}

.question-deck__narrative-intro {
  margin: 0;
  color: #2f2a24;
  font-size: clamp(1rem, 1.24vw, 1.12rem);
  line-height: 1.7;
}

.question-deck__quote {
  padding: 16px 18px;
  border-radius: 22px;
  line-height: 1.62;
}

.question-deck__quote--soft {
  border: 1px solid rgba(204, 153, 51, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.05);
  color: #5f5a52;
  font-size: clamp(1rem, 1.12vw, 1.06rem);
  font-style: italic;
}

.question-deck__divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.question-deck__divider-line {
  width: 42px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(191, 139, 39, 0.34);
}

.question-deck__divider-label {
  color: #bf8b27;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.question-deck__quote--accent {
  border: 1px solid rgba(204, 153, 51, 0.24);
  background: linear-gradient(180deg, rgba(204, 153, 51, 0.16) 0%, rgba(204, 153, 51, 0.09) 100%);
  box-shadow: 0 16px 38px rgba(204, 153, 51, 0.1);
  color: #221f1b;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  font-weight: 700;
}

.question-deck__narrative-outro {
  margin: 2px 0 0;
  color: #6a645d;
  font-size: 0.98rem;
  line-height: 1.72;
}

.question-deck--enhanced {
  min-height: calc(var(--question-scroll, 0px) + var(--question-vh, 100svh));
  padding: 0 24px;
}

.question-deck--enhanced .question-deck__sticky {
  position: sticky;
  top: 0;
  max-width: none;
  height: var(--question-vh, 100svh);
  overflow: hidden;
}

.question-deck--enhanced .question-deck__intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 24px;
  pointer-events: none;
}

.question-deck--enhanced .question-deck__hero-title,
.question-deck--enhanced .question-deck__hero-line,
.question-deck--enhanced .question-deck__inner,
.question-deck--enhanced .question-deck__lead,
.question-deck--enhanced .question-deck__narrative,
.question-deck--enhanced .question-deck__center-track {
  will-change: transform, opacity, filter;
}

.question-deck--enhanced.question-deck--desktop .question-deck__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 340px) minmax(0, 0.95fr);
  gap: clamp(24px, 2vw, 34px);
  align-items: center;
  padding: 0 4vw;
}

.question-deck--enhanced.question-deck--desktop .question-deck__lead {
  opacity: 0;
  transform: translate3d(-72px, 0, 0);
}

.question-deck--enhanced.question-deck--desktop .question-deck__center {
  position: relative;
  height: var(--question-center-height, 100svh);
  overflow: hidden;
}

.question-deck--enhanced.question-deck--desktop .question-deck__center-track {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--question-card-width, 320px);
  transform: translate3d(-50%, 0, 0);
}

.question-deck--enhanced.question-deck--desktop .question-deck__grid {
  gap: var(--question-gap, 24px);
}

.question-deck--enhanced.question-deck--desktop .question-deck__narrative {
  opacity: 0;
  transform: translate3d(72px, 0, 0);
}

.question-deck--enhanced.question-deck--mobile {
  padding: 0;
}

.question-deck--enhanced.question-deck--mobile .question-deck__sticky {
  height: var(--question-vh, 100svh);
}

.question-deck--enhanced.question-deck--mobile .question-deck__intro {
  padding: 0 18px;
}

.question-deck--enhanced.question-deck--mobile .question-deck__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  align-items: stretch;
  row-gap: 18px;
  padding:
    max(22px, env(safe-area-inset-top))
    18px
    max(22px, env(safe-area-inset-bottom));
}

.question-deck--enhanced.question-deck--mobile .question-deck__lead,
.question-deck--enhanced.question-deck--mobile .question-deck__narrative {
  width: min(100%, 340px);
  padding: 18px 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(126, 103, 67, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 36px rgba(26, 21, 16, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.question-deck--enhanced.question-deck--mobile .question-deck__lead {
  transform: translate3d(0, -28px, 0);
}

.question-deck--enhanced.question-deck--mobile .question-deck__narrative {
  transform: translate3d(0, 28px, 0);
}

.question-deck--enhanced.question-deck--mobile .question-deck__lead-title {
  margin: 0;
  max-width: none;
  color: #201c18;
  font-size: clamp(1.72rem, 7.4vw, 2.35rem);
  line-height: 1.08;
  text-align: center;
}

.question-deck--enhanced.question-deck--mobile .question-deck__center {
  position: relative;
  width: 100%;
  height: var(--question-center-height, 320px);
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
}

.question-deck--enhanced.question-deck--mobile .question-deck__center-track {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--question-card-width, 236px);
  transform: translate3d(-50%, 0, 0);
}

.question-deck--enhanced.question-deck--mobile .question-deck__grid {
  gap: var(--question-gap, 16px);
}

.question-deck--enhanced.question-deck--mobile .question-deck__narrative-intro,
.question-deck--enhanced.question-deck--mobile .question-deck__narrative-outro {
  display: none;
}

.question-deck--enhanced.question-deck--mobile .question-deck__quote {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 20px;
  text-align: center;
  background: #f7f3ec;
  box-shadow: none;
}

.question-deck--enhanced.question-deck--mobile .question-deck__quote--soft {
  font-style: normal;
  font-weight: 700;
  color: #2b251f;
}

.question-deck--enhanced.question-deck--mobile .question-deck__quote--accent {
  background: linear-gradient(180deg, rgba(200, 156, 66, 0.16) 0%, rgba(200, 156, 66, 0.08) 100%);
}

.question-deck--enhanced.question-deck--mobile .question-deck__divider {
  justify-content: center;
  margin-top: 10px;
}

.question-deck--enhanced.question-deck--mobile .question-deck__divider-line {
  width: 0;
}

.question-deck--enhanced.question-deck--mobile .question-deck__item img {
  box-shadow: 0 18px 36px rgba(31, 25, 19, 0.14);
}

.qa-showcase {
  padding: clamp(90px, 9vw, 124px) 24px clamp(88px, 9vw, 126px);
  background: #fcfcfc;
}

.qa-showcase__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.qa-showcase__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 42px;
  text-align: center;
}

.qa-showcase__title {
  margin: 0;
  color: #1f1a16;
  font-family: "Overpass", sans-serif;
  font-size: clamp(2.1rem, 4.35vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.qa-showcase__title span {
  color: var(--gold);
}

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

.qa-showcase__item {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(55, 44, 31, 0.08);
  box-shadow: 0 22px 46px rgba(28, 23, 18, 0.08);
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.qa-showcase__emoji {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.32rem;
}

.qa-showcase__question {
  margin: 0 0 14px;
  max-width: calc(100% - 48px);
  color: #231d18;
  font-family: "Overpass", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}

.qa-showcase__answer {
  margin: 0;
  color: #766f67;
  font-size: 1rem;
  line-height: 1.72;
}

.handoff-surface {
  --handoff-stage-vh: 100svh;
  position: relative;
  min-height: 235svh;
  padding: 0 24px;
}

.handoff-surface--ticket,
.handoff-surface--ticket .handoff-surface__sticky,
.handoff-surface--ticket .handoff-surface__stage {
  background: #fcfcfc;
}

.handoff-surface--thanks {
  background: #fcfcfc;
}

.handoff-surface__sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--handoff-stage-vh, 100svh);
  max-width: 1560px;
  margin: 0 auto;
}

.handoff-surface__card {
  position: relative;
  width: min(100%, 1480px);
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

.handoff-surface__stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

.handoff-surface__stage--ticket {
  aspect-ratio: 1764 / 1176;
}

.handoff-surface__stage--thanks {
  aspect-ratio: 1764 / 1124;
}

.handoff-surface__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.handoff-surface__freeze {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.handoff-surface--thanks .handoff-surface__video {
  object-position: center 35%;
}

.handoff-surface--thanks .handoff-surface__freeze {
  object-position: center 35%;
}

.handoff-surface.is-frozen .handoff-surface__freeze {
  opacity: 1;
  visibility: visible;
}

.handoff-surface.is-frozen .handoff-surface__video {
  opacity: 0;
  visibility: hidden;
}

.handoff-surface__title,
.handoff-surface__desc {
  position: absolute;
  left: 50%;
  width: min(92%, 720px);
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  will-change: opacity, transform;
  z-index: 2;
}

.handoff-surface__title {
  top: clamp(26px, 5.8vh, 86px);
  color: #1f1a16;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.handoff-surface__title span {
  color: var(--gold);
}

.handoff-surface--ticket .handoff-surface__title {
  top: clamp(38px, 8.2vh, 104px);
  width: min(92%, 860px);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.45rem, 3.3vw, 3.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.handoff-surface--ticket .handoff-surface__title span {
  font-weight: 400;
  letter-spacing: -0.03em;
}

.handoff-surface--ticket .handoff-surface__card,
.handoff-surface--thanks .handoff-surface__card {
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.handoff-surface--ticket .handoff-surface__stage,
.handoff-surface--thanks .handoff-surface__stage {
  transform-origin: center center;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.handoff-surface--ticket .handoff-surface__title,
.handoff-surface--ticket .handoff-surface__desc,
.handoff-surface--thanks .handoff-surface__title,
.handoff-surface--thanks .handoff-surface__desc {
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

.handoff-surface--thanks .handoff-surface__sticky,
.handoff-surface--thanks .handoff-surface__stage {
  background: #fcfcfc;
}

.handoff-surface--thanks .handoff-surface__title {
  top: clamp(38px, 8vh, 100px);
  width: min(92%, 900px);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.45rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.handoff-surface--thanks .handoff-surface__title span {
  font-weight: 400;
  letter-spacing: -0.025em;
}

.handoff-surface__desc {
  bottom: clamp(24px, 7vh, 92px);
  color: #2f2a25;
  font-size: clamp(0.95rem, 1.28vw, 1.06rem);
  line-height: 1.7;
}

.handoff-surface__desc p {
  margin: 0 0 0.58rem;
}

.handoff-surface__desc p:last-child {
  margin-bottom: 0;
}

.handoff-surface__desc strong {
  color: #1f1a16;
}

.gadgets-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(84px, 8vw, 112px) 24px;
  background: #ffffff;
  overflow: hidden;
}

.gadgets-section__inner {
  position: relative;
  width: min(100%, 1280px);
  min-height: clamp(620px, 76svh, 840px);
  margin: 0 auto;
  isolation: isolate;
}

.gadgets-section__rotor-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 860px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.gadgets-section__rotor {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  animation: gadgets-rotor-spin 44s linear infinite;
}

.gadgets-section__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  z-index: 2;
  text-align: center;
}

.gadgets-section__title {
  width: min(100%, 34rem);
  margin: 0;
  color: #211d1a;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.gadgets-section__title span {
  display: block;
  margin-top: 0.22em;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.gadgets-section__desc {
  width: min(100%, 31rem);
  margin: clamp(20px, 3vw, 26px) auto 0;
  color: #666057;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.76;
  text-wrap: pretty;
}

@keyframes gadgets-rotor-spin {
  from {
    transform: rotate(0deg) scale(1.015);
  }

  to {
    transform: rotate(360deg) scale(1.015);
  }
}

.opinions-section {
  padding: clamp(84px, 8vw, 112px) 24px clamp(96px, 10vw, 124px);
  background: #fcfcfc;
}

.opinions-section__card {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 50px) clamp(22px, 4.5vw, 48px);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.opinions-section__header {
  text-align: center;
}

.opinions-section__title {
  margin: 0;
  color: #2c2722;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2rem, 3.15vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.opinions-section__title span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.opinions-section__subtitle {
  width: min(100%, 36rem);
  margin: 18px auto 0;
  color: #8b847b;
  font-size: 0.98rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.opinions-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.opinion-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #11100e;
  box-shadow: 0 8px 22px rgba(21, 15, 11, 0.12);
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.965);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    opacity 0.55s ease;
}

.opinions-section.is-visible .opinion-video {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.opinions-section.is-visible .opinion-video:nth-child(2) {
  transition-delay: 90ms;
}

.opinions-section.is-visible .opinion-video:nth-child(3) {
  transition-delay: 180ms;
}

.opinions-section.is-visible .opinion-video:nth-child(4) {
  transition-delay: 270ms;
}

.opinion-video:hover {
  transform: translate3d(0, -6px, 0) scale(1.015);
  box-shadow: 0 18px 42px rgba(204, 153, 51, 0.18);
}

.opinion-video__launch,
.opinion-video__player {
  position: absolute;
  inset: 0;
}

.opinion-video__launch {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.opinion-video__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opinion-video__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.08) 0%, rgba(12, 10, 9, 0) 34%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.52) 0%, rgba(12, 10, 9, 0) 42%);
}

.opinion-video__meta {
  display: none;
}

.opinion-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.opinion-video__play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.opinion-video__launch:hover .opinion-video__play,
.opinion-video__launch:focus-visible .opinion-video__play {
  transform: translate(-50%, -50%) scale(1.06);
  filter: drop-shadow(0 12px 22px rgba(214, 162, 51, 0.34));
}

.opinion-video__launch:focus-visible {
  outline: 3px solid rgba(214, 162, 51, 0.6);
  outline-offset: -3px;
}

.opinion-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.opinion-video.is-playing .opinion-video__launch {
  opacity: 0;
  pointer-events: none;
}

.opinions-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(30, 22, 16, 0.08);
}

.trust-stack {
  padding: 24px 24px clamp(118px, 10vw, 156px);
  background: #fcfcfc;
}

.trust-stack__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.trust-stack__item {
  position: sticky;
  top: var(--trust-stack-top, 108px);
  z-index: var(--stack-z, 1);
}

.trust-stack__item + .trust-stack__item {
  margin-top: clamp(92px, 9vw, 124px);
}

.trust-stack__card {
  padding: clamp(34px, 4.3vw, 50px) clamp(22px, 4.4vw, 44px);
  border: 1px solid rgba(204, 153, 51, 0.14);
  border-radius: 30px;
  background: #fffefb;
  box-shadow:
    0 30px 70px rgba(15, 11, 8, 0.08),
    0 10px 24px rgba(204, 153, 51, 0.08);
}

.trust-stack__header {
  text-align: center;
}

.trust-stack__header--compact {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.trust-stack__title {
  margin: 0;
  color: #221c17;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.trust-stack__title span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.032em;
}

.trust-stack__title--wide {
  width: min(100%, 49rem);
  margin-inline: auto;
}

.trust-stack__eyebrow {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trust-stack__lead {
  width: min(100%, 44rem);
  margin: 18px auto 0;
  color: #6f665d;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.trust-stack__note {
  width: min(100%, 48rem);
  margin: 22px auto 0;
  color: #746b62;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  text-wrap: pretty;
}

.trust-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.trust-quote {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(204, 153, 51, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-quote__stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.trust-quote__text {
  margin: 14px 0 0;
  color: #5d554d;
  font-size: 0.98rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.trust-quote__more {
  display: none;
}

.trust-quote__author {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-interest {
  text-align: center;
  margin-top: 26px;
}

.trust-interest__intro {
  margin: 0;
  color: #8f867d;
  font-size: 0.96rem;
  line-height: 1.65;
}

.trust-interest__stat {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-top: 14px;
  color: var(--gold);
  font-family: "Sora", "Overpass", sans-serif;
  line-height: 1;
}

.trust-interest__value {
  font-size: clamp(4.7rem, 10vw, 7.4rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.trust-interest__percent {
  margin-top: 0.12em;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.trust-interest__copy {
  margin: 10px 0 0;
  color: #7b7269;
  font-size: 1rem;
  line-height: 1.65;
}

.trust-stack__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(28, 21, 16, 0.08);
}

.trust-stack__footer-copy {
  width: min(100%, 34rem);
  margin: 0;
  color: #8f867d;
  font-size: 0.93rem;
  line-height: 1.65;
  text-align: center;
}

.trust-languages {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.trust-languages__flags {
  display: block;
  width: min(100%, 40rem);
  margin: 0 auto;
}

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

.trust-language-list__item,
.trust-room__fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 15px 16px;
  border-top: 1px solid rgba(28, 21, 16, 0.08);
}

.trust-language-list__item p,
.trust-room__fact p {
  margin: 0;
  color: #5d554d;
  font-size: 0.96rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.trust-language-list__item strong,
.trust-room__fact strong {
  color: #231c16;
}

.trust-language-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 0.55rem;
  box-shadow: 0 0 0 5px rgba(204, 153, 51, 0.1);
}

.trust-room {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  margin-top: 30px;
}

.trust-room__facts {
  display: grid;
  gap: 0;
}

.trust-room__figure {
  margin: 0;
}

.trust-room__figure img {
  display: block;
  width: min(100%, 29rem);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .trust-stack__item {
    position: sticky;
    top: clamp(98px, 10vh, 124px);
  }

  .trust-stack__item + .trust-stack__item {
    margin-top: clamp(340px, 36vh, 420px);
  }

  .trust-stack__item:nth-child(1),
  .trust-stack__item:nth-child(2),
  .trust-stack__item:nth-child(3),
  .trust-stack__item:nth-child(4) {
    --trust-stack-top: clamp(98px, 10vh, 124px);
  }

  .trust-stack__card--reviews,
  .trust-stack__card--interest,
  .trust-stack__card--languages {
    min-height: clamp(32rem, 64vh, 36rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .trust-stack__card--room {
    min-height: clamp(31rem, 60vh, 35rem);
  }

  .trust-quote__text {
    font-style: italic;
  }

  .trust-quote__more {
    display: inline;
  }

  .trust-reviews {
    gap: 22px;
    margin-top: 36px;
  }

  .trust-quote {
    padding: 26px 22px 24px;
    border-radius: 24px;
  }

  .trust-stack__note {
    width: min(100%, 56rem);
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .trust-interest {
    margin-top: 30px;
  }

  .trust-stack__footer {
    margin-top: 28px;
  }

  .trust-languages {
    align-content: center;
    gap: 26px;
    margin-top: 30px;
  }

  .trust-languages__flags {
    width: min(100%, 46rem);
  }

  .trust-language-list {
    width: min(100%, 52rem);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-language-list__item,
  .trust-room__fact {
    padding: 16px 12px;
  }

  .trust-room {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 4vw, 44px);
    margin-top: 34px;
  }

  .trust-room__figure img {
    width: min(100%, 27rem);
  }
}

.availability-section {
  padding: clamp(92px, 8vw, 118px) 24px clamp(88px, 8vw, 108px);
  background: #ffffff;
}

.availability-section__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(28px, 3.6vw, 40px);
}

.availability-section__header {
  text-align: center;
}

.availability-section__title {
  margin: 0;
  color: #2b2722;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.2rem, 3.35vw, 3.2rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.availability-section__title span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.availability-section__lead {
  margin: 12px 0 0;
  color: #77736d;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-section__lead strong {
  color: var(--gold);
}

.availability-section__map-wrap {
  width: min(100%, clamp(920px, 84vw, 1080px));
  padding: clamp(10px, 2vw, 18px) 0;
}

.availability-section__map {
  display: block;
  width: 100%;
  height: auto;
}

.availability-section__note {
  display: inline-flex;
  justify-content: center;
  width: min(100%, 620px);
  padding: 18px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(17, 12, 8, 0.08);
  text-align: center;
}

  .availability-section__note p {
    margin: 0;
    color: #6f6a63;
    font-size: clamp(0.93rem, 1vw, 1rem);
    line-height: 1.65;
  }

.map-proof {
  --map-proof-open: 0;
  --map-proof-reveal: 0;
  --map-proof-fill: 0;
  padding: 0;
  background: #0d0d0c;
}

.map-proof__scroll {
  position: relative;
  height: min(320svh, 3200px);
}

.map-proof__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.map-proof__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0d0d0c;
}

.map-proof__scene {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  justify-items: center;
  padding: clamp(72px, 7vw, 102px) 24px clamp(34px, 4vw, 48px);
  background:
    radial-gradient(circle at top center, rgba(234, 230, 222, 0.7) 0%, rgba(255,255,255,0) 36%),
    #ffffff;
  opacity: calc(0.02 + (var(--map-proof-reveal) * 0.98));
  transform: scale(calc(0.985 + (var(--map-proof-reveal) * 0.015)));
}

.map-proof__top {
  width: min(100%, 1240px);
  opacity: calc(var(--map-proof-reveal));
  transform: translate3d(0, calc((1 - var(--map-proof-reveal)) * -20px), 0);
}

.map-proof__top-title {
  margin: 0;
  color: #2d2924;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.15rem, 3.15vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.055em;
  text-align: center;
  text-wrap: balance;
}

.map-proof__top-title span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.map-proof__map-shell {
  position: relative;
  width: min(100%, clamp(960px, 84vw, 1120px));
  aspect-ratio: 1200 / 1080;
  align-self: center;
}

.map-proof__canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: calc(0.42 + (var(--map-proof-reveal) * 0.58));
}

.map-proof__counter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(164px, 15.5vw, 220px);
  height: clamp(164px, 15.5vw, 220px);
  margin-left: calc(clamp(164px, 15.5vw, 220px) * -0.5);
  margin-top: calc(clamp(164px, 15.5vw, 220px) * -0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px;
  border: 3px solid rgba(214, 162, 51, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(214, 162, 51, 0.2);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, box-shadow;
  transform: scale(calc(0.88 + (var(--map-proof-reveal) * 0.12)));
  opacity: calc(var(--map-proof-reveal));
}

.map-proof__counter::before,
.map-proof__counter::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.map-proof__counter::before {
  inset: 8px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(214, 162, 51, 0.14) 0%, rgba(214, 162, 51, 0.26) 100%);
  opacity: calc(0.1 + (var(--map-proof-fill) * 0.55));
  transform: translate3d(0, calc((1 - var(--map-proof-fill)) * 102%), 0);
  transition: transform 180ms linear, opacity 220ms ease;
  z-index: 0;
}

.map-proof__counter::after {
  left: 14%;
  right: 14%;
  top: 18%;
  height: 16%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.14) 46%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 248, 228, 0.3) 0%, rgba(255, 248, 228, 0.08) 100%);
  opacity: calc(var(--map-proof-fill) * 0.85);
  filter: blur(4px);
  transform: translate3d(0, calc((1 - var(--map-proof-fill)) * 360%), 0);
  animation: map-proof-liquid-wave 4.6s linear infinite;
  z-index: 1;
}

.map-proof__counter > * {
  position: relative;
  z-index: 2;
}

.map-proof__counter.is-pulsing {
  animation: map-proof-counter-pulse 2.25s ease-in-out infinite;
}

.map-proof__counter.is-heartbeat {
  animation: map-proof-counter-heartbeat 1.15s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.map-proof__counter-value {
  color: var(--gold);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2.1rem, 3.35vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.map-proof__counter-copy {
  color: #615a52;
  font-size: clamp(0.7rem, 0.82vw, 0.84rem);
  line-height: 1.25;
}

.map-proof__counter-copy strong {
  color: #2c2722;
}

.map-proof__counter-copy small {
  display: block;
  margin-top: 2px;
  color: #8a8379;
  font-size: 0.88em;
}

.map-proof__note {
  max-width: min(100%, 1040px);
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(18, 13, 10, 0.12);
  color: #504840;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  opacity: calc(var(--map-proof-reveal));
  transform: translate3d(0, calc((1 - var(--map-proof-reveal)) * 16px), 0);
}

.map-proof__curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc((1 - var(--map-proof-open)) * 50% + 2px);
  background: #0d0d0c;
  z-index: 3;
  pointer-events: none;
}

.map-proof__curtain--left {
  left: 0;
}

.map-proof__curtain--right {
  right: 0;
}

@keyframes map-proof-liquid-wave {
  0% {
    background-position: 0% 50%, 0 0;
  }
  100% {
    background-position: 180% 50%, 0 0;
  }
}

@keyframes map-proof-counter-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(214, 162, 51, 0.2);
  }
  50% {
    transform: scale(1.032);
    box-shadow: 0 18px 44px rgba(214, 162, 51, 0.28);
  }
}

@keyframes map-proof-counter-heartbeat {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(214, 162, 51, 0.2);
  }
  16% {
    transform: scale(1.085);
    box-shadow: 0 20px 48px rgba(214, 162, 51, 0.32);
  }
  30% {
    transform: scale(0.965);
  }
  46% {
    transform: scale(1.11);
    box-shadow: 0 24px 58px rgba(214, 162, 51, 0.36);
  }
  64% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(214, 162, 51, 0.2);
  }
}

.map-proof__intro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 4;
  opacity: calc(1 - (var(--map-proof-open) * 1.25));
  pointer-events: none;
}

.map-proof__intro-title {
  margin: 0;
  color: #f7f3ec;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.055em;
  text-align: center;
  text-wrap: balance;
  transform: translate3d(0, calc((var(--map-proof-open) * -46px)), 0) scale(calc(1 - (var(--map-proof-open) * 0.08)));
  filter: blur(calc(var(--map-proof-open) * 6px));
}

.map-proof__intro-title span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.03em;
}

@media (prefers-reduced-motion: reduce) {
  .map-proof__counter::after,
  .map-proof__counter.is-pulsing,
  .map-proof__counter.is-heartbeat {
    animation: none !important;
  }
}

.ticket-benefits--legacy,
.after-hero--legacy {
  display: none !important;
}

.qa-showcase__item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes film-showcase-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.after-hero {
  padding: 100px 24px;
  background: #ffffff;
}

.after-hero--light {
  background: #f7f3ed;
}

.after-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.after-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.after-hero h2 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.1;
}

.after-hero p:last-child {
  margin: 0;
  max-width: 64ch;
  color: #555555;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .availability-section {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: clamp(32px, 3.2vw, 46px) 24px clamp(34px, 3vw, 44px);
  }

  .availability-section__inner {
    gap: clamp(14px, 1.8vw, 22px);
  }

  .availability-section__title {
    font-size: clamp(1.85rem, 2.5vw, 2.45rem);
  }

  .availability-section__lead {
    margin-top: 6px;
    font-size: clamp(0.82rem, 0.84vw, 0.92rem);
    line-height: 1.36;
  }

  .availability-section__map-wrap {
    width: min(100%, clamp(760px, 62vw, 940px));
    padding: 0;
  }

  .availability-section__map {
    width: auto;
    max-width: 100%;
    max-height: min(58svh, 640px);
    margin-inline: auto;
  }

  .availability-section__note {
    width: min(100%, 620px);
    padding: 14px 24px;
  }

  .availability-section__note p {
    font-size: clamp(0.86rem, 0.9vw, 0.96rem);
    line-height: 1.56;
  }

  .map-proof__scroll {
    height: min(260svh, 2600px);
  }

  .map-proof__scene {
    padding: clamp(84px, 7.8vh, 108px) 24px clamp(30px, 3vh, 42px);
  }

  .map-proof__top {
    width: min(100%, 820px);
  }

  .map-proof__top-title {
    font-size: clamp(1.95rem, 2.85vw, 2.9rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .map-proof__intro {
    padding: 24px;
    align-items: center;
  }

  .map-proof__intro-title {
    width: min(100%, 820px);
    margin-top: 0;
    font-size: clamp(1.95rem, 2.85vw, 2.9rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-align: center;
  }

  .map-proof__top-title span,
  .map-proof__intro-title span {
    display: block;
    margin-top: 0.1em;
  }

  .map-proof__map-shell {
    width: min(100%, clamp(680px, 54vw, 820px));
  }

  .map-proof__counter {
    width: clamp(136px, 11vw, 176px);
    height: clamp(136px, 11vw, 176px);
    margin-left: calc(clamp(136px, 11vw, 176px) * -0.5);
    margin-top: calc(clamp(136px, 11vw, 176px) * -0.5);
    padding: 14px;
  }

  .map-proof__counter-value {
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  }

  .map-proof__counter-copy {
    font-size: clamp(0.68rem, 0.78vw, 0.82rem);
    line-height: 1.3;
  }

  .map-proof__note {
    max-width: min(100%, 900px);
    padding: 14px 24px;
    font-size: clamp(0.86rem, 0.92vw, 0.98rem);
    line-height: 1.52;
  }
}

@media (max-width: 1100px) {
  .site-header__contact {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    display: none;
  }

  .floating-term-cta {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    min-width: 136px;
    min-height: 42px;
    padding: 0 16px;
    aspect-ratio: auto;
    border-width: 1px;
    border-color: rgba(220, 178, 83, 0.58);
    border-radius: 999px;
    background: rgba(255, 249, 237, 0.96);
    box-shadow: 0 10px 24px rgba(32, 20, 6, 0.16);
    color: #6b4910;
    animation: none;
  }

  .floating-term-cta::before {
    display: none;
  }

  .floating-term-cta::after {
    display: none;
  }

  .floating-term-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(32, 20, 6, 0.18);
    filter: none;
  }

  .floating-term-cta__label {
    width: auto;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-shadow: none;
  }

  .hero {
    min-height: var(--mobile-locked-vh, 100vh);
  }

  .hero-content {
    max-width: 372px;
    padding: 38px 24px 0;
  }

  .hero-video {
    opacity: 1;
    object-fit: contain;
    object-position: center center;
    transition: none;
  }

  .hero-static-overlay {
    background: rgba(0, 0, 0, 0.08);
  }

  .hero-overlay {
    background: rgba(10, 10, 10, 0.62);
  }

  .hero-title-frame {
    max-width: 358px;
    padding: 16px 22px 18px;
  }

  .hero-title-frame__horizontal {
    width: 56px;
  }

  .hero-title-frame__vertical {
    height: 12px;
  }

  .hero-title-frame__line--light {
    font-size: clamp(2.3rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .hero-title-frame__line--accent {
    font-size: clamp(2.45rem, 8.7vw, 3.25rem);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 352px;
    margin-top: 30px;
  }

  .hero-copy__lead {
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-copy__body {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-copy__meta {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.64;
    color: rgba(255, 255, 255, 0.42);
  }

  .hero-break--desktop {
    display: none;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .stories-wrap {
    background: #17110f;
  }

  .stories-section {
    padding: 0;
    justify-content: stretch;
    background: #17110f;
  }

  .stories-heading {
    display: none;
  }

  .stories-phone {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    min-height: 0;
    max-height: none;
    background: #17110f;
  }

  .stories-progress {
    top: calc(56px + env(safe-area-inset-top, 0px) + 12px);
    left: 14px;
    right: 14px;
    width: auto;
    transform: translate3d(0, 0, 0);
  }

  .stories-header {
    top: calc(56px + env(safe-area-inset-top, 0px) + 26px);
    left: 16px;
    right: 16px;
    width: auto;
    transform: translate3d(0, 0, 0);
  }

  .story-card {
    left: 0;
    width: 100%;
    min-height: 0;
    height: 100%;
    margin-left: 0;
    padding: calc(56px + env(safe-area-inset-top, 0px) + 108px) 24px 34px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    filter: none;
  }

  .story-card.active,
  .story-card.story-card-preview-1,
  .story-card.story-card-preview-2,
  .story-card.story-card-past {
    transform: none;
    filter: none;
  }

  .story-card.story-card-preview-1,
  .story-card.story-card-preview-2,
  .story-card.story-card-past {
    opacity: 0;
    z-index: 1;
  }

  .story-card.active {
    z-index: 4;
  }

  .story-card-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1;
    margin-bottom: 22px;
  }

  .story-card-body {
    max-width: 100%;
    font-size: clamp(0.98rem, 4.4vw, 1.08rem);
    line-height: 1.72;
  }

  .story-card-footer {
    max-width: 100%;
    font-size: clamp(0.92rem, 3.9vw, 1rem);
    line-height: 1.55;
  }

  .story-card-reverse {
    padding-bottom: 90px;
  }

  .story-card-reverse .story-card-footer {
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    max-width: none;
    padding: 18px 0 0;
    transform: none;
  }

  .stories-tap {
    width: 50%;
  }

  .stories-wrap {
    height: calc(var(--stories-count, 3) * var(--mobile-locked-vh, 100vh));
  }

  .stories-pin {
    height: var(--mobile-locked-vh, 100vh);
  }

  .film-showcase {
    scroll-margin-top: 24px;
    display: flex;
    align-items: center;
    min-height: var(--mobile-locked-vh, 100vh);
    padding: clamp(34px, calc(var(--mobile-locked-vh, 100vh) * 0.056), 56px) 18px;
    overflow: hidden;
  }

  .film-showcase__inner {
    width: 100%;
    max-width: 342px;
    margin: 0 auto;
  }

  .film-showcase__mobile-copy,
  .film-showcase__mobile-desc {
    display: block;
  }

  .film-showcase__mobile-copy {
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }

  .film-showcase__mobile-title {
    margin: 0;
    color: #1f1b18;
    font-family: "Overpass", sans-serif;
    font-size: clamp(2.4rem, 10.4vw, 3.2rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .film-showcase__mobile-accent {
    display: block;
    color: var(--gold);
    font-weight: 700;
    line-height: 0.9;
  }

  .film-showcase__mobile-mark {
    font-size: 0.56em;
    vertical-align: super;
  }

  .film-showcase__mobile-qmark {
    margin-left: 0;
  }

  .film-showcase__frame {
    width: min(100%, 342px);
    max-width: 342px;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  }

  .film-showcase__title-desktop {
    display: none;
  }

  .film-showcase__play {
    width: 60px;
    height: 60px;
  }

  .film-showcase__play::after {
    inset: -6px;
  }

  .film-showcase__play-icon {
    margin-left: 3px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 18px;
  }

  .film-showcase__mobile-desc {
    max-width: 336px;
    margin: 22px auto 0;
    padding: 0 8px;
    color: #605951;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .film-showcase__cta {
    width: 100%;
    min-width: 0;
    margin-top: 30px;
  }

  .film-showcase--guestbook {
    padding-top: clamp(34px, calc(var(--mobile-locked-vh, 100vh) * 0.056), 56px);
  }

  .film-showcase__mobile-copy--guestbook {
    display: block;
    margin-bottom: 28px;
  }

  .film-showcase__mobile-title--guestbook {
    font-size: clamp(2.25rem, 11.2vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .film-showcase__mobile-title--guestbook .film-showcase__mobile-accent {
    margin-top: 6px;
    color: #d2a03c;
  }

  .cta-pill--compact {
    min-width: 214px;
    min-height: 46px;
    padding: 14px 28px 12px;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(204, 153, 51, 0.38);
  }

  .cta-pill--wide {
    width: min(100%, 20rem);
    min-width: 0;
    min-height: 56px;
    padding: 14px 18px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .scenario-flow {
    --scenario-mobile-progress: 0;
    padding: 0 0 40px;
    background:
      radial-gradient(circle at top center, rgba(229, 178, 79, 0.14), transparent 34%),
      linear-gradient(180deg, #120e0c 0%, #181210 100%);
  }

  .scenario-flow__desktop {
    display: none;
  }

  .scenario-flow__mobile {
    display: block;
  }

  .scenario-flow__mobile-shell {
    position: relative;
    padding: 0 14px 36px;
  }

  .scenario-flow__mobile-intro {
    position: sticky;
    top: 0;
    z-index: 4;
    pointer-events: none;
  }

  .scenario-flow__mobile-intro-inner {
    min-height: var(--mobile-locked-vh, 100vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 8px 40px;
    box-sizing: border-box;
    text-align: center;
  }

  .scenario-flow__mobile-title {
    margin: 0;
    font-family: "Sora", "Overpass", sans-serif;
    font-size: clamp(34px, 10.4vw, 52px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-wrap: balance;
    text-shadow: 0 20px 58px rgba(0, 0, 0, 0.26);
  }

  .scenario-flow__mobile-line {
    display: block;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .scenario-flow__mobile-line--top {
    color: #f1e8db;
    transform: translate3d(0, calc(var(--scenario-mobile-progress) * -28svh), 0);
    opacity: calc(1 - (var(--scenario-mobile-progress) * 4.2));
    filter: blur(calc(var(--scenario-mobile-progress) * 6px));
  }

  .scenario-flow__mobile-line--bottom {
    margin-top: 8px;
    color: #e5b24f;
    text-shadow: 0 0 26px rgba(229, 178, 79, 0.14);
    transform: translate3d(0, calc(var(--scenario-mobile-progress) * 28svh), 0);
    opacity: calc(1 - (var(--scenario-mobile-progress) * 4.2));
    filter: blur(calc(var(--scenario-mobile-progress) * 6px));
  }

  .scenario-flow__mobile-subtitle {
    margin: 24px auto 0;
    max-width: 22ch;
    color: rgba(255, 247, 233, 0.82);
    font-family: "Sora", "Overpass", sans-serif;
    font-size: clamp(18px, 4.8vw, 24px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    transform: translate3d(0, calc(var(--scenario-mobile-progress) * 10svh), 0);
    opacity: calc(1 - (var(--scenario-mobile-progress) * 4.6));
  }

  .scenario-flow__mobile-stack {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0 0 32px;
    margin-top: -10px;
  }

  .scenario-flow.is-transitioned .scenario-flow__mobile-intro {
    z-index: 1;
  }

  .scenario-card--mobile {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 356px;
    min-height: calc(var(--mobile-locked-vh, 100vh) - 12px);
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    opacity: 0.5;
    padding: 18px;
    margin: 0 auto;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
    transform: translateY(34px) scale(0.965);
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    border: 1px solid rgba(200, 156, 66, 0.08);
  }

  .scenario-card--mobile.is-visible {
    opacity: 0.9;
    transform: translateY(0) scale(1);
  }

  .scenario-card--mobile.is-active {
    opacity: 1;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
    border-color: rgba(200, 156, 66, 0.22);
  }

  .scenario-card--mobile .scenario-card__media {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(circle at top center, rgba(255, 239, 204, 0.8), rgba(255, 255, 255, 0.98) 62%),
      #ffffff;
    border: 1px solid rgba(200, 156, 66, 0.18);
    flex: 0 0 auto;
    min-height: 0;
  }

  .scenario-card--mobile .scenario-card__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .scenario-card--mobile .scenario-card__copy {
    gap: 12px;
  }

  .scenario-card--mobile .scenario-card__kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(200, 156, 66, 0.12);
    color: #a77212;
    font-family: "Sora", "Overpass", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .scenario-card--mobile .scenario-card__title {
    margin: 0;
    color: #1f1b18;
    font-family: "Sora", "Overpass", sans-serif;
    font-size: clamp(1.32rem, 5.6vw, 1.72rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .scenario-card--mobile .scenario-card__body {
    color: #4c443c;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .compare-section {
    padding: 72px 18px 74px;
  }

  .compare-section__inner {
    max-width: 390px;
  }

  .compare-section__intro {
    margin-bottom: 28px;
  }

  .compare-section__quote {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .compare-section__kicker {
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .compare-table {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-table__header {
    display: none;
  }

  .compare-row {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 28px;
    border: 1px solid rgba(126, 103, 67, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(26, 21, 16, 0.1);
  }

  .compare-row + .compare-row {
    margin-top: 0;
  }

  .compare-row__transform {
    min-height: auto;
    padding: 4px 0 0;
  }

  .compare-row__transform::before {
    left: 50%;
    right: auto;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(204, 153, 51, 0.14) 0%,
      rgba(204, 153, 51, 0.5) 50%,
      rgba(204, 153, 51, 0.14) 100%
    );
  }

  .compare-row__transform-label {
    display: none;
  }

  .compare-row__transform-arrow {
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
    animation: compare-arrow-drift-y 1.7s ease-in-out infinite;
  }

  @keyframes compare-arrow-drift-y {
    0%,
    100% {
      transform: rotate(90deg) translateX(-4px);
      opacity: 0.58;
    }

    50% {
      transform: rotate(90deg) translateX(4px);
      opacity: 1;
    }
  }

  .compare-cell {
    padding: 16px 16px 18px;
    border-radius: 22px;
    box-shadow: none;
  }

  .compare-cell--photo {
    background: #f7f4ee;
  }

  .compare-cell--brand {
    background: linear-gradient(180deg, rgba(200, 156, 66, 0.12) 0%, rgba(200, 156, 66, 0.04) 100%);
  }

  .compare-cell__label {
    display: block;
    margin-bottom: 10px;
    color: #8b7b68;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: none;
  }

  .compare-cell--brand .compare-cell__label {
    color: #b98828;
  }

  .compare-cell p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .question-deck {
    padding: 72px 18px 76px;
  }

  .question-deck__sticky {
    max-width: 390px;
  }

  .question-deck__intro {
    margin-bottom: 28px;
  }

  .question-deck__hero-line--top {
    max-width: 9.5ch;
    font-size: clamp(2.65rem, 11.8vw, 4rem);
  }

  .question-deck__hero-line--bottom {
    max-width: 8.5ch;
    font-size: clamp(2.8rem, 12.6vw, 4.15rem);
  }

  .question-deck__inner {
    max-width: 390px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .question-deck__lead {
    text-align: center;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 18px 18px 20px;
    border-radius: 26px;
    border: 1px solid rgba(126, 103, 67, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 36px rgba(26, 21, 16, 0.1);
  }

  .question-deck__lead-title {
    margin: 0 auto;
    max-width: none;
    font-size: clamp(1.72rem, 7.4vw, 2.35rem);
    line-height: 1.08;
    text-align: center;
  }

  .question-deck__center {
    justify-content: center;
  }

  .question-deck__center-track {
    width: min(100%, 236px);
  }

  .question-deck__grid {
    gap: 18px;
  }

  .question-deck__narrative {
    gap: 12px;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 18px 18px 20px;
    border-radius: 26px;
    border: 1px solid rgba(126, 103, 67, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 36px rgba(26, 21, 16, 0.1);
    text-align: center;
  }

  .question-deck__narrative-intro,
  .question-deck__narrative-outro {
    display: none;
  }

  .question-deck__quote {
    margin: 12px 0 0;
    padding: 14px 16px;
    border-radius: 20px;
    text-align: center;
    background: #f7f3ec;
    box-shadow: none;
  }

  .question-deck__quote--soft {
    font-style: normal;
    font-weight: 700;
    color: #2b251f;
  }

  .question-deck__divider {
    justify-content: center;
    margin-top: 10px;
  }

  .question-deck__divider-line {
    width: 0;
  }

  .question-deck__divider-label {
    font-size: 0.68rem;
  }

  .qa-showcase {
    padding: 72px 18px 74px;
  }

  .qa-showcase__inner {
    max-width: 390px;
  }

  .qa-showcase__intro {
    margin-bottom: 28px;
  }

  .qa-showcase__title {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    line-height: 0.98;
  }

  .qa-showcase__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qa-showcase__item {
    padding: 22px 22px 20px;
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(28, 23, 18, 0.08);
  }

  .qa-showcase__question {
    margin-bottom: 12px;
    max-width: calc(100% - 36px);
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .qa-showcase__answer {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .handoff-surface {
    min-height: calc(var(--mobile-locked-vh, 100vh) * 1.78);
    padding: 0 18px;
  }

  .handoff-surface__sticky {
    top: 0;
    max-width: 390px;
    height: var(--handoff-stage-vh, 100svh);
    min-height: var(--handoff-stage-vh, 100svh);
    box-sizing: border-box;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .handoff-surface__card {
    width: 100%;
  }

  .handoff-surface__stage {
    border-radius: 0;
  }

  .handoff-surface__title,
  .handoff-surface__desc {
    position: static;
    width: 100%;
    transform: none;
    left: auto;
  }

  .handoff-surface__card {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: clamp(14px, 2.4svh, 18px);
    min-height: auto;
    max-height: 100%;
    align-content: center;
    align-items: start;
  }

  .handoff-surface__title {
    order: 1;
    width: min(100%, 18.75rem);
    justify-self: center;
    margin-inline: auto;
    text-align: center;
  }

  .handoff-surface__stage {
    order: 2;
    align-self: center;
  }

  .handoff-surface__desc {
    order: 3;
  }

  .handoff-surface__title {
    font-family: "Sora", "Overpass", sans-serif;
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .handoff-surface--ticket .handoff-surface__title,
  .handoff-surface--thanks .handoff-surface__title {
    margin-top: 0;
  }

  .handoff-surface__stage--ticket {
    width: calc(100% + 48px);
    margin-left: -24px;
  }

  .handoff-surface__stage--thanks {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .handoff-surface__desc {
    max-width: 23rem;
    margin: 0 auto;
    padding: 0 10px;
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.58;
  }

  .handoff-surface__desc--ticket {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .handoff-surface__desc--ticket p {
    margin: 0;
  }

  .handoff-surface__desc--ticket p:first-child {
    font-size: clamp(1.16rem, 4.8vw, 1.34rem);
    line-height: 1.34;
    text-wrap: balance;
  }

  .handoff-surface__desc--ticket p:nth-child(2) {
    font-size: clamp(1rem, 4vw, 1.08rem);
    line-height: 1.5;
    color: #6e6559;
  }

  .handoff-surface__desc--ticket p:nth-child(3),
  .handoff-surface__desc--ticket p:nth-child(4) {
    padding: 11px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(251,244,227,0.96) 100%);
    box-shadow: 0 12px 28px rgba(196, 166, 113, 0.14);
    font-size: clamp(1.05rem, 4.3vw, 1.14rem);
    line-height: 1.42;
  }

  .handoff-surface__desc--thanks {
    max-width: 21.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .handoff-surface__desc--thanks p {
    margin: 0;
  }

  .handoff-surface__desc--thanks p:first-child {
    font-size: clamp(1.08rem, 4.45vw, 1.24rem);
    line-height: 1.3;
    text-wrap: balance;
  }

  .handoff-surface__desc--thanks p:nth-child(2) {
    font-size: clamp(0.94rem, 3.65vw, 1rem);
    line-height: 1.42;
    color: #6a6671;
  }

  .handoff-surface__desc--thanks p:nth-child(3),
  .handoff-surface__desc--thanks p:nth-child(4) {
    padding: 9px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(241,244,250,0.98) 100%);
    box-shadow: 0 12px 28px rgba(154, 166, 193, 0.16);
    font-size: clamp(0.98rem, 3.9vw, 1.06rem);
    line-height: 1.34;
  }

  .gadgets-section {
    min-height: var(--mobile-locked-vh, 100vh);
    padding: 24px 18px 34px;
  }

  .gadgets-section__inner {
    min-height: calc(var(--mobile-locked-vh, 100vh) - 44px);
  }

  .gadgets-section__rotor-wrap {
    width: min(162vw, 40rem);
  }

  .gadgets-section__rotor {
    animation-duration: 48s;
  }

  .gadgets-section__copy {
    padding: 24px 18px;
  }

  .gadgets-section__title {
    width: min(100%, 16.75rem);
    font-size: clamp(2.25rem, 9.2vw, 3rem);
    line-height: 0.98;
  }

  .gadgets-section__desc {
    width: min(100%, 18.75rem);
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .opinions-section {
    padding: 20px 14px 46px;
  }

  .availability-section {
    padding: 34px 14px 44px;
  }

  .availability-section__inner {
    gap: 22px;
  }

  .availability-section__title {
    width: min(100%, 18rem);
    margin-inline: auto;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.12;
  }

  .availability-section__title span {
    display: block;
    margin-top: 0.12em;
  }

  .availability-section__lead {
    width: min(100%, 18rem);
    margin: 12px auto 0;
    font-size: 0.88rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .availability-section__map-wrap {
    width: calc(100vw - 12px);
    max-width: none;
    margin-inline: calc(50% - 50vw + 6px);
    padding: 8px 0;
  }

  .availability-section__note {
    width: min(100%, 21rem);
    padding: 16px 18px;
    border-radius: 20px;
  }

  .availability-section__note p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .map-proof__scroll {
    height: calc(var(--mobile-locked-vh, 100vh) * 2.4);
  }

  .map-proof__sticky {
    height: var(--mobile-locked-vh, 100vh);
  }

  .map-proof__scene {
    padding: 78px 8px 24px;
  }

  .map-proof__top {
    width: min(100%, 21.5rem);
  }

  .map-proof__top-title,
  .map-proof__intro-title {
    font-size: clamp(1.95rem, 8.8vw, 2.45rem);
    line-height: 1.12;
  }

  .map-proof__top-title span,
  .map-proof__intro-title span {
    display: block;
    margin-top: 0.12em;
  }

  .map-proof__map-shell {
    width: calc(100vw - 12px);
    max-width: none;
    margin-inline: calc(50% - 50vw + 6px);
    aspect-ratio: 1200 / 1080;
  }

  .map-proof__counter {
    width: 140px;
    height: 140px;
    margin-left: -70px;
    margin-top: -70px;
    padding: 15px;
  }

  .map-proof__counter-value {
    font-size: 2rem;
  }

  .map-proof__counter-copy {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .map-proof__note {
    width: min(100%, 22rem);
    padding: 12px 16px;
    border-radius: 22px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .opinions-section__card {
    padding: 28px 18px 30px;
    border-radius: 26px;
  }

  .opinions-section__title {
    width: min(100%, 17rem);
    margin-inline: auto;
    font-size: clamp(1.95rem, 9.2vw, 2.45rem);
    line-height: 1.12;
  }

  .opinions-section__title span {
    display: block;
    margin-top: 0.14em;
  }

  .opinions-section__subtitle {
    width: min(100%, 19rem);
    margin-top: 14px;
    font-size: 0.99rem;
    line-height: 1.66;
  }

  .opinions-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .opinion-video {
    border-radius: 14px;
  }

  .opinion-video__play {
    width: 56px;
    height: 40px;
  }

  .opinions-section__cta {
    margin-top: 28px;
    padding-top: 24px;
  }

  .trust-stack {
    padding: 34px 10px 76px;
    --trust-stack-mobile-card-height: min(38.75rem, calc(100dvh - 72px));
    --trust-stack-mobile-reviews-card-height: min(42.5rem, calc(100dvh - 28px));
    --trust-stack-mobile-room-card-height: min(43rem, calc(100dvh - 36px));
  }

  .trust-stack__item {
    top: var(--trust-stack-top, clamp(24px, calc((100dvh - var(--trust-stack-mobile-card-height)) / 2 + 16px), 152px));
  }

  .trust-stack__item + .trust-stack__item {
    margin-top: 156px;
  }

  .trust-stack__card {
    width: min(100%, 20.75rem);
    margin-inline: auto;
    height: var(--trust-stack-mobile-card-height);
    min-height: 0;
    padding: 24px 18px 22px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
  }

  .trust-stack__item:nth-child(-n+4) .trust-stack__card {
    height: var(--trust-stack-mobile-card-height);
    min-height: 0;
  }

  .trust-stack__item:nth-child(1) {
    --trust-stack-top: clamp(18px, calc((100dvh - var(--trust-stack-mobile-reviews-card-height)) / 2 + 6px), 126px);
  }

  .trust-stack__item:nth-child(1) .trust-stack__card--reviews {
    height: var(--trust-stack-mobile-reviews-card-height);
    overflow: hidden;
  }

  .trust-stack__item:nth-child(4) {
    --trust-stack-top: clamp(20px, calc((100dvh - var(--trust-stack-mobile-room-card-height)) / 2 + 8px), 128px);
  }

  .trust-stack__item:nth-child(4) .trust-stack__card--room {
    height: var(--trust-stack-mobile-room-card-height);
  }

  .trust-stack__card--reviews,
  .trust-stack__card--interest,
  .trust-stack__card--languages,
  .trust-stack__card--room {
    gap: 18px;
    justify-content: flex-start;
  }

  .trust-stack__header--compact,
  .trust-stack__title--wide,
  .trust-stack__lead,
  .trust-stack__note,
  .trust-stack__footer-copy {
    width: min(100%, 17.4rem);
  }

  .trust-stack__header {
    flex: 0 0 auto;
  }

  .trust-stack__title {
    font-size: clamp(1.62rem, 7.6vw, 2.02rem);
    line-height: 1.04;
  }

  .trust-stack__title--wide {
    width: min(100%, 16.8rem);
  }

  .trust-stack__eyebrow {
    margin-top: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .trust-stack__lead {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .trust-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    flex: 1 1 auto;
    align-content: start;
  }

  .trust-stack__card--reviews .trust-reviews {
    gap: 10px;
  }

  .trust-quote {
    padding: 14px 12px;
    border-radius: 17px;
  }

  .trust-stack__card--reviews .trust-quote:not(.trust-quote--primary) {
    padding: 12px 10px;
  }

  .trust-quote--primary {
    grid-column: 1 / -1;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
  }

  .trust-quote--primary .trust-quote__stars,
  .trust-quote--primary .trust-quote__text,
  .trust-quote--primary .trust-quote__author {
    text-align: center;
  }

  .trust-quote--primary .trust-quote__text {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
  }

  .trust-quote--primary .trust-quote__author {
    padding-top: 10px;
  }

  .trust-quote__stars {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .trust-quote__text {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .trust-stack__card--reviews .trust-quote:not(.trust-quote--primary) .trust-quote__text {
    font-size: 0.79rem;
    line-height: 1.42;
  }

  .trust-quote__author {
    padding-top: 10px;
    font-size: 0.74rem;
  }

  .trust-stack__card--reviews .trust-quote:not(.trust-quote--primary) .trust-quote__author {
    padding-top: 8px;
  }

  .trust-stack__note {
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.76rem;
    line-height: 1.46;
  }

  .trust-stack__card--reviews .trust-stack__note {
    width: min(100%, 16.2rem);
    padding-top: 14px;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .trust-stack__note strong {
    color: #221c17;
    font-weight: 700;
  }

  .trust-interest {
    margin-top: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .trust-interest__intro {
    width: min(100%, 15.5rem);
    margin-inline: auto;
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .trust-interest__stat,
  .trust-interest__copy {
    margin-top: 0;
  }

  .trust-interest__value {
    font-size: clamp(3.35rem, 18vw, 4.2rem);
  }

  .trust-interest__percent {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .trust-interest__copy {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .trust-stack__footer {
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
  }

  .trust-stack__footer-copy {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .trust-languages {
    gap: 16px;
    margin-top: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .trust-languages__flags {
    width: min(100%, 15.75rem);
  }

  .trust-language-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .trust-language-list__item,
  .trust-room__fact {
    gap: 10px;
    padding: 10px 0;
  }

  .trust-language-list__item p,
  .trust-room__fact p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .trust-room {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 0;
    flex: 1 1 auto;
    align-content: space-between;
  }

  .trust-room__facts {
    gap: 4px;
  }

  .trust-room__figure {
    order: 2;
    margin-top: auto;
  }

  .trust-room__figure img {
    width: min(100%, 17.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gadgets-section__rotor {
    animation: none;
  }
}

.guest-magnet {
  position: relative;
  min-height: 300vh;
  background: #ffffff;
  overflow: clip;
}

.guest-magnet__inner,
.anniversary-machine__inner,
.value-package__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.guest-magnet__eyebrow,
 .anniversary-machine__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.guest-magnet__title,
 .anniversary-machine__title {
  margin: 20px auto 0;
  max-width: 17ch;
  color: #171410;
  font-size: clamp(2.15rem, 3.15vw, 3.1rem);
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.055em;
}

.guest-magnet__title span,
.anniversary-machine__title span {
  color: var(--gold);
}

.guest-magnet__lead,
.anniversary-machine__lead {
  width: min(100%, 46rem);
  margin: 22px auto 0;
  color: rgba(23, 20, 16, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
  text-align: center;
}

.guest-magnet__header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.guest-magnet__title {
  max-width: 16.5ch;
  color: #171410;
}

.guest-magnet__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 768px) {
  .guest-magnet__title {
    font-size: clamp(1.95rem, 2.85vw, 2.9rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }
}

.guest-magnet__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  touch-action: pan-y pinch-zoom;
}

.guest-magnet__inner {
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(74px, 10vh, 106px) clamp(28px, 5.6vh, 54px);
}

.guest-magnet__viewport {
  position: relative;
  margin-top: 44px;
  overflow: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-y pinch-zoom;
}

.guest-magnet__track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding-inline: 24vw;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}

.guest-magnet__track.is-swipe-transitioning {
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guest-magnet__card {
  position: relative;
  flex: 0 0 52vw;
  width: 52vw;
  min-width: 52vw;
  height: clamp(25rem, 33vw, 30rem);
  border-radius: 30px;
  background-color: #111111;
  background-image: var(--guest-magnet-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 40px 96px rgba(18, 16, 13, 0.16);
  filter: brightness(0.88) saturate(0.96);
  opacity: 0.86;
  touch-action: pan-y pinch-zoom;
  transform: scale(0.96);
  transition:
    filter 520ms ease,
    opacity 360ms ease,
    transform 360ms ease,
    box-shadow 360ms ease,
    background-position 360ms ease;
}

.guest-magnet__card.is-active {
  filter: brightness(1) saturate(1);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 48px 112px rgba(18, 16, 13, 0.18);
}

.guest-magnet__card-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.34)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.16), rgba(10, 10, 10, 0.16));
  transition: background 320ms ease;
}

.guest-magnet__card.is-active .guest-magnet__card-overlay {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.26)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.1));
}

.guest-magnet__card-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 62px;
}

.guest-magnet__card-text {
  max-width: 24ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 1.65vw, 1.65rem);
  line-height: 1.68;
  text-align: center;
  font-style: italic;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.guest-magnet__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.guest-magnet__dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.guest-magnet__dot.is-active {
  background: var(--gold);
  transform: scale(1.12);
}

.anniversary-machine {
  position: relative;
  padding: 92px 24px 70px;
  background: linear-gradient(180deg, #fffdf9 0%, #f6efe5 100%);
}

.anniversary-machine__card {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 52px 48px;
  border-radius: 30px;
  background: linear-gradient(145deg, #faf9f7 0%, #f5f0ea 100%);
  box-shadow:
    0 18px 64px rgba(22, 19, 14, 0.08),
    0 2px 12px rgba(22, 19, 14, 0.04);
}

.anniversary-machine__header {
  margin-bottom: 42px;
  text-align: center;
}

.anniversary-machine__eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cc9933, #e6b84d);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(204, 153, 51, 0.25);
}

.anniversary-machine__title {
  max-width: none;
  font-family: "Cormorant Garamond", serif;
  color: #1c1c1c;
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.anniversary-machine__title span {
  color: var(--gold);
  font-style: italic;
}

.anniversary-machine__lead {
  max-width: 600px;
  font-family: "Overpass", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.anniversary-machine__lead strong {
  color: #333333;
  font-weight: 700;
}

.anniversary-machine__hero {
  width: min(100%, 500px);
  margin: 0 auto 36px;
}

.anniversary-machine__hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.anniversary-machine__timeline {
  position: relative;
  padding: 20px 0 10px 50px;
}

.anniversary-machine__line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #cc9933, #e6b84d, rgba(204, 153, 51, 0.2));
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.4s ease;
}

.anniversary-machine.is-visible .anniversary-machine__line {
  transform: scaleY(1);
}

.anniversary-machine__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anniversary-machine__step:last-child {
  margin-bottom: 0;
}

.anniversary-machine.is-visible .anniversary-machine__step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.anniversary-machine.is-visible .anniversary-machine__step:nth-child(2) {
  transition-delay: 0.18s;
}

.anniversary-machine.is-visible .anniversary-machine__step:nth-child(3) {
  transition-delay: 0.32s;
}

.anniversary-machine.is-visible .anniversary-machine__step:nth-child(4) {
  transition-delay: 0.46s;
}

.anniversary-machine.is-visible .anniversary-machine__step:nth-child(5) {
  transition-delay: 0.6s;
}

.anniversary-machine.is-visible .anniversary-machine__step:nth-child(6) {
  transition-delay: 0.74s;
}

.anniversary-machine__step-copy {
  min-width: 0;
}

.anniversary-machine__step-number {
  position: absolute;
  left: -50px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cc9933, #e6b84d);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(204, 153, 51, 0.3);
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 2;
}

.anniversary-machine__step h3 {
  margin: 0 0 6px;
  color: #1c1c1c;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.anniversary-machine__step p {
  margin: 0;
  color: #666666;
  font-family: "Overpass", sans-serif;
  font-size: 0.875rem;
  line-height: 1.62;
}

.anniversary-machine__step p strong {
  color: var(--gold);
  font-weight: 600;
}

.anniversary-machine__footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(204, 153, 51, 0.15);
  text-align: center;
}

.anniversary-machine__footer p {
  margin: 0;
  color: #555555;
  font-family: "Overpass", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.anniversary-machine__footer strong {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.value-package {
  position: relative;
  z-index: 1;
  min-height: 320svh;
  padding: 0 24px;
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 232, 130, 0.28), transparent 30%),
    radial-gradient(circle at 88% 48%, rgba(245, 185, 18, 0.32), transparent 24%),
    linear-gradient(103deg, #4e340b 0%, #8a6313 33%, #cf9a16 71%, #8e6815 100%);
}

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

.value-package::before {
  background:
    linear-gradient(180deg, rgba(26, 16, 5, 0.34), rgba(26, 16, 5, 0.02) 38%, rgba(25, 17, 6, 0.2) 100%),
    radial-gradient(circle at 50% 88%, rgba(255, 241, 186, 0.22), transparent 28%);
  opacity: 0.9;
}

.value-package::after {
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 247, 213, 0.08), transparent 32%),
    linear-gradient(118deg, transparent 10%, rgba(255, 238, 173, 0.08) 38%, rgba(255, 224, 122, 0.04) 52%, transparent 72%),
    linear-gradient(180deg, rgba(255, 245, 214, 0.02), rgba(255, 245, 214, 0));
}

.value-package__header {
  text-align: center;
}

.value-package__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.value-package__screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 36px, 0) scale(0.98);
}

.value-package__screen.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.value-package__screen--hero {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.value-package__screen--hero .value-package__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.value-package__screen--benefits .value-package__inner,
.value-package__screen--pricing .value-package__inner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.value-package__title {
  display: grid;
  justify-items: center;
  gap: 0.06em;
  margin: 0;
  color: #fffef8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.08rem, 5vw, 4.58rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow:
    0 10px 24px rgba(28, 16, 3, 0.28),
    0 0 24px rgba(255, 245, 214, 0.08);
}

.value-package__title-line {
  display: block;
  color: inherit;
}

.value-package__title-line--intro {
  font-size: 0.72em;
}

.value-package__title-line--hero {
  font-size: 1em;
}

.value-package__title-line--tail {
  font-size: 0.82em;
}

.value-package__screen--hero .value-package__title,
.value-package__screen--hero .value-package__title span,
.value-package__screen--hero .value-package__title-line {
  color: #fffef8;
}

.value-package__screen--hero .value-package__title {
  font-weight: 500;
  letter-spacing: -0.016em;
  -webkit-text-stroke: 0.55px rgba(88, 56, 8, 0.22);
  paint-order: stroke fill;
  text-shadow:
    0 2px 0 rgba(77, 47, 6, 0.24),
    0 12px 30px rgba(25, 13, 2, 0.4),
    0 0 28px rgba(255, 249, 226, 0.14);
}

.value-package__title-amp {
  display: block;
  margin: 0.08em 0 0.02em;
  color: rgba(255, 236, 179, 0.84);
  font-size: 0.68em;
}

.value-package__card {
  width: min(100%, 53.5rem);
  border: 1px solid rgba(255, 246, 223, 0.9);
  border-radius: 34px;
  background: rgba(255, 252, 247, 0.985);
  box-shadow: 0 34px 82px rgba(43, 27, 4, 0.24);
  margin-inline: auto;
}

.value-package__card--benefits {
  width: min(100%, 50rem);
  padding: 56px 30px 24px;
}

.value-package__card-title {
  width: min(100%, 42rem);
  margin: 0 auto;
  color: #171410;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(1.72rem, 2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.value-package__benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.value-package__benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 4rem;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(251, 247, 239, 0.88));
  border: 1px solid rgba(229, 207, 157, 0.45);
}

.value-package__benefit-card.is-featured {
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(251, 247, 239, 0.88));
}

.value-package__benefit-icon {
  flex: 0 0 auto;
  font-size: 1.34rem;
  line-height: 1;
}

.value-package__benefit-label {
  color: #171410;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.2;
}

.value-package__pricing-stack {
  display: grid;
  justify-items: center;
  gap: 28px;
  width: 100%;
}

.value-package__card--pricing {
  width: min(100%, 56rem);
  padding: 54px 42px 38px;
  text-align: center;
}

.value-package__price-box {
  padding-top: 2px;
}

.value-package__pricing-label {
  margin: 0;
  color: rgba(23, 20, 16, 0.58);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.value-package__pricing-old {
  margin: 18px 0 0;
  color: rgba(23, 20, 16, 0.34);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: 3.55rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(214, 115, 115, 0.9);
  text-decoration-thickness: 3px;
}

.value-package__pricing-new {
  margin: 0;
  color: var(--gold-deep);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(6rem, 7.4vw, 7.6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.value-package__pricing-new span {
  display: inline-block;
  margin-left: 0.18em;
  color: rgba(201, 155, 51, 0.95);
  font-size: 0.28em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-package__pricing-hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.value-package__pricing-prefix {
  padding-bottom: 14px;
  color: var(--gold-deep);
  font-family: "Sora", "Overpass", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.value-package__pricing-note,
.value-package__pricing-meta {
  margin: 10px 0 0;
  color: rgba(23, 20, 16, 0.64);
  font-size: 1.02rem;
  line-height: 1.42;
}

.value-package__badge {
  margin: 24px auto 0;
  width: fit-content;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 248, 225, 0.95), rgba(248, 239, 206, 0.98));
  color: #171410;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(222, 187, 103, 0.42);
}

.value-package__review {
  margin: 26px 0 0;
  padding: 24px 34px 18px;
  border-radius: 24px;
  border: 1px solid rgba(229, 207, 157, 0.52);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(251, 247, 238, 0.92));
  position: relative;
  display: grid;
  align-content: center;
  min-height: 196px;
  overflow: hidden;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-package__review-quote {
  margin: 0;
  color: rgba(23, 20, 16, 0.72);
  font-size: 1rem;
  line-height: 1.64;
  text-align: center;
  white-space: pre-line;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.value-package__review-meta {
  margin-top: 16px;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.value-package__review::before {
  content: "❝";
  position: absolute;
  top: 16px;
  left: 26px;
  color: rgba(228, 199, 126, 0.65);
  font-size: 2rem;
  line-height: 1;
}

.value-package__review.is-switching {
  transform: scale(0.988) translateY(2px);
  filter: saturate(0.96);
}

.value-package__review.is-switching .value-package__review-quote,
.value-package__review.is-switching .value-package__review-meta {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
}

.value-package__review.is-long .value-package__review-quote {
  font-size: 0.95rem;
  line-height: 1.58;
}

.value-package__review.is-xlong .value-package__review-quote {
  font-size: 0.89rem;
  line-height: 1.52;
}

.value-package__cta {
  width: min(100%, 44rem);
  box-shadow: 0 12px 28px rgba(76, 46, 6, 0.24);
}

.value-package__card--pricing .cta-pill--wide {
  width: 100%;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .value-package__benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .guest-magnet,
  .anniversary-machine,
  .value-package {
    padding-left: 16px;
    padding-right: 16px;
  }

  .guest-magnet {
    min-height: 300svh;
    min-height: 300dvh;
  }

  .anniversary-machine {
    padding-top: 54px;
    padding-bottom: 30px;
  }

  .anniversary-machine__card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .anniversary-machine__header {
    margin-bottom: 28px;
  }

  .anniversary-machine__lead {
    max-width: 100%;
  }

  .value-package {
    min-height: calc(var(--mobile-locked-vh, 100vh) * 3.2);
    padding: 0 12px;
  }

  .guest-magnet__eyebrow,
  .anniversary-machine__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .guest-magnet__title,
  .anniversary-machine__title,
  .value-package__title {
    max-width: 10.5ch;
    margin-top: 14px;
    font-size: clamp(1.95rem, 8.8vw, 2.45rem);
    line-height: 1.12;
  }

  .guest-magnet__title {
    max-width: 11.5ch;
  }

  .guest-magnet__sticky {
    height: var(--mobile-locked-vh, 100vh);
  }

  .guest-magnet__inner {
    justify-content: flex-start;
    padding-top: 70px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .guest-magnet__lead,
  .anniversary-machine__lead,
  .value-package__lead {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .guest-magnet__viewport {
    margin-top: 22px;
  }

  .guest-magnet__track {
    display: flex;
    gap: 16px;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .guest-magnet__card {
    flex: 0 0 86vw;
    width: 86vw;
    min-width: 86vw;
    height: clamp(468px, 56dvh, 516px);
    border-radius: 32px;
    opacity: 0.86;
  }

  .guest-magnet__card-copy {
    padding: 34px 28px;
  }

  .guest-magnet__card-text {
    max-width: 13.5em;
    font-size: 1rem;
    line-height: 1.62;
  }

  .guest-magnet__dots {
    margin-top: 12px;
  }

  .anniversary-machine__hero {
    width: min(100%, 20rem);
    margin-bottom: 26px;
  }

  .anniversary-machine__step {
    gap: 14px;
  }

  .anniversary-machine__timeline {
    padding-left: 44px;
  }

  .anniversary-machine__line {
    left: 18px;
  }

  .anniversary-machine__step-number {
    left: -44px;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .anniversary-machine__step h3 {
    font-size: 0.95rem;
  }

  .anniversary-machine__step p,
  .anniversary-machine__footer p {
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .anniversary-machine__footer {
    margin-top: 22px;
    padding-top: 22px;
  }

  .anniversary-machine__step,
  .anniversary-machine__line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .anniversary-machine.is-visible .anniversary-machine__step {
    opacity: 1;
    transform: none;
  }

  .anniversary-machine__line,
  .anniversary-machine.is-visible .anniversary-machine__line {
    transform: scaleY(1);
  }

  .value-package__sticky {
    position: sticky;
    top: 0;
    height: var(--mobile-locked-vh, 100vh);
    display: block;
    overflow: hidden;
  }

  .value-package__screen {
    position: absolute;
    inset: 0;
    min-height: 100%;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 0 calc(28px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
    pointer-events: none;
  }

  .value-package__screen--hero {
    min-height: 100%;
  }

  .value-package__screen--hero .value-package__title {
    max-width: 8.2ch;
    font-size: clamp(2.55rem, 9.8vw, 3.55rem);
    line-height: 1.08;
  }

  .value-package__card {
    width: min(100%, 21rem);
    border-radius: 28px;
  }

  .value-package__card--benefits,
  .value-package__card--pricing {
    padding: 24px 18px 20px;
  }

  .value-package__card-title {
    font-size: 0.92rem;
    line-height: 1.44;
  }

  .value-package__benefits-grid {
    gap: 9px;
    margin-top: 16px;
  }

  .value-package__benefit-card {
    min-height: 2.75rem;
    padding: 9px 12px;
    border-radius: 14px;
  }

  .value-package__benefit-label {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .value-package__benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-basis: 1.5rem;
    font-size: 0.68rem;
  }

  .value-package__pricing-note,
  .value-package__pricing-meta {
    font-size: 0.84rem;
    line-height: 1.44;
  }

  .value-package__pricing-old {
    margin-top: 12px;
    font-size: 2rem;
    text-decoration-thickness: 2px;
  }

  .value-package__badge {
    margin-top: 14px;
    font-size: 0.84rem;
    padding: 10px 16px;
  }

  .value-package__pricing-new {
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    font-size: clamp(3.9rem, 17vw, 4.9rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .value-package__pricing-new span {
    margin-left: 0;
    margin-bottom: 0.16em;
    font-size: 0.21em;
    line-height: 1;
  }

  .value-package__pricing-label {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .value-package__pricing-hero {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 14px;
  }

  .value-package__pricing-prefix {
    padding-bottom: 0;
    font-size: 0.86rem;
    letter-spacing: 0.18em;
  }

  .value-package__price-box {
    display: grid;
    gap: 0;
  }

  .value-package__pricing-meta {
    width: min(100%, 16.5rem);
    margin-left: auto;
    margin-right: auto;
  }

  .value-package__review {
    margin-top: 16px;
    min-height: 176px;
    padding: 14px 14px 12px;
    border-radius: 16px;
  }

  .value-package__review-quote {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .value-package__review-meta {
    margin-top: 10px;
    font-size: 0.8rem;
  }

  .value-package__review::before {
    top: 12px;
    left: 14px;
    font-size: 1.35rem;
  }

  .value-package__review.is-long .value-package__review-quote {
    font-size: 0.79rem;
    line-height: 1.46;
  }

  .value-package__review.is-xlong .value-package__review-quote {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .value-package__pricing-stack {
    gap: 16px;
  }

  .value-package__cta {
    width: min(100%, 21rem);
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .guest-magnet__inner {
    padding-top: 58px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .guest-magnet__header {
    margin: 0 auto 14px;
    padding: 0 18px;
  }

  .guest-magnet__track {
    gap: 14px;
  }

  .guest-magnet__card {
    flex: 0 0 84vw;
    width: 84vw;
    min-width: 84vw;
    height: clamp(420px, 50dvh, 454px);
  }

  .guest-magnet__card-copy {
    padding: 26px 22px;
  }

  .guest-magnet__card-text {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}

.booking-form {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 108px 0 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(204, 153, 51, 0.12), rgba(204, 153, 51, 0.05) 18%, rgba(23, 17, 11, 0) 38%),
    linear-gradient(180deg, #17110b 0%, #120d09 100%);
  isolation: isolate;
  overflow: clip;
}

.booking-form::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  pointer-events: none;
  width: min(100%, 1600px);
  height: clamp(140px, 18vw, 240px);
  transform: translate(-50%, -22%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 225, 132, 0.16) 0%, rgba(255, 225, 132, 0.08) 24%, rgba(18, 13, 9, 0) 72%);
  filter: blur(14px);
  opacity: 0.72;
}

.booking-form .booking-form__inner {
  position: relative;
  z-index: 1;
}

.booking-form__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 56px);
}

.future-message__inner,
.learn-more__inner,
.loss-section__inner,
.faq-section__inner,
.contact-extra__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.booking-form__headlines {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 1460px);
  margin: 0 auto 34px;
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

.booking-form__headline {
  margin: 0;
  width: min(100%, 1320px);
  color: rgba(255, 248, 238, 0.92);
  font-size: clamp(2.35rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-align: center;
  text-wrap: balance;
}

.booking-form__headline.is-active {
  color: rgba(255, 248, 238, 0.92);
}

.booking-form__headline-primary,
.booking-form__headline-accent {
  display: block;
}

.booking-form__headline-accent {
  margin-top: 0.08em;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.booking-form__intro {
  width: min(100%, 52rem);
  margin: 0;
  color: rgba(255, 248, 238, 0.82);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.booking-form__card {
  position: relative;
  isolation: isolate;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 16px 16px 18px;
  border: 1px solid rgba(219, 192, 132, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.995) 0%, rgba(252, 247, 239, 0.985) 100%);
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 244, 220, 0.44),
    0 0 34px rgba(214, 162, 51, 0.14);
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(0.975);
  filter: blur(12px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s ease,
    box-shadow 0.32s ease;
  transition-delay: 0.08s;
}

.booking-form__card::before,
.booking-form__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.booking-form__card::before {
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(246, 221, 163, 0.78) 0%, rgba(255, 255, 255, 0.14) 24%, rgba(214, 162, 51, 0.22) 62%, rgba(246, 221, 163, 0.72) 100%);
  opacity: 0.9;
  filter: blur(0.2px);
}

.booking-form__card::after {
  inset: 10px 16px auto;
  height: 86px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 237, 198, 0.9) 0%, rgba(255, 237, 198, 0.48) 38%, rgba(255, 237, 198, 0) 74%);
  opacity: 0.62;
  filter: blur(14px);
  z-index: -1;
}

.booking-form.is-visible .booking-form__headlines,
.booking-form.is-visible .booking-form__card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.booking-form__body {
  min-height: 0;
}

.booking-form__step {
  display: none;
}

.booking-form__step.is-active {
  display: block;
}

.booking-form__form {
  display: grid;
  gap: 14px;
}

.booking-form__form--step1 {
  gap: 10px;
}

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

.booking-form__form--step1 .booking-form__grid--two {
  grid-template-columns: 1fr;
  gap: 10px;
}

.booking-form__field {
  display: grid;
  gap: 8px;
}

.booking-form__label {
  color: #332a22;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form__input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #d8d2c8;
  border-radius: 16px;
  background: #ffffff;
  color: #241d16;
  font: inherit;
}

.booking-form__input::placeholder {
  color: #aea295;
}

.booking-form__input:focus {
  outline: none;
  border-color: rgba(204, 153, 51, 0.72);
  box-shadow: 0 0 0 4px rgba(204, 153, 51, 0.12);
}

.booking-form__input.has-error {
  border-color: rgba(255, 108, 108, 0.82);
}

.booking-form__error {
  min-height: 1.15rem;
  color: #b74f4f;
  font-size: 0.8rem;
  line-height: 1.3;
}

.booking-form__error:empty {
  min-height: 0;
}

.booking-form__hint {
  margin-top: -2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(193, 154, 74, 0.1);
  color: rgba(52, 44, 34, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
}

.booking-form__hint[hidden] {
  display: none;
}

.booking-form__cta {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
}

.booking-form__trust {
  margin: 4px 0 0;
  color: rgba(52, 44, 34, 0.62);
  font-size: 0.83rem;
  line-height: 1.55;
  text-align: center;
}

.booking-form__queue-note {
  width: min(100%, 32rem);
  margin: 18px auto 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.booking-form__notice {
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(214, 205, 190, 0.3);
}

.booking-form__notice h3 {
  margin: 0;
  color: #1b1611;
  font-size: 1.12rem;
}

.booking-form__notice p {
  margin: 10px 0 0;
  color: rgba(27, 22, 17, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
}

.booking-form__actions {
  display: grid;
  gap: 12px;
}

.booking-form__skip,
.booking-form__reset {
  min-height: 46px;
  border: 1px solid rgba(51, 42, 34, 0.1);
  border-radius: 999px;
  background: rgba(241, 235, 225, 0.8);
  color: #4c4035;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-form__skip:hover,
.booking-form__reset:hover {
  background: rgba(235, 226, 213, 1);
  transform: translateY(-1px);
}

.booking-form__success {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 10px 4px;
  text-align: center;
}

.booking-form__success-icon {
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  background: rgba(204, 153, 51, 0.16);
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 800;
}

.booking-form__success h3 {
  margin: 0;
  color: #17120d;
  font-size: 1.85rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.booking-form__success p {
  width: min(100%, 30rem);
  margin: 0;
  color: rgba(27, 22, 17, 0.68);
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (min-width: 1024px) {
  .booking-form {
    min-height: clamp(780px, 92vh, 980px);
    display: grid;
    align-items: center;
    padding-top: clamp(94px, 9vh, 122px);
    padding-bottom: clamp(82px, 8vh, 118px);
  }

  .booking-form__inner {
    width: min(100%, 1680px);
    display: grid;
    justify-items: center;
    gap: 0;
  }

  .booking-form__headlines {
    justify-items: center;
    width: min(100%, 1460px);
    margin: 0 auto 34px;
  }

  .booking-form__headline {
    width: min(100%, 1320px);
    font-size: clamp(3.4rem, 4.6vw, 5.35rem);
    line-height: 0.97;
    text-align: center;
    text-wrap: balance;
  }

  .booking-form__headline-accent {
    margin-top: 0.06em;
    font-size: 0.92em;
  }

  .booking-form__intro {
    width: min(100%, 46rem);
    font-size: 1.02rem;
    line-height: 1.56;
    text-align: center;
  }

  .booking-form__card {
    width: min(100%, 476px);
    margin: 0 auto;
    padding: 24px 24px 22px;
    border-radius: 30px;
    justify-self: center;
  }

  .booking-form__card::after {
    inset: 12px 22px auto;
    height: 98px;
    opacity: 0.7;
    filter: blur(16px);
  }

  .booking-form__form {
    gap: 16px;
  }

  .booking-form__form--step1 {
    gap: 12px;
  }

  .booking-form__grid--two {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-form__form--step1 .booking-form__grid--two {
    gap: 12px;
  }

  .booking-form__field {
    gap: 9px;
  }

  .booking-form__label {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .booking-form__input {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 1.02rem;
  }

  .booking-form__error {
    min-height: 1rem;
    font-size: 0.78rem;
  }

  .booking-form__cta {
    min-height: 60px;
    margin-top: 6px;
  }

  .booking-form__trust {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .booking-form__queue-note {
    width: min(100%, 38rem);
    margin-top: 22px;
    font-size: 1.04rem;
  }

  .booking-form__notice {
    padding: 20px 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(243, 235, 222, 0.64), rgba(230, 220, 203, 0.42));
  }

  .booking-form__notice h3 {
    font-size: 1.2rem;
  }

  .booking-form__notice p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .booking-form__actions {
    gap: 14px;
  }

  .booking-form__skip,
  .booking-form__reset {
    min-height: 48px;
    font-size: 0.94rem;
  }

  .booking-form__success {
    gap: 18px;
    padding: 18px 6px 10px;
  }

  .booking-form__success h3 {
    font-size: 2rem;
  }

  .booking-form__success p {
    font-size: 1rem;
  }
}

.future-message {
  --future-message-bg:
    radial-gradient(circle at 18% 18%, rgba(204, 153, 51, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(204, 153, 51, 0.09), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fff9ef 100%);
  --future-stage-top-offset: 64px;
  position: relative;
  min-height: 236svh;
  min-height: 236dvh;
  padding: 0 24px;
  background: var(--future-message-bg);
  overflow: clip;
  isolation: isolate;
}

.future-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(214, 174, 92, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(231, 205, 151, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.future-message__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: inherit;
}

.future-message__stage {
  position: sticky;
  top: var(--future-stage-top-offset);
  width: 100%;
  min-height: calc(100svh - var(--future-stage-top-offset));
  min-height: calc(100dvh - var(--future-stage-top-offset));
  height: calc(100svh - var(--future-stage-top-offset));
  height: calc(100dvh - var(--future-stage-top-offset));
  display: grid;
  place-items: center;
  padding: clamp(48px, 7svh, 72px) 0;
  overflow: hidden;
}

.future-message__intro-shell,
.future-message__letter-wrap {
  grid-area: 1 / 1;
}

.future-message__intro-shell {
  --future-split-top: 0px;
  --future-split-bottom: 0px;
  --future-intro-haze: 0;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100%;
  display: grid;
  place-items: center;
  z-index: 3;
  will-change: transform, opacity;
}

.future-message__intro-shell::after {
  content: "";
  position: absolute;
  inset: 12% 16%;
  background: radial-gradient(circle at 50% 46%, rgba(255, 249, 238, 0.96), rgba(255, 249, 238, 0));
  opacity: var(--future-intro-haze);
  transform: scale(calc(1 + (var(--future-intro-haze) * 0.2)));
  filter: blur(26px);
  pointer-events: none;
}

.future-message__panel {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 50%;
  background: var(--future-message-bg);
  pointer-events: none;
  will-change: transform;
}

.future-message__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 175, 100, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.85;
}

.future-message__panel--top {
  top: 0;
  transform: translate3d(-50%, var(--future-split-top), 0);
}

.future-message__panel--bottom {
  bottom: 0;
  transform: translate3d(-50%, var(--future-split-bottom), 0);
}

.future-message__intro,
.learn-more__header,
.loss-section__inner,
.faq-section__header,
.contact-extra__inner {
  text-align: center;
}

.future-message__intro {
  position: relative;
  z-index: 4;
  width: min(100%, 700px);
  margin: 0 auto;
  min-height: clamp(430px, 66svh, 640px);
  display: grid;
  align-content: center;
  justify-items: center;
  will-change: transform, opacity, filter;
}

.future-message__eyebrow,
.learn-more__eyebrow,
.loss-section__eyebrow,
.faq-section__eyebrow,
.contact-extra__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.learn-more__title,
.loss-section__title,
.faq-section__title,
.contact-extra__title {
  margin: 18px auto 0;
  max-width: 14ch;
  color: #171410;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.learn-more__title span,
.loss-section__title span {
  color: var(--gold);
}

.future-message__title {
  position: relative;
  display: inline-block;
  max-width: 10.8ch;
  width: max-content;
  margin-top: 0;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.078em;
  text-align: center;
}

.future-message__title .future-message__title-text {
  display: block;
  color: #171410;
}

.future-message__title .future-message__title-icon {
  position: absolute;
  right: -0.34em;
  bottom: 0.11em;
  color: #dcc6f1;
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  transform: rotate(-6deg);
}

.future-message__sub,
.contact-extra__lead {
  width: min(100%, 44rem);
  margin: 22px auto 0;
  color: rgba(23, 20, 16, 0.54);
  font-size: 1.18rem;
  line-height: 1.58;
}

.future-message__sub {
  width: min(100%, 27rem);
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.52;
}

.future-message__letter-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  justify-self: center;
  align-self: center;
  margin-inline: auto;
  margin-bottom: 0;
  opacity: 0;
  transform: translate3d(0, 82px, 0) scale(0.965);
  filter: blur(14px);
  pointer-events: none;
  will-change: transform, opacity, filter;
  max-height: calc(100svh - 112px);
  max-height: calc(100dvh - 112px);
  overflow: auto;
  padding: 14px 0 18px;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(204, 153, 51, 0.5) rgba(204, 153, 51, 0.08);
}

.future-message.is-open .future-message__letter-wrap {
  z-index: 4;
}

.future-message__letter-wrap::-webkit-scrollbar {
  width: 8px;
}

.future-message__letter-wrap::-webkit-scrollbar-track {
  background: rgba(204, 153, 51, 0.08);
  border-radius: 999px;
}

.future-message__letter-wrap::-webkit-scrollbar-thumb {
  background: rgba(204, 153, 51, 0.44);
  border-radius: 999px;
}

.future-message__letter {
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 34px clamp(24px, 2.7vw, 36px) 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(253, 250, 244, 0.985));
  border: 1px solid rgba(204, 153, 51, 0.12);
  box-shadow:
    0 18px 44px rgba(29, 27, 24, 0.08),
    0 2px 8px rgba(29, 27, 24, 0.04);
}

.future-message__line {
  margin: 0;
  color: rgba(23, 20, 16, 0.78);
  font-size: 0.98rem;
  line-height: 1.62;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.future-message.is-visible .future-message__line {
  opacity: 1;
  transform: translateY(0);
}

.future-message__line + .future-message__line {
  margin-top: 12px;
}

.future-message__line--accent {
  color: #171410;
  font-weight: 700;
}

.future-message__line--greeting {
  color: #171410;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.88;
}

.future-message__line--underline {
  color: #171410;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(204, 153, 51, 0.72);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

.future-message__line--centered {
  text-align: center;
}

.future-message__line--keepsake {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-align: center;
}

.future-message__signoff {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
  justify-items: start;
  gap: 18px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(204, 153, 51, 0.12);
  text-align: left;
}

.future-message__signature {
  display: block;
  width: clamp(72px, 6vw, 88px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 16px rgba(120, 87, 33, 0.12));
}

.future-message__signoff-copy {
  min-width: 0;
}

.future-message__signoff-copy p {
  margin: 0;
}

.future-message__signoff-lead {
  color: rgba(23, 20, 16, 0.64);
  font-size: 0.82rem;
  line-height: 1.34;
  font-weight: 500;
}

.future-message__signoff-name {
  margin-top: 6px !important;
  color: #171410;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.future-message__signoff-role {
  margin-top: 2px !important;
  color: rgba(23, 20, 16, 0.62);
  font-size: 0.72rem;
  line-height: 1.3;
}

.learn-more {
  padding: 92px 24px 78px;
  background: #101010;
  overflow-anchor: none;
}

.learn-more__header {
  width: min(100%, 980px);
  margin: 0 auto;
}

.learn-more__title {
  position: relative;
  max-width: 15.8ch;
  color: #fff8ee;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  line-height: 0.94;
  text-wrap: balance;
}

.learn-more__title .learn-more__title-line {
  display: block;
  color: #fff8ee;
}

.learn-more__title .learn-more__title-line--accent {
  margin-top: 0.08em;
  color: var(--gold);
}

.learn-more__title .learn-more__title-break {
  display: none;
}

.learn-more__player {
  width: min(100%, 760px);
  margin: 40px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
  opacity: 1;
  contain: layout paint;
  overflow-anchor: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.learn-more__player .opinion-video__launch {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.06), rgba(12, 10, 9, 0.2)),
    url("../assets/learn-more-poster-960.webp") center / cover no-repeat;
}

.learn-more__player .opinion-video__poster,
.learn-more__player .opinion-video__player {
  height: 100%;
}

.learn-more__player .opinion-video__launch--poster-fallback .opinion-video__shade {
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.08) 0%, rgba(12, 10, 9, 0) 34%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.42) 0%, rgba(12, 10, 9, 0) 50%);
}

.learn-more__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.learn-more__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(204, 153, 51, 0.28);
  border-radius: 999px;
  color: #fff8ee;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.learn-more__button--primary {
  background: linear-gradient(180deg, #d5a035 0%, #c5922b 100%);
  box-shadow: 0 18px 34px rgba(197, 146, 43, 0.28);
}

.learn-more__button--secondary {
  background: transparent;
}

.fomo-stat {
  padding: 112px 24px 76px;
  background:
    radial-gradient(circle at 50% 12%, rgba(204, 153, 51, 0.08), transparent 30%),
    #fffdf8;
}

.fomo-stat__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.fomo-stat__title {
  margin: 0 auto;
  color: #171410;
  font-family: "Sora", "Overpass", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.fomo-stat__title-line {
  display: block;
}

.fomo-stat__title-line--accent {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.fomo-stat__hero {
  width: min(100%, 420px);
  margin: 30px auto 0;
}

.fomo-stat__counter-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.fomo-stat__number {
  color: #171410;
  font-size: clamp(5rem, 9.4vw, 7.7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.fomo-stat__unit {
  color: var(--gold);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.fomo-stat__context {
  width: min(100%, 38rem);
  margin: 24px auto 0;
  color: rgba(23, 20, 16, 0.82);
  font-size: clamp(1.08rem, 1.36vw, 1.24rem);
  font-weight: 700;
  line-height: 1.54;
  text-wrap: pretty;
}

.fomo-stat__story {
  width: min(100%, 44rem);
  margin: 16px auto 0;
}

.fomo-stat__story p {
  margin: 0;
  color: rgba(23, 20, 16, 0.66);
  font-size: 1.02rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.fomo-stat__cta {
  margin: 32px auto 0;
}

.loss-section {
  padding: 76px 24px 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(204, 153, 51, 0.12), transparent 38%),
    #fffdf7;
}

.loss-section__title {
  max-width: 18ch;
  margin-inline: auto;
  color: #211c18;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.058em;
}

.loss-section__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  width: min(100%, 980px);
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: loss-step;
}

.loss-section__list li {
  position: relative;
  padding: 18px 0 18px 38px;
  border-top: 1px solid rgba(204, 153, 51, 0.14);
  color: #6c655d;
  font-size: 1rem;
  line-height: 1.7;
  counter-increment: loss-step;
}

.loss-section__list li::before {
  content: counter(loss-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.loss-section__actions {
  display: grid;
  justify-content: center;
  margin-top: 36px;
}

.faq-section {
  padding: 96px 24px 54px;
  background:
    radial-gradient(circle at 80% 12%, rgba(204, 153, 51, 0.08), transparent 22%),
    #fffefa;
}

.faq-section__header {
  width: min(100%, 920px);
  margin: 0 auto;
}

.faq-section__title {
  max-width: 10.5ch;
}

.faq-section__title span {
  color: var(--gold);
}

.faq-section__list {
  width: min(100%, 920px);
  margin: 38px auto 0;
  display: grid;
  gap: 0;
  padding: 26px 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(29, 27, 24, 0.08);
}

.faq-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(204, 153, 51, 0.14);
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #171410;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 0 22px;
  color: rgba(23, 20, 16, 0.72);
  font-size: 0.98rem;
  line-height: 1.68;
}

.faq-item.is-open .faq-item__panel {
  opacity: 1;
}

.contact-extra {
  padding: 90px 24px 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(204, 153, 51, 0.1), transparent 34%),
    #f8f5ee;
}

.contact-extra__title {
  max-width: 7.5ch;
}

.contact-extra__line {
  display: block;
}

.contact-extra__line--gold {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contact-extra__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 320px);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  width: min(100%, 980px);
  margin: 38px auto 0;
  padding: 34px 34px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(204, 153, 51, 0.14);
  box-shadow: 0 30px 70px rgba(29, 27, 24, 0.08);
}

.contact-extra__copy {
  text-align: left;
}

.contact-extra__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  margin-top: 0;
}

.contact-extra__lead {
  width: auto;
  margin: 0;
  color: #342c24;
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  line-height: 1.48;
  text-align: left;
}

.contact-extra__mail {
  display: inline-block;
  margin-top: 18px;
  color: #9f7623;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-extra__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(204, 153, 51, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: #171410;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-extra__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(29, 27, 24, 0.08);
}

.contact-extra__button--primary {
  background: rgba(204, 153, 51, 0.14);
}

@media (max-width: 1023px) {
  .booking-form__grid--two {
    grid-template-columns: 1fr;
  }

  .future-message {
    min-height: 238svh;
    min-height: 238dvh;
  }

  .future-message__stage {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .future-message__letter-wrap {
    width: min(100%, 720px);
  }

  .contact-extra__card {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }
}

@media (max-width: 767px) {
  .booking-form,
  .future-message,
  .learn-more,
  .fomo-stat,
  .loss-section,
  .faq-section,
  .contact-extra {
    padding-left: 16px;
    padding-right: 16px;
  }

  .booking-form {
    margin-top: 0;
    padding-top: 88px;
    padding-bottom: 30px;
  }

  .booking-form__headlines {
    gap: 10px;
    width: min(100%, 22.5rem);
    margin-bottom: 18px;
    transform: translate3d(0, 28px, 0) scale(0.99);
    filter: blur(8px);
  }

  .booking-form__headline {
    width: min(100%, 21.5rem);
    font-size: clamp(1.8rem, 8.2vw, 2.45rem);
    line-height: 1.04;
  }

  .booking-form__headline-accent {
    margin-top: 0.1em;
    line-height: 0.98;
  }

  .booking-form__intro {
    width: min(100%, 21rem);
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .booking-form__card {
    padding: 18px;
    border-radius: 24px;
    transform: translate3d(0, 38px, 0) scale(0.985);
    filter: blur(9px);
  }

  .booking-form__queue-note {
    width: min(100%, 20.5rem);
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .booking-form__body {
    min-height: 0;
  }

  .booking-form__input {
    min-height: 50px;
  }

  .booking-form__success h3 {
    font-size: 1.62rem;
  }

  .future-message,
  .faq-section {
    padding-top: 74px;
  }

  .future-message {
    --future-stage-top-offset: 56px;
  }

  .learn-more,
  .fomo-stat,
  .loss-section,
  .contact-extra {
    padding-top: 68px;
  }

  .future-message__title,
  .learn-more__title,
  .loss-section__title,
  .faq-section__title,
  .contact-extra__title {
    max-width: 10.5ch;
    font-size: clamp(1.62rem, 7.6vw, 2.02rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .future-message__sub,
  .contact-extra__lead {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .future-message__intro {
    width: min(100%, 320px);
    min-height: 48svh;
    min-height: 48dvh;
  }

  .future-message__title {
    max-width: 100%;
    font-size: clamp(2.7rem, 11.8vw, 3.7rem);
    line-height: 0.96;
  }

  .future-message__title-icon {
    right: -0.18em;
    bottom: 0.09em;
    font-size: 0.54em;
  }

  .future-message__sub {
    width: min(100%, 15rem);
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .future-message__stage {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .future-message__intro-shell,
  .future-message__letter-wrap {
    width: min(100%, 100%);
  }

  .future-message__intro-shell {
    min-height: calc(100svh - 118px);
    min-height: calc(100dvh - 118px);
  }

  .future-message__intro-shell::after {
    inset: 18% 7%;
  }

  .future-message__panel {
    width: 100%;
    left: 0;
  }

  .future-message__panel--top {
    transform: translate3d(0, var(--future-split-top), 0);
  }

  .future-message__panel--bottom {
    transform: translate3d(0, var(--future-split-bottom), 0);
  }

  .future-message__letter-wrap {
    width: min(100%, 100%);
    max-height: calc(100svh - 104px);
    max-height: calc(100dvh - 104px);
    padding: 10px 12px 16px;
  }

  .future-message__letter {
    margin-top: 0;
    width: 100%;
    max-width: none;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .future-message__line {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .future-message__line--greeting {
    font-size: 2.25rem;
  }

  .future-message__line--keepsake {
    font-size: 1.42rem;
  }

  .future-message__signoff {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 14px;
  }

  .future-message__signature {
    width: 64px;
  }

  .future-message__signoff-lead {
    font-size: 0.74rem;
  }

  .future-message__signoff-name {
    font-size: 0.9rem;
  }

  .future-message__signoff-role {
    font-size: 0.68rem;
  }

  .learn-more__player {
    margin-top: 24px;
  }

  .learn-more__title {
    max-width: 14.2ch;
  }

  .learn-more__title .learn-more__title-break {
    display: block;
  }

  .learn-more__title .learn-more__title-line--accent {
    margin-top: 0.12em;
  }

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

  .learn-more__button {
    width: 100%;
  }

  .loss-section__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .fomo-stat__hero {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .fomo-stat__line {
    display: none;
  }

  .fomo-stat {
    padding: 86px 18px 64px;
  }

  .fomo-stat__title {
    width: min(100%, 19rem);
    font-size: clamp(1.62rem, 7.6vw, 2.02rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .fomo-stat__title-line--accent {
    margin-top: 4px;
  }

  .fomo-stat__hero {
    width: min(100%, 18rem);
    margin-top: 24px;
  }

  .fomo-stat__number {
    font-size: clamp(4.25rem, 21vw, 5.8rem);
  }

  .fomo-stat__unit {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .fomo-stat__context {
    width: min(100%, 18.5rem);
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.56;
  }

  .fomo-stat__story {
    width: min(100%, 18.5rem);
    margin-top: 12px;
  }

  .fomo-stat__story p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .fomo-stat__cta {
    margin-top: 24px;
  }

  .loss-section__list li {
    padding: 16px 0 16px 34px;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .loss-section__list li::before {
    left: 0;
    top: 17px;
    font-size: 0.96rem;
  }

  .faq-section__list {
    gap: 0;
    margin-top: 26px;
    padding: 16px 20px;
  }

  .faq-item__button {
    padding: 18px 0;
    font-size: 0.94rem;
  }

  .faq-item__panel p {
    padding: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-extra__card {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
    padding: 24px 18px;
    border-radius: 24px;
  }

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

  .contact-extra__button {
    width: 100%;
  }

  .contact-extra__copy,
  .contact-extra__lead {
    text-align: center;
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .film-showcase {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .film-showcase__mobile-copy {
    margin-bottom: 18px;
  }

  .film-showcase__mobile-desc {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .film-showcase__cta {
    margin-top: 22px;
  }

  .cta-pill--wide {
    min-height: 52px;
    padding: 12px 18px;
    font-size: 0.72rem;
  }
}

@media (max-height: 860px) and (min-width: 768px) {
  .film-showcase {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .film-showcase__frame {
    width: min(100%, calc((100dvh - 178px) * 1.7778), 1180px);
  }

  .film-showcase__title-desktop {
    font-size: clamp(2.35rem, 4.2vw, 3.45rem);
  }
}

@media (max-width: 767px) {
  .future-message {
    min-height: 0;
    padding-top: 74px;
    padding-bottom: 68px;
    overflow: hidden;
  }

  .future-message__inner {
    min-height: 0;
  }

  .future-message__stage {
    position: relative;
    top: auto;
    display: block;
    min-height: 0;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .future-message__intro-shell,
  .future-message__letter-wrap {
    grid-area: auto;
  }

  .future-message__intro-shell {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: auto;
  }

  .future-message__intro-shell::after,
  .future-message__panel {
    display: none;
  }

  .future-message__intro {
    min-height: 0;
    width: min(100%, 320px);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    will-change: auto;
  }

  .future-message__letter-wrap {
    width: 100%;
    max-height: none;
    margin-top: 26px;
    padding: 0;
    overflow: visible;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
    scrollbar-gutter: auto;
    scrollbar-width: auto;
    will-change: auto;
  }

  .future-message__letter {
    margin-top: 0;
  }

  .future-message__line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
