@font-face {
  font-family: "Nexa";
  src: local("Nexa"), local("Nexa Regular"), local("Nexa-Regular");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fffdf9;
  --paper: #ffffff;
  --paper-2: #f7efe5;
  --ink: #0d0d0c;
  --muted: #6f655b;
  --gold: #dbb17b;
  --gold-soft: #f5e6d2;
  --gold-deep: #9f7747;
  --line: rgba(13, 13, 12, 0.11);
  --line-strong: rgba(13, 13, 12, 0.28);
  --dark: #0f0e0d;
  --dark-2: #050505;
  --light: #ffffff;
  --radius: 18px;
  --ease: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --container: calc(100vw - 48px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Nexa", Arial, sans-serif;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

input,
textarea,
select,
button {
  font-family: "Nexa", Arial, sans-serif;
}

::selection {
  background: var(--gold);
  color: #050505;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--dark-2);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition:
    transform 1.1s var(--ease),
    opacity 0.9s var(--ease);
}

.loader.is-hidden {
  transform: translateY(-110%);
  opacity: 0.8;
  pointer-events: none;
}

.loader-inner {
  width: min(720px, calc(100vw - 48px));
}

.loader-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  color: var(--gold);
}

.loader-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: visible;
}

.loader-logo-outline img {
  display: block;
  width: clamp(210px, 33vw, 380px);
  height: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: logoReveal 0.9s var(--ease-soft) forwards 0.12s;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.28));
}

.loader-line {
  height: 1px;
  background: rgba(219, 177, 123, 0.22);
  overflow: hidden;
  margin-top: 24px;
}

.loader-line i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loadline 1.8s var(--ease) forwards;
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loadline {
  to {
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 24px;
  color: #ffffff;
  mix-blend-mode: normal;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(0);
}

.site-header.is-dark:not(.is-scrolled) {
  color: #ffffff;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--ink);
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-action {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}

.nav-action .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: scale(0.65);
  transition: transform 0.45s var(--ease);
}

.nav-action:hover .dot {
  transform: scale(1.5);
}

.menu-trigger {
  font-size: 16px;
  letter-spacing: 0.06em;
  gap: 12px;
  font-weight: 500;
}

.hamburger-icon {
  width: 25px;
  height: 15px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.hamburger-icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.45s var(--ease),
    width 0.45s var(--ease);
}

.menu-trigger:hover .hamburger-icon i:nth-child(1) {
  transform: translateX(4px);
}

.menu-trigger:hover .hamburger-icon i:nth-child(2) {
  width: 72%;
}

.menu-trigger:hover .hamburger-icon i:nth-child(3) {
  transform: translateX(-3px);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.header-actions,
.menu-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.super-apps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.super-apps-btn {
  background: var(--gold);
  color: #0d0d0c;
  border: 1px solid rgba(13, 13, 12, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.download-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.download-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.super-apps-btn:hover {
  transform: translateY(-1px);
}

.super-apps-btn:hover {
  background: #cda36e;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.site-header.is-dark:not(.is-scrolled) .super-apps-btn {
  background: var(--gold);
  color: #0d0d0c;
  border-color: rgba(255, 255, 255, 0.12);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark-2);
  color: #ffffff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px 24px 28px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.95s var(--ease);
  pointer-events: none;
  overflow:auto 
}

.menu-overlay.is-open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.menu-overlay .brand img {
    width: 100px;
}

.menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.menu-top .brand {
  font-size: 25px;
}

.menu-close {
  justify-self: start;
}

.menu-actions {
  justify-self: end;
}

.menu-book {
  justify-self: end;
}

.menu-main {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  padding: 8vh 0 6vh;
}

.menu-title {
  align-self: start;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 260px;
  line-height: 1.55;
}

.big-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.big-menu a {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.83;
  letter-spacing: -0.08em;
  font-weight: 300;
  overflow: hidden;
  padding: 0.02em 0;
}

.big-menu span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-soft);
}

.menu-overlay.is-open .big-menu span {
  transform: translateY(0);
}

.menu-overlay.is-open .big-menu li:nth-child(2) span {
  transition-delay: 0.05s;
}

.menu-overlay.is-open .big-menu li:nth-child(3) span {
  transition-delay: 0.1s;
}

.menu-overlay.is-open .big-menu li:nth-child(4) span {
  transition-delay: 0.15s;
}

.menu-overlay.is-open .big-menu li:nth-child(5) span {
  transition-delay: 0.2s;
}

.menu-overlay.is-open .big-menu li:nth-child(6) span {
  transition-delay: 0.25s;
}

.menu-side {
  display: grid;
  gap: 32px;
  align-self: end;
}

.menu-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 14px;
}

.menu-col a {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  width: max-content;
  position: relative;
}

.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.hover-line:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 160px) 24px;
  border-top: 1px solid var(--line);
}

.container {
  width: var(--container);
  max-width: 1680px;
  margin: 0 auto;
}

.section-index {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: -0.085em;
  line-height: 0.82;
  margin: 0;
}

.lead {
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
  color: #1c1a18;
  letter-spacing: -0.03em;
}

.body-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 28px;
  position: relative;
  width: max-content;
}

.link-arrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 0.45s var(--ease);
}

.link-arrow:hover::before {
  width: 72px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-soft),
    transform 0.9s var(--ease-soft);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.split .line {
  display: block;
  overflow: hidden;
}

.split .line span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-soft);
}

.split.in-view .line span {
  transform: translateY(0);
}

.split.in-view .line:nth-child(2) span {
  transition-delay: 0.08s;
}

.split.in-view .line:nth-child(3) span {
  transition-delay: 0.16s;
}

.split.in-view .line:nth-child(4) span {
  transition-delay: 0.24s;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  border-top: 0;
  overflow: hidden;
  background: #050505;
  color: #f7f1e7;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(18, 13, 10, 0.34) 0%,
      rgba(18, 13, 10, 0.12) 44%,
      rgba(18, 13, 10, 0.48) 100%
    ),
    radial-gradient(circle at 50% 46%, rgba(238, 231, 219, 0.08), rgba(18, 13, 10, 0.4) 66%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  min-height: 100svh;
  padding: 150px 0 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  font-size: 13px;
  color: #f4eddfd9;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.hero-meta p {
  margin: 0;
}

.hero-meta .center {
  text-align: center;
}

.hero-meta .right {
  text-align: right;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 58svh, 620px);
}

.hero-title {
  font-size: clamp(84px, 12vw, 230px);
  text-align: center;
  max-width: 1360px;
  z-index: 3;
  color: #fff7ea;
  text-shadow: 0 16px 55px rgba(0, 0, 0, 0.34);
  mix-blend-mode: normal;
  top: -10%;
  position: relative;
}

.hero-title.split .line {
  overflow: visible !important;
}

.hero-subtitle {
  position: absolute;

  bottom: 7%;
  transform: translateX(-50%);
  z-index: 4;
  max-width: min(760px, 86vw);
  text-align: center;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.6;
  color: #fff3e3;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.46);
  mix-blend-mode: normal;
}

.hero-img {
  position: absolute;
  left: 0;
  right: 0;
  top: -18vh;
  bottom: -18vh;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
}

.hero-img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(0.74);
  transform: scale(1.02);
}

.hero-bottom {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: #f4eddfd9;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
  opacity: 1;
  transform: none;
}

.hero .hero-meta,
.hero .hero-subtitle,
.hero .hero-bottom {
  opacity: 1;
  transform: none;
}

.hero .scroll-cue {
  border-color: rgba(247, 241, 231, 0.58);
}

.scroll-cue {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(219, 177, 123, 0.55);
  border-radius: 50%;
  font-size: 18px;
  animation: bob 2.6s ease-in-out infinite;
}

@keyframes bob {
  50% {
    transform: translateY(8px);
  }
}

.page > .section:not(.hero),
.cta-section,
footer {
  position: relative;
  z-index: 4;
}

.page > .section:not(.hero):not(.dark-section) {
  background: var(--bg);
}

.page > .dark-section {
  background: var(--dark-2);
}

.hero + .section {
  box-shadow: none;
}

.hero + .section::before {
  display: none;
  content: none;
}

.hero + .section > .container {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(32px, 7vw, 120px);
  align-items: center;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gold-soft);
  position: relative;
  border: 1px solid rgba(219, 177, 123, 0.22);
}

.image-card.tall {
  height: min(78vh, 780px);
}

.image-card img {
  transform: scale(1.06);
  transition:
    transform 1.2s var(--ease-soft),
    filter 0.6s ease;
  position: relative;
  top: 0;
  height: 110%;
}

.image-card:hover img {
  transform: scale(1.12);
  filter: saturate(0.78);
}

.intro-copy {
  max-width: 720px;
}

.intro-copy .display {
  font-size: clamp(60px, 8vw, 140px);
  margin: 18px 0 22px;
}

.intro-copy .lead {
  max-width: 540px;
}

.intro-copy .body-text {
  max-width: 540px;
  margin-top: 20px;
}

.dark-section {
  background: var(--dark-2);
  color: #ffffff;
  border-top: 0;
}

.dark-section .section-index {
  color: var(--gold);
}

.dark-section .body-text {
  color: rgba(255, 255, 255, 0.74);
}

.dark-section .lead {
  color: #ffffff;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head .display {
  font-size: clamp(64px, 9vw, 165px);
}

.section-head p {
  margin: 0;
  max-width: 420px;
  justify-self: end;
}

.stay-track-wrap {
  overflow: visible;
}

.stay-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding: 12px 0 28px;
}

.stay-card {
  width: min(72vw, 520px);
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(219, 177, 123, 0.34);
  border-radius: 22px;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: 0 18px 70px rgba(13, 13, 12, 0.08);
}

.stay-card:nth-child(even) {
  margin-top: 80px;
}

.stay-card figure {
  height: 470px;
  margin: 0;
  overflow: hidden;
}

.stay-card figure img {
  transition: transform 1.1s var(--ease-soft);
}

.stay-card:hover figure img {
  transform: scale(1.08);
}

.stay-copy {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.stay-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.07em;
  line-height: 0.87;
  margin: 0;
}

.stay-copy p {
  grid-column: 1/-1;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
}

.stay-copy a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-deep);
  align-self: start;
}

/* Across Indonesia - beige theme */
.regions-section {
  background: var(--paper-2);
  color: var(--ink);
  border-top: 1px solid rgba(13, 13, 12, 0.08);
}

.regions-section .section-index,
.regions-section .display,
.regions-section .body-text,
.regions-section .stay-copy h3 {
  color: var(--ink);
}

.regions-section .stay-card {
  background: #fffdf9;
  color: var(--ink);
  border-color: rgba(13, 13, 12, 0.1);
}

.regions-section {
  min-height: 100svh;
  padding-top: clamp(58px, 7vh, 86px);
  padding-bottom: clamp(28px, 4vh, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.regions-section .section-head {
  grid-template-columns: 0.55fr 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(22px, 3.4vh, 38px);
}

.regions-section .section-head .display {
  font-size: clamp(56px, 7.6vw, 128px);
}

.regions-section .section-head p {
  max-width: 520px;
}

.regions-section .stay-track {
  gap: 18px;
  padding: 0 24px 10px;
  max-width: 100vw;
}

.regions-section .stay-card {
  width: min(22.7vw, 372px);
  min-height: min(49vh, 440px);
  border-radius: 18px;
}

.regions-section .stay-card:nth-child(even) {
  margin-top: 0;
}

.regions-section .stay-card figure {
  height: min(29vh, 245px);
}

.regions-section .stay-copy {
  padding: 18px;
  gap: 12px;
}

.regions-section .stay-copy h3 {
  font-size: clamp(31px, 3.25vw, 46px);
}

.regions-section .stay-copy p {
  font-size: 13px;
  line-height: 1.44;
  margin-top: 2px;
  max-width: 100%;
  color: rgba(13, 13, 12, 0.58);
}

.experience-stack {
  position: relative;
  z-index: 4;
  background: var(--dark-2);
  border-top: 0;
  isolation: isolate;
}

.experience-panel .logo-brand {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
}

.experience-panel {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
  border-top: 0;
}

.experience-panel:nth-child(1) {
  z-index: 1;
}

.experience-panel:nth-child(2) {
  z-index: 2;
}

.experience-panel:nth-child(3) {
  z-index: 3;
}

.experience-panel:nth-child(4) {
  z-index: 4;
}

.experience-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transform-origin: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.62);
  will-change: transform;
}

.experience-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 5, 5, 0.36);
  pointer-events: none;
}

.experience-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  width: min(1000px, calc(100vw - 48px));
  padding: 24px;
  color: #fff7ea;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.experience-content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.experience-content > * {
  opacity: 0;
  transform: translateY(54px) scale(0.985);
  filter: blur(18px);
  will-change: opacity, transform, filter;
}

.experience-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 18px;
}

.experience-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.85;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.experience-subtitle {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  color: #ffffff;
}

.experience-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 247, 234, 0.78);
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.experience-title-phrase {
  max-width: 860px;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-indent: 0;
  text-transform: none;
  margin-bottom: 24px;
}

.experience-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 15px 28px;
  border: 1px solid rgba(255, 247, 234, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.experience-button::after {
  content: "→";
  display: inline-block;
  margin-left: 12px;
  font-size: 1.1em;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.35s var(--ease);
}

.experience-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

.experience-button:hover::after {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .experience-content > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.experience-count {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 247, 234, 0.62);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-next {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.moments {
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.moments-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 7vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}

.moments-title .display {
  font-size: clamp(64px, 10vw, 180px);
}

.mosaic-strip {
  display: flex;
  gap: 18px;
  overflow: hidden;
  margin-left: -24px;
  margin-right: -24px;
  padding: 4px 0 32px;
}

.mosaic-set {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-width: 1180px;
  animation: marquee 34s linear infinite;
}

.mosaic-item {
  overflow: hidden;
  border-radius: 18px;
  background: var(--gold-soft);
  height: 360px;
  border: 1px solid rgba(219, 177, 123, 0.18);
}

.mosaic-item:nth-child(2),
.mosaic-item:nth-child(4) {
  margin-top: 90px;
}

.mosaic-item:nth-child(1) {
  grid-column: span 2;
}

.mosaic-item:nth-child(2) {
  grid-column: span 3;
}

.mosaic-item:nth-child(3) {
  grid-column: span 2;
}

.mosaic-item:nth-child(4) {
  grid-column: span 2;
}

.mosaic-item:nth-child(5) {
  grid-column: span 3;
}

.mosaic-item img {
  transition: transform 1s var(--ease-soft);
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

.cta-section {
  padding: 120px 24px 145px;
  background: #ffffff;
  overflow: hidden;
}

.cta-card {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 28px;
  background: var(--dark-2);
  color: #ffffff;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(219, 177, 123, 0.34);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(219, 177, 123, 0.18), transparent 42%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
}

.cta-eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
}

.cta-card .display {
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.cta-card p {
  position: relative;
  z-index: 3;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  margin: 20px auto 0;
  line-height: 1.65;
}

.cta-card .link-arrow {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  color: #ffffff;
}

.cta-card .link-arrow::before {
  background: var(--gold);
}

.store-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #00000000;
  color: #ffffff;
  border: 1px solid rgba(219, 177, 123, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #cda36e;
}

footer {
  background: var(--dark-2);
  color: #ffffff;
  padding: 56px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.6fr);
  gap: 48px;
  border-bottom: 1px solid rgba(219, 177, 123, 0.22);
  padding-bottom: 54px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 18px;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  width: max-content;
  max-width: 230px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-index {
  color: var(--gold-deep);
}

.link-arrow {
  color: var(--ink);
}

.link-arrow::before {
  background: var(--gold);
}

.dark-section .link-arrow,
.cta-card .link-arrow,
footer .hover-line {
  color: #ffffff;
}

.dark-section .link-arrow::before,
.cta-card .link-arrow::before {
  background: var(--gold);
}

.regions-section .stay-card img {
  filter: saturate(0.92) contrast(1.02) brightness(0.96);
}

.regions-section .stay-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.04) brightness(0.99);
}

@media (max-width: 1024px) {
  :root {
    --container: calc(100vw - 32px);
  }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .menu-overlay {
    padding-left: 16px;
    padding-right: 16px;
  }
  .intro-grid,
  .moments-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-head p {
    justify-self: start;
  }
  .menu-main {
    grid-template-columns: 1fr;
    align-content: end;
  }
  .menu-side {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stay-card {
    width: min(86vw, 500px);
  }
}

@media (max-width: 720px) {
  .menu-title {
    display: none;
  }
  .site-header {
    padding-top: 18px;
  }
  .hero {
    padding-top: 0;
  }
  .hero .container {
    padding-top: 160px;
    padding-bottom: 28px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .hero-meta .right {
    text-align: center;
  }
  .hero-stage {
    min-height: clamp(390px, 58svh, 520px);
  }
  .hero-title {
    font-size: clamp(62px, 18vw, 128px);
  }
  .hero-img {
    left: 0;
    right: 0;
    top: -18vh;
    bottom: -18vh;
  }
  .hero-subtitle {
    bottom: 10%;
    font-size: 14px;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .hero-bottom div:last-child {
    display: none;
  }
  .scroll-cue {
    margin: auto;
  }
  .intro-copy .display,
  .section-head .display,
  .moments-title .display {
    font-size: clamp(58px, 18vw, 96px);
  }
  .image-card.tall {
    height: 520px;
  }
  .stay-card {
    min-height: 560px;
  }
  .stay-card figure {
    height: 380px;
  }
  .stay-copy h3 {
    font-size: 44px;
  }
  .regions-section {
    min-height: 100svh;
    padding-top: 74px;
    padding-bottom: 34px;
  }
  .regions-section .section-head {
    margin-bottom: 20px;
  }
  .regions-section .section-head .display {
    font-size: clamp(52px, 15vw, 82px);
  }
  .regions-section .stay-track {
    padding-left: 16px;
    padding-right: 16px;
  }
  .regions-section .stay-card {
    width: min(72vw, 360px);
    min-height: 430px;
  }
  .regions-section .stay-card figure {
    height: 240px;
  }
  .regions-section .stay-copy h3 {
    font-size: 38px;
  }
  .cta-card {
    min-height: 540px;
    padding: 32px;
  }
  .cta-card .display {
    font-size: clamp(38px, 12vw, 62px);
  }
  .cta-card p {
    max-width: 330px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .menu-side {
    grid-template-columns: 1fr;
  }
  .big-menu a {
    font-size: clamp(54px, 18vw, 86px);
  }
  .experience-content {
    width: min(100%, calc(100vw - 32px));
    padding: 20px;
  }
  .experience-title {
    font-size: clamp(42px, 14vw, 76px);
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }
  .experience-subtitle {
    font-size: 21px;
    max-width: 310px;
  }
  .experience-copy {
    font-size: 14px;
    line-height: 1.62;
    max-width: 340px;
  }
  .experience-title-phrase {
    font-size: clamp(34px, 12vw, 58px);
    letter-spacing: -0.055em;
    max-width: 340px;
  }
  .experience-button {
    margin-top: 26px;
    padding: 13px 22px;
    font-size: 11px;
  }
  .experience-count,
  .experience-next {
    bottom: 18px;
  }
  .experience-count {
    left: 16px;
  }
  .experience-next {
    right: 16px;
  }
}

.stay-card,
.cta-card {
  border: 0 !important;
}

.experience-content > * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  will-change: auto;
}

.experience-panel video {
  transform: scale(1) !important;
  will-change: auto;
}

.cta-card {
  display: block;
  place-items: initial;
  text-align: left;
  min-height: auto;
  padding: clamp(34px, 5vw, 68px);
  box-shadow: none;
}

.cta-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.cta-content {
  display: block;
  place-items: initial;
  text-align: left;
}

.cta-card .display {
  max-width: 720px;
}

.cta-card p {
  margin: 22px 0 0;
  max-width: 540px;
}

.store-actions {
  justify-content: flex-start;
}

.cta-app-image {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(100%, 430px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.34));
}

.cta-app-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand-logo {
  display: block;
  width: min(160px, 58vw);
  height: auto;
  object-fit: contain;
}

@media (max-width: 820px) {
  .cta-card {
    padding: 32px;
    text-align: center;
  }
  .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }
  .cta-content {
    text-align: center;
  }
  .cta-card p {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
  .store-actions {
    justify-content: center;
  }
  .cta-app-image {
    justify-self: center;
    width: min(320px, 78vw);
  }
}

.cta-section {
  padding: clamp(130px, 9.2vw, 188px) clamp(20px, 1.6vw, 32px) clamp(118px, 8.3vw, 170px);
  background: #ffffff;
  overflow: visible;
  padding-top: 0;
}

.cta-section > .container {
  width: 100%;
  max-width: none;
}

.cta-card {
  position: relative;
  display: block;
  min-height: clamp(560px, 34vw, 696px);
  padding: 0;
  border: 0 !important;
  border-radius: clamp(24px, 1.7vw, 34px);
  background: #030303;
  color: #ffffff;
  overflow: visible;
  box-shadow: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 35% 44%,
    rgba(219, 177, 123, 0.2),
    rgba(219, 177, 123, 0.09) 18%,
    transparent 42%
  );
  pointer-events: none;
}

.cta-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(78px, 5.7vw, 116px) clamp(38px, 9.6vw, 198px);
}

.cta-content {
  position: relative;
  z-index: 4;
  display: block;
  max-width: 820px;
  text-align: left;
}

.cta-eyebrow {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-card .display {
  max-width: 620px;
  font-size: clamp(64px, 5.1vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.cta-card p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1.55;
}

.store-actions {
  justify-content: flex-start;
  gap: 16px;
  margin-top: 44px;
}

.store-btn {
  min-height: 66px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: clamp(12px, 0.75vw, 15px);
  letter-spacing: 0.11em;
}

.cta-app-image {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(48px, 15vw, 315px);
  width: clamp(360px, 23.5vw, 500px);
  transform: translateY(-50%);
  filter: drop-shadow(0 34px 76px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.cta-app-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .cta-layout {
    padding: 72px clamp(36px, 7vw, 92px);
  }
  .cta-content {
    max-width: 620px;
  }
  .cta-card .display {
    max-width: 620px;
    font-size: clamp(56px, 7vw, 84px);
  }
  .cta-card p {
    max-width: 540px;
    font-size: 17px;
  }
  .cta-app-image {
    right: clamp(28px, 5vw, 72px);
    width: clamp(320px, 32vw, 430px);
  }
}

@media (max-width: 860px) {
  .cta-section {
    padding: 96px 16px 108px;
  }
  .cta-card {
    min-height: auto;
    overflow: hidden;
  }
  .cta-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 54px 28px 0;
    text-align: center;
  }
  .cta-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-card .display {
    max-width: 620px;
    font-size: clamp(44px, 12vw, 72px);
  }
  .cta-card p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .store-actions {
    justify-content: center;
    margin-top: 30px;
  }
  .store-btn {
    min-height: 54px;
    padding: 0 24px;
    font-size: 12px;
  }
  .cta-app-image {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    width: min(370px, 76vw);
    margin: 8px auto -54px;
    transform: none;
  }
}

/* =========================================
   Responsive fix: header + Across Indonesia
   ========================================= */
.site-header {
  column-gap: clamp(12px, 2vw, 34px);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  line-height: 0;
  min-width: 0;
}

.site-header .brand img {
  width: clamp(120px, 10vw, 100px);
  height: auto;
  object-fit: contain;
}

.site-header img.logo-dark {
  display: none;
}

.site-header.is-scrolled img.logo-light {
  display: none;
}

.site-header.is-scrolled img.logo-dark {
  display: block;
  width: clamp(90px, 9vw, 100px);
}

.regions-section {
  min-height: auto;
  padding-top: clamp(84px, 8vw, 126px);
  padding-bottom: clamp(80px, 7vw, 118px);
  display: block;
  overflow: hidden;
}

.regions-section .section-head {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1.25fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 2.2vw, 36px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.regions-section .section-head .display {
  font-size: clamp(72px, 8.8vw, 148px);
  line-height: 0.84;
  max-width: 100%;
}

.regions-section .section-head p {
  justify-self: end;
  max-width: 500px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.56;
}

.regions-section .stay-track-wrap {
  overflow: visible;
}

.regions-section .stay-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
  width: var(--container);
  max-width: 1680px;
  margin: 0 auto;
  padding: 0;
  will-change: auto;
  transform: none !important;
}

.regions-section .stay-card {
  width: auto;
  min-width: 0;
  min-height: auto;
  border-radius: clamp(18px, 1.6vw, 26px);
}

.regions-section .stay-card figure {
  height: clamp(250px, 24vw, 430px);
}

.regions-section .stay-copy {
  padding: clamp(18px, 1.6vw, 28px);
}

.regions-section .stay-copy h3 {
  font-size: clamp(34px, 3.15vw, 58px);
  overflow-wrap: anywhere;
}

.regions-section .stay-copy p {
  font-size: clamp(13px, 0.95vw, 15px);
}

@media (max-width: 1180px) {
  .site-header .brand img {
    width: clamp(128px, 16vw, 158px);
  }

  .super-apps-btn {
    min-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 11px;
  }

  .regions-section .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .regions-section .section-head p {
    justify-self: start;
    max-width: 720px;
  }

  .regions-section .section-head .display {
    font-size: clamp(72px, 13vw, 138px);
  }

  .regions-section .stay-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regions-section .stay-card figure {
    height: clamp(300px, 38vw, 470px);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    padding: 14px 16px;
    column-gap: 10px;
  }

  .menu-trigger {
    font-size: 0;
    gap: 0;
  }

  .hamburger-icon {
    width: 28px;
    height: 18px;
  }

  .site-header .brand img {
    width: clamp(112px, 33vw, 136px);
  }

  .super-apps-btn {
    min-height: 42px;
    padding: 0 14px;
    gap: 7px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .regions-section {
    padding: 78px 16px 80px;
  }

  .regions-section .section-head {
    margin-bottom: 28px;
  }

  .regions-section .section-head .display {
    font-size: clamp(58px, 18vw, 96px);
  }

  .regions-section .section-head p {
    max-width: 100%;
    font-size: 15px;
  }

  .regions-section .stay-track {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .regions-section .stay-card {
    width: 100%;
  }

  .regions-section .stay-card figure {
    height: clamp(250px, 68vw, 370px);
  }

  .regions-section .stay-copy h3 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .site-header .brand img {
    width: clamp(104px, 34vw, 122px);
  }

  .super-apps-btn {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .super-apps-btn span:last-child {
    display: none;
  }

  .regions-section .section-head .display {
    font-size: clamp(54px, 17vw, 78px);
  }
}

/* =========================================
   About Us page
   ========================================= */
.about-page {
  background: var(--bg);
}

.about-hero {
  position: relative;
  min-height: 100svh;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  border-top: 0;
}

.about-hero-media,
.about-hero-scrim {
  position: absolute;
  inset: 0;
}

.about-hero-media {
  z-index: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(0.95) brightness(0.52);
  transform: scale(1.04);
}

.about-hero-scrim {
  z-index: 1;
  background: radial-gradient(circle at 50% 44%, rgba(219, 177, 123, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.72) 72%, rgba(5, 5, 5, 0.92));
}

.about-hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 118px 0 38px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 4vw, 60px);
}

.about-hero-meta,
.about-hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 247, 234, 0.82);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.about-hero-content {
  align-self: center;
  max-width: 1180px;
}

.about-hero-content .section-index {
  color: var(--gold);
  display: inline-flex;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-hero-content .display {
  font-size: clamp(82px, 13vw, 220px);
  color: #fff7ea;
  max-width: 1180px;
  text-shadow: 0 18px 62px rgba(0, 0, 0, 0.38);
}

.about-hero-lead {
  max-width: 720px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  color: rgba(255, 247, 234, 0.84);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.58;
}

.story-section {
  background: var(--paper-2) !important;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 78px);
  align-items: start;
}

.story-title .display {
  font-size: clamp(64px, 8vw, 148px);
  max-width: 920px;
}

.story-copy {
  padding-top: clamp(8px, 1.8vw, 30px);
}

.story-copy .lead,
.story-copy .body-text {
  max-width: 560px;
}

.story-copy .body-text {
  margin-top: 22px;
}

.strategy-section {
  background: #fffdf9 !important;
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 130px);
  align-items: center;
}

.strategy-image {
  height: min(76vh, 760px);
  border-radius: clamp(18px, 2vw, 30px);
}

.strategy-copy .display {
  font-size: clamp(62px, 7.2vw, 132px);
  margin: 18px 0 26px;
}

.strategy-copy .lead,
.strategy-copy .body-text {
  max-width: 650px;
}

.strategy-copy .body-text {
  margin-top: 18px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 54px);
}

.principles-grid article {
  min-height: 210px;
  padding: clamp(20px, 1.8vw, 30px);
  border: 1px solid rgba(13, 13, 12, 0.1);
  border-radius: 18px;
  background: #ffffff;
}

.principles-grid span,
.portfolio-card span {
  display: inline-flex;
  color: var(--gold-deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.principles-grid h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.principles-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.portfolio-section {
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(96px, 9vw, 150px);
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 4.5vw, 74px);
}

.portfolio-head .display {
  font-size: clamp(64px, 8.2vw, 152px);
  margin-top: 18px;
}

.portfolio-head .body-text {
  max-width: 560px;
  justify-self: end;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
}

.portfolio-card {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: clamp(18px, 1.8vw, 28px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(219, 177, 123, 0.22);
}

.portfolio-card figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
}

.portfolio-card figure img {
  transition:
    transform 1.1s var(--ease-soft),
    filter 0.6s ease;
  filter: saturate(0.86) contrast(0.98) brightness(0.86);
}

.portfolio-card:hover figure img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.03) brightness(0.94);
}

.portfolio-card div {
  padding: clamp(22px, 1.8vw, 34px);
}

.portfolio-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(36px, 3.1vw, 56px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.portfolio-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.belief-section {
  background: var(--paper-2) !important;
}

.belief-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(24px, 2.4vw, 42px);
  padding: clamp(38px, 7vw, 120px);
  background: #ffffff;
  border: 1px solid rgba(13, 13, 12, 0.09);
}

.belief-card::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -18%;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 177, 123, 0.22), transparent 66%);
  pointer-events: none;
}

.belief-card .section-index,
.belief-card .display,
.belief-card p {
  position: relative;
  z-index: 1;
}

.belief-card .display {
  max-width: 1120px;
  margin-top: 28px;
  font-size: clamp(52px, 7vw, 132px);
}

.belief-card p {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
}

.contact-menu-col {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
}

.contact-menu-col > * {
  position: relative;
  z-index: 1;
}

.contact-menu-col h4 {
  margin-bottom: 18px;
  color: var(--gold-soft);
}

.contact-menu-col .contact-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
  padding: 13px 0 14px;
  border-bottom: 1px solid rgba(245, 230, 210, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.contact-label {
  display: block;
  color: rgba(219, 177, 123, 0.88);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value,
.menu-office p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.menu-office {
  padding-top: 16px;
}

@media (max-width: 1180px) {
  .story-grid,
  .portfolio-head {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-title .display,
  .portfolio-head .display {
    font-size: clamp(70px, 12vw, 132px);
  }

  .portfolio-head .body-text {
    justify-self: start;
    max-width: 720px;
  }

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

  .strategy-image {
    height: clamp(440px, 58vw, 680px);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card {
    min-height: auto;
  }

  .portfolio-card figure {
    height: clamp(320px, 38vw, 460px);
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-hero-layout {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .about-hero-meta,
  .about-hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-hero-content .display {
    font-size: clamp(66px, 20vw, 118px);
  }

  .about-hero-lead {
    max-width: 92vw;
    font-size: 16px;
  }

  .story-title .display,
  .strategy-copy .display,
  .portfolio-head .display,
  .belief-card .display {
    font-size: clamp(54px, 15vw, 88px);
  }

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

  .principles-grid article {
    min-height: auto;
  }

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

  .portfolio-card figure {
    height: clamp(260px, 68vw, 420px);
  }

  .belief-card {
    padding: 34px 26px;
  }
}

@media (max-width: 520px) {
  .about-hero-content .section-index {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .about-hero-content .display {
    font-size: clamp(56px, 18vw, 84px);
  }

  .about-hero-bottom {
    font-size: 11px;
  }

  .story-section,
  .strategy-section,
  .portfolio-section,
  .belief-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .strategy-image {
    height: clamp(340px, 95vw, 470px);
  }

  .portfolio-card h3 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .portfolio-card div {
    padding: 22px;
  }
}

/* Premium menu hover + custom cursor interactions */
@media (hover: hover) and (pointer: fine) {
  body.has-magnetic-cursor,
  body.has-magnetic-cursor a,
  body.has-magnetic-cursor button,
  body.has-magnetic-cursor [role="button"] {
    cursor: none;
  }
}

.cursor-dot,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 0.28s ease,
    width 0.34s var(--ease-soft),
    height 0.34s var(--ease-soft),
    background-color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(219, 177, 123, 0.62);
}

.cursor-follower {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(219, 177, 123, 0.68);
  background: rgba(245, 230, 210, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-follower {
  opacity: 1;
}

body.cursor-interactive .cursor-follower {
  width: 68px;
  height: 68px;
  border-color: rgba(245, 230, 210, 0.92);
  background: rgba(219, 177, 123, 0.14);
  box-shadow: 0 0 42px rgba(219, 177, 123, 0.22);
}

body.cursor-interactive .cursor-dot {
  background: var(--gold-soft);
  box-shadow: 0 0 24px rgba(245, 230, 210, 0.74);
}

body.cursor-menu-open .cursor-follower {
  border-color: rgba(219, 177, 123, 0.9);
  background: rgba(219, 177, 123, 0.16);
}

.nav-action,
.hamburger-icon i,
.menu-col a,
.big-menu a {
  transition:
    color 0.34s ease,
    transform 0.45s var(--ease-soft),
    opacity 0.34s ease,
    text-shadow 0.34s ease,
    letter-spacing 0.45s var(--ease-soft);
}

.menu-trigger,
.menu-close {
  position: relative;
  isolation: isolate;
}

.menu-trigger::after,
.menu-close::after {
  content: "";
  position: absolute;
  inset: -12px -16px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 230, 210, 0.24), rgba(219, 177, 123, 0.18));
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 0.36s ease,
    transform 0.5s var(--ease-soft);
}

.menu-trigger:hover,
.menu-trigger.is-active,
.menu-close:hover,
.menu-close:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-1px);
  text-shadow: 0 0 24px rgba(219, 177, 123, 0.45);
}

.site-header.is-scrolled .menu-trigger:hover,
.site-header.is-scrolled .menu-trigger.is-active {
  color: var(--gold-deep);
  text-shadow: none;
}

.menu-trigger:hover::after,
.menu-trigger.is-active::after,
.menu-close:hover::after,
.menu-close:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.menu-trigger:hover .hamburger-icon i,
.menu-trigger.is-active .hamburger-icon i,
.menu-close:hover .dot,
.menu-close:focus-visible .dot {
  background: var(--gold);
}

.menu-overlay {
  isolation: isolate;
}

.menu-overlay::before,
.menu-overlay::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-soft),
    transform 1.1s var(--ease-soft);
}

.menu-overlay::before {
  width: min(76vw, 760px);
  height: min(76vw, 760px);
  left: -18vw;
  top: -22vw;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(219, 177, 123, 0.23) 0%,
    rgba(219, 177, 123, 0.12) 32%,
    rgba(219, 177, 123, 0) 70%
  );
  transform: scale(0.58) translate3d(-8%, -8%, 0);
}

.menu-overlay::after {
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 230, 210, 0.08), rgba(219, 177, 123, 0) 48%, rgba(219, 177, 123, 0.1));
  transform: translateY(18px);
}

.menu-overlay.is-open::before,
.menu-overlay.is-open::after {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}

.menu-overlay > * {
  position: relative;
  z-index: 1;
}

.big-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}

.big-menu span {
  position: relative;
  padding-right: 0.18em;
}

.big-menu span::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0.12em;
  bottom: 0.05em;
  height: 0.035em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 230, 210, 0), var(--gold), rgba(245, 230, 210, 0.82));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.72s var(--ease-soft);
}

.menu-overlay.is-open .big-menu a:hover span,
.menu-overlay.is-open .big-menu a:focus-visible span,
.menu-overlay.is-open .big-menu a.is-clicked span,
.menu-overlay.is-open .big-menu a.is-current span {
  color: var(--gold-soft);
  transform: translateY(-0.06em) translateX(0.04em);
  letter-spacing: -0.065em;
  text-shadow: 0 0 34px rgba(219, 177, 123, 0.34);
}

.big-menu a:hover span::after,
.big-menu a:focus-visible span::after,
.big-menu a.is-clicked span::after,
.big-menu a.is-current span::after {
  transform: scaleX(1);
}

.big-menu a:active span {
  color: var(--gold);
  transform: translateY(0) translateX(0.08em) scale(0.985);
}

.menu-col a:hover,
.menu-col a:focus-visible,
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold-soft);
  transform: translateX(8px);
}

.site-header.is-scrolled .nav-action:hover {
  color: var(--gold-deep);
}

@media (max-width: 720px) {
  .menu-trigger::after,
  .menu-close::after {
    inset: -10px -12px;
  }

  .menu-overlay.is-open .big-menu a:hover span,
  .menu-overlay.is-open .big-menu a:focus-visible span,
  .menu-overlay.is-open .big-menu a.is-clicked span,
  .menu-overlay.is-open .big-menu a.is-current span {
    transform: translateY(-0.035em) translateX(0.025em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-follower {
    display: none;
  }

  .menu-overlay::before,
  .menu-overlay::after,
  .big-menu span::after,
  .nav-action,
  .big-menu a,
  .menu-col a {
    transition: none !important;
  }
}

/* Smooth color timing for the large overlay menu text */
.big-menu span {
  transition:
    transform 0.8s var(--ease-soft),
    color 0.34s ease,
    letter-spacing 0.45s var(--ease-soft),
    text-shadow 0.34s ease;
}

.menu-overlay.is-open .big-menu a:hover span,
.menu-overlay.is-open .big-menu a:focus-visible span,
.menu-overlay.is-open .big-menu a.is-clicked span {
  transition-delay: 0s !important;
}

/* Softer, more fluid menu hover refinement */
.menu-overlay {
  --menu-magnet-x: 0px;
  --menu-magnet-y: 0px;
}

.menu-hover-orb {
  position: absolute;
  width: clamp(190px, 24vw, 340px);
  height: clamp(190px, 24vw, 340px);
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  filter: blur(2px);
  background: radial-gradient(
    circle,
    rgba(245, 230, 210, 0.2) 0%,
    rgba(219, 177, 123, 0.17) 30%,
    rgba(219, 177, 123, 0.06) 54%,
    rgba(219, 177, 123, 0) 72%
  );
  transform: translate3d(-50%, -50%, 0) scale(0.72);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.is-hovering-menu .menu-hover-orb {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.menu-overlay > .menu-hover-orb {
  z-index: 0;
}

.big-menu {
  position: relative;
}

.big-menu a {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  isolation: isolate;
  padding-top: 0.035em;
  padding-bottom: 0.055em;
  transition:
    opacity 0.62s ease,
    filter 0.62s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.55s ease;
}

.big-menu a::before {
  content: "";
  position: absolute;
  left: -0.14em;
  right: 0.22em;
  top: 50%;
  height: 0.56em;
  z-index: -1;
  border-radius: 999px;
  opacity: 0;
  /* background: linear-gradient(90deg, rgba(245, 230, 210, 0), rgba(219, 177, 123, 0.18) 42%, rgba(245, 230, 210, 0.1)); */
  transform: translate3d(-18px, -45%, 0) scaleX(0.72);
  transform-origin: left center;
  transition:
    opacity 0.58s ease,
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.big-menu span {
  will-change: transform, color, letter-spacing, text-shadow;
  transition:
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.55s ease,
    letter-spacing 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.66s ease !important;
}

.big-menu span::after {
  left: 0.02em;
  right: 0.18em;
  bottom: 0.035em;
  height: 0.026em;
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 230, 210, 0),
    rgba(219, 177, 123, 0.92) 28%,
    rgba(245, 230, 210, 0.92) 72%,
    rgba(245, 230, 210, 0)
  );
  transform: translate3d(-22px, 0, 0) scaleX(0.45);
  transform-origin: left center;
  transition:
    opacity 0.52s ease,
    transform 0.88s cubic-bezier(0.16, 1, 0.3, 1);
  width: 200px;
}

@media (hover: hover) and (pointer: fine) {
  .big-menu:has(a:hover) a:not(:hover):not(.is-current) {
    opacity: 0.42;
    filter: blur(0.2px);
    transform: translate3d(-7px, 0, 0);
  }

  .big-menu a:hover,
  .big-menu a:focus-visible,
  .big-menu a.is-clicked,
  .big-menu a.is-current {
    transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  }

  .big-menu a:hover::before,
  .big-menu a:focus-visible::before,
  .big-menu a.is-clicked::before,
  .big-menu a.is-current::before {
    opacity: 1;
    transform: translate3d(0, -45%, 0) scaleX(1);
  }
}

.menu-overlay.is-open .big-menu a:hover span,
.menu-overlay.is-open .big-menu a:focus-visible span,
.menu-overlay.is-open .big-menu a.is-clicked span,
.menu-overlay.is-open .big-menu a.is-current span {
  color: var(--gold-soft);
  transform: translate3d(16px, 0, 0);
  letter-spacing: -0.073em;
  text-shadow:
    0 0 22px rgba(219, 177, 123, 0.24),
    0 0 54px rgba(219, 177, 123, 0.14);
  transition-delay: 0s !important;
}

.big-menu a:hover span::after,
.big-menu a:focus-visible span::after,
.big-menu a.is-clicked span::after,
.big-menu a.is-current span::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
}

.menu-col a {
  --magnet-x: 0px;
  --magnet-y: 0px;
  transition:
    color 0.45s ease,
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    text-shadow 0.45s ease;
}

.menu-col a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: translate3d(-8px, -50%, 0) scale(0.4);
  transition:
    opacity 0.42s ease,
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-col a:hover,
.menu-col a:focus-visible {
  color: var(--gold-soft);
  transform: translate3d(calc(10px + var(--magnet-x)), var(--magnet-y), 0);
  text-shadow: 0 0 18px rgba(219, 177, 123, 0.18);
}

.menu-col a:hover::before,
.menu-col a:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1);
}

.menu-trigger,
.menu-close {
  transition:
    color 0.42s ease,
    transform 0.64s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.42s ease;
}

.menu-trigger::after,
.menu-close::after {
  filter: blur(0.2px);
  transition:
    opacity 0.5s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s ease;
}

.menu-trigger:hover,
.menu-trigger.is-active,
.menu-close:hover,
.menu-close:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.015);
}

@media (max-width: 720px) {
  .big-menu a {
    font-size: 7vh;
  }
  .menu-overlay.is-open .big-menu a:hover span,
  .menu-overlay.is-open .big-menu a:focus-visible span,
  .menu-overlay.is-open .big-menu a.is-clicked span,
  .menu-overlay.is-open .big-menu a.is-current span {
    transform: translate3d(8px, 0, 0);
  }

  .big-menu a::before,
  .menu-hover-orb {
    display: none;
  }
}
/* Coming Soon Page */
.coming-soon-page {
  background: var(--dark-2);
}

.coming-soon-main {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  background: var(--dark-2);
  color: #fff7ea;
}

.coming-soon-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(34px, 5.5vw, 96px) 86px;
  isolation: isolate;
}

.coming-soon-media,
.coming-soon-scrim {
  position: absolute;
  inset: 0;
}

.coming-soon-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02) brightness(0.52);
  transform: scale(1.04);
}

.coming-soon-scrim {
  z-index: 1;
  background: radial-gradient(circle at 72% 42%, rgba(219, 177, 123, 0.22), rgba(219, 177, 123, 0) 31%), linear-gradient(90deg, rgb(5 5 5 / 0%) 0%, rgb(5 5 5 / 0%) 46%, rgb(5 5 5 / 0%) 100%), linear-gradient(180deg, rgba(5, 5, 5, 0.32), rgb(5 5 5 / 0%));
  pointer-events: none;
}

.coming-soon-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100vw - clamp(68px, 11vw, 192px)), 1480px);
  max-width: 1480px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.56fr);
  gap: clamp(34px, 6.2vw, 104px);
  align-items: center;
}

.coming-soon-left {
  max-width: 980px;
}

.coming-soon-kicker {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.coming-soon-title {
  font-size: clamp(88px, 14vw, 238px);
  line-height: 0.92;
  letter-spacing: -0.09em;
  color: #fff7ea;
  text-shadow: 0 18px 62px rgba(0, 0, 0, 0.46);
}

.coming-soon-title.split .line {
  overflow: visible;
  padding-bottom: 0.06em;
}

.coming-soon-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 247, 234, 0.78);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.72;
  letter-spacing: -0.025em;
}

.coming-soon-subscribe {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgba(219, 177, 123, 0.34);
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.09);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.coming-soon-subscribe input {
  width: 100%;
  min-height: 54px;
  border: 0;
  outline: 0;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: transparent;
  color: #fff7ea;
  font: inherit;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.coming-soon-subscribe input::placeholder {
  color: rgba(255, 247, 234, 0.58);
}

.coming-soon-subscribe input:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(219, 177, 123, 0.42);
}

.coming-soon-subscribe .experience-button {
  min-height: 54px;
  margin-top: 0;
  white-space: nowrap;
}

.coming-soon-note {
  width: min(100%, 560px);
  margin: 14px 0 0;
  color: rgba(255, 247, 234, 0.58);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.coming-soon-card {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgba(219, 177, 123, 0.32);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(219, 177, 123, 0.24), transparent 42%);
}

.coming-soon-logo {
  position: relative;
  z-index: 1;
  width: min(260px, 72%);
  height: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  opacity: 0.96;
}

.coming-soon-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 247, 234, 0.74);
  font-size: 15px;
  line-height: 1.68;
  text-align: center;
}

.coming-soon-status {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.32);
  border: 1px solid rgba(219, 177, 123, 0.22);
  text-align: center;
}

.coming-soon-status span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon-status strong {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.coming-soon-pill-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.coming-soon-pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 234, 0.18);
  color: rgba(255, 247, 234, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.coming-soon-bottom {
  position: absolute;
  left: clamp(34px, 5.5vw, 96px);
  right: clamp(34px, 5.5vw, 96px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  color: rgba(255, 247, 234, 0.62);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.coming-soon-bottom span:nth-child(2) {
  text-align: center;
  color: var(--gold);
}

.coming-soon-bottom span:last-child {
  text-align: right;
}

.coming-soon-page .header-spacer {
  width: 100%;
  min-height: 1px;
}

.coming-soon-page .site-header,
.coming-soon-page .coming-soon-header {
  grid-template-columns: minmax(54px, 1fr) auto minmax(54px, 1fr);
}

.coming-soon-page .site-header .brand {
  justify-self: center;
}

@media (max-width: 1180px) {
  .coming-soon-hero {
    padding-inline: clamp(28px, 5vw, 64px);
  }

  .coming-soon-shell {
    width: min(calc(100vw - clamp(56px, 10vw, 128px)), 1180px);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coming-soon-left {
    max-width: 860px;
  }

  .coming-soon-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .coming-soon-page .site-header,
  .coming-soon-page .coming-soon-header {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .coming-soon-hero {
    min-height: auto;
    align-items: start;
    padding: 124px 22px 36px;
  }

  .coming-soon-shell {
    width: 100%;
    gap: 30px;
    justify-items: center;
  }

  .coming-soon-left,
  .coming-soon-copy,
  .coming-soon-note {
    max-width: 100%;
    text-align: center;
  }

  .coming-soon-left {
    display: grid;
    justify-items: center;
  }

  .coming-soon-subscribe {
    margin-left: auto;
    margin-right: auto;
  }

  .coming-soon-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .coming-soon-kicker {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .coming-soon-title {
    font-size: clamp(70px, 24vw, 118px);
    line-height: 0.92;
  }

  .coming-soon-copy {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .coming-soon-subscribe {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 28px;
    padding: 10px;
    margin-top: 28px;
  }

  .coming-soon-subscribe input {
    min-height: 50px;
    padding: 0 16px;
    background: rgba(5, 5, 5, 0.18);
  }

  .coming-soon-subscribe .experience-button {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .coming-soon-note {
    width: 100%;
  }

  .coming-soon-card {
    width: 100%;
    border-radius: 24px;
    padding: 24px;
  }

  .coming-soon-logo {
    width: min(210px, 68%);
    margin-bottom: 22px;
  }

  .coming-soon-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 34px auto 0;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .coming-soon-bottom span:last-child {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .coming-soon-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .coming-soon-page .site-header,
  .coming-soon-page .coming-soon-header {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .coming-soon-title {
    font-size: clamp(62px, 23vw, 92px);
  }

  .coming-soon-pill-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    padding: 22px;
  }
}
