:root {
  color-scheme: light;
  --ink: #25221d;
  --ink-soft: #403a31;
  --muted: #716c64;
  --paper: #ffffff;
  --warm: #f8f5ee;
  --surface: #f6f1e8;
  --surface-2: #fbf8f1;
  --line: rgba(95, 75, 42, .16);
  --glass: rgba(255, 255, 255, .78);
  --blue: #b58a35;
  --purple: #7b5a23;
  --gold: #b58a35;
  --gold-deep: #8f6b27;
  --gold-soft: #d8b66a;
  --charcoal: #211e18;
  --ivory: #fbf8f1;
  --shadow: 0 28px 80px rgba(60, 43, 19, .09);
  --soft-shadow: 0 18px 48px rgba(60, 43, 19, .06);
  --radius: 8px;
  --display-font: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-meta: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== CUSTOMER CONCIERGE FORM PREMIUM POLISH ===== */
:root {
  --lux-white: #ffffff;
  --lux-black: #111111;
  --lux-charcoal: #24201d;
  --lux-muted: rgba(17, 17, 17, 0.62);
  --lux-gold: #A67C52;
  --lux-gold-soft: rgba(166, 124, 82, 0.22);
  --lux-gold-focus: rgba(166, 124, 82, 0.50);
  --lux-border: rgba(166, 124, 82, 0.18);
}

.clik-modal--concierge {
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.clik-modal--concierge .clik-modal__backdrop {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.clik-modal--concierge .clik-modal__card {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  width: min(620px, calc(100vw - 32px));
  max-width: 620px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 42px 44px 38px;
  border: 1px solid var(--lux-border);
  border-radius: 28px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.10),
    0 10px 30px rgba(0, 0, 0, 0.05);
  overscroll-behavior: contain;
}

.clik-modal--concierge .clik-modal__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(166, 124, 82, 0.42),
    transparent
  );
}

.clik-modal--concierge .clik-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lux-gold-soft);
  border-radius: 999px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.clik-modal--concierge .clik-modal__close:hover,
.clik-modal--concierge .clik-modal__close:focus-visible {
  background: var(--lux-black);
  color: var(--lux-white);
  border-color: rgba(166, 124, 82, 0.45);
  transform: translateY(-1px);
  outline: none;
}

.clik-modal--concierge .section-kicker {
  margin: 0 48px 18px 0;
  color: var(--lux-gold);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.clik-modal--concierge .clik-modal__card h2 {
  margin: 0 42px 14px 0;
  color: var(--lux-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.clik-modal--concierge .clik-modal__copy {
  margin: 0 0 30px;
  color: var(--lux-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.clik-modal--concierge .clik-modal__divider {
  height: 1px;
  margin: 4px 0 8px;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.22), transparent);
}

.clik-modal--concierge .clik-modal__form {
  display: grid;
  gap: 18px;
}

.clik-modal--concierge .clik-modal__form label {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--lux-charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clik-modal--concierge .clik-modal__form label > span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 11px;
}

.clik-modal--concierge .clik-modal__form em {
  color: rgba(17, 17, 17, 0.45);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.clik-modal--concierge .clik-modal__form input,
.clik-modal--concierge .clik-modal__form select,
.clik-modal--concierge .clik-modal__form textarea {
  width: 100%;
  height: 62px;
  min-height: 62px;
  border: 1px solid rgba(166, 124, 82, 0.24);
  border-radius: 18px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  outline: none;
  padding: 0 20px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.clik-modal--concierge .clik-modal__form input::placeholder,
.clik-modal--concierge .clik-modal__form textarea::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.clik-modal--concierge .clik-modal__form input:hover,
.clik-modal--concierge .clik-modal__form select:hover,
.clik-modal--concierge .clik-modal__form textarea:hover {
  border-color: rgba(166, 124, 82, 0.38);
  transform: translateY(-1px);
}

.clik-modal--concierge .clik-modal__form input:focus,
.clik-modal--concierge .clik-modal__form select:focus,
.clik-modal--concierge .clik-modal__form textarea:focus {
  border-color: var(--lux-gold-focus);
  box-shadow:
    0 0 0 4px rgba(166, 124, 82, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.04);
}

.clik-modal--concierge .clik-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.clik-modal--concierge .clik-submit {
  width: 100%;
  height: 62px;
  margin-top: 0;
  border: 1px solid rgba(166, 124, 82, 0.30);
  border-radius: 18px;
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  color: var(--lux-white);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.clik-modal--concierge .clik-submit:hover,
.clik-modal--concierge .clik-submit:focus-visible {
  border-color: rgba(166, 124, 82, 0.55);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 0 0 4px rgba(166, 124, 82, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.clik-modal--concierge .clik-submit:active {
  transform: translateY(0);
}

.clik-modal--concierge .clik-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.clik-modal--concierge .clik-form-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: var(--lux-muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .clik-modal--concierge {
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  }

  .clik-modal--concierge .clik-modal__card {
    width: min(100%, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .clik-modal--concierge .clik-modal__card::before {
    left: 24px;
    right: 24px;
  }

  .clik-modal--concierge .clik-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .clik-modal--concierge .section-kicker {
    margin-right: 42px;
    margin-bottom: 16px;
  }

  .clik-modal--concierge .clik-modal__card h2 {
    margin-right: 38px;
    font-size: clamp(34px, 10.5vw, 38px);
    letter-spacing: -0.04em;
  }

  .clik-modal--concierge .clik-modal__copy {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .clik-modal--concierge .clik-modal__form {
    gap: 16px;
  }

  .clik-modal--concierge .clik-modal__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clik-modal--concierge .clik-modal__form input,
  .clik-modal--concierge .clik-modal__form select,
  .clik-modal--concierge .clik-modal__form textarea,
  .clik-modal--concierge .clik-submit {
    height: 58px;
    min-height: 58px;
  }
}

/* ===== FINAL CLIKHOME BRAND ASSET OVERRIDE - TRUE CASCADE END ===== */
.hospitality-home .nav-brand,
.journey-page .nav-brand,
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #24201d;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hospitality-home .nav-brand:hover,
.journey-page .nav-brand:hover,
.nav-brand:hover {
  opacity: 0.92;
}

.hospitality-home .nav-brand-mark,
.journey-page .nav-brand-mark,
.nav-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.hospitality-home .nav-brand-text,
.journey-page .nav-brand-text,
.nav-brand-text {
  display: inline-block;
  color: #3f3a36;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.20em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hospitality-home .launch-nav,
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    width: auto;
    min-width: 0;
    height: auto;
    gap: 10px;
    justify-self: end;
  }

  .hospitality-home .nav-brand-mark,
  .journey-page .nav-brand-mark,
  .nav-brand-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    display: inline-block;
    max-width: none;
    overflow: visible;
    color: #3f3a36;
    font-size: 14px;
    letter-spacing: 0.20em;
    text-overflow: clip;
  }
}

@media (max-width: 390px) {
  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    gap: 9px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}

/* Keep the brand wordmark visually aligned with standard nav links. */
.hospitality-home .nav-brand-text,
.journey-page .nav-brand-text,
.nav-brand-text {
  font-weight: 520;
}

/* ===== FINAL CLIKHOME BRAND ASSET OVERRIDE - CASCADE END ===== */
.hospitality-home .nav-brand,
.journey-page .nav-brand,
.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #24201d;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hospitality-home .nav-brand:hover,
.journey-page .nav-brand:hover,
.nav-brand:hover {
  opacity: 0.92;
}

.hospitality-home .nav-brand-mark,
.journey-page .nav-brand-mark,
.nav-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.hospitality-home .nav-brand-text,
.journey-page .nav-brand-text,
.nav-brand-text {
  display: inline-block;
  color: #24201d;
  font-family: var(--font-meta);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hospitality-home .launch-nav,
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    width: auto;
    min-width: 0;
    height: auto;
    gap: 10px;
    justify-self: end;
  }

  .hospitality-home .nav-brand-mark,
  .journey-page .nav-brand-mark,
  .nav-brand-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    display: inline-block;
    max-width: none;
    overflow: visible;
    color: #24201d;
    font-size: 22px;
    letter-spacing: 0.12em;
    text-overflow: clip;
  }
}

@media (max-width: 390px) {
  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    gap: 8px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

/* ===== FINAL CLIKHOME BRAND ASSET INTEGRATION ===== */
.hospitality-home .nav-brand,
.journey-page .nav-brand,
.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #24201d;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hospitality-home .nav-brand:hover,
.journey-page .nav-brand:hover,
.nav-brand:hover {
  opacity: 0.92;
}

.hospitality-home .nav-brand-mark,
.journey-page .nav-brand-mark,
.nav-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.hospitality-home .nav-brand-text,
.journey-page .nav-brand-text,
.nav-brand-text {
  display: inline-block;
  color: #24201d;
  font-family: var(--font-meta);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hospitality-home .launch-nav,
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    width: auto;
    min-width: 0;
    height: auto;
    gap: 10px;
    justify-self: end;
  }

  .hospitality-home .nav-brand-mark,
  .journey-page .nav-brand-mark,
  .nav-brand-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    display: inline-block;
    max-width: none;
    overflow: visible;
    color: #24201d;
    font-size: 22px;
    letter-spacing: 0.12em;
    text-overflow: clip;
  }
}

@media (max-width: 390px) {
  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    gap: 8px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

/* ===== FINAL GALLERY ARROW VISIBILITY OVERRIDE ===== */
.gallery-nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(166, 124, 82, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #A67C52;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  z-index: 5;
  opacity: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-nav svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery-nav--prev {
  left: -24px;
}

.gallery-nav--next {
  right: -24px;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-nav--prev:hover,
.gallery-nav--next:hover {
  border-color: rgba(166, 124, 82, 0.58);
  background: #ffffff;
  color: #A67C52;
  opacity: 1;
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 640px) {
  .hospitality-home .gallery-nav,
  .gallery-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
  }

  .hospitality-home .gallery-nav--prev,
  .gallery-nav--prev {
    left: 10px;
  }

  .hospitality-home .gallery-nav--next,
  .gallery-nav--next {
    right: 10px;
  }
}

.floating-direct-ctas {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hospitality-home .floating-engagement:not(.is-open),
.journey-page .floating-engagement:not(.is-open) {
  pointer-events: none;
}

.hospitality-home .floating-engagement.is-open,
.journey-page .floating-engagement.is-open {
  pointer-events: auto;
}

.floating-direct-cta {
  display: flex;
  width: 220px;
  height: 52px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid rgba(166, 124, 82, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  color: #24201d;
  padding: 0 16px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all 180ms ease;
}

.floating-direct-cta:hover,
.floating-direct-cta:focus-visible {
  border-color: rgba(166, 124, 82, 0.48);
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.floating-direct-cta svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #A67C52;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-direct-cta .cta-label-mobile {
  display: none;
}

@media (max-width: 640px) {
  .hospitality-home main {
    padding-bottom: calc(env(safe-area-inset-bottom) + 184px);
  }

  .hospitality-home .floating-direct-ctas {
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom) + 12px);
    left: auto;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .hospitality-home .floating-direct-cta {
    width: 168px;
    height: 46px;
    min-width: 0;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 0 12px;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .hospitality-home .floating-direct-cta svg {
    width: 14px;
    height: 14px;
  }

  .hospitality-home .floating-direct-cta .cta-label-desktop {
    display: none;
  }

  .hospitality-home .floating-direct-cta .cta-label-mobile {
    display: inline;
  }
}

@media (max-width: 390px) {
  .hospitality-home .floating-direct-cta {
    width: 152px;
    font-size: 9px;
  }
}

/* ===== FINAL MOBILE NAV + READABILITY + GALLERY ARROWS ===== */
.mobile-menu-toggle,
.mobile-nav-menu {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --header-height-mobile: 76px;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    width: 100%;
    height: var(--header-height-mobile);
    min-height: var(--header-height-mobile);
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid rgba(166, 124, 82, 0.16);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 20px;
    transform: none;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .hospitality-home .mobile-menu-toggle,
  .journey-page .mobile-menu-toggle {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(166, 124, 82, 0.24);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
  }

  .hospitality-home .mobile-menu-toggle span,
  .journey-page .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: #111111;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .hospitality-home .mobile-menu-toggle.is-open span:nth-child(1),
  .journey-page .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .hospitality-home .mobile-menu-toggle.is-open span:nth-child(2),
  .journey-page .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hospitality-home .mobile-menu-toggle.is-open span:nth-child(3),
  .journey-page .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links,
  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    display: none;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin-left: 0;
  }

  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    min-height: 42px;
    padding: 0 14px;
    border-color: rgba(166, 124, 82, 0.22);
    background: #ffffff;
    color: #111111;
    white-space: nowrap;
  }

  .hospitality-home .nav-login-action span,
  .journey-page .nav-login-action span {
    display: inline;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand {
    grid-column: 3;
    justify-self: end;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text {
    display: none;
  }

  .hospitality-home .nav-brand-mark,
  .journey-page .nav-brand-mark {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .hospitality-home .mobile-nav-menu,
  .journey-page .mobile-nav-menu {
    position: fixed;
    top: var(--header-height-mobile, 76px);
    left: 0;
    right: 0;
    z-index: 80;
    display: grid;
    gap: 0;
    max-height: calc(100svh - var(--header-height-mobile, 76px));
    overflow-y: auto;
    border-top: 1px solid rgba(166, 124, 82, 0.16);
    border-bottom: 1px solid rgba(166, 124, 82, 0.16);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .hospitality-home .mobile-nav-menu.is-open,
  .journey-page .mobile-nav-menu.is-open,
  .hospitality-home.mobile-nav-open .mobile-nav-menu,
  .journey-page.mobile-nav-open .mobile-nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hospitality-home .mobile-nav-menu a,
  .journey-page .mobile-nav-menu a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(166, 124, 82, 0.12);
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .hospitality-home .mobile-nav-menu a:last-child,
  .journey-page .mobile-nav-menu a:last-child {
    border-bottom: 0;
  }

  .hospitality-home main,
  .journey-main {
    padding-top: var(--header-height-mobile, 76px);
  }
}

.gallery-nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(166, 124, 82, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #A67C52;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  z-index: 5;
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-nav svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery-nav--prev {
  left: -24px;
}

.gallery-nav--next {
  right: -24px;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: rgba(166, 124, 82, 0.58);
  background: #ffffff;
  color: #A67C52;
  opacity: 1;
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.gallery-nav--prev:hover,
.gallery-nav--next:hover {
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hospitality-home main,
  .journey-main {
    padding-bottom: calc(env(safe-area-inset-bottom) + 180px);
  }

  .hospitality-home .hospitality-section,
  .hospitality-home .private-journey,
  .hospitality-home .privileges-section,
  .hospitality-home .media-gallery-section,
  .hospitality-home .final-concierge-section {
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    padding-right: 26px;
    padding-left: 26px;
    overflow-x: hidden;
  }

  .hospitality-home img,
  .journey-page img {
    max-width: 100%;
    height: auto;
  }

  .hospitality-home .section-heading-row h2,
  .hospitality-home .private-journey__heading h2,
  .hospitality-home .location-copy h2,
  .hospitality-home .amenities-editorial-section h2,
  .hospitality-home .story-editorial-block h2,
  .hospitality-home .final-concierge-section h2 {
    max-width: 100%;
    font-size: clamp(48px, 14vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .privileges-section .section-heading-row h2,
  .hospitality-home .private-journey__heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hospitality-home .section-kicker {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.18em;
  }

  .hospitality-home .media-gallery-section > .section-kicker {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p {
    color: rgba(17, 17, 17, 0.62);
    font-size: 21px;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .privilege-grid {
    gap: 30px;
    margin-top: 30px;
  }

  .hospitality-home .privilege-grid article {
    padding: 26px 0;
  }

  .hospitality-home .privilege-grid span {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .hospitality-home .privilege-grid h3,
  .hospitality-home .neighbourhood-grid h3,
  .hospitality-home .amenity-editorial-grid h3,
  .hospitality-home .story-editorial-block h3 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hospitality-home .private-journey__inner {
    width: 100%;
    min-width: 0;
  }

  .hospitality-home .journey-steps {
    gap: 22px;
  }

  .hospitality-home .journey-line {
    display: none;
  }

  .hospitality-home .journey-step {
    min-width: 0;
    padding: 22px 0;
  }

  .hospitality-home .journey-step__number {
    font-size: 18px;
  }

  .hospitality-home .journey-icon {
    width: 40px;
    height: 40px;
  }

  .hospitality-home .journey-icon svg {
    width: 36px;
    height: 36px;
  }

  .hospitality-home .journey-step h3 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .journey-step p {
    font-size: 20px;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .private-journey__actions,
  .hospitality-home .final-cta-row {
    gap: 12px;
  }

  .hospitality-home .private-journey__actions a,
  .hospitality-home .luxury-button,
  .hospitality-home .text-link {
    min-height: 54px;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hospitality-home .privileges-section {
    padding-bottom: calc(env(safe-area-inset-bottom) + 180px);
  }

  .hospitality-home .media-gallery-shell {
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .hospitality-home .gallery-track {
    grid-auto-columns: calc(100vw - 52px);
    gap: 16px;
  }

  .hospitality-home .gallery-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
  }

  .hospitality-home .gallery-nav--prev {
    left: 10px;
  }

  .hospitality-home .gallery-nav--next {
    right: 10px;
  }

  .hospitality-home .floating-engagement,
  .journey-page .floating-engagement {
    right: 22px;
    bottom: calc(env(safe-area-inset-bottom) + 96px);
    left: auto;
    width: min(260px, calc(100vw - 44px));
    z-index: 40;
  }

  .hospitality-home .engagement-launcher,
  .journey-page .engagement-launcher {
    width: 100%;
    height: 58px;
    min-height: 58px;
  }
}

@media (max-width: 390px) {
  .hospitality-home .private-journey__actions a,
  .hospitality-home .luxury-button,
  .hospitality-home .text-link {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .hospitality-home .mobile-nav-menu a,
  .journey-page .mobile-nav-menu a {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

/* ===== FINAL CUSTOMER JOURNEY MOBILE READABILITY OVERRIDES ===== */
@media (max-width: 640px) {
  html,
  body,
  .journey-page,
  .journey-main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .journey-page .journey-hero-section,
  .journey-page .journey-hero-inner,
  .journey-page .journey-overview,
  .journey-page .login-journey,
  .journey-page .journey-progress-summary,
  .journey-vertical-timeline,
  .journey-timeline-row,
  .journey-timeline-content,
  .journey-timeline-content > div {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .journey-main {
    width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom) + 160px);
  }

  .journey-page .launch-nav,
  .journey-page .journey-nav {
    position: sticky;
    top: 0;
    min-height: 72px;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
  }

  .journey-page .nav-links,
  .journey-page .nav-engage-action {
    display: none;
  }

  .journey-page .nav-brand {
    min-width: 0;
  }

  .journey-page .nav-brand-text {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .journey-page .nav-primary-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    min-width: 0;
  }

  .journey-page .nav-login-action {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .journey-page .journey-hero-section {
    min-height: 0;
    padding: 32px 0 24px;
  }

  .journey-page .journey-hero-inner {
    width: 100%;
    margin: 0;
  }

  .journey-page .login-journey {
    width: 100%;
    padding: 0 22px;
    overflow: visible;
  }

  .journey-page .login-journey__header {
    max-width: none;
    margin: 0 0 22px;
    text-align: left;
  }

  .journey-page .login-journey__header .section-kicker {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .journey-page .login-journey__header h1 {
    margin: 0;
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    max-width: 100%;
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .journey-page .journey-progress-summary {
    width: 100%;
    margin: 0 0 26px;
    padding: 0 0 22px;
    text-align: left;
  }

  .journey-page .journey-progress-summary > span,
  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-summary > small,
  .journey-page .journey-progress-bar {
    justify-self: stretch;
  }

  .journey-page .journey-progress-summary > strong {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .journey-vertical-timeline {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0 0 120px;
    gap: 0;
  }

  .journey-vertical-timeline::before {
    display: none;
  }

  .journey-gap-marker {
    justify-self: start;
    margin: 0;
    padding: 0 0 18px;
    background: transparent;
    color: rgba(17, 17, 17, 0.48);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .journey-timeline-row {
    display: block;
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(166, 124, 82, 0.18);
  }

  .journey-timeline-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .journey-timeline-row::before,
  .journey-timeline-row:nth-of-type(odd)::before,
  .journey-timeline-row:nth-of-type(even)::before {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(17, 17, 17, 0.58);
    content: attr(data-status);
    font-family: var(--font-meta);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
  }

  .journey-timeline-row::after,
  .journey-timeline-row:nth-of-type(odd)::after,
  .journey-timeline-row:nth-of-type(even)::after {
    display: none;
    content: none;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    display: grid;
    width: 100%;
    grid-column: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 12px 16px;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }

  .journey-timeline-row .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-of-type(odd) .journey-node {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    margin-left: 2px;
    border: 1px solid rgba(166, 124, 82, 0.35);
    border-radius: 999px;
    background: #ffffff;
    color: #A67C52;
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .journey-timeline-row .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-of-type(odd) .journey-icon {
    grid-column: 1;
    grid-row: 2;
    width: 44px;
    height: 44px;
    margin-left: 2px;
    color: rgba(91, 68, 34, 0.72);
  }

  .journey-timeline-row .journey-icon svg {
    width: 32px;
    height: 32px;
  }

  .journey-timeline-row .journey-timeline-content > div,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content > div,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content > div {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    min-width: 0;
  }

  .journey-timeline-row *,
  .journey-gap-marker,
  .journey-row-action,
  .journey-meta span {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .journey-timeline-row h3 {
    max-width: 100%;
    margin: 0;
    color: #111111;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    white-space: normal;
  }

  .journey-timeline-row .journey-meta,
  .journey-timeline-row:nth-child(odd) .journey-meta,
  .journey-timeline-row:nth-of-type(odd) .journey-meta {
    justify-content: flex-start;
    margin-top: 12px;
    color: rgba(17, 17, 17, 0.56);
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .journey-timeline-row p {
    max-width: 100%;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.68);
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.5;
  }

  .journey-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: max-content;
    max-width: 100%;
    min-height: 38px;
    margin-top: 14px;
    border: 1px solid rgba(166, 124, 82, 0.28);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(91, 68, 34, 0.86);
    padding: 0 14px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .journey-moments-section,
  .journey-services-section {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .journey-page .floating-engagement {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 96px);
    left: auto;
    z-index: 40;
    width: auto;
    align-items: flex-end;
  }

  .journey-page .engagement-launcher {
    width: auto;
    min-width: 176px;
    height: 56px;
    min-height: 56px;
    grid-template-columns: 18px auto;
    border-radius: 999px;
    padding: 0 16px;
  }

  .journey-page .engagement-launcher span,
  .journey-page .engagement-launcher small {
    white-space: nowrap;
  }

  .journey-page .engagement-tray {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 160px);
    left: max(14px, env(safe-area-inset-left));
    width: auto;
    max-height: min(66svh, 520px);
    overflow-y: auto;
  }
}

@media (max-width: 390px) {
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .journey-page .nav-brand-text {
    display: none;
  }

  .journey-page .login-journey {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 13px;
  }

  .journey-timeline-row h3 {
    font-size: clamp(34px, 9.8vw, 38px);
  }

  .journey-row-action {
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 0.1em;
  }

  .journey-page .floating-engagement {
    right: max(14px, env(safe-area-inset-right));
  }

  .journey-page .engagement-launcher {
    min-width: 156px;
    height: 52px;
    min-height: 52px;
    padding: 0 14px;
  }

  .journey-page .engagement-launcher span {
    font-size: 10px;
  }
}

/* ===== FINAL CUSTOMER JOURNEY MOBILE READABILITY FIX ===== */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .journey-page,
  .journey-main,
  .journey-page .journey-hero-section,
  .journey-page .journey-hero-inner,
  .journey-page .journey-overview,
  .journey-page .login-journey,
  .journey-page .journey-progress-summary,
  .journey-vertical-timeline,
  .journey-timeline-row,
  .journey-timeline-content,
  .journey-timeline-content > div,
  .journey-moments-section,
  .journey-services-section {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .journey-main {
    width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom) + 160px);
  }

  .journey-page .launch-nav,
  .journey-page .journey-nav {
    position: sticky;
    top: 0;
    min-height: 72px;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
  }

  .journey-page .nav-brand {
    min-width: 0;
    justify-self: start;
  }

  .journey-page .nav-brand-text {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .journey-page .nav-links,
  .journey-page .nav-engage-action {
    display: none;
  }

  .journey-page .nav-primary-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    min-width: 0;
  }

  .journey-page .nav-login-action {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .journey-page .journey-hero-section {
    min-height: 0;
    padding: 32px 0 24px;
  }

  .journey-page .journey-hero-inner {
    width: 100%;
    margin: 0;
  }

  .journey-page .login-journey {
    width: 100%;
    padding: 0 22px;
    overflow: visible;
  }

  .journey-page .login-journey__header {
    max-width: none;
    margin: 0 0 22px;
    text-align: left;
  }

  .journey-page .login-journey__header .section-kicker {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .journey-page .login-journey__header h1 {
    margin: 0;
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    max-width: 100%;
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .journey-access-card {
    width: 100%;
    padding: 18px;
  }

  .journey-page .journey-progress-summary {
    width: 100%;
    margin: 0 0 26px;
    padding: 0 0 22px;
    text-align: left;
  }

  .journey-page .journey-progress-summary > span,
  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-summary > small,
  .journey-page .journey-progress-bar {
    justify-self: stretch;
  }

  .journey-page .journey-progress-summary > strong {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-summary > small {
    font-size: 14px;
    line-height: 1.48;
  }

  .journey-vertical-timeline {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0 0 120px;
    gap: 0;
  }

  .journey-vertical-timeline::before {
    display: none;
  }

  .journey-gap-marker {
    justify-self: start;
    margin: 0;
    padding: 0 0 18px;
    background: transparent;
    color: rgba(17, 17, 17, 0.48);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .journey-timeline-row {
    display: block;
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(166, 124, 82, 0.18);
  }

  .journey-timeline-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .journey-timeline-row::before,
  .journey-timeline-row:nth-of-type(odd)::before,
  .journey-timeline-row:nth-of-type(even)::before,
  .journey-timeline-row::after,
  .journey-timeline-row:nth-of-type(odd)::after,
  .journey-timeline-row:nth-of-type(even)::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(17, 17, 17, 0.58);
    content: attr(data-status);
    font-family: var(--font-meta);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
  }

  .journey-timeline-row::after,
  .journey-timeline-row:nth-of-type(odd)::after,
  .journey-timeline-row:nth-of-type(even)::after {
    display: none;
    content: none;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    display: grid;
    width: 100%;
    grid-column: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 12px 16px;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }

  .journey-timeline-row .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-of-type(odd) .journey-node {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(166, 124, 82, 0.35);
    border-radius: 999px;
    background: #ffffff;
    color: #A67C52;
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .journey-timeline-row .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-of-type(odd) .journey-icon {
    grid-column: 1;
    grid-row: 2;
    width: 44px;
    height: 44px;
    color: rgba(91, 68, 34, 0.72);
  }

  .journey-timeline-row .journey-icon svg {
    width: 32px;
    height: 32px;
  }

  .journey-timeline-row .journey-timeline-content > div,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content > div,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content > div {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    min-width: 0;
  }

  .journey-timeline-row *,
  .journey-gap-marker,
  .journey-row-action,
  .journey-meta span {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .journey-timeline-row h3 {
    max-width: 100%;
    margin: 0;
    color: #111111;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    white-space: normal;
  }

  .journey-timeline-row .journey-meta,
  .journey-timeline-row:nth-child(odd) .journey-meta,
  .journey-timeline-row:nth-of-type(odd) .journey-meta {
    justify-content: flex-start;
    margin-top: 12px;
    color: rgba(17, 17, 17, 0.56);
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .journey-timeline-row p {
    max-width: 100%;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.68);
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.5;
  }

  .journey-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: max-content;
    max-width: 100%;
    min-height: 38px;
    margin-top: 14px;
    border: 1px solid rgba(166, 124, 82, 0.28);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(91, 68, 34, 0.86);
    padding: 0 14px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .journey-moments-section,
  .journey-services-section {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .journey-page .floating-engagement {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 96px);
    left: auto;
    z-index: 40;
    width: auto;
    align-items: flex-end;
  }

  .journey-page .engagement-launcher {
    width: auto;
    min-width: 176px;
    height: 56px;
    min-height: 56px;
    grid-template-columns: 18px auto;
    border-radius: 999px;
    padding: 0 16px;
  }

  .journey-page .engagement-launcher span {
    font-size: 11px;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .journey-page .engagement-launcher small {
    font-size: 9px;
    white-space: nowrap;
  }

  .journey-page .engagement-tray {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 160px);
    left: max(14px, env(safe-area-inset-left));
    width: auto;
    max-height: min(66svh, 520px);
    overflow-y: auto;
  }
}

@media (max-width: 390px) {
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .journey-page .nav-brand-text {
    display: none;
  }

  .journey-page .login-journey {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 13px;
  }

  .journey-timeline-row h3 {
    font-size: clamp(34px, 9.8vw, 38px);
  }

  .journey-row-action {
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 0.1em;
  }

  .journey-page .floating-engagement {
    right: max(14px, env(safe-area-inset-right));
  }

  .journey-page .engagement-launcher {
    min-width: 156px;
    height: 52px;
    min-height: 52px;
    padding: 0 14px;
  }

  .journey-page .engagement-launcher span {
    font-size: 10px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  text-rendering: geometricPrecision;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.launch-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
  border: 1px solid rgba(181, 138, 53, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  padding: 8px;
  box-shadow: 0 18px 48px rgba(58, 42, 19, .1);
  backdrop-filter: saturate(180%) blur(26px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 10px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-links > a:hover {
  color: var(--gold-deep);
  background: rgba(248, 245, 238, .8);
}

.nav-action-link {
  gap: 7px;
  border: 1px solid rgba(181, 138, 53, .18);
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  padding: 0 14px !important;
  font-weight: 720;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.nav-action-link:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 138, 53, .36);
  box-shadow: 0 12px 32px rgba(58, 42, 19, .1);
}

.nav-action-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 241, 229, .92));
  color: var(--gold-deep) !important;
  border-color: rgba(181, 138, 53, .28);
}

.nav-action-primary:hover {
  background: linear-gradient(180deg, #fff, #f8f1df) !important;
}

.nav-action-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-engagement button,
.floating-engagement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(181, 138, 53, .18);
  border-radius: 999px;
  background: rgba(255, 252, 246, .78);
  color: var(--ink);
  cursor: pointer;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.floating-engagement button:hover,
.floating-engagement a:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 138, 53, .36);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(58, 42, 19, .1);
}

.floating-engagement svg,
.btn svg,
.text-button svg,
.action-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-whatsapp,
.icon-voice {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.icon-whatsapp {
  background: #24d366;
}

.icon-whatsapp::before {
  content: "";
  position: absolute;
  inset: 5px 4px 4px 5px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.icon-voice {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.icon-voice::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: -5px 3px 0 -1px rgba(255, 255, 255, .9), 5px 3px 0 -1px rgba(255, 255, 255, .9);
}

.hero-video-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--ivory) 100%);
}

.hero-video,
.hero-media-fallback,
.hero-vignette {
  position: absolute;
  inset: 112px max(28px, calc((100vw - 1260px) / 2)) 34px;
  width: auto;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.hero-video {
  z-index: 1;
  object-fit: cover;
  opacity: .92;
}

.hero-media-fallback {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(12, 10, 8, .12), rgba(12, 10, 8, .04)),
    radial-gradient(circle at 76% 26%, rgba(181, 138, 53, .12), transparent 26rem),
    var(--image, linear-gradient(135deg, var(--surface) 0%, #e4d9c8 46%, #ffffff 100%));
  background-position: center;
  background-size: cover;
  box-shadow: 0 44px 120px rgba(0, 0, 0, .16);
}

.hero-media-fallback::before {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 13%;
  width: min(48vw, 620px);
  aspect-ratio: 1.25;
  display: none;
  border: 1px solid rgba(255, 255, 255, .24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .02)),
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, .16) 20% 21%, transparent 21% 40%, rgba(255, 255, 255, .16) 40% 41%, transparent 41% 60%, rgba(255, 255, 255, .16) 60% 61%, transparent 61%),
    linear-gradient(0deg, transparent 0 42%, rgba(255, 255, 255, .18) 42% 43%, transparent 43%);
  clip-path: polygon(4% 28%, 55% 0, 96% 26%, 96% 88%, 4% 88%);
  filter: drop-shadow(0 38px 60px rgba(0, 0, 0, .18));
}

.hero-vignette {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .08) 28%, rgba(0, 0, 0, .4) 100%),
    linear-gradient(90deg, rgba(255, 252, 246, .84), rgba(255, 255, 255, .08) 44%, rgba(0, 0, 0, .1));
}

.signature-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(880px, calc(100% - 80px));
  margin: auto auto 96px;
  border: 1px solid rgba(181, 138, 53, .2);
  background: rgba(255, 252, 246, .9);
  box-shadow: 0 30px 80px rgba(58, 42, 19, .1);
  backdrop-filter: blur(16px);
}

.signature-stats article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  border-right: 1px solid rgba(181, 138, 53, .14);
  padding: 28px 36px;
}

.signature-stats article:last-child {
  border-right: 0;
}

.signature-stats strong {
  color: var(--gold-deep);
  font-family: var(--display-font);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  line-height: .82;
}

.signature-stats span {
  max-width: 180px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.btn:hover,
.text-button:hover,
.choice-button:hover,
.plot-card button:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 22px 48px rgba(58, 42, 19, .12);
}

.btn-primary-lux {
  background:
    linear-gradient(135deg, rgba(181, 138, 53, .98), rgba(127, 91, 31, .96));
  color: #fff;
  box-shadow: 0 18px 38px rgba(127, 91, 31, .22), 0 0 0 1px rgba(255, 255, 255, .34) inset;
}

.btn-secondary-lux {
  border: 1px solid rgba(181, 138, 53, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 245, 238, .92));
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(58, 42, 19, .06);
}

.btn-glass {
  border: 1px solid rgba(181, 138, 53, .16);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 18px 42px rgba(33, 30, 24, .18);
}

.full-width {
  width: 100%;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 92px auto;
  padding: 112px 0;
}

.gallery-section,
.amenities-section,
.plots-section,
.concierge-section,
.private-preview-section,
.contact-actions-section,
.guided-section,
.story-section {
  background: var(--surface);
  border-radius: 8px;
  padding-right: clamp(18px, 3vw, 44px);
  padding-left: clamp(18px, 3vw, 44px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.contact-actions-section {
  overflow: hidden;
  scroll-margin-top: 132px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(36px, 4vw, 56px);
  background: #fff;
  box-shadow: none;
}

.journey-heading {
  margin: 0 auto 18px;
  text-align: center;
}

.journey-heading h2 {
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--display-font);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.journey-box {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 53, .26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 247, 239, .82)),
    radial-gradient(circle at 50% 0%, rgba(191, 148, 62, .12), transparent 32rem);
  box-shadow:
    0 28px 80px rgba(74, 57, 23, .07),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  padding: clamp(20px, 2.6vw, 30px) clamp(18px, 2.6vw, 34px) clamp(18px, 2.4vw, 26px);
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 22px);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.journey-flow::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -8px;
  left: 2%;
  height: 38px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(186, 145, 64, .1), transparent);
  filter: blur(14px);
}

.journey-line {
  position: absolute;
  top: 43%;
  right: 12%;
  left: 12%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(186, 145, 64, .34), rgba(186, 145, 64, .18), transparent);
}

.journey-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 106, .78), transparent);
  animation: journeySweep 4.8s ease-in-out infinite;
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 160px;
  align-content: end;
  overflow: hidden;
  padding: 8px 6px 10px;
  text-align: center;
}

.journey-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(186, 145, 64, .08), transparent 38%);
}

.journey-count {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 1;
  color: rgba(156, 122, 53, .4);
  font-family: var(--display-font);
  font-size: 15px;
  line-height: 1;
  transform: translateX(-50%);
}

.journey-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(84px, 7vw, 112px);
  height: clamp(84px, 7vw, 112px);
  place-items: center;
  justify-self: center;
  margin: 0 0 13px;
  filter: drop-shadow(0 14px 18px rgba(156, 122, 53, .12));
  animation: none;
}

.journey-step:nth-of-type(2) .journey-mark {
  animation-delay: .35s;
}

.journey-step:nth-of-type(3) .journey-mark {
  animation-delay: .7s;
}

.journey-step:nth-of-type(4) .journey-mark {
  animation-delay: 1.05s;
}

.journey-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #b58a35;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-mark .soft-fill {
  fill: rgba(196, 152, 62, .08);
  stroke: rgba(181, 138, 53, .42);
}

.journey-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #9c7a35;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-step p {
  position: relative;
  z-index: 1;
  max-width: 132px;
  margin: 5px auto 0;
  color: rgba(156, 122, 53, .78);
  font-size: 10px;
  line-height: 1.3;
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.journey-actions a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(181, 138, 53, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #9c7a35;
  padding: 0 13px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(156, 122, 53, .06);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.journey-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 38px rgba(156, 122, 53, .1);
}

@keyframes journeySweep {
  0% {
    transform: translateX(-120%);
  }
  48%,
  100% {
    transform: translateX(430%);
  }
}

@keyframes journeyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.section + .section::before,
.section + .signature-residence-section::before,
.signature-residence-section + .section::before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  width: min(760px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(181, 138, 53, .24), transparent);
}

.section + .section::after,
.signature-residence-section + .section::after {
  content: "";
  position: absolute;
  top: -82px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(185, 176, 162, .54);
  background: var(--ivory);
}

.hero-video-section + .section {
  margin-top: 128px;
}

.signature-residence-section {
  margin: 112px 0;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 34px;
}

.section-title-row h2,
.story-copy h2,
.guided-intro h2,
.concierge-copy h2 {
  margin: 0;
  max-width: 850px;
  font-family: var(--display-font);
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
}

.section-title-row p,
.story-copy p,
.guided-intro p,
.concierge-copy p,
.media-teaser p,
.masterplan-card p,
.subtle-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.text-button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}

.gallery-section {
  width: min(1320px, calc(100% - 28px));
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.gallery-carousel {
  position: relative;
  min-height: clamp(540px, 70svh, 730px);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(181, 138, 53, .18);
}

.gallery-stage {
  position: absolute;
  inset: 0 0 72px;
  overflow: hidden;
  background: #111;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(26, 22, 16, .42), rgba(26, 22, 16, .05) 42%, rgba(26, 22, 16, .16)),
    var(--image, linear-gradient(135deg, #dfe3ea, #ffffff));
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 1.2s ease;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(25, 20, 13, .34) 100%),
    linear-gradient(90deg, rgba(25, 20, 13, .3), rgba(0, 0, 0, 0) 46%);
}

.gallery-slide-credit {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, .74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.gallery-info-panel {
  position: absolute;
  left: clamp(28px, 8vw, 96px);
  bottom: 132px;
  z-index: 4;
  width: min(390px, calc(100% - 56px));
  background: rgba(23, 20, 15, .54);
  color: #fff;
  padding: clamp(20px, 2.4vw, 30px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .58);
  backdrop-filter: blur(5px);
}

.gallery-info-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-info-panel h2 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.03;
}

.gallery-info-panel p {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 760;
  line-height: 1.25;
}

.gallery-info-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.gallery-info-panel div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  align-items: baseline;
}

.gallery-info-panel dt,
.gallery-info-panel dd {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.16;
}

.gallery-info-panel dt {
  font-weight: 520;
}

.gallery-info-panel dd {
  font-weight: 860;
}

.gallery-know-more {
  position: absolute;
  left: 50%;
  bottom: 126px;
  z-index: 5;
  display: inline-flex;
  min-width: min(300px, calc(100% - 48px));
  min-height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 138, 53, .2);
  border-radius: 4px;
  background: rgba(255, 252, 246, .68);
  color: var(--charcoal);
  cursor: pointer;
  padding: 0 28px;
  font-size: 20px;
  font-weight: 860;
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
  transition: background .22s ease, transform .22s ease;
}

.gallery-know-more:hover {
  background: rgba(255, 252, 246, .86);
  transform: translate(-50%, -2px);
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 36px);
  z-index: 6;
  display: grid;
  width: 62px;
  height: 86px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, .32));
}

.gallery-arrow-prev {
  left: 14px;
}

.gallery-arrow-next {
  right: 14px;
}

.gallery-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border-top: 1px solid rgba(181, 138, 53, .12);
}

.gallery-dots button {
  width: 16px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(181, 138, 53, .34);
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.gallery-dots button.active {
  width: 36px;
  background: var(--gold-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.32fr .72fr .72fr;
  grid-auto-rows: 252px;
  gap: 18px;
}

.gallery-card,
.amenity-card,
.masterplan-card,
.media-teaser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .04), rgba(181, 138, 53, .08)),
    var(--image, linear-gradient(135deg, #f5f5f7, #ffffff));
  background-position: center;
  background-size: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .09);
}

.gallery-card::after,
.amenity-card::after,
.masterplan-card::after,
.media-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .54));
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card:nth-child(6) {
  grid-column: span 2;
}

.media-label,
.amenity-card h3,
.media-teaser h3,
.media-teaser span,
.masterplan-card span,
.masterplan-card h3,
.masterplan-card p {
  position: relative;
  z-index: 2;
}

.media-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .42);
}

.teaser-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 14px;
}

.media-teaser {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: #fff;
}

.media-teaser span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-teaser h3 {
  max-width: 620px;
  margin: 10px 0 0;
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
}

.media-teaser p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: rgba(255, 255, 255, .76);
}

.story-section {
  background: #fff;
  box-shadow: none;
  padding-top: clamp(86px, 8vw, 124px);
  padding-bottom: clamp(78px, 7vw, 110px);
}

.presence-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 62px);
  text-align: center;
}

.presence-heading .section-kicker {
  color: var(--gold-deep);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.presence-heading h2 {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-family: var(--display-font);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4.4vw, 72px);
  align-items: start;
}

.presence-card {
  min-width: 0;
}

.presence-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.72;
  margin: 0;
  background: #ede6d9;
  box-shadow: 0 28px 80px rgba(58, 42, 19, .1);
}

.presence-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 34%, rgba(33, 30, 24, .18)),
    linear-gradient(90deg, rgba(181, 138, 53, .08), transparent 42%);
}

.presence-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .65s ease, filter .65s ease;
}

.presence-card:nth-child(1) img {
  object-position: 62% center;
}

.presence-card:nth-child(2) img {
  object-position: 54% center;
}

.presence-card:nth-child(3) img {
  object-position: 50% center;
}

.presence-card:nth-child(4) img {
  object-position: 18% center;
}

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

.presence-card h3 {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.signature-residence-section {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--surface);
}

.signature-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(20, 17, 13, .52)),
    linear-gradient(90deg, rgba(20, 17, 13, .56), transparent 62%),
    url("public/assets/placeholders/concierge-01.jpg");
  background-position: center;
  background-size: cover;
}

.signature-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 92px;
}

.signature-copy h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: var(--display-font);
  font-size: clamp(50px, 8vw, 116px);
  font-weight: 600;
  line-height: .88;
}

.signature-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.72;
}

.lodha-editorial-section,
.lodha-conversation-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
}

.lodha-editorial-section {
  padding: clamp(76px, 7.6vw, 116px) 0;
}

.lodha-editorial-section + .lodha-editorial-section {
  padding-top: clamp(38px, 5vw, 72px);
}

.lodha-overline {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  color: var(--gold-deep);
  font-size: 18px;
  font-weight: 520;
  line-height: 1;
}

.lodha-editorial-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.lodha-editorial-row.reverse {
  grid-template-columns: minmax(360px, .75fr) minmax(0, .95fr);
}

.lodha-editorial-media {
  overflow: hidden;
  margin: 0;
  background: #ede6d9;
  box-shadow: 0 30px 90px rgba(58, 42, 19, .08);
}

.lodha-editorial-media img {
  display: block;
  width: 100%;
  height: clamp(420px, 40vw, 640px);
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.media-arrival img {
  object-position: 58% center;
}

.media-lounge img {
  object-position: 48% center;
}

.media-plan img {
  object-position: center;
}

.media-service img {
  object-position: 20% center;
}

.lodha-editorial-copy {
  max-width: 470px;
}

.lodha-editorial-copy h2,
.lodha-conversation-section h2 {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-family: var(--display-font);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.lodha-editorial-copy p,
.lodha-conversation-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 430;
  line-height: 1.62;
}

.lodha-conversation-section {
  padding: clamp(76px, 8vw, 118px) 0 clamp(88px, 9vw, 132px);
  text-align: center;
}

.lodha-conversation-section .lodha-overline {
  margin-bottom: 40px;
  text-align: left;
}

.lodha-conversation-section > h2 {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(38px, 4.2vw, 58px);
}

.lodha-conversation-section > p {
  max-width: 1060px;
  margin: 0 auto 48px;
}

.lodha-conversation-media {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 34px 100px rgba(58, 42, 19, .12);
}

.lodha-conversation-media img {
  display: block;
  width: 100%;
  height: clamp(420px, 48vw, 690px);
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.lodha-conversation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .14));
}

.lodha-conversation-media button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--gold-deep);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, background .22s ease;
}

.lodha-conversation-media button:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}

.lodha-conversation-media svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.lodha-footer {
  background: #e8e0d7;
  color: var(--muted);
  padding: 48px max(24px, calc((100vw - 1180px) / 2)) 26px;
}

.lodha-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 96px;
  align-items: center;
  color: #6c6b6f;
  font-size: 14px;
  font-weight: 620;
}

.lodha-breadcrumbs span:not(:last-child)::after,
.lodha-breadcrumbs a::after {
  content: ">";
  margin-left: 8px;
  color: #9d9a98;
}

.lodha-breadcrumbs span:last-child {
  color: var(--gold-deep);
}

.lodha-footer-main {
  display: grid;
  grid-template-columns: 220px 220px minmax(260px, 1fr);
  gap: clamp(32px, 7vw, 110px);
  border-top: 1px solid rgba(87, 83, 79, .16);
  padding: 48px 0;
}

.lodha-footer nav {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lodha-footer a {
  color: inherit;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.1;
}

.lodha-footer-brand {
  justify-self: center;
  align-self: start;
  text-align: center;
}

.lodha-footer-brand strong {
  display: block;
  color: var(--ink-soft);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 850;
  letter-spacing: .02em;
  line-height: .9;
}

.lodha-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.lodha-socials span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-soft);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.lodha-copyright {
  margin: 0;
  border-top: 1px solid rgba(87, 83, 79, .16);
  padding-top: 28px;
  color: #777579;
  text-align: center;
  font-size: 14px;
  font-weight: 560;
}

.highlight-panel {
  display: grid;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.highlight-item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 800;
}

.highlight-item::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 0 8px rgba(181, 138, 53, .08);
}

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

.amenity-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 22px;
  color: #fff;
}

.amenity-card h3 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 30px;
  line-height: 1;
}

.amenity-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.guided-section {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.guided-path {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.guided-step {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfbfd);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.guided-step::before {
  content: attr(data-index);
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.guided-step strong {
  font-family: var(--display-font);
  font-size: 21px;
  line-height: 1.05;
}

.plots-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 18px;
}

.masterplan-card {
  min-height: 610px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: #fff;
}

.masterplan-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.masterplan-card h3 {
  margin: 12px 0 8px;
  font-family: var(--display-font);
  font-size: 42px;
  line-height: 1;
}

.masterplan-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.inventory-panel {
  display: grid;
  gap: 14px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-chip,
.choice-button,
.mini-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0 15px;
  font-weight: 800;
}

.filter-chip.active,
.choice-button.active {
  background: #1d1d1f;
  color: #fff;
}

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

.plot-card,
.login-card,
.journey-card,
.chat-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.plot-card {
  display: grid;
  gap: 16px;
  min-height: 298px;
  padding: 20px;
}

.plot-card.shortlisted {
  border-color: rgba(181, 138, 53, .34);
  background: linear-gradient(180deg, #fff, #f5f9ff);
}

.plot-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 32px;
  line-height: 1;
}

.plot-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plot-meta {
  display: grid;
  gap: 8px;
}

.plot-meta span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(24, 26, 32, .08);
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.plot-meta strong {
  color: var(--ink);
}

.score-pill,
.availability-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.score-pill {
  background: #f6ecd8;
  color: var(--gold-deep);
}

.availability-pill {
  background: #f5f5f7;
  color: #424245;
}

.plot-card button {
  min-height: 46px;
  border: 1px solid rgba(181, 138, 53, .24);
  border-radius: 999px;
  background: #fff;
  color: var(--gold-deep);
  cursor: pointer;
  font-weight: 900;
  transition: transform .22s ease;
}

.comparison-tray {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(17, 19, 24, .12);
  border-radius: var(--radius);
  background: #1d1d1f;
  color: #fff;
  padding: 18px;
}

.comparison-tray span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-tray p {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .76);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concierge-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 46px;
  align-items: center;
}

.chat-shell {
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 138, 53, .1), transparent 20rem),
    #fff;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-orb {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-weight: 900;
}

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

.chat-header small {
  margin-top: 3px;
  color: var(--muted);
}

.chat-thread {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.message {
  max-width: 84%;
  border-radius: var(--radius);
  padding: 14px 16px;
  line-height: 1.55;
}

.message.assistant {
  background: #f5f5f7;
  color: var(--ink-soft);
}

.message.buyer {
  justify-self: end;
  background: #111318;
  color: #fff;
}

.prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-grid button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  padding: 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.journey-login-section {
  padding-bottom: 140px;
}

.private-preview-section {
  width: min(1040px, calc(100% - 40px));
  text-align: center;
}

.private-preview-section h2,
.journey-hero h1 {
  margin: 12px auto 0;
  max-width: 900px;
  font-family: var(--display-font);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: .92;
}

.private-preview-section p:not(.section-kicker),
.journey-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.preview-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.journey-page {
  background: #ffffff;
}

.journey-nav {
  background: rgba(255, 255, 255, .78);
}

.journey-main {
  padding-top: 86px;
  padding-bottom: 96px;
}

.journey-hero {
  margin-top: 72px;
  margin-bottom: 96px;
  padding-top: 104px;
  padding-bottom: 104px;
  text-align: center;
  background: var(--surface);
  border-radius: 8px;
}

.journey-hero + .section::before,
.journey-login-section + .buyer-booking-section::before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  width: min(760px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .14), transparent);
}

.journey-hero + .section::after,
.journey-login-section + .buyer-booking-section::after {
  content: "";
  position: absolute;
  top: -82px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(181, 138, 53, .32);
  background: #fff;
}

.buyer-booking-section {
  padding-top: 96px;
}

.standalone-booking {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 138, 53, .08), transparent 22rem),
    rgba(255, 255, 255, .84);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.journey-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 18px;
}

.login-card,
.journey-card {
  padding: 22px;
}

.login-card h3,
.booking-module h3 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: 32px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0 13px;
}

.field input:focus,
.field select:focus {
  border-color: rgba(181, 138, 53, .44);
  box-shadow: 0 0 0 4px rgba(181, 138, 53, .1);
}

.otp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mini-button {
  border-radius: var(--radius);
  background: #111318;
  color: #fff;
}

.subtle-copy {
  margin: 14px 0 0;
  font-size: 13px;
}

.journey-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.journey-card-header strong {
  color: var(--gold-deep);
}

.milestone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.milestone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px;
}

.milestone strong {
  display: block;
  font-size: 14px;
}

.milestone span {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  background: #f3f4f6;
  padding: 6px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.milestone.is-active span,
.milestone.is-complete span {
  background: #f6ecd8;
  color: var(--gold-deep);
}

.booking-module {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

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

/* ===== LOGIN PAGE PREMIUM BUYER JOURNEY ===== */
.journey-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(210, 186, 143, .18), transparent 32rem),
    #fbfaf7;
}

.journey-page .journey-login-section {
  width: min(1240px, calc(100% - 48px));
  padding-bottom: 118px;
}

.journey-page .journey-layout {
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.login-access-panel {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 116px;
}

.journey-page .login-card,
.journey-page .journey-card {
  border: 1px solid rgba(154, 130, 92, .2);
  border-radius: 0;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 18px 48px rgba(58, 42, 19, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.login-journey {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 130, 92, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .9), rgba(247, 242, 232, .72));
  padding: clamp(34px, 4vw, 54px);
}

.login-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 10%, rgba(212, 188, 143, .22), transparent 18rem),
    linear-gradient(90deg, rgba(255,255,255,.48), transparent 40%);
}

.journey-access-card {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
}

.journey-access-card.is-hidden {
  display: none;
}

.journey-access-card .otp-row {
  align-items: end;
}

.login-journey__header {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 34px;
}

.login-journey__header h2 {
  margin: 8px 0 0;
  color: #25211b;
  font-family: var(--display-font);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 560;
  line-height: .98;
}

.login-journey__header p:not(.section-kicker) {
  max-width: 460px;
  margin: 16px 0 0;
  color: #746d62;
  font-size: 15px;
  line-height: 1.65;
}

.journey-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 10px 0 0;
}

.journey-connector {
  position: absolute;
  inset: 52px 12% 86px;
  pointer-events: none;
  border: 1px solid rgba(154, 130, 92, .2);
  border-left: 0;
  border-radius: 0 140px 140px 0;
  opacity: .9;
}

.journey-step-card {
  position: relative;
  display: grid;
  min-height: 152px;
  align-content: start;
  border: 1px solid rgba(154, 130, 92, .2);
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 14px 34px rgba(58, 42, 19, .05);
  padding: 20px 20px 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s ease, transform .7s ease, border-color .24s ease, background .24s ease;
}

.journey-page.is-journey-revealed .journey-step-card {
  opacity: 1;
  transform: translateY(0);
}

.journey-step-card:nth-of-type(2) { transition-delay: .05s; }
.journey-step-card:nth-of-type(3) { transition-delay: .1s; }
.journey-step-card:nth-of-type(4) { transition-delay: .15s; }
.journey-step-card:nth-of-type(5) { transition-delay: .2s; }
.journey-step-card:nth-of-type(6) { transition-delay: .25s; }
.journey-step-card:nth-of-type(7) { transition-delay: .3s; }
.journey-step-card:nth-of-type(8) { transition-delay: .35s; }
.journey-step-card:nth-of-type(9) { transition-delay: .4s; }

.journey-step-card:hover {
  border-color: rgba(154, 130, 92, .34);
  background: rgba(255, 253, 248, .76);
}

.journey-node {
  color: rgba(154, 117, 57, .82);
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1;
}

.login-journey .journey-icon {
  width: 38px;
  height: 38px;
  margin: 12px 0 14px;
  color: rgba(91, 68, 34, .74);
}

.login-journey .journey-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-step-card h3 {
  margin: 0;
  color: #312a22;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.journey-step-card p {
  margin: 8px 0 0;
  color: #746d62;
  font-size: 12.5px;
  line-height: 1.55;
}

.journey-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.journey-cta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(154, 130, 92, .34);
  color: #4b3823;
  padding: 0 16px;
  font-size: 10.5px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-engagement {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.engagement-launcher {
  justify-content: center;
  min-width: 126px;
  min-height: 50px;
  border: 1px solid rgba(201, 169, 106, .46);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(242, 236, 226, .64));
  color: #1d1d1f;
  box-shadow:
    0 24px 70px rgba(21, 18, 14, .18),
    0 0 0 1px rgba(255, 255, 255, .72) inset,
    0 -10px 28px rgba(201, 169, 106, .14) inset;
  backdrop-filter: saturate(170%) blur(24px);
}

.engagement-launcher svg {
  width: 19px;
  height: 19px;
  color: var(--gold-deep);
}

.engagement-launcher span {
  font-size: 12px;
  font-weight: 760;
}

.engagement-tray {
  position: relative;
  display: grid;
  width: min(286px, calc(100vw - 28px));
  gap: 6px;
  border: 1px solid rgba(201, 169, 106, .44);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .58), rgba(239, 233, 223, .42));
  box-shadow:
    0 34px 96px rgba(16, 14, 12, .24),
    0 0 0 1px rgba(255, 255, 255, .6) inset,
    0 -18px 42px rgba(201, 169, 106, .1) inset;
  padding: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
  backdrop-filter: saturate(155%) blur(28px);
  overflow: hidden;
}

.engagement-tray::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .7), transparent 22%, transparent 78%, rgba(201, 169, 106, .18)),
    linear-gradient(180deg, rgba(255, 255, 255, .42), transparent 42%);
}

.floating-engagement.is-open .engagement-tray {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.engagement-tray a {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 1px 10px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  color: #1d1d1f;
  padding: 8px;
  box-shadow: 0 10px 26px rgba(15, 13, 11, .07);
}

.engagement-tray a:hover {
  border-color: rgba(201, 169, 106, .52);
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 16px 42px rgba(15, 13, 11, .12);
}

.engagement-tray a > span {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(201, 169, 106, .2);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .68), rgba(246, 237, 218, .56));
  color: var(--gold-deep);
}

.engagement-tray strong,
.engagement-tray small {
  display: block;
  min-width: 0;
}

.engagement-tray strong {
  align-self: end;
  font-size: 13px;
  font-weight: 740;
  letter-spacing: 0;
}

.engagement-tray small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 540;
  line-height: 1.25;
}

.mobile-bottom-bar {
  display: none;
}

.gallery-modal {
  width: min(1080px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  background: #111318;
  padding: 18px;
  color: #fff;
}

.gallery-modal::backdrop {
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(8px);
}

.modal-close {
  display: block;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 800;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.modal-gallery .gallery-card {
  min-height: 300px;
}

@media (max-width: 1120px) {
  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    max-width: calc(100vw - 36px);
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .story-section,
  .guided-section,
  .plots-layout,
  .concierge-section,
  .lodha-editorial-row,
  .lodha-editorial-row.reverse,
  .journey-layout {
    grid-template-columns: 1fr;
  }

  .login-access-panel {
    position: static;
  }

  .journey-path {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 34px;
  }

  .journey-connector {
    inset: 14px auto 18px 12px;
    width: 1px;
    border: 0;
    background: linear-gradient(180deg, rgba(154, 130, 92, .44), rgba(154, 130, 92, .08));
  }

  .journey-step-card {
    min-height: 0;
  }

  .journey-node {
    position: absolute;
    top: 22px;
    left: -47px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(154, 130, 92, .38);
    border-radius: 50%;
    background: #fbfaf7;
    font-size: 13px;
  }

  .guided-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .journey-step {
    min-height: 150px;
    padding: 8px 10px 12px;
  }

  .journey-line {
    display: none;
  }

  .masterplan-card {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .launch-nav {
    top: 10px;
    width: fit-content;
    max-width: calc(100% - 20px);
    padding: 8px;
  }

  .hero-video,
  .hero-media-fallback,
  .hero-vignette {
    inset: 88px 12px 18px;
  }

  .signature-stats {
    grid-template-columns: 1fr;
    width: calc(100% - 56px);
    margin-bottom: 56px;
  }

  .signature-stats article {
    min-height: 82px;
    grid-template-columns: 78px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 16px 20px;
  }

  .signature-stats article:last-child {
    border-bottom: 0;
  }

  .signature-stats strong {
    font-size: 42px;
  }

  .signature-stats span {
    max-width: none;
    font-size: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .section {
    width: calc(100% - 24px);
    margin: 64px auto;
    padding: 76px 0;
  }

  .gallery-section,
  .amenities-section,
  .plots-section,
  .concierge-section,
  .private-preview-section,
  .guided-section,
  .story-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-actions-section {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-video-section + .section {
    margin-top: 76px;
  }

  .signature-residence-section {
    margin: 76px 0;
  }

  .lodha-editorial-section,
  .lodha-conversation-section {
    width: calc(100% - 32px);
  }

  .lodha-editorial-row,
  .lodha-editorial-row.reverse {
    gap: 34px;
  }

  .lodha-editorial-row.reverse .lodha-editorial-copy {
    order: 2;
  }

  .lodha-editorial-row.reverse .lodha-editorial-media {
    order: 1;
  }

  .lodha-editorial-media img {
    height: 520px;
  }

  .lodha-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .lodha-footer-brand {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .lodha-socials {
    justify-content: flex-start;
  }

  .section + .section::before,
  .section + .signature-residence-section::before,
  .signature-residence-section + .section::before,
  .journey-hero + .section::before,
  .journey-login-section + .buyer-booking-section::before {
    top: -40px;
    width: min(320px, 68vw);
  }

  .section + .section::after,
  .signature-residence-section + .section::after,
  .journey-hero + .section::after,
  .journey-login-section + .buyer-booking-section::after {
    top: -48px;
  }

  .journey-hero {
    margin-top: 42px;
    margin-bottom: 66px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-title-row {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-title-row h2,
  .story-copy h2,
  .guided-intro h2,
  .concierge-copy h2,
  .signature-copy h2,
  .private-preview-section h2 {
    font-size: 40px;
  }

  .signature-residence-section {
    min-height: 760px;
  }

  .signature-image {
    background-position: center;
  }

  .signature-copy {
    width: calc(100% - 24px);
    padding-bottom: 70px;
  }

  .lodha-editorial-section {
    padding: 64px 0;
  }

  .lodha-editorial-section + .lodha-editorial-section {
    padding-top: 20px;
  }

  .lodha-overline {
    margin-bottom: 28px;
  }

  .lodha-editorial-media img,
  .lodha-conversation-media img {
    height: 360px;
  }

  .lodha-editorial-copy h2,
  .lodha-conversation-section h2 {
    font-size: 32px;
  }

  .lodha-editorial-copy p,
  .lodha-conversation-section p {
    font-size: 16px;
  }

  .lodha-conversation-section {
    padding: 64px 0 76px;
  }

  .lodha-conversation-section .lodha-overline {
    text-align: left;
  }

  .lodha-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .lodha-breadcrumbs {
    min-height: 64px;
  }

  .lodha-footer-main {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .lodha-footer a {
    font-size: 18px;
  }

  .gallery-grid,
  .amenity-grid,
  .plot-grid,
  .milestone-list,
  .booking-grid,
  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .journey-page .journey-login-section {
    width: min(100% - 32px, 1240px);
    padding-bottom: 80px;
  }

  .login-journey {
    padding: 30px 20px;
  }

  .journey-path {
    padding-left: 30px;
  }

  .journey-step-card {
    padding: 18px;
  }

  .journey-cta {
    display: grid;
  }

  .journey-cta a {
    justify-content: center;
  }

  .teaser-row,
  .presence-grid {
    grid-template-columns: 1fr;
  }

  .presence-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .presence-card figure {
    aspect-ratio: 1.05;
  }

  .gallery-grid {
    grid-auto-rows: 310px;
  }

  .gallery-section {
    width: calc(100% - 24px);
    padding: 0;
  }

  .gallery-carousel {
    min-height: 640px;
  }

  .gallery-stage {
    bottom: 64px;
  }

  .gallery-info-panel {
    left: 18px;
    bottom: 126px;
    width: calc(100% - 36px);
    padding: 20px;
  }

  .gallery-info-panel div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gallery-info-panel dt,
  .gallery-info-panel dd {
    font-size: 15px;
  }

  .gallery-know-more {
    right: 18px;
    bottom: 82px;
    left: 18px;
    min-width: 0;
    min-height: 54px;
    transform: none;
    font-size: 16px;
  }

  .gallery-know-more:hover {
    transform: translateY(-2px);
  }

  .gallery-arrow {
    top: 38%;
    width: 48px;
    height: 64px;
  }

  .gallery-arrow svg {
    width: 46px;
    height: 46px;
  }

  .gallery-arrow-prev {
    left: 4px;
  }

  .gallery-arrow-next {
    right: 4px;
  }

  .gallery-dots {
    height: 64px;
  }

  .journey-flow {
    grid-template-columns: 1fr;
  }

  .journey-flow::before {
    right: 8%;
    left: 8%;
    background: linear-gradient(180deg, rgba(220, 214, 204, .18), transparent);
  }

  .journey-step {
    min-height: 138px;
    align-content: end;
    padding: 8px 16px 12px;
  }

  .journey-count {
    top: 8px;
    left: 50%;
  }

  .journey-mark {
    width: 96px;
    height: 96px;
    margin: 0 0 12px;
  }

  .journey-mark svg {
    width: 92%;
    height: 92%;
  }

  .journey-step h3 {
    font-size: 11px;
  }

  .gallery-card:first-child,
  .gallery-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .guided-path {
    grid-template-columns: 1fr;
  }

  .guided-step {
    min-height: 112px;
  }

  .comparison-tray {
    grid-template-columns: 1fr;
  }

  .comparison-tray p {
    white-space: normal;
  }

  .otp-row {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    display: grid;
  }

  .floating-engagement {
    right: 12px;
    bottom: 76px;
  }

  .engagement-launcher {
    width: 56px;
    min-width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .engagement-launcher span {
    display: none;
  }

  .engagement-tray {
    width: min(286px, calc(100vw - 24px));
  }

  .mobile-bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-bar a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
  }

  main {
    padding-bottom: 58px;
  }
}

@media (max-width: 440px) {
  .signature-stats {
    width: calc(100% - 32px);
  }

  .section-title-row h2,
  .story-copy h2,
  .guided-intro h2,
  .concierge-copy h2,
  .signature-copy h2,
  .private-preview-section h2 {
    font-size: 35px;
  }
}

/* Final luxury CTA placement refinements */
.nav-links .nav-action-primary { display: none !important; }

.right-quick-actions {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 58;
  display: grid;
  gap: 12px;
  width: min(230px, calc(100vw - 44px));
  pointer-events: auto;
}

.right-quick-actions a {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(202, 170, 111, .48);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  color: #2c261f;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(247,240,229,.48)),
    radial-gradient(circle at 12% 18%, rgba(220, 184, 119, .24), transparent 42%);
  box-shadow:
    0 22px 55px rgba(38, 31, 23, .16),
    0 1px 0 rgba(255,255,255,.8) inset,
    0 -12px 28px rgba(202, 170, 111, .12) inset;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.right-quick-actions a::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.54);
  pointer-events: none;
}

.right-quick-actions a:hover {
  transform: translateX(-4px);
  border-color: rgba(202, 170, 111, .76);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,239,222,.66)),
    radial-gradient(circle at 12% 18%, rgba(220, 184, 119, .32), transparent 42%);
  box-shadow:
    0 28px 70px rgba(38, 31, 23, .22),
    0 1px 0 rgba(255,255,255,.88) inset,
    0 0 34px rgba(202, 170, 111, .16);
}

.quick-action-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(202, 170, 111, .38);
  background: rgba(255, 255, 255, .62);
  color: #9a6f2b;
  box-shadow: 0 10px 26px rgba(58, 45, 31, .1);
}

.quick-action-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.right-quick-actions a > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .01em;
}

.site-visit-float {
  position: fixed;
  left: 32px;
  bottom: 28px;
  z-index: 58;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(246, 246, 244, .86);
  color: #24211e;
  box-shadow:
    0 24px 60px rgba(34, 28, 21, .16),
    0 1px 0 rgba(255,255,255,.9) inset;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.site-visit-float:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 78px rgba(34, 28, 21, .2);
}

.floating-engagement {
  right: 24px;
  bottom: 26px;
  gap: 14px;
}

.engagement-launcher {
  min-width: 176px;
  min-height: 78px;
  padding: 0 40px;
  border-radius: 999px;
  border: 1px solid rgba(234, 216, 179, .78);
  background:
    linear-gradient(135deg, #b7975f 0%, #d8c493 55%, #f3e6c6 100%);
  color: #fff;
  box-shadow:
    16px 16px 0 rgba(255,255,255,.62),
    0 24px 55px rgba(70, 49, 25, .24),
    0 2px 0 rgba(255,255,255,.72) inset,
    0 -18px 34px rgba(118, 82, 36, .16) inset;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.engagement-launcher:hover {
  transform: translateY(-4px);
  filter: saturate(1.05);
  box-shadow:
    13px 13px 0 rgba(255,255,255,.7),
    0 30px 70px rgba(70, 49, 25, .3),
    0 2px 0 rgba(255,255,255,.78) inset,
    0 -18px 34px rgba(118, 82, 36, .16) inset;
}

.engagement-launcher svg { display: none; }

.engagement-launcher span {
  color: #fff;
  font-size: 18px;
  font-weight: 860;
  letter-spacing: .14em;
  text-shadow: 0 2px 18px rgba(73, 48, 22, .18);
}

.engagement-tray {
  width: min(360px, calc(100vw - 32px));
  gap: 10px;
  border-radius: 26px;
  padding: 16px;
  border-color: rgba(211, 181, 124, .54);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 196, 147, .26), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(245,238,227,.58));
  box-shadow:
    0 38px 110px rgba(24, 20, 15, .28),
    0 0 0 1px rgba(255,255,255,.66) inset,
    0 -22px 54px rgba(201, 169, 106, .13) inset;
  backdrop-filter: saturate(175%) blur(30px);
  -webkit-backdrop-filter: saturate(175%) blur(30px);
}

.engagement-tray-header {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 4px 6px 8px;
  color: #2a241f;
}

.engagement-tray-header span {
  color: #9a6f2b;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 820;
}

.engagement-tray-header small {
  color: rgba(42, 36, 31, .64);
  font-size: 12px;
  line-height: 1.45;
}

.engagement-tray a {
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 68px;
  gap: 2px 12px;
  border-radius: 18px;
  padding: 11px;
  border-color: rgba(211, 181, 124, .34);
  background: rgba(255,255,255,.5);
}

.engagement-tray a::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a77835;
  font-size: 30px;
  line-height: 1;
}

.engagement-tray a > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #a77835;
}

.engagement-tray strong {
  padding-right: 24px;
  font-size: 14px;
}

.engagement-tray small {
  padding-right: 24px;
  font-size: 11.5px;
}

@media (max-width: 900px) {
  .right-quick-actions {
    display: none;
  }

  .site-visit-float {
    left: 14px;
    bottom: 88px;
    min-height: 44px;
    padding: 0 18px;
    letter-spacing: .18em;
    font-size: 10px;
  }

  .floating-engagement {
    right: 14px;
    bottom: 82px;
  }

  .engagement-launcher {
    min-width: 132px;
    min-height: 56px;
    padding: 0 24px;
    box-shadow:
      9px 9px 0 rgba(255,255,255,.58),
      0 18px 44px rgba(70, 49, 25, .24),
      0 2px 0 rgba(255,255,255,.72) inset;
  }

  .engagement-launcher span {
    font-size: 13px;
    letter-spacing: .12em;
  }
}

@media (max-width: 560px) {
  .site-visit-float { display: none; }
  .floating-engagement { bottom: 78px; }
  .engagement-tray {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
}

/* Final integrated top-nav concierge CTAs */
.launch-nav {
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  padding: 8px 10px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 10px 0 6px;
  border-radius: 999px;
  color: #2c261f;
}

.nav-brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(202, 170, 111, .42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.92), transparent 36%),
    linear-gradient(135deg, #b7975f, #f2dfb4);
  color: #fff;
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(94, 68, 30, .16), 0 1px 0 rgba(255,255,255,.72) inset;
}

.nav-brand-text {
  font-family: var(--display-font);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav-concierge-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
}

.nav-concierge-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  max-width: 210px;
  border: 1px solid rgba(202, 170, 111, .42);
  border-radius: 999px;
  padding: 0 14px 0 8px;
  color: #2b261f;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(247,240,229,.54)),
    radial-gradient(circle at 12% 16%, rgba(220,184,119,.20), transparent 44%);
  box-shadow:
    0 12px 30px rgba(58, 42, 19, .08),
    0 1px 0 rgba(255,255,255,.82) inset,
    0 -10px 22px rgba(202,170,111,.10) inset;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.nav-concierge-actions a::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.56);
  pointer-events: none;
}

.nav-concierge-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(202, 170, 111, .72);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(249,240,224,.68)),
    radial-gradient(circle at 12% 16%, rgba(220,184,119,.30), transparent 44%);
  box-shadow:
    0 18px 44px rgba(58, 42, 19, .13),
    0 1px 0 rgba(255,255,255,.9) inset,
    0 0 30px rgba(202,170,111,.16);
}

.nav-concierge-actions a > span:last-child {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: .005em;
}

.nav-concierge-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(202, 170, 111, .36);
  background: rgba(255, 255, 255, .62);
  color: #9a6f2b;
  box-shadow: 0 8px 18px rgba(58, 45, 31, .08);
}

.nav-concierge-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.right-quick-actions { display: none !important; }

@media (max-width: 1120px) {
  .launch-nav {
    width: min(1000px, calc(100% - 24px));
    gap: 10px;
  }

  .nav-brand-text {
    display: none;
  }

  .nav-concierge-actions a {
    max-width: 168px;
    padding-right: 12px;
  }
}

@media (max-width: 900px) {
  .launch-nav {
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
    padding: 8px;
  }

  .nav-brand {
    order: 1;
  }

  .nav-links {
    order: 2;
  }

  .nav-concierge-actions {
    order: 3;
    flex: 1 0 100%;
    justify-content: center;
    padding-top: 2px;
  }

  .nav-concierge-actions a {
    flex: 1 1 0;
    min-width: 0;
    max-width: 180px;
  }

  .hero-video,
  .hero-media-fallback,
  .hero-vignette {
    inset: 132px 12px 18px;
  }
}

@media (max-width: 640px) {
  .launch-nav {
    width: calc(100% - 18px);
    gap: 6px;
  }

  .nav-links {
    gap: 4px;
    font-size: 12px;
  }

  .nav-links > a {
    min-height: 34px;
    padding: 0 8px;
  }

  .nav-action-link {
    padding: 0 10px !important;
  }

  .nav-concierge-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-video,
  .hero-media-fallback,
  .hero-vignette {
    inset: 88px 12px 18px;
  }
}

/* Final bottom-right Engage launcher polish: match the attached luxury gold pill exactly */
.floating-engagement {
  right: 20px;
  bottom: 28px;
  gap: 12px;
}

.engagement-launcher {
  min-width: 148px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(231, 211, 169, .72);
  background: linear-gradient(135deg, #bd9b63 0%, #d2b77e 56%, #ead6a5 100%);
  color: #ffffff;
  box-shadow:
    10px 8px 0 rgba(255, 255, 255, .66),
    0 22px 54px rgba(80, 56, 28, .22),
    0 2px 0 rgba(255, 255, 255, .62) inset,
    0 -14px 28px rgba(124, 82, 35, .14) inset;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.engagement-launcher:hover {
  transform: translateY(-3px);
  box-shadow:
    8px 7px 0 rgba(255, 255, 255, .72),
    0 28px 66px rgba(80, 56, 28, .28),
    0 2px 0 rgba(255, 255, 255, .7) inset,
    0 -14px 28px rgba(124, 82, 35, .14) inset;
}

.engagement-launcher svg {
  display: none;
}

.engagement-launcher span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(73, 48, 22, .16);
}

@media (max-width: 760px) {
  .floating-engagement {
    right: 14px;
    bottom: 82px;
  }

  .engagement-launcher {
    min-width: 132px;
    min-height: 52px;
    padding: 0 22px;
    box-shadow:
      7px 6px 0 rgba(255, 255, 255, .62),
      0 18px 44px rgba(80, 56, 28, .2),
      0 2px 0 rgba(255, 255, 255, .62) inset,
      0 -12px 24px rgba(124, 82, 35, .13) inset;
  }

  .engagement-launcher span {
    font-size: 13px;
  }
}




/* ===== PREMIUM REAL ESTATE NAV REFINEMENT ===== */

.nav-actions,
.top-nav-actions,
.header-cta-group{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-luxury-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    background:linear-gradient(135deg, rgba(247,241,231,0.95), rgba(224,199,153,0.72));
    border:1px solid rgba(193,158,102,0.28);
    color:#5f4520 !important;
    font-weight:500;
    letter-spacing:0.02em;
    box-shadow:
      0 10px 30px rgba(181,145,90,0.12),
      inset 0 1px 0 rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:all .28s ease;
    text-decoration:none;
}

.nav-luxury-cta:hover{
    transform:translateY(-2px);
    box-shadow:
      0 18px 42px rgba(181,145,90,0.18),
      inset 0 1px 0 rgba(255,255,255,0.85);
}

.nav-login-premium{
    margin-left:18px;
    padding-left:22px;
    border-left:1px solid rgba(180,160,120,0.25);
}

.floating-engage,
.bottom-engage,
.engage-floating{
    background:linear-gradient(135deg,#dcc08b 0%, #c9a66b 100%) !important;
    color:#4f3718 !important;
    border:1px solid rgba(133,92,39,0.14) !important;
    border-radius:999px !important;
    box-shadow:
      0 22px 48px rgba(170,132,76,0.22),
      inset 0 1px 0 rgba(255,255,255,0.5) !important;
    font-weight:600 !important;
    letter-spacing:.12em !important;
    text-transform:uppercase !important;
    padding:18px 28px !important;
}

.floating-engage *,
.bottom-engage *,
.engage-floating *{
    color:#4f3718 !important;
}

.concierge-drawer,
.concierge-panel,
.engage-drawer{
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,243,237,0.98)) !important;
    border-left:1px solid rgba(191,161,116,0.2) !important;
    box-shadow:-30px 0 80px rgba(40,30,15,0.08) !important;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.concierge-drawer .concierge-option,
.engage-drawer .concierge-option,
.concierge-panel .concierge-option{
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(198,166,117,0.22);
    border-radius:24px;
    padding:18px;
    margin-bottom:16px;
    transition:all .25s ease;
    box-shadow:0 10px 30px rgba(175,146,99,0.08);
}

.concierge-drawer .concierge-option:hover,
.engage-drawer .concierge-option:hover,
.concierge-panel .concierge-option:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,239,227,0.92));
    box-shadow:0 22px 44px rgba(175,146,99,0.14);
}

.concierge-title{
    font-size:32px;
    line-height:1.15;
    color:#3d2b16;
    letter-spacing:-0.03em;
}

.concierge-subtitle{
    color:#7d6a52;
    line-height:1.7;
}

@media (max-width: 900px){
    .nav-actions,
    .top-nav-actions,
    .header-cta-group{
        gap:10px;
        flex-wrap:wrap;
    }

    .nav-luxury-cta{
        padding:10px 14px;
        font-size:13px;
    }
}

/* ===== FINAL LANDING NAV + ENGAGE CONCIERGE REFINEMENT ===== */
.launch-nav {
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  width: min(1240px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  padding: 9px 10px;
  border: 1px solid rgba(171, 132, 61, .2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(250, 246, 237, .86));
  box-shadow:
    0 24px 70px rgba(45, 34, 18, .12),
    0 1px 0 rgba(255, 255, 255, .88) inset;
}

.nav-brand {
  min-width: 0;
}

.nav-links {
  justify-content: center;
  min-width: 0;
}

.nav-links > a {
  color: #5d5347;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links > a:hover {
  color: #7b5520;
  background: rgba(181, 138, 53, .08);
}

.nav-concierge-actions {
  justify-content: flex-end;
  gap: 7px;
}

.nav-concierge-actions a {
  min-height: 40px;
  max-width: none;
  padding: 0 15px 0 8px;
  border-color: rgba(167, 123, 48, .28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(246, 239, 225, .78));
  color: #473720;
  box-shadow:
    0 12px 28px rgba(78, 55, 22, .08),
    0 1px 0 rgba(255, 255, 255, .86) inset;
}

.nav-concierge-actions a:nth-child(2) {
  border-color: rgba(143, 107, 39, .48);
  background:
    linear-gradient(135deg, #2b261f 0%, #4a351c 58%, #8c692d 100%);
  color: #fff8e8;
  box-shadow:
    0 18px 38px rgba(54, 36, 16, .22),
    0 1px 0 rgba(255, 255, 255, .24) inset;
}

.nav-concierge-actions a:nth-child(2) .nav-concierge-icon {
  border-color: rgba(255, 248, 232, .34);
  background: rgba(255, 255, 255, .12);
  color: #fff8e8;
}

.nav-concierge-actions a > span:last-child {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.nav-concierge-icon {
  border-color: rgba(177, 135, 58, .32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 238, 218, .74));
  color: #8b641f;
}

.nav-login-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(37, 34, 29, .16);
  border-radius: 999px;
  background: #221e18;
  color: #fff8e8;
  box-shadow:
    0 16px 36px rgba(25, 22, 18, .18),
    0 1px 0 rgba(255, 255, 255, .16) inset;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-login-action:hover {
  transform: translateY(-1px);
  background: #2d281f;
  box-shadow:
    0 22px 46px rgba(25, 22, 18, .24),
    0 1px 0 rgba(255, 255, 255, .18) inset;
}

.nav-login-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-engagement {
  right: 24px;
  bottom: 28px;
  gap: 12px;
}

.engagement-launcher {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 160px;
  min-height: 62px;
  padding: 0 30px;
  border: 1px solid rgba(158, 112, 36, .34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fffdf7 0%, #f2e6cc 52%, #d5b06b 100%);
  color: #3e2a12;
  box-shadow:
    0 24px 56px rgba(55, 39, 18, .2),
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 -16px 28px rgba(128, 85, 28, .16) inset;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
}

.engagement-launcher::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: inherit;
  pointer-events: none;
}

.engagement-launcher:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 72px rgba(55, 39, 18, .25),
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 -16px 28px rgba(128, 85, 28, .16) inset;
}

.engagement-launcher span {
  position: relative;
  z-index: 1;
  color: #3e2a12;
  font-family: var(--display-font);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: .95;
  text-shadow: none;
}

.engagement-launcher small {
  position: relative;
  z-index: 1;
  color: rgba(62, 42, 18, .74);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.engagement-tray {
  width: min(392px, calc(100vw - 32px));
  gap: 10px;
  border: 1px solid rgba(158, 112, 36, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(198, 156, 80, .16), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(247, 241, 230, .96));
  box-shadow:
    0 36px 96px rgba(24, 20, 15, .24),
    0 1px 0 rgba(255, 255, 255, .88) inset;
  padding: 14px;
  color: #2b241b;
}

.engagement-tray::before {
  background:
    linear-gradient(90deg, rgba(174, 124, 42, .12), transparent 18%, transparent 82%, rgba(174, 124, 42, .1)),
    linear-gradient(180deg, rgba(255, 255, 255, .42), transparent 38%);
}

.engagement-tray-header {
  padding: 4px 4px 12px;
  border-bottom: 1px solid rgba(158, 112, 36, .16);
}

.engagement-tray-header span {
  color: #6f4d1c;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: none;
}

.engagement-tray-header small {
  max-width: 310px;
  margin-top: 4px;
  color: #6f665b;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.45;
}

.engagement-tray a {
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 72px;
  gap: 3px 12px;
  border: 1px solid rgba(158, 112, 36, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #2b241b;
  padding: 12px 38px 12px 12px;
  box-shadow: 0 12px 28px rgba(64, 43, 15, .07);
}

.engagement-tray a:hover {
  border-color: rgba(158, 112, 36, .42);
  background: #fffdfa;
  box-shadow: 0 20px 44px rgba(64, 43, 15, .12);
}

.engagement-tray a::after {
  right: 16px;
  color: #84601f;
  font-size: 24px;
}

.engagement-tray a > span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(132, 96, 31, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fbf4e5, #e4c887);
  color: #5c4018;
}

.engagement-tray strong {
  align-self: end;
  color: #2b241b;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .01em;
}

.engagement-tray small {
  color: #6f665b;
  font-size: 11.5px;
  font-weight: 560;
}

@media (max-width: 1100px) {
  .launch-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    border-radius: 28px;
  }

  .nav-concierge-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }

  .nav-brand-text {
    display: inline;
  }
}

@media (max-width: 760px) {
  .launch-nav {
    top: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    padding: 7px;
  }

  .nav-brand-text,
  .nav-concierge-actions {
    display: none;
  }

  .nav-links {
    justify-content: center;
    gap: 2px;
  }

  .nav-links > a {
    min-height: 34px;
    padding: 0 7px;
    font-size: 10px;
    letter-spacing: .04em;
  }

  .nav-login-action {
    min-height: 34px;
    padding: 0 11px;
    font-size: 10px;
    letter-spacing: .05em;
  }

  .nav-login-action svg {
    display: none;
  }

  .floating-engagement {
    right: 14px;
    bottom: 78px;
  }

  .engagement-launcher {
    min-width: 124px;
    min-height: 52px;
    padding: 0 20px;
  }

  .engagement-launcher span {
    font-size: 19px;
  }

  .engagement-launcher small {
    font-size: 9px;
    letter-spacing: .14em;
  }
}

/* ===== MINIMAL CLASSY TOP NAV REDESIGN ===== */
.launch-nav {
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  gap: 16px;
  width: min(1160px, calc(100% - 40px));
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(42, 34, 24, .1);
  background: rgba(255, 255, 255, .9);
  box-shadow:
    0 18px 54px rgba(35, 28, 20, .08),
    0 1px 0 rgba(255, 255, 255, .86) inset;
}

.nav-brand {
  gap: 8px;
  min-height: 38px;
  padding: 0 8px 0 4px;
}

.nav-brand-mark {
  width: 30px;
  height: 30px;
  border-color: rgba(46, 38, 28, .14);
  background: #25211b;
  color: #f8efe0;
  box-shadow: none;
}

.nav-brand-text {
  color: #25211b;
  font-size: 20px;
  font-weight: 650;
}

.nav-links {
  gap: 4px;
}

.nav-links > a {
  min-height: 36px;
  padding: 0 11px;
  color: rgba(37, 33, 27, .72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: none;
}

.nav-links > a:hover {
  color: #25211b;
  background: rgba(37, 33, 27, .045);
}

.nav-concierge-actions {
  gap: 4px;
}

.nav-concierge-actions a {
  min-height: 36px;
  gap: 7px;
  padding: 0 11px 0 7px;
  border-color: transparent;
  background: transparent;
  color: rgba(37, 33, 27, .78);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-concierge-actions a::after {
  display: none;
}

.nav-concierge-actions a:hover {
  transform: none;
  border-color: rgba(37, 33, 27, .08);
  background: rgba(37, 33, 27, .045);
  box-shadow: none;
}

.nav-concierge-actions a:nth-child(2) {
  min-width: 178px;
  padding-right: 14px;
  padding-left: 8px;
  border-color: rgba(133, 96, 32, .22);
  background: rgba(247, 241, 230, .72);
  color: #5a421d;
  box-shadow: 0 8px 20px rgba(64, 43, 15, .04);
}

.nav-concierge-actions a:nth-child(2):hover {
  background: rgba(244, 235, 216, .88);
  border-color: rgba(133, 96, 32, .28);
}

.nav-concierge-actions a:nth-child(2) .nav-concierge-icon {
  border-color: rgba(133, 96, 32, .16);
  background: rgba(255, 255, 255, .64);
  color: #6f511d;
}

.nav-concierge-actions a > span:last-child {
  color: inherit;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0;
}

.nav-concierge-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-color: rgba(37, 33, 27, .1);
  background: rgba(255, 255, 255, .68);
  color: rgba(37, 33, 27, .68);
  box-shadow: none;
}

.nav-concierge-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.7;
}

.nav-login-action {
  min-height: 36px;
  padding: 0 15px;
  border-color: rgba(37, 33, 27, .14);
  background: #fff;
  color: #25211b;
  box-shadow: none;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .02em;
  text-transform: none;
}

.nav-login-action:hover {
  transform: none;
  background: #25211b;
  color: #fff8e8;
  box-shadow: 0 12px 28px rgba(25, 22, 18, .14);
}

@media (max-width: 1100px) {
  .launch-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: min(960px, calc(100% - 24px));
    gap: 8px;
    border-radius: 24px;
  }

  .nav-concierge-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  .launch-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    gap: 6px;
    padding: 7px;
  }

  .nav-brand-text,
  .nav-concierge-actions {
    display: none;
  }

  .nav-links > a {
    padding: 0 7px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .nav-login-action {
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* ===== EDITORIAL REAL ESTATE TOP NAV ===== */
.launch-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 44px);
  width: 100%;
  max-width: none;
  min-height: 90px;
  height: 90px;
  padding: 0 32px;
  transform: none;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  border-radius: 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: none;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.nav-brand {
  min-height: auto;
  padding: 0;
  gap: 10px;
  border-radius: 0;
}

.nav-brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(37, 33, 27, .16);
  border-radius: 50%;
  background: transparent;
  color: #26221c;
  box-shadow: none;
  font-size: 18px;
}

.nav-brand-text {
  color: #26221c;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 2.4vw, 34px);
  margin-left: clamp(8px, 1.2vw, 18px);
  color: rgba(38, 34, 28, .72);
}

.nav-links > a,
.nav-concierge-actions a,
.nav-login-action {
  position: relative;
  min-height: auto;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(38, 34, 28, .72);
  box-shadow: none;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: none;
  transition: color .24s ease, opacity .24s ease, text-shadow .24s ease;
}

.nav-links > a::after,
.nav-concierge-actions a::after,
.nav-login-action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(132, 96, 31, .62), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.nav-links > a:hover,
.nav-concierge-actions a:hover,
.nav-login-action:hover {
  transform: none;
  border: 0;
  background: transparent;
  color: #26221c;
  box-shadow: none;
  text-shadow: 0 0 18px rgba(132, 96, 31, .16);
}

.nav-links > a:hover::after,
.nav-concierge-actions a:hover::after,
.nav-login-action:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-concierge-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 28px);
  margin-left: auto;
  min-width: 0;
}

.nav-concierge-actions a,
.nav-concierge-actions a:nth-child(2) {
  min-width: 0;
  max-width: none;
  min-height: auto;
  gap: 7px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: rgba(91, 68, 34, .82);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-concierge-actions a:nth-child(2):hover {
  border: 0;
  background: transparent;
}

.nav-concierge-actions a > span:last-child {
  color: inherit;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: .035em;
}

.nav-concierge-icon,
.nav-concierge-actions a:nth-child(2) .nav-concierge-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(91, 68, 34, .72);
  box-shadow: none;
}

.nav-concierge-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.55;
}

.nav-login-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-left: 0;
  color: rgba(38, 34, 28, .82);
  white-space: nowrap;
}

.nav-login-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .launch-nav {
    gap: 22px;
    min-height: 86px;
    height: 86px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-brand-text {
    display: inline;
  }

  .nav-links {
    gap: 20px;
    margin-left: 0;
  }

  .nav-concierge-actions {
    gap: 17px;
  }

  .nav-concierge-actions a > span:last-child,
  .nav-links > a,
  .nav-login-action {
    font-size: 12.5px;
    letter-spacing: .02em;
  }
}

@media (max-width: 860px) {
  .launch-nav {
    min-height: 78px;
    height: 78px;
    gap: 16px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-brand-text {
    display: none;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-concierge-actions {
    display: none;
  }

  .nav-login-action {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .launch-nav {
    min-height: 68px;
    height: 68px;
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-brand-mark {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }

  .nav-links {
    gap: 11px;
  }

  .nav-links > a,
  .nav-login-action {
    font-size: 11.5px;
    letter-spacing: 0;
  }

  .nav-login-action svg {
    display: none;
  }
}

/* ===== LUXURY FLOATING ENGAGE BUTTON REFINEMENT ===== */
.floating-engagement {
  right: 28px;
  bottom: 28px;
  gap: 12px;
}

.engagement-launcher {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 252px;
  min-width: 252px;
  min-height: 93px;
  padding: 0 30px;
  border: 1px solid rgba(122, 98, 71, .18);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .98) 0%, rgba(244, 238, 227, .96) 42%, rgba(214, 186, 136, .94) 100%);
  color: #4b3823;
  box-shadow:
    0 18px 40px rgba(90, 60, 20, .14),
    0 1px 0 rgba(255, 255, 255, .86) inset,
    0 -12px 24px rgba(122, 87, 38, .08) inset;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
  backdrop-filter: saturate(145%) blur(16px);
  -webkit-backdrop-filter: saturate(145%) blur(16px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, filter .24s ease;
}

.engagement-launcher::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: inherit;
  pointer-events: none;
}

.engagement-launcher::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .52), transparent 32%, transparent 68%, rgba(122, 98, 71, .1));
  opacity: .72;
  pointer-events: none;
}

.engagement-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 98, 71, .24);
  filter: saturate(1.03);
  box-shadow:
    0 22px 48px rgba(90, 60, 20, .17),
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 -12px 24px rgba(122, 87, 38, .08) inset;
}

.engagement-launcher span {
  position: relative;
  z-index: 1;
  color: #4b3823;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 450;
  letter-spacing: .035em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
}

.engagement-launcher small {
  position: relative;
  z-index: 1;
  color: #7a6247;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 520;
  letter-spacing: .14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .floating-engagement {
    right: 16px;
    bottom: 78px;
  }

  .engagement-launcher {
    width: 196px;
    min-width: 196px;
    min-height: 74px;
    padding: 0 22px;
  }

  .engagement-launcher span {
    font-size: 18px;
  }

  .engagement-launcher small {
    font-size: 8px;
    letter-spacing: .12em;
  }
}

/* ===== HOSPITALITY MICROSITE REDESIGN ===== */
body.hospitality-home {
  overflow-x: hidden;
  background: #fbfaf7;
  color: #25221d;
}

.hospitality-home img,
.hospitality-home video {
  max-width: 100%;
}

.hospitality-home .launch-nav {
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: 100%;
  max-width: none;
  height: 92px;
  min-height: 92px;
  padding: 0 clamp(20px, 4vw, 48px);
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  border-radius: 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: none;
  transform: none;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.hospitality-home .nav-links {
  gap: clamp(22px, 2.7vw, 42px);
  margin-left: clamp(8px, 2vw, 26px);
}

.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action {
  color: rgba(37, 33, 27, .74);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: .045em;
}

.nav-primary-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-engage-action,
.luxury-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(37, 33, 27, .22);
  border-radius: 0;
  background: rgba(255, 255, 255, .18);
  color: #25211b;
  cursor: pointer;
  padding: 0 20px;
  font: inherit;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.nav-engage-action:hover,
.luxury-button:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 33, 27, .38);
  background: #25211b;
  color: #fff8e8;
}

.hospitality-hero.hero-video-section {
  min-height: 100svh;
  background: #111;
  color: #fff;
}

.hospitality-hero .hero-video,
.hospitality-hero .hero-media-fallback,
.hospitality-hero .hero-vignette {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hospitality-hero .hero-video {
  object-fit: cover;
  opacity: .9;
}

.hospitality-hero .hero-media-fallback {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .28)),
    var(--image, url("public/assets/placeholders/hero-placeholder.jpg"));
  background-position: center;
  background-size: cover;
  box-shadow: none;
}

.hospitality-hero .hero-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .02) 42%, rgba(0, 0, 0, .4) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .24), transparent 34%, rgba(0, 0, 0, .16));
}

.scroll-discover {
  position: absolute;
  left: 50%;
  bottom: 196px;
  z-index: 4;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-discover::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), transparent);
}

.hero-stats-strip {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 96px));
  margin: 0;
  border: 1px solid rgba(154, 130, 92, .22);
  background: rgba(251, 248, 241, .96);
  box-shadow: 0 24px 70px rgba(45, 34, 18, .12);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-stats-strip article {
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px 22px;
  border-right: 1px solid rgba(154, 130, 92, .2);
  text-align: center;
}

.hero-stats-strip article:last-child {
  border-right: 0;
}

.hero-stats-strip strong {
  color: #9a7539;
  font-family: var(--display-font);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 520;
  line-height: .86;
}

.hero-stats-strip span {
  max-width: 210px;
  color: rgba(37, 33, 27, .68);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-anchor-bar {
  position: sticky;
  top: 92px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  overflow-x: auto;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(251, 250, 247, .92);
  padding: 18px clamp(18px, 4vw, 46px);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-anchor-bar::-webkit-scrollbar {
  display: none;
}

.section-anchor-bar a {
  flex: 0 0 auto;
  color: rgba(37, 33, 27, .68);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hospitality-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-heading-row h2,
.location-copy h2,
.amenities-editorial-section h2,
.story-editorial-block h2,
.final-concierge-section h2 {
  margin: 0;
  color: #25211b;
  font-family: var(--display-font);
  font-weight: 560;
  letter-spacing: 0;
  line-height: .98;
}

.private-journey {
  background: #fbfaf7;
  padding: 96px 24px;
}

.private-journey__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 8px;
}

.private-journey__heading {
  max-width: 700px;
  margin: 0 auto 58px;
  text-align: center;
}

.private-journey__heading h2 {
  margin: 0;
  color: #25211b;
  font-family: var(--display-font);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.02;
}

.private-journey__heading p {
  max-width: 560px;
  margin: 18px auto 0;
  color: #746d62;
  font-size: 15px;
  line-height: 1.7;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
}

.journey-line {
  position: absolute;
  top: 72px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 130, 92, .42), transparent);
}

.private-journey .journey-line::after {
  display: none;
}

.journey-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 214px;
  overflow: visible;
  padding: 0;
  background: transparent;
  text-align: center;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 1;
  right: auto;
  bottom: auto;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(154, 130, 92, .58);
  border-radius: 50%;
  background: #fbfaf7;
  pointer-events: none;
  transform: translateX(-50%);
}

.journey-step__number {
  color: rgba(91, 68, 34, .58);
  font-family: var(--display-font);
  font-size: 20px;
  line-height: 1;
}

.journey-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 20px 0 24px;
  color: rgba(154, 117, 57, .76);
  transition: color .24s ease, transform .24s ease;
}

.journey-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.journey-step:hover .journey-icon {
  color: #7a5822;
  transform: translateY(-2px);
}

.journey-step h3 {
  margin: 0;
  color: #312a22;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.journey-step p {
  max-width: 180px;
  margin: 9px auto 0;
  color: #7a7368;
  font-size: 13px;
  line-height: 1.5;
}

.private-journey__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.private-journey__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(154, 130, 92, .34);
  border-radius: 0;
  background: transparent;
  color: #4b3823;
  padding: 0 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .24s ease, border-color .24s ease, color .24s ease, transform .24s ease;
}

.private-journey__actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(75, 56, 35, .42);
  background: rgba(246, 239, 226, .48);
  color: #2e2820;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading-row h2,
.location-copy h2,
.amenities-editorial-section h2,
.story-editorial-block h2,
.final-concierge-section h2 {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 64px);
}

.text-link {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(37, 33, 27, .32);
  color: #4b3823;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.residence-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.residence-card {
  background: #fff;
  overflow: hidden;
}

.residence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.residence-card img,
.media-tile img,
.neighbourhood-grid img,
.amenity-editorial-grid img,
.story-editorial-block img {
  background:
    linear-gradient(135deg, rgba(251, 248, 241, .96), rgba(222, 206, 177, .56));
  transform: scale(1);
  transition: transform .7s ease, filter .7s ease, opacity .35s ease;
}

.residence-card:hover img,
.media-tile:hover img,
.neighbourhood-grid article:hover img,
.amenity-editorial-grid article:hover img,
.story-editorial-block:hover img {
  transform: scale(1.035);
}

.residence-card div {
  padding: 22px 0 0;
}

.residence-card span,
.privilege-grid span {
  color: #8a755d;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.residence-card h3,
.privilege-grid h3,
.neighbourhood-grid h3,
.amenity-editorial-grid h3 {
  margin: 8px 0 8px;
  color: #25211b;
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 560;
}

.residence-card p,
.privilege-grid p,
.location-copy p,
.neighbourhood-grid p,
.story-editorial-block p,
.final-concierge-section p {
  color: #70685d;
  line-height: 1.65;
}

.media-gallery-shell {
  position: relative;
  margin-top: 34px;
  margin-bottom: 12px;
  overflow: visible;
}

.media-gallery-grid,
.gallery-track {
  display: grid;
  grid-auto-columns: clamp(620px, 58vw, 860px);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.media-gallery-grid::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar {
  display: none;
}

.media-tile,
.gallery-item {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, .96), rgba(222, 206, 177, .56));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.media-tile img {
  display: block;
  width: 100%;
  height: clamp(520px, 68vh, 760px);
  min-height: clamp(520px, 68vh, 760px);
  object-fit: cover;
}

.media-tile-large,
.gallery-item:first-child {
  grid-row: auto;
  grid-column: auto;
  grid-auto-flow: unset;
  width: auto;
}

.media-tile-large img,
.gallery-item:first-child img {
  min-height: clamp(520px, 68vh, 760px);
  aspect-ratio: auto;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(91, 68, 34, .92);
  cursor: pointer;
  opacity: .9;
  box-shadow: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.gallery-nav svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-nav--prev {
  left: -42px;
}

.gallery-nav--next {
  right: -42px;
}

.gallery-nav:hover {
  color: rgba(46, 40, 32, .96);
  opacity: .96;
}

.gallery-nav--prev:hover {
  transform: translate(-2px, -50%);
}

.gallery-nav--next:hover {
  transform: translate(2px, -50%);
}

.privilege-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(37, 33, 27, .12);
  border-bottom: 1px solid rgba(37, 33, 27, .12);
}

.privilege-grid article {
  padding: 34px 34px 34px 0;
  border-right: 1px solid rgba(37, 33, 27, .1);
}

.privilege-grid article + article {
  padding-left: 34px;
}

.privilege-grid article:last-child {
  border-right: 0;
}

.location-section,
.story-editorial-block {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

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

.neighbourhood-grid img,
.amenity-editorial-grid img,
.story-editorial-block img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.neighbourhood-grid article,
.amenity-editorial-grid article,
.story-editorial-block figure {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, .96), rgba(222, 206, 177, .56));
}

.neighbourhood-grid img {
  aspect-ratio: 4 / 5;
}

.amenity-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.amenity-editorial-grid img {
  aspect-ratio: 3 / 4;
}

.story-editorial-block figure {
  margin: 0;
}

.story-editorial-block img {
  aspect-ratio: 4 / 5;
}

.quote-block {
  padding: clamp(84px, 11vw, 150px) clamp(24px, 8vw, 120px);
  background: #f3efe7;
  text-align: center;
}

.quote-block blockquote {
  max-width: 960px;
  margin: 0 auto;
  color: #3a332a;
  font-family: var(--display-font);
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 520;
  line-height: 1.08;
}

.final-concierge-section {
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0;
  text-align: center;
}

.final-concierge-copy {
  display: grid;
  justify-items: center;
  width: min(760px, 100%);
  margin: 0 auto;
}

.final-concierge-copy .section-kicker {
  margin: 0 auto 14px;
}

.final-concierge-copy h2 {
  max-width: 760px;
  margin: 0 auto;
}

.final-concierge-section p {
  max-width: 580px;
  margin: 20px auto 0;
}

.final-concierge-copy > p:not(.section-kicker) {
  margin: 20px auto 0;
}

.final-concierge-media {
  position: relative;
  display: block;
  width: min(1040px, 100%);
  margin: clamp(34px, 4.4vw, 56px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(154, 130, 92, .24);
  background:
    linear-gradient(135deg, rgba(251, 248, 241, .96), rgba(222, 206, 177, .56));
  isolation: isolate;
}

.final-concierge-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .12)),
    linear-gradient(90deg, rgba(35, 29, 21, .12), transparent 34%, transparent 66%, rgba(35, 29, 21, .08));
  z-index: 1;
}

.final-concierge-video,
.final-concierge-media img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.final-concierge-media:hover .final-concierge-video,
.final-concierge-media:hover img {
  transform: scale(1.025);
}

.brand-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 6.4vw, 88px);
  height: clamp(72px, 6.4vw, 88px);
  border: 1px solid rgba(239, 224, 194, .82);
  border-radius: 50%;
  background: rgba(26, 22, 16, .16);
  color: rgba(255, 252, 246, .92);
  cursor: pointer;
  padding: 0;
  opacity: .86;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease, background .22s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-video-play::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 252, 246, .26);
  border-radius: 50%;
  pointer-events: none;
}

.brand-video-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: rgba(255, 252, 246, .92);
  stroke: none;
}

.brand-video-play:hover,
.brand-video-play:focus-visible {
  border-color: rgba(255, 252, 246, .94);
  background: rgba(26, 22, 16, .22);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.brand-video-play:focus-visible {
  outline: 1px solid rgba(239, 224, 194, .8);
  outline-offset: 4px;
}

.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.luxury-button-light {
  background: transparent;
}

.luxury-footer {
  width: 100%;
  border-top: 1px solid rgba(196, 169, 118, .22);
  background: #0d0c0a;
  color: rgba(255, 252, 246, .72);
  padding: 96px clamp(24px, 6vw, 88px) 34px;
}

.luxury-footer__brand {
  display: block;
  color: #fff8e8;
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 560;
  letter-spacing: .02em;
  text-align: center;
}

.luxury-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
  width: min(1180px, 100%);
  margin: 72px auto 0;
  border-top: 1px solid rgba(196, 169, 118, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 42px 0 48px;
}

.luxury-footer nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.luxury-footer nav h2 {
  margin: 0 0 10px;
  color: rgba(239, 224, 194, .9);
  font-family: var(--display-font);
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .01em;
}

.luxury-footer nav a {
  color: rgba(255, 252, 246, .68);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: color .24s ease, transform .24s ease;
}

.luxury-footer nav a:hover {
  color: #fff8e8;
  transform: translateX(2px);
}

.luxury-footer__contact {
  margin: 34px auto 0;
  color: rgba(255, 252, 246, .78);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: .12em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.luxury-footer__legal {
  display: flex;
  justify-content: center;
  width: min(1180px, 100%);
  margin: 38px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  color: rgba(255, 252, 246, .48);
  font-size: 11px;
  letter-spacing: .08em;
  text-align: center;
}

.hospitality-home .engagement-tray {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 241, 231, .98));
}

.hospitality-home .engagement-tray a {
  border-radius: 0;
}

@media (max-width: 980px) {
  .hospitality-home .launch-nav {
    height: 78px;
    min-height: 78px;
  }

  .hospitality-home .nav-links {
    gap: 18px;
  }

  .nav-primary-actions {
    gap: 14px;
  }

  .section-anchor-bar {
    top: 78px;
    justify-content: flex-start;
  }

  .hero-stats-strip {
    width: min(100% - 40px, 760px);
    bottom: 34px;
  }

  .hero-stats-strip article {
    min-height: 102px;
    padding: 20px 14px;
  }

  .scroll-discover {
    bottom: 166px;
  }

  .residence-carousel,
  .privilege-grid,
  .location-section,
  .story-editorial-block {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    gap: 24px;
  }

  .journey-line {
    right: 11%;
    left: 11%;
  }

  .journey-step h3 {
    font-size: 11px;
    letter-spacing: .11em;
  }

  .privilege-grid article,
  .privilege-grid article + article {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 33, 27, .1);
    padding: 28px 0;
  }

  .privilege-grid article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 720px) {
  .hospitality-home .launch-nav {
    height: 68px;
    min-height: 68px;
    padding: 0 16px;
  }

  .hospitality-home .nav-links {
    display: none;
  }

  .nav-primary-actions {
    gap: 12px;
  }

  .nav-engage-action {
    min-height: 36px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: .12em;
  }

  .section-anchor-bar {
    top: 68px;
    gap: 22px;
    padding: 15px 18px;
  }

  .hero-stats-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    bottom: 24px;
  }

  .hero-stats-strip article {
    min-height: 76px;
    grid-template-columns: 76px 1fr;
    justify-items: start;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 130, 92, .2);
    padding: 14px 18px;
    text-align: left;
  }

  .hero-stats-strip article:last-child {
    border-bottom: 0;
  }

  .hero-stats-strip strong {
    font-size: 38px;
  }

  .hero-stats-strip span {
    align-self: center;
    max-width: none;
    font-size: 10px;
  }

  .scroll-discover {
    bottom: 284px;
    gap: 9px;
  }

  .scroll-discover::after {
    height: 26px;
  }

  .hospitality-section,
  .final-concierge-section {
    width: min(100% - 32px, 1180px);
  }

  .private-journey {
    padding: 64px 16px;
  }

  .private-journey__heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .private-journey__heading p {
    margin-right: 0;
    margin-left: 0;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 34px;
  }

  .journey-line {
    top: 10px;
    bottom: 16px;
    left: 9px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(154, 130, 92, .42), rgba(154, 130, 92, .1));
  }

  .journey-step {
    min-height: 0;
    justify-items: start;
    padding: 0 0 34px;
    text-align: left;
  }

  .journey-step::before {
    top: 5px;
    left: -25px;
    transform: none;
  }

  .journey-step__number {
    font-size: 18px;
  }

  .journey-icon {
    width: 46px;
    height: 46px;
    margin: 14px 0 14px;
  }

  .journey-icon svg {
    width: 44px;
    height: 44px;
  }

  .journey-step p {
    max-width: 280px;
    margin-left: 0;
  }

  .private-journey__actions {
    justify-content: flex-start;
    margin-top: 2px;
  }

  .media-gallery-grid:not(.gallery-track),
  .neighbourhood-grid,
  .amenity-editorial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    grid-auto-columns: calc(100vw - 32px);
    gap: 14px;
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: max(420px, 58vh);
    min-height: 420px;
    aspect-ratio: auto;
  }

  .gallery-nav {
    width: 30px;
    height: 30px;
  }

  .gallery-nav svg {
    width: 25px;
    height: 25px;
  }

  .gallery-nav--prev {
    left: 6px;
  }

  .gallery-nav--next {
    right: 6px;
  }

  .luxury-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }
}

/* ===== HOSPITALITY CONCIERGE ENGAGE REFINEMENT ===== */
.hospitality-home .floating-engagement {
  right: 32px;
  bottom: 96px;
  z-index: 70;
  gap: 12px;
}

.hospitality-home .engagement-launcher {
  display: grid;
  grid-template-columns: 18px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 2px;
  width: auto;
  min-width: 156px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(151, 126, 86, .34);
  border-radius: 0;
  background: rgba(251, 248, 241, .78);
  color: #332b22;
  box-shadow: 0 14px 34px rgba(34, 27, 18, .1);
  letter-spacing: 0;
  overflow: hidden;
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.hospitality-home .engagement-launcher::before {
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 0;
}

.hospitality-home .engagement-launcher::after {
  display: none;
}

.hospitality-home .engagement-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 126, 86, .48);
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 18px 42px rgba(34, 27, 18, .13);
}

.hospitality-home .engagement-launcher svg {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 17px;
  height: 17px;
  color: rgba(91, 68, 34, .72);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospitality-home .engagement-launcher span {
  color: #332b22;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 640;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.hospitality-home .engagement-launcher small {
  color: rgba(91, 68, 34, .58);
  font-size: 8px;
  font-weight: 560;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.hospitality-home .engagement-tray {
  width: min(390px, calc(100vw - 64px));
  gap: 0;
  border: 1px solid rgba(151, 126, 86, .24);
  border-radius: 0;
  background: rgba(252, 249, 243, .98);
  color: #2e2820;
  box-shadow: 0 24px 70px rgba(34, 27, 18, .16);
  padding: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
}

.hospitality-home .engagement-tray::before {
  display: none;
}

.hospitality-home .floating-engagement.is-open .engagement-tray {
  transform: translateY(0);
}

.hospitality-home .engagement-tray-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(151, 126, 86, .18);
  padding: 24px 24px 20px;
}

.hospitality-home .engagement-tray-header span {
  color: #2e2820;
  font-family: var(--display-font);
  font-size: 31px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.hospitality-home .engagement-tray-header small {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: #777064;
  font-size: 12px;
  font-weight: 460;
  line-height: 1.5;
}

.engagement-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: rgba(46, 40, 32, .62);
  cursor: pointer;
  padding: 3px 0;
  font: inherit;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.engagement-close:hover {
  color: #2e2820;
}

.hospitality-home .engagement-tray a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 3px 14px;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid rgba(151, 126, 86, .16);
  border-radius: 0;
  background: transparent;
  color: #2e2820;
  padding: 18px 24px;
  box-shadow: none;
  transition: background .22s ease, color .22s ease;
}

.hospitality-home .engagement-tray a:last-child {
  border-bottom: 0;
}

.hospitality-home .engagement-tray a:hover {
  border-color: rgba(151, 126, 86, .16);
  background: rgba(246, 239, 226, .48);
  box-shadow: none;
}

.hospitality-home .engagement-tray a::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(151, 126, 86, .38);
  transform: translateY(-50%) scaleX(.55);
  transform-origin: right;
  transition: transform .22s ease, background .22s ease;
}

.hospitality-home .engagement-tray a:hover::after {
  background: rgba(91, 68, 34, .7);
  transform: translateY(-50%) scaleX(1);
}

.hospitality-home .engagement-tray a > span {
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(91, 68, 34, .72);
  box-shadow: none;
}

.hospitality-home .engagement-tray a > span svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.45;
}

.hospitality-home .engagement-tray strong {
  align-self: end;
  color: #2e2820;
  padding-right: 36px;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: .04em;
}

.hospitality-home .engagement-tray small {
  color: #777064;
  padding-right: 36px;
  font-size: 11.5px;
  font-weight: 440;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .luxury-footer {
    padding: 64px 22px 28px;
  }

  .final-concierge-section {
    width: min(100% - 32px, 100%);
    padding: 72px 0;
  }

  .final-concierge-copy {
    width: 100%;
  }

  .final-concierge-media {
    margin-top: 34px;
  }

  .final-concierge-video,
  .final-concierge-media img {
    aspect-ratio: 16 / 10;
  }

  .brand-video-play {
    width: clamp(56px, 14vw, 64px);
    height: clamp(56px, 14vw, 64px);
  }

  .brand-video-play svg {
    width: 19px;
    height: 19px;
  }

  .luxury-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
    padding: 34px 0 38px;
  }

  .luxury-footer nav {
    gap: 12px;
  }

  .luxury-footer nav h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .luxury-footer__contact {
    margin-top: 28px;
    font-size: 11px;
  }

  .hospitality-home .floating-engagement {
    right: 14px;
    bottom: 18px;
    left: 14px;
    justify-items: end;
  }

  .hospitality-home .engagement-launcher {
    min-width: 138px;
    min-height: 48px;
    padding: 0 15px;
  }

  .hospitality-home .engagement-tray {
    position: fixed;
    right: 14px;
    bottom: 78px;
    left: 14px;
    width: auto;
    max-height: min(78vh, 560px);
    overflow-y: auto;
    transform: translateY(18px);
  }

  .hospitality-home .floating-engagement.is-open .engagement-tray {
    transform: translateY(0);
  }

  .hospitality-home .engagement-tray-header {
    padding: 22px 20px 18px;
  }

  .hospitality-home .engagement-tray-header span {
    font-size: 28px;
  }

  .hospitality-home .engagement-tray a {
    min-height: 70px;
    padding: 16px 20px;
  }
}

/* ===== CUSTOMER LOGIN CONCIERGE + PROGRESS JOURNEY REFINEMENT ===== */
.journey-page .floating-engagement {
  right: 32px;
  bottom: 32px;
  z-index: 70;
  gap: 12px;
}

.journey-page .engagement-launcher {
  display: grid;
  grid-template-columns: 18px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 2px;
  width: auto;
  min-width: 156px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(151, 126, 86, .34);
  border-radius: 0;
  background: rgba(251, 248, 241, .8);
  color: #332b22;
  box-shadow: 0 14px 34px rgba(34, 27, 18, .1);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.journey-page .engagement-launcher::before {
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 0;
}

.journey-page .engagement-launcher::after {
  display: none;
}

.journey-page .engagement-launcher svg {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 17px;
  height: 17px;
  color: rgba(91, 68, 34, .72);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-page .engagement-launcher span {
  color: #332b22;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 640;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-page .engagement-launcher small {
  color: rgba(91, 68, 34, .58);
  font-size: 8px;
  font-weight: 560;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-page .engagement-tray {
  width: min(390px, calc(100vw - 64px));
  gap: 0;
  border: 1px solid rgba(151, 126, 86, .24);
  border-radius: 0;
  background: rgba(252, 249, 243, .98);
  color: #2e2820;
  box-shadow: 0 24px 70px rgba(34, 27, 18, .16);
  padding: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
}

.journey-page .engagement-tray::before {
  display: none;
}

.journey-page .floating-engagement.is-open .engagement-tray {
  transform: translateY(0);
}

.journey-page .engagement-tray-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(151, 126, 86, .18);
  padding: 24px 24px 20px;
}

.journey-page .engagement-tray-header span {
  color: #2e2820;
  font-family: var(--display-font);
  font-size: 31px;
  font-weight: 560;
  line-height: 1;
}

.journey-page .engagement-tray-header small {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: #777064;
  font-size: 12px;
  font-weight: 460;
  line-height: 1.5;
}

.journey-page .engagement-tray a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 3px 14px;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid rgba(151, 126, 86, .16);
  border-radius: 0;
  background: transparent;
  color: #2e2820;
  padding: 18px 24px;
  box-shadow: none;
}

.journey-page .engagement-tray a:last-child {
  border-bottom: 0;
}

.journey-page .engagement-tray a:hover {
  background: rgba(246, 239, 226, .48);
  box-shadow: none;
}

.journey-page .engagement-tray a::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(151, 126, 86, .38);
  transform: translateY(-50%) scaleX(.55);
  transform-origin: right;
  transition: transform .22s ease, background .22s ease;
}

.journey-page .engagement-tray a:hover::after {
  background: rgba(91, 68, 34, .7);
  transform: translateY(-50%) scaleX(1);
}

.journey-page .engagement-tray a > span {
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(91, 68, 34, .72);
  box-shadow: none;
}

.journey-page .engagement-tray a > span svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.45;
}

.journey-page .engagement-tray strong {
  align-self: end;
  color: #2e2820;
  padding-right: 36px;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: .04em;
}

.journey-page .engagement-tray small {
  color: #777064;
  padding-right: 36px;
  font-size: 11.5px;
  font-weight: 440;
  line-height: 1.35;
}

.journey-page .login-journey {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.journey-page .login-journey::-webkit-scrollbar {
  display: none;
}

.journey-page .journey-path {
  grid-template-columns: repeat(7, minmax(238px, 1fr) 74px) minmax(238px, 1fr);
  grid-auto-flow: column;
  align-items: stretch;
  gap: 18px;
  min-width: 2680px;
  padding: 14px 0 8px;
}

.journey-page .journey-progress-summary {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(280px, 1fr);
  align-items: center;
  gap: 16px 22px;
  border: 1px solid rgba(154, 130, 92, .22);
  background: rgba(255, 253, 248, .94);
  margin-bottom: 22px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(58, 42, 19, .05);
}

.journey-progress-summary > span {
  color: rgba(91, 68, 34, .68);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-progress-summary > strong {
  color: #2e2820;
  font-family: var(--display-font);
  font-size: 29px;
  font-weight: 560;
  line-height: 1.05;
}

.journey-progress-bar {
  align-self: end;
  height: 3px;
  background: rgba(154, 130, 92, .18);
  overflow: hidden;
}

.journey-progress-bar span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: #9a7539;
  transform: scaleX(0);
  transform-origin: left;
}

.journey-page.is-journey-revealed .journey-progress-bar span {
  animation: journeyProgressFill .9s ease forwards;
}

@keyframes journeyProgressFill {
  to { transform: scaleX(1); }
}

.journey-progress-summary > p {
  margin: 0;
  color: #746d62;
  font-size: 12.5px;
  line-height: 1.55;
}

.journey-page .journey-connector {
  top: 50%;
  right: 22px;
  left: 18px;
  bottom: auto;
  height: 1px;
  border: 0;
  background: rgba(154, 130, 92, .28);
  transform: translateY(-50%);
}

.journey-page .journey-progress-line {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  width: 140px;
  height: 1px;
  background: #9a7539;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}

.journey-page.is-journey-revealed .journey-progress-line {
  animation: journeyLineFill .9s ease forwards;
}

@keyframes journeyLineFill {
  to { transform: translateY(-50%) scaleX(1); }
}

.journey-page .journey-step-card {
  min-height: 230px;
  background: rgba(255, 255, 255, .6);
}

.journey-page .journey-step-card.is-complete {
  border-color: rgba(154, 130, 92, .32);
}

.journey-page .journey-node {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.journey-page .journey-step-card.is-complete::after {
  content: "✓";
  position: absolute;
  top: 18px;
  right: 18px;
  color: #9a7539;
  font-size: 16px;
}

.journey-page .journey-step-card.is-current {
  border-color: rgba(154, 117, 57, .58);
  box-shadow: 0 18px 44px rgba(154, 117, 57, .12);
}

.journey-page .journey-step-card.is-upcoming {
  opacity: .72;
}

.journey-page.is-journey-revealed .journey-step-card.is-upcoming {
  opacity: .72;
}

.journey-page .journey-status {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(91, 68, 34, .62);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-page .journey-step-card.is-complete .journey-status {
  right: 42px;
}

.journey-page .journey-step-card.is-current .journey-status {
  color: #7a5822;
}

.journey-page .journey-step-card.is-optional .journey-status {
  color: rgba(46, 40, 32, .58);
}

.journey-meta {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  color: rgba(91, 68, 34, .72);
  font-size: 11px;
  line-height: 1.35;
}

.journey-meta span:first-child {
  color: #3a332a;
  font-weight: 660;
}

.journey-gap-label {
  align-self: center;
  justify-self: center;
  min-width: 70px;
  color: rgba(91, 68, 34, .66);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .journey-page .login-journey {
    overflow: visible;
  }

  .journey-page .journey-path {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    padding-left: 34px;
  }

  .journey-page .journey-progress-summary {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .journey-page .journey-connector {
    top: 36px;
    bottom: 24px;
    left: 12px;
    right: auto;
    width: 1px;
    height: auto;
    transform: none;
    background: rgba(154, 130, 92, .28);
  }

  .journey-page .journey-progress-line {
    top: 36px;
    bottom: auto;
    left: 12px;
    width: 1px;
    height: 118px;
    transform: scaleY(0);
    transform-origin: top;
  }

  .journey-page.is-journey-revealed .journey-progress-line {
    animation: journeyLineFillMobile .9s ease forwards;
  }

  @keyframes journeyLineFillMobile {
    to { transform: scaleY(1); }
  }

  .journey-page .journey-step-card {
    min-height: 0;
  }

  .journey-page .journey-node {
    left: -47px;
    position: absolute;
    top: 22px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(154, 130, 92, .38);
    border-radius: 50%;
    background: #fbfaf7;
    font-size: 13px;
  }

  .journey-gap-label {
    justify-self: start;
    margin: -4px 0 -2px;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .journey-page .floating-engagement {
    right: 14px;
    bottom: 18px;
    left: 14px;
    justify-items: end;
  }

  .journey-page .engagement-launcher {
    min-width: 138px;
    min-height: 48px;
    padding: 0 15px;
  }

  .journey-page .engagement-tray {
    position: fixed;
    right: 14px;
    bottom: 78px;
    left: 14px;
    width: auto;
    max-height: min(78vh, 560px);
    overflow-y: auto;
  }

  .journey-page .journey-path {
    padding-left: 30px;
  }
}

/* ===== CUSTOMER JOURNEY HERO PAGE ===== */
.journey-page {
  overflow-x: hidden;
  background: #fff;
}

.journey-page .journey-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  max-width: none;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .86);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.journey-page .nav-primary-actions {
  margin-left: auto;
}

.journey-main {
  background: #fff;
}

.journey-hero-section {
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, #fbfaf7 100%);
  padding: clamp(76px, 8vw, 112px) 0 clamp(86px, 9vw, 132px);
}

.journey-hero-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.journey-page .login-journey {
  border: 0;
  background: transparent;
  padding: 0;
  overflow-x: auto;
  box-shadow: none;
}

.journey-page .login-journey::before {
  display: none;
}

.journey-page .login-journey__header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.journey-page .login-journey__header h2 {
  color: #211d18;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 540;
  letter-spacing: 0;
}

.journey-page .login-journey__header p:not(.section-kicker) {
  max-width: 560px;
  margin: 20px auto 0;
  color: #70685d;
  font-size: 16px;
  line-height: 1.7;
}

.journey-page .journey-progress-summary {
  width: min(760px, 100%);
  margin: 0 auto 52px;
  grid-template-columns: 1fr;
  border-width: 0 0 1px;
  border-color: rgba(154, 130, 92, .24);
  background: transparent;
  padding: 0 0 28px;
  box-shadow: none;
  text-align: center;
}

.journey-page .journey-progress-summary > span {
  justify-self: center;
}

.journey-page .journey-progress-summary > strong {
  font-size: clamp(30px, 3.2vw, 46px);
}

.journey-page .journey-progress-bar {
  width: min(440px, 100%);
  justify-self: center;
  background: rgba(154, 130, 92, .2);
}

.journey-page .journey-progress-summary > p {
  justify-self: center;
  font-size: 13px;
}

.journey-page .journey-path {
  min-width: 2660px;
  padding: 18px 0 20px;
}

.journey-page .journey-step-card {
  min-height: 238px;
  border-color: rgba(154, 130, 92, .2);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(58, 42, 19, .045);
}

.journey-page .journey-step-card.is-current {
  background: #fffdf8;
}

.journey-page .journey-cta {
  justify-content: center;
  margin-top: 40px;
}

.journey-page .journey-cta a {
  min-height: 42px;
  border: 1px solid rgba(154, 130, 92, .34);
  border-radius: 0;
  background: transparent;
  color: #4b3823;
  padding: 0 18px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-page .journey-cta a:hover {
  border-color: rgba(75, 56, 35, .44);
  background: rgba(246, 239, 226, .48);
}

@media (max-width: 1120px) {
  .journey-hero-section {
    min-height: 0;
  }

  .journey-hero-inner {
    width: min(100% - 40px, 760px);
  }

  .journey-page .login-journey {
    overflow: visible;
  }

  .journey-page .journey-progress-summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .journey-page .journey-progress-summary > span,
  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-bar {
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .journey-page .journey-nav {
    min-height: 76px;
    height: 76px;
  }

  .journey-page .nav-links {
    display: none;
  }

  .journey-page .nav-engage-action {
    min-height: 36px;
    padding: 0 13px;
    font-size: 10px;
  }

  .journey-hero-section {
    padding: 58px 0 76px;
  }

  .journey-hero-inner {
    width: min(100% - 32px, 560px);
  }

  .journey-page .login-journey__header {
    margin-bottom: 24px;
    text-align: left;
  }

  .journey-page .login-journey__header h2 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    margin-left: 0;
  }

  .journey-page .journey-progress-summary {
    margin-bottom: 34px;
    padding-bottom: 24px;
  }

  .journey-page .journey-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== FOUR SEASONS-STYLE MY JOURNEY GRID ===== */
.journey-page .journey-hero-section {
  min-height: 0;
  background: #fff;
  padding: clamp(84px, 9vw, 132px) 0 clamp(70px, 8vw, 110px);
}

.journey-page .journey-hero-inner {
  width: min(1180px, calc(100% - 64px));
}

.journey-page .journey-overview {
  overflow: visible;
}

.journey-page .login-journey__header {
  max-width: 720px;
  margin: 0 auto 34px;
}

.journey-page .login-journey__header h1 {
  margin: 8px 0 0;
  color: #211d18;
  font-family: var(--display-font);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 540;
  line-height: .92;
  letter-spacing: 0;
}

.journey-page .login-journey__header .section-kicker {
  justify-content: center;
  margin: 0;
}

.journey-page .journey-progress-summary {
  width: min(680px, 100%);
  margin-bottom: 46px;
  border-bottom: 0;
  padding-bottom: 0;
}

.journey-page .journey-progress-summary > small {
  display: block;
  justify-self: center;
  max-width: 460px;
  margin-top: 4px;
  color: #7b7469;
  font-size: 12px;
  line-height: 1.55;
}

.journey-milestone-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.journey-milestone-grid::before,
.journey-milestone-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
}

.journey-milestone-grid::before {
  right: 0;
  background: rgba(154, 130, 92, .26);
}

.journey-milestone-grid::after {
  width: 12.5%;
  background: #9a7539;
  transform: scaleX(0);
  transform-origin: left;
}

.journey-page.is-journey-revealed .journey-milestone-grid::after {
  animation: journeyProgressFill .9s ease forwards;
}

.journey-milestone-card {
  position: relative;
  display: grid;
  min-height: 276px;
  align-content: start;
  border: 1px solid rgba(154, 130, 92, .22);
  background: #fff;
  padding: 22px;
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}

.journey-milestone-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 130, 92, .38);
  background: #fffdf8;
}

.journey-milestone-card.is-current {
  border-color: rgba(154, 117, 57, .58);
}

.journey-milestone-card.is-upcoming {
  opacity: .84;
}

.journey-milestone-card.is-complete::after {
  content: "✓";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #9a7539;
  font-size: 15px;
}

.milestone-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journey-page .journey-milestone-card .journey-node {
  position: static;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: rgba(154, 117, 57, .78);
  font-family: var(--display-font);
  font-size: 25px;
  line-height: 1;
}

.journey-page .journey-milestone-card .journey-status {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(154, 130, 92, .22);
  color: rgba(58, 50, 40, .72);
  padding: 0 8px;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.journey-page .journey-milestone-card.is-current .journey-status {
  border-color: rgba(154, 117, 57, .46);
  color: #6e4f1f;
}

.journey-page .journey-milestone-card .journey-icon {
  width: 42px;
  height: 42px;
  margin: 30px 0 22px;
  color: rgba(91, 68, 34, .72);
}

.journey-page .journey-milestone-card .journey-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.35;
}

.journey-milestone-card h3 {
  max-width: 210px;
  margin: 0;
  color: #25211b;
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 560;
  line-height: 1.05;
}

.journey-page .journey-milestone-card .journey-meta {
  margin-top: 16px;
  font-size: 11px;
}

.journey-milestone-card p {
  margin: 10px 0 0;
  color: #70685d;
  font-size: 13px;
  line-height: 1.55;
}

.milestone-gap {
  align-self: end;
  margin-top: 18px;
  color: rgba(91, 68, 34, .58);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .journey-milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .journey-page .journey-hero-section {
    padding: 54px 0 68px;
  }

  .journey-page .journey-hero-inner {
    width: min(100% - 32px, 560px);
  }

  .journey-page .nav-login-action span {
    display: none;
  }

  .journey-page .login-journey__header {
    text-align: left;
  }

  .journey-page .login-journey__header .section-kicker {
    justify-content: flex-start;
  }

  .journey-page .login-journey__header h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .journey-page .journey-progress-summary {
    text-align: left;
  }

  .journey-page .journey-progress-summary > span,
  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-summary > small,
  .journey-page .journey-progress-bar {
    justify-self: stretch;
  }

  .journey-milestone-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journey-milestone-card {
    min-height: 0;
    padding: 20px;
  }

}

/* ===== CUSTOMER JOURNEY DENSITY REFINEMENT ===== */
.journey-page,
.journey-main,
.journey-page .journey-hero-section {
  background: #fff;
}

.journey-page .journey-hero-section {
  padding: clamp(46px, 5vw, 72px) 0 clamp(42px, 5vw, 70px);
}

.journey-page .login-journey__header {
  margin-bottom: 18px;
}

.journey-page .login-journey__header h1 {
  font-size: clamp(52px, 5vw, 82px);
  line-height: .96;
}

.journey-page .login-journey__header p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(112, 104, 93, .78);
}

.journey-page .journey-progress-summary {
  width: min(720px, 100%);
  margin-bottom: 30px;
  gap: 9px;
}

.journey-page .journey-progress-summary > strong {
  font-size: clamp(25px, 2.4vw, 34px);
}

.journey-page .journey-progress-summary > p {
  font-size: 12px;
}

.journey-page .journey-progress-summary > small {
  margin-top: 0;
  font-size: 11.5px;
}

.journey-page .journey-progress-bar {
  width: min(520px, 100%);
}

.journey-milestone-grid {
  gap: 14px;
  padding-top: 26px;
}

.journey-milestone-grid::before,
.journey-milestone-grid::after {
  top: 8px;
}

.journey-milestone-card {
  min-height: 218px;
  padding: 17px;
}

.journey-milestone-card[data-gap]::before {
  content: attr(data-gap);
  position: absolute;
  top: -24px;
  left: 0;
  color: rgba(91, 68, 34, .5);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .14em;
}

.journey-page .journey-milestone-card .journey-node {
  font-size: 21px;
}

.journey-page .journey-milestone-card .journey-status {
  min-height: 21px;
  padding: 0 7px;
  font-size: 8px;
}

.journey-page .journey-milestone-card .journey-icon {
  width: 30px;
  height: 30px;
  margin: 18px 0 16px;
}

.journey-page .journey-milestone-card .journey-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.3;
}

.journey-milestone-card h3 {
  max-width: 190px;
  font-size: 21px;
}

.journey-page .journey-milestone-card .journey-meta {
  margin-top: 12px;
  font-size: 10.5px;
}

.journey-milestone-card p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.48;
}

.milestone-gap {
  margin-top: 12px;
  font-size: 9px;
}

@media (max-width: 1020px) {
  .journey-page .journey-hero-section {
    padding-top: 42px;
  }

  .journey-milestone-card[data-gap]::before {
    display: none;
  }

}

@media (max-width: 720px) {
  .journey-page .journey-hero-section {
    padding: 34px 0 54px;
  }

  .journey-page .login-journey__header h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    margin-top: 10px;
    font-size: 14px;
  }

  .journey-page .journey-progress-summary {
    margin-bottom: 24px;
  }

  .journey-milestone-grid {
    padding-top: 22px;
  }

  .journey-milestone-grid::before,
  .journey-milestone-grid::after {
    left: 13px;
    top: 22px;
    width: 1px;
    height: calc(100% - 22px);
  }

  .journey-milestone-grid::before {
    right: auto;
  }

  .journey-milestone-grid::after {
    height: 72px;
    transform: scaleY(0);
    transform-origin: top;
  }

  .journey-page.is-journey-revealed .journey-milestone-grid::after {
    animation: journeyLineFillMobile .9s ease forwards;
  }

  .journey-milestone-card {
    margin-left: 30px;
  }

}

/* ===== CUSTOMER LOGIN WHITE + COMPACT STATE CARDS ===== */
.journey-page,
.journey-main,
.journey-page .journey-nav,
.journey-page .journey-hero-section,
.journey-page .journey-overview {
  background: #fff;
}

.journey-page .journey-nav {
  border-bottom: 1px solid rgba(0, 0, 0, .055);
}

.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action {
  color: rgba(34, 30, 24, .76);
  font-weight: 420;
  letter-spacing: .055em;
}

.journey-page .nav-login-action {
  gap: 6px;
  margin-left: auto;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  text-transform: uppercase;
}

.journey-page .nav-login-action::after {
  display: none;
}

.journey-page .nav-login-action:hover {
  color: #211d18;
  background: transparent;
}

.journey-page .nav-login-action svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.35;
}

.journey-milestone-card {
  min-height: 152px;
  padding: 12px;
  box-shadow: none;
}

.journey-page .journey-milestone-card .journey-node {
  font-size: 17px;
}

.journey-page .journey-milestone-card .journey-status {
  min-height: 18px;
  padding: 0 6px;
  font-size: 7.5px;
  letter-spacing: .11em;
}

.journey-page .journey-milestone-card .journey-icon {
  width: 24px;
  height: 24px;
  margin: 12px 0 10px;
}

.journey-page .journey-milestone-card .journey-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.2;
}

.journey-milestone-card h3 {
  max-width: 170px;
  font-size: 17px;
  line-height: 1.08;
}

.journey-page .journey-milestone-card .journey-meta {
  margin-top: 8px;
  font-size: 9.5px;
}

.journey-milestone-card p {
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1.4;
}

.milestone-gap {
  margin-top: 8px;
  font-size: 8px;
}

.journey-milestone-card.is-complete {
  border-color: rgba(154, 130, 92, .42);
  background:
    linear-gradient(180deg, #fbf7ef 0%, #f3ecdf 100%);
  color: #332b22;
}

.journey-milestone-card.is-complete .journey-node,
.journey-milestone-card.is-complete .journey-icon,
.journey-milestone-card.is-complete h3,
.journey-milestone-card.is-complete .journey-meta span:first-child,
.journey-milestone-card.is-complete p,
.journey-milestone-card.is-complete .milestone-gap {
  color: #332b22;
}

.journey-milestone-card.is-complete .journey-status {
  border-color: rgba(154, 130, 92, .34);
  color: rgba(91, 68, 34, .78);
}

.journey-milestone-card.is-complete::after {
  right: 14px;
  bottom: 12px;
  color: #9a7539;
}

.journey-milestone-card.is-current {
  border-color: rgba(154, 117, 57, .72);
  background: #fffdf8;
  box-shadow:
    0 18px 36px rgba(64, 45, 18, .16),
    0 1px 0 rgba(255, 255, 255, .95) inset;
  transform: translateY(-2px);
}

.journey-milestone-card.is-current:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(64, 45, 18, .18),
    0 1px 0 rgba(255, 255, 255, .96) inset;
}

.journey-milestone-card.is-upcoming,
.journey-milestone-card.is-optional {
  border-style: dashed;
  border-color: rgba(154, 130, 92, .26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(250, 247, 241, .52));
  opacity: .72;
}

.journey-milestone-card.is-upcoming:hover,
.journey-milestone-card.is-optional:hover {
  border-color: rgba(154, 130, 92, .4);
  background: #fffdf8;
  opacity: .9;
}

@media (max-width: 720px) {
  .journey-page .nav-login-action span {
    display: inline;
  }

  .journey-milestone-card {
    min-height: 0;
    padding: 14px;
  }
}

/* ===== LOGIN JOURNEY SPACING + CONNECTOR LINE ===== */
.journey-milestone-grid {
  --journey-card-height: 166px;
  --journey-row-gap: 34px;
  --journey-line-top: 115px;
  gap: 34px 30px;
  grid-auto-rows: var(--journey-card-height);
  padding-top: 32px;
}

.journey-milestone-grid::before,
.journey-milestone-grid::after {
  top: var(--journey-line-top);
  z-index: 0;
  transform: translateY(-50%);
}

.journey-milestone-grid::before {
  right: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(154, 130, 92, .34) 8%, rgba(154, 130, 92, .34) 92%, transparent 100%);
  box-shadow: 0 calc(var(--journey-card-height) + var(--journey-row-gap)) 0 rgba(154, 130, 92, .22);
}

.journey-milestone-grid::after {
  width: 13%;
  transform: translateY(-50%) scaleX(0);
}

.journey-page.is-journey-revealed .journey-milestone-grid::after {
  animation: journeyProgressFillCentered .9s ease forwards;
}

@keyframes journeyProgressFillCentered {
  to { transform: translateY(-50%) scaleX(1); }
}

.journey-milestone-card {
  z-index: 1;
  min-height: var(--journey-card-height);
  padding: 14px;
}

.journey-milestone-card[data-gap]::before {
  top: 50%;
  left: -25px;
  z-index: 2;
  min-width: 44px;
  background: #fff;
  padding: 4px 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

@media (max-width: 1020px) {
  .journey-milestone-grid {
    --journey-card-height: 168px;
    --journey-row-gap: 28px;
    --journey-line-top: 116px;
    gap: 28px 24px;
  }

  .journey-milestone-card[data-gap]::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .journey-milestone-grid {
    gap: 18px;
    grid-auto-rows: auto;
    padding-top: 22px;
  }

  .journey-milestone-grid::before,
  .journey-milestone-grid::after {
    top: 22px;
    box-shadow: none;
    transform: none;
  }

  .journey-page.is-journey-revealed .journey-milestone-grid::after {
    animation: journeyLineFillMobile .9s ease forwards;
  }

  .journey-milestone-card {
    min-height: 0;
    padding: 16px;
  }
}

/* ===== CUSTOMER LOGIN VERTICAL LUXURY TIMELINE ===== */
.journey-page .journey-hero-section {
  background: #fff;
  padding: clamp(44px, 5vw, 70px) 0 clamp(54px, 6vw, 86px);
}

.journey-page .journey-hero-inner {
  width: min(1080px, calc(100% - 48px));
}

.journey-page .login-journey__header {
  margin-bottom: 18px;
}

.journey-page .journey-progress-summary {
  margin-bottom: 34px;
}

.journey-vertical-timeline {
  position: relative;
  display: grid;
  gap: 6px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 8px 0 4px;
}

.journey-vertical-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(154, 130, 92, .08), rgba(154, 130, 92, .5), rgba(154, 130, 92, .12));
  transform: translateX(-50%);
}

.journey-timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  min-height: 124px;
  align-items: center;
}

.journey-timeline-row::before {
  content: "";
  grid-column: 2;
  justify-self: center;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(154, 130, 92, .52);
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.journey-timeline-row.is-complete::before {
  background: #c8a568;
  box-shadow: 0 0 0 5px rgba(200, 165, 104, .12);
}

.journey-timeline-row.is-current::before {
  border-color: rgba(154, 117, 57, .92);
  box-shadow: 0 0 0 7px rgba(154, 117, 57, .12);
}

.journey-timeline-content {
  display: grid;
  grid-template-columns: 38px 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(154, 130, 92, .16);
  padding: 18px 0;
}

.journey-timeline-row:nth-child(odd) .journey-timeline-content {
  grid-column: 1;
  text-align: right;
}

.journey-timeline-row:nth-child(even) .journey-timeline-content {
  grid-column: 3;
}

.journey-timeline-row:nth-child(odd) .journey-timeline-content {
  grid-template-columns: minmax(0, 1fr) 34px 38px;
}

.journey-timeline-row:nth-child(odd) .journey-node {
  grid-column: 3;
}

.journey-timeline-row:nth-child(odd) .journey-icon {
  grid-column: 2;
}

.journey-timeline-row:nth-child(odd) .journey-timeline-content > div {
  grid-column: 1;
  grid-row: 1;
}

.journey-timeline-row .journey-node {
  color: rgba(154, 117, 57, .78);
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1;
}

.journey-timeline-row .journey-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(91, 68, 34, .68);
}

.journey-timeline-row .journey-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-timeline-row h3 {
  margin: 0;
  color: #25211b;
  font-family: var(--display-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 540;
  line-height: 1.02;
}

.journey-timeline-row .journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 10px;
  color: #82796e;
  font-size: 11px;
  line-height: 1.4;
}

.journey-timeline-row:nth-child(odd) .journey-meta {
  justify-content: flex-end;
}

.journey-timeline-row p {
  margin: 7px 0 0;
  color: #756e64;
  font-size: 13px;
  line-height: 1.55;
}

.journey-timeline-row .journey-status {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  border: 1px solid rgba(154, 130, 92, .2);
  color: rgba(91, 68, 34, .66);
  padding: 0 7px;
  font-size: 8px;
  font-weight: 740;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.journey-timeline-row.is-complete .journey-status {
  border-color: transparent;
  color: #9a7539;
}

.journey-timeline-row.is-complete .journey-status::before {
  content: "✓";
  margin-right: 5px;
  color: #9a7539;
}

.journey-timeline-row.is-current .journey-status {
  border-color: rgba(154, 117, 57, .42);
  color: #7a5822;
  background: rgba(251, 247, 239, .72);
}

.journey-timeline-row.is-upcoming .journey-status {
  color: rgba(46, 40, 32, .5);
}

.journey-timeline-row.is-optional .journey-status {
  border-style: solid;
  color: rgba(46, 40, 32, .56);
}

@media (max-width: 760px) {
  .journey-page .journey-hero-inner {
    width: min(100% - 32px, 560px);
  }

  .journey-vertical-timeline {
    gap: 0;
    margin-top: 4px;
    padding-left: 34px;
  }

  .journey-vertical-timeline::before {
    left: 8px;
    transform: none;
  }

  .journey-timeline-row {
    display: block;
    min-height: 0;
    padding-bottom: 22px;
  }

  .journey-timeline-row::before {
    position: absolute;
    top: 23px;
    left: -31px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content {
    display: grid;
    grid-template-columns: 34px 30px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
    text-align: left;
  }

  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content > div {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-timeline-row:nth-child(odd) .journey-meta {
    justify-content: flex-start;
  }
}

/* ===== CLIKHOME PRIVATE ITINERARY PAGE ===== */
.journey-page .launch-nav {
  width: 100%;
  max-width: none;
}

.journey-page .journey-hero-section {
  padding: clamp(38px, 4.5vw, 64px) 0 clamp(58px, 6vw, 90px);
}

.journey-page .login-journey__header h1 {
  font-size: clamp(52px, 5.4vw, 86px);
}

.journey-page .journey-progress-summary {
  margin-bottom: 28px;
}

.journey-vertical-timeline {
  gap: 0;
  width: min(960px, 100%);
}

.journey-gap-marker {
  position: relative;
  z-index: 2;
  justify-self: center;
  margin: -5px 0;
  background: #fff;
  color: rgba(91, 68, 34, .56);
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-timeline-row {
  min-height: 132px;
}

.journey-timeline-row:nth-child(odd) .journey-timeline-content,
.journey-timeline-row:nth-child(even) .journey-timeline-content {
  grid-column: auto;
}

.journey-timeline-row .journey-node,
.journey-timeline-row .journey-icon,
.journey-timeline-row .journey-timeline-content > div {
  grid-column: auto;
  grid-row: auto;
}

.journey-timeline-row .journey-meta {
  justify-content: flex-start;
}

.journey-timeline-row:nth-of-type(odd) .journey-timeline-content {
  grid-column: 1;
  grid-template-columns: minmax(0, 1fr) 34px 38px;
  text-align: right;
}

.journey-timeline-row:nth-of-type(even) .journey-timeline-content {
  grid-column: 3;
  grid-template-columns: 38px 34px minmax(0, 1fr);
  text-align: left;
}

.journey-timeline-row:nth-of-type(odd) .journey-node {
  grid-column: 3;
}

.journey-timeline-row:nth-of-type(odd) .journey-icon {
  grid-column: 2;
}

.journey-timeline-row:nth-of-type(odd) .journey-timeline-content > div {
  grid-column: 1;
  grid-row: 1;
}

.journey-timeline-row:nth-of-type(even) .journey-node,
.journey-timeline-row:nth-of-type(even) .journey-icon,
.journey-timeline-row:nth-of-type(even) .journey-timeline-content > div {
  grid-column: auto;
  grid-row: auto;
}

.journey-timeline-row:nth-of-type(odd) .journey-meta {
  justify-content: flex-end;
}

.journey-timeline-row:nth-of-type(even) .journey-meta {
  justify-content: flex-start;
}

.journey-row-action {
  display: inline-block;
  margin-top: 10px;
  color: rgba(91, 68, 34, .72);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.journey-moments-section,
.journey-services-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  background: #fff;
}

.journey-moments-section {
  padding: clamp(72px, 8vw, 112px) 0 clamp(58px, 7vw, 94px);
}

.journey-section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.journey-section-heading h2 {
  max-width: 680px;
  margin: 8px 0 0;
  color: #25211b;
  font-family: var(--display-font);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 540;
  line-height: 1;
}

.journey-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.journey-moment-grid article {
  display: grid;
  align-content: start;
  background: #fff;
}

.journey-moment-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f7f2ea;
}

.journey-moment-grid div {
  padding-top: 22px;
}

.journey-moment-grid span {
  color: #8a755d;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-moment-grid h3 {
  margin: 8px 0 8px;
  color: #25211b;
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 540;
  line-height: 1.02;
}

.journey-moment-grid p {
  margin: 0;
  color: #70685d;
  font-size: 14px;
  line-height: 1.65;
}

.journey-services-section {
  padding: 0 0 clamp(64px, 7vw, 104px);
}

.journey-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(154, 130, 92, .2);
  border-bottom: 1px solid rgba(154, 130, 92, .2);
}

.journey-service-grid article {
  min-height: 210px;
  border-right: 1px solid rgba(154, 130, 92, .16);
  padding: 28px 24px;
}

.journey-service-grid article:last-child {
  border-right: 0;
}

.journey-service-grid svg {
  width: 34px;
  height: 34px;
  color: rgba(91, 68, 34, .7);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-service-grid h3 {
  margin: 24px 0 9px;
  color: #312a22;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.journey-service-grid p {
  margin: 0;
  color: #70685d;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .journey-moment-grid {
    grid-template-columns: 1fr;
  }

  .journey-moment-grid img {
    aspect-ratio: 16 / 10;
  }

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

  .journey-service-grid article:nth-child(2) {
    border-right: 0;
  }

  .journey-service-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(154, 130, 92, .16);
  }
}

@media (max-width: 760px) {
  .journey-page .journey-hero-section {
    padding-top: 34px;
  }

  .journey-vertical-timeline {
    padding-left: 34px;
  }

  .journey-gap-marker {
    justify-self: start;
    margin: -2px 0 10px;
    padding-left: 0;
  }

  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    grid-template-columns: 34px 30px minmax(0, 1fr);
    text-align: left;
  }

  .journey-timeline-row:nth-of-type(odd) .journey-node,
  .journey-timeline-row:nth-of-type(odd) .journey-icon,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content > div {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-timeline-row:nth-of-type(odd) .journey-meta {
    justify-content: flex-start;
  }

  .journey-moments-section,
  .journey-services-section {
    width: min(100% - 32px, 560px);
  }

  .journey-moments-section {
    padding: 52px 0 48px;
  }

  .journey-section-heading {
    justify-items: start;
    text-align: left;
  }

  .journey-service-grid {
    grid-template-columns: 1fr;
  }

  .journey-service-grid article,
  .journey-service-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 130, 92, .16);
    padding: 24px 0;
  }

  .journey-service-grid article:last-child {
    border-bottom: 0;
  }
}

/* ===== CUSTOMER JOURNEY GOLD HEADING REFINEMENT ===== */
.journey-page .login-journey__header h1 {
  color: #9a7539;
}

.journey-page .login-journey__header .section-kicker,
.journey-page .journey-progress-summary > span {
  color: rgba(154, 117, 57, .82);
}

/* ===== CUSTOMER JOURNEY EDITORIAL TYPOGRAPHY ===== */
.journey-page {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action,
.journey-page .nav-engage-action {
  font-family: var(--font-meta);
  font-weight: 400;
  letter-spacing: .075em;
}

.journey-page .login-journey__header {
  margin-bottom: 26px;
}

.journey-page .login-journey__header .section-kicker,
.journey-page .journey-progress-summary > span,
.journey-gap-marker,
.journey-row-action,
.journey-moment-grid span,
.journey-service-grid h3 {
  font-family: var(--font-meta);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.journey-page .login-journey__header .section-kicker {
  margin-bottom: 12px;
  color: rgba(154, 117, 57, .78);
  font-size: 10px;
}

.journey-page .login-journey__header h1 {
  color: #9a7539;
  font-family: var(--font-display);
  font-size: clamp(56px, 5.8vw, 90px);
  font-weight: 400;
  letter-spacing: .012em;
  line-height: .88;
}

.journey-page .login-journey__header p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(64, 58, 49, .72);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.78;
}

.journey-page .journey-progress-summary {
  gap: 12px;
  margin-bottom: 40px;
}

.journey-page .journey-progress-summary > span {
  color: rgba(154, 117, 57, .72);
  font-size: 10px;
}

.journey-page .journey-progress-summary > strong {
  color: #2d2821;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
}

.journey-page .journey-progress-summary > p,
.journey-page .journey-progress-summary > small {
  color: rgba(70, 63, 54, .68);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
}

.journey-timeline-row .journey-node {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

.journey-timeline-row h3,
.journey-section-heading h2,
.journey-moment-grid h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .006em;
}

.journey-timeline-row h3 {
  color: #231f19;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: .98;
}

.journey-timeline-row .journey-meta {
  gap: 9px 12px;
  margin-top: 13px;
  color: rgba(46, 40, 32, .58);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.journey-timeline-row .journey-status {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
}

.journey-timeline-row p {
  margin-top: 10px;
  color: rgba(80, 73, 63, .7);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
}

.journey-row-action {
  margin-top: 13px;
  color: rgba(122, 88, 34, .72);
  font-size: 9.5px;
}

.journey-section-heading h2 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .94;
}

.journey-moment-grid h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.journey-moment-grid p,
.journey-service-grid p {
  color: rgba(80, 73, 63, .7);
  font-weight: 300;
}

@media (max-width: 760px) {
  .journey-page .login-journey__header {
    margin-bottom: 22px;
  }

  .journey-page .login-journey__header h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .journey-page .journey-progress-summary {
    margin-bottom: 32px;
  }

  .journey-timeline-row h3 {
    font-size: clamp(26px, 9vw, 36px);
  }
}

/* ===== LANDING PAGE EDITORIAL TYPOGRAPHY UNIFICATION ===== */
:root {
  --color-champagne: #9a7539;
  --color-ink: #25211b;
  --color-muted: rgba(80, 73, 63, .7);
}

.hospitality-home {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action,
.hospitality-home .nav-engage-action,
.hospitality-home .section-anchor-bar a,
.hospitality-home .scroll-discover,
.hospitality-home .hero-stats-strip span,
.hospitality-home .section-kicker,
.hospitality-home .text-link,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.hospitality-home .journey-step h3,
.hospitality-home .private-journey__actions a,
.hospitality-home .luxury-footer nav a,
.hospitality-home .luxury-footer__contact,
.hospitality-home .engagement-launcher span,
.hospitality-home .engagement-launcher small,
.hospitality-home .engagement-close,
.hospitality-home .engagement-tray strong {
  font-family: var(--font-meta);
  text-transform: uppercase;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action {
  font-weight: 400;
  letter-spacing: .075em;
}

.hospitality-home .nav-engage-action,
.hospitality-home .section-anchor-bar a,
.hospitality-home .scroll-discover,
.hospitality-home .hero-stats-strip span,
.hospitality-home .section-kicker,
.hospitality-home .text-link,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.hospitality-home .private-journey__actions a,
.hospitality-home .luxury-footer nav a,
.hospitality-home .luxury-footer__contact {
  font-weight: 500;
  letter-spacing: .18em;
}

.hospitality-home .hero-stats-strip span,
.hospitality-home .section-kicker,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.hospitality-home .text-link {
  color: rgba(154, 117, 57, .78);
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2,
.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3,
.hospitality-home .quote-block blockquote,
.hospitality-home .luxury-footer__brand,
.hospitality-home .luxury-footer nav h2,
.hospitality-home .engagement-tray-header span {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .006em;
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2 {
  color: var(--color-ink);
  line-height: .96;
}

.hospitality-home .hero-stats-strip strong,
.hospitality-home .journey-step__number {
  color: var(--color-champagne);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3 {
  color: #231f19;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
}

.hospitality-home .private-journey__heading p,
.hospitality-home .journey-step p,
.hospitality-home .residence-card p,
.hospitality-home .privilege-grid p,
.hospitality-home .location-copy p,
.hospitality-home .neighbourhood-grid p,
.hospitality-home .story-editorial-block p,
.hospitality-home .final-concierge-section p,
.hospitality-home .engagement-tray-header small,
.hospitality-home .engagement-tray small {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.72;
}

.hospitality-home .journey-step h3,
.hospitality-home .luxury-footer nav a,
.hospitality-home .engagement-tray strong {
  font-weight: 500;
  letter-spacing: .14em;
}

.hospitality-home .quote-block blockquote {
  font-size: clamp(36px, 5.4vw, 74px);
  font-weight: 400;
  line-height: 1.08;
}

.hospitality-home .luxury-footer__brand {
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
}

.hospitality-home .luxury-footer nav h2 {
  color: rgba(239, 224, 194, .9);
  font-size: 24px;
  font-style: italic;
}

.hospitality-home .engagement-launcher span {
  font-weight: 500;
  letter-spacing: .18em;
}

.hospitality-home .engagement-launcher small {
  font-weight: 400;
  letter-spacing: .22em;
}

.hospitality-home .engagement-tray-header span {
  font-size: 34px;
  line-height: .98;
}

/* ===== FOUR SEASONS-STYLE SHARED TYPOGRAPHY SYSTEM ===== */
:root {
  --font-display-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-meta: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-champagne: #9a7539;
  --color-ink: #211d18;
  --color-muted: rgba(74, 66, 56, .72);
  --color-divider: rgba(154, 130, 92, .2);
}

.hospitality-home,
.journey-page {
  color: var(--color-ink);
  font-family: var(--font-display-sans);
  font-weight: 300;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hospitality-home .section-kicker,
.journey-page .section-kicker,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.journey-page .journey-moment-grid span {
  color: rgba(154, 117, 57, .84);
  font-family: var(--font-editorial-serif);
  font-size: clamp(17px, 1.45vw, 22px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: none;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action,
.hospitality-home .nav-engage-action,
.hospitality-home .section-anchor-bar a,
.hospitality-home .hero-stats-strip span,
.hospitality-home .scroll-discover,
.hospitality-home .text-link,
.hospitality-home .journey-step h3,
.hospitality-home .private-journey__actions a,
.hospitality-home .luxury-footer nav a,
.hospitality-home .luxury-footer__contact,
.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action,
.journey-page .nav-engage-action,
.journey-page .journey-timeline-row .journey-meta,
.journey-page .journey-timeline-row .journey-status,
.journey-page .journey-gap-marker,
.journey-page .journey-row-action,
.journey-page .journey-service-grid h3 {
  font-family: var(--font-meta);
  font-style: normal;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action,
.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action {
  color: rgba(33, 29, 24, .78);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .11em;
}

.hospitality-home .nav-engage-action,
.journey-page .nav-engage-action {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2,
.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3,
.hospitality-home .luxury-footer__brand,
.journey-page .login-journey__header h1,
.journey-page .journey-section-heading h2,
.journey-page .journey-timeline-row h3,
.journey-page .journey-moment-grid h3 {
  color: var(--color-ink);
  font-family: var(--font-display-sans);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: .95;
}

.journey-page .login-journey__header h1 {
  color: var(--color-champagne);
  font-size: clamp(52px, 5.4vw, 86px);
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2 {
  font-size: clamp(42px, 5.2vw, 78px);
}

.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3,
.journey-page .journey-moment-grid h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.journey-page .journey-timeline-row h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.hospitality-home .hero-stats-strip strong,
.hospitality-home .journey-step__number,
.journey-page .journey-timeline-row .journey-node {
  color: var(--color-champagne);
  font-family: var(--font-editorial-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .02em;
}

.hospitality-home .hero-stats-strip span,
.hospitality-home .section-anchor-bar a,
.journey-page .journey-timeline-row .journey-meta,
.journey-page .journey-gap-marker {
  color: rgba(33, 29, 24, .72);
}

.journey-page .journey-timeline-row .journey-meta span:not(.journey-status) {
  color: rgba(33, 29, 24, .64);
  font-weight: 300;
  letter-spacing: .08em;
}

.hospitality-home .private-journey__heading p,
.hospitality-home .journey-step p,
.hospitality-home .residence-card p,
.hospitality-home .privilege-grid p,
.hospitality-home .location-copy p,
.hospitality-home .neighbourhood-grid p,
.hospitality-home .story-editorial-block p,
.hospitality-home .final-concierge-section p,
.journey-page .login-journey__header p:not(.section-kicker),
.journey-page .journey-progress-summary > p,
.journey-page .journey-progress-summary > small,
.journey-page .journey-timeline-row p,
.journey-page .journey-moment-grid p,
.journey-page .journey-service-grid p {
  color: var(--color-muted);
  font-family: var(--font-editorial-serif);
  font-size: clamp(18px, 1.55vw, 24px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .004em;
  line-height: 1.55;
}

.journey-page .journey-progress-summary > span {
  color: rgba(154, 117, 57, .86);
  font-family: var(--font-editorial-serif);
  font-size: clamp(17px, 1.45vw, 22px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
}

.journey-page .journey-progress-summary > strong {
  color: var(--color-ink);
  font-family: var(--font-display-sans);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 300;
  letter-spacing: -.005em;
  line-height: 1;
}

.hospitality-home .quote-block blockquote {
  color: var(--color-ink);
  font-family: var(--font-editorial-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .002em;
}

.hospitality-home .luxury-footer nav h2 {
  font-family: var(--font-editorial-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
}

.hospitality-home .engagement-tray-header span,
.journey-page .engagement-tray-header span {
  color: var(--color-ink);
  font-family: var(--font-display-sans);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -.01em;
}

.hospitality-home .engagement-tray-header small,
.hospitality-home .engagement-tray small,
.journey-page .engagement-tray-header small,
.journey-page .engagement-tray small {
  color: var(--color-muted);
  font-family: var(--font-editorial-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.hospitality-home .engagement-tray strong,
.journey-page .engagement-tray strong {
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hospitality-home .section-heading-row,
.journey-page .journey-progress-summary,
.journey-page .journey-timeline-content,
.hospitality-home .luxury-footer__columns,
.journey-page .journey-service-grid {
  border-color: var(--color-divider);
}

@media (max-width: 760px) {
  .hospitality-home .section-heading-row h2,
  .hospitality-home .location-copy h2,
  .hospitality-home .amenities-editorial-section h2,
  .hospitality-home .story-editorial-block h2,
  .hospitality-home .final-concierge-section h2,
  .hospitality-home .private-journey__heading h2,
  .journey-page .login-journey__header h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .journey-step p,
  .hospitality-home .residence-card p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p,
  .journey-page .login-journey__header p:not(.section-kicker),
  .journey-page .journey-timeline-row p,
  .journey-page .journey-moment-grid p,
  .journey-page .journey-service-grid p {
    font-size: 18px;
  }
}

/* ===== CUSTOMER JOURNEY NODE-ATTACHED STATUS LABELS ===== */
.journey-page .journey-timeline-row::after {
  content: attr(data-status);
  position: absolute;
  top: 50%;
  z-index: 3;
  display: block;
  color: rgba(154, 117, 57, .72);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-50%);
}

.journey-page .journey-timeline-row:nth-of-type(odd)::after {
  left: calc(50% + 30px);
}

.journey-page .journey-timeline-row:nth-of-type(even)::after {
  right: calc(50% + 30px);
  text-align: right;
}

.journey-page .journey-timeline-row.is-complete::after {
  content: "✓ " attr(data-status);
  color: rgba(154, 117, 57, .88);
}

.journey-page .journey-timeline-row.is-upcoming::after,
.journey-page .journey-timeline-row.is-optional::after {
  color: rgba(91, 68, 34, .48);
}

.journey-page .journey-timeline-row .journey-status {
  display: none;
}

.journey-page .journey-timeline-row .journey-meta {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .journey-page .journey-timeline-row::after,
  .journey-page .journey-timeline-row:nth-of-type(odd)::after,
  .journey-page .journey-timeline-row:nth-of-type(even)::after {
    top: 8px;
    right: auto;
    left: -30px;
    width: 92px;
    text-align: left;
    transform: translateY(-100%);
  }

  .journey-page .journey-timeline-row {
    padding-top: 10px;
  }
}

/* ===== FINAL INTERACTION + TYPE SCALE REFINEMENT ===== */
.hospitality-home .launch-nav {
  position: fixed;
  z-index: 1200;
  pointer-events: auto;
}

.hospitality-home .launch-nav::before,
.hospitality-home .launch-nav::after {
  pointer-events: none;
}

.hospitality-home .nav-brand,
.hospitality-home .nav-links,
.hospitality-home .nav-links > a,
.hospitality-home .nav-primary-actions,
.hospitality-home .nav-login-action,
.hospitality-home .nav-engage-action {
  position: relative;
  z-index: 1201;
  pointer-events: auto;
}

.hospitality-home .nav-login-action {
  display: inline-flex;
  align-items: center;
}

.hospitality-home .nav-engage-action {
  cursor: pointer;
}

.hospitality-home .floating-engagement {
  z-index: 1210;
}

.hospitality-home .engagement-tray {
  z-index: 1211;
}

.hospitality-home,
.journey-page {
  font-size: 14px;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action,
.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action {
  font-size: 10.5px;
  letter-spacing: .045em;
}

.hospitality-home .nav-engage-action,
.journey-page .nav-engage-action {
  font-size: 9px;
  letter-spacing: .08em;
}

.hospitality-home .section-anchor-bar a,
.hospitality-home .scroll-discover,
.hospitality-home .hero-stats-strip span,
.hospitality-home .text-link,
.hospitality-home .journey-step h3,
.hospitality-home .private-journey__actions a,
.hospitality-home .luxury-footer nav a,
.hospitality-home .luxury-footer__contact,
.journey-page .journey-timeline-row .journey-meta,
.journey-page .journey-timeline-row .journey-status,
.journey-page .journey-gap-marker,
.journey-page .journey-row-action,
.journey-page .journey-service-grid h3 {
  letter-spacing: .08em;
}

.hospitality-home .section-kicker,
.journey-page .section-kicker,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.journey-page .journey-moment-grid span {
  font-size: clamp(14px, 1.16vw, 18px);
  letter-spacing: .004em;
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2 {
  font-size: clamp(34px, 4.16vw, 62px);
  letter-spacing: -.006em;
}

.journey-page .login-journey__header h1 {
  font-size: clamp(42px, 4.32vw, 69px);
  letter-spacing: -.012em;
}

.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3,
.journey-page .journey-timeline-row h3,
.journey-page .journey-moment-grid h3 {
  font-size: clamp(24px, 2.4vw, 35px);
  letter-spacing: -.006em;
}

.hospitality-home .hero-stats-strip strong,
.hospitality-home .journey-step__number,
.journey-page .journey-timeline-row .journey-node {
  font-size: clamp(21px, 2.24vw, 30px);
  letter-spacing: .006em;
}

.hospitality-home .hero-stats-strip strong {
  font-size: clamp(37px, 4vw, 54px);
}

.hospitality-home .journey-step__number {
  font-size: clamp(18px, 2vw, 26px);
}

.hospitality-home .private-journey__heading p,
.hospitality-home .journey-step p,
.hospitality-home .residence-card p,
.hospitality-home .privilege-grid p,
.hospitality-home .location-copy p,
.hospitality-home .neighbourhood-grid p,
.hospitality-home .story-editorial-block p,
.hospitality-home .final-concierge-section p,
.journey-page .login-journey__header p:not(.section-kicker),
.journey-page .journey-progress-summary > p,
.journey-page .journey-progress-summary > small,
.journey-page .journey-timeline-row p,
.journey-page .journey-moment-grid p,
.journey-page .journey-service-grid p {
  font-size: clamp(14.5px, 1.24vw, 19px);
  letter-spacing: 0;
}

.journey-page .journey-progress-summary > span {
  font-size: clamp(14px, 1.16vw, 18px);
  letter-spacing: .004em;
}

.journey-page .journey-progress-summary > strong {
  font-size: clamp(22px, 2.08vw, 32px);
  letter-spacing: -.006em;
}

.hospitality-home .quote-block blockquote {
  font-size: clamp(29px, 4.32vw, 59px);
  letter-spacing: 0;
}

.hospitality-home .luxury-footer__brand {
  font-size: clamp(30px, 3.36vw, 46px);
  letter-spacing: 0;
}

.hospitality-home .luxury-footer nav h2 {
  font-size: 19px;
  letter-spacing: .004em;
}

.hospitality-home .engagement-launcher span,
.journey-page .engagement-launcher span {
  font-size: 9.5px;
  letter-spacing: .08em;
}

.hospitality-home .engagement-launcher small,
.journey-page .engagement-launcher small {
  font-size: 7px;
  letter-spacing: .1em;
}

.hospitality-home .engagement-tray-header span,
.journey-page .engagement-tray-header span {
  font-size: 26px;
  letter-spacing: -.006em;
}

.hospitality-home .engagement-tray-header small,
.hospitality-home .engagement-tray small,
.journey-page .engagement-tray-header small,
.journey-page .engagement-tray small {
  font-size: 12px;
  letter-spacing: 0;
}

.hospitality-home .engagement-tray strong,
.journey-page .engagement-tray strong {
  font-size: 9px;
  letter-spacing: .075em;
}

@media (max-width: 760px) {
  .hospitality-home .section-heading-row h2,
  .hospitality-home .location-copy h2,
  .hospitality-home .amenities-editorial-section h2,
  .hospitality-home .story-editorial-block h2,
  .hospitality-home .final-concierge-section h2,
  .hospitality-home .private-journey__heading h2,
  .journey-page .login-journey__header h1 {
    font-size: clamp(34px, 10.4vw, 51px);
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .journey-step p,
  .hospitality-home .residence-card p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p,
  .journey-page .login-journey__header p:not(.section-kicker),
  .journey-page .journey-timeline-row p,
  .journey-page .journey-moment-grid p,
  .journey-page .journey-service-grid p {
    font-size: 14.5px;
  }
}

/* ===== FINAL TYPE SCALE +10% ===== */
.hospitality-home,
.journey-page {
  font-size: 15.4px;
}

.hospitality-home .nav-brand-text,
.hospitality-home .nav-links > a,
.hospitality-home .nav-login-action,
.journey-page .nav-brand-text,
.journey-page .nav-links > a,
.journey-page .nav-login-action {
  font-size: 11.55px;
}

.hospitality-home .nav-engage-action,
.journey-page .nav-engage-action {
  font-size: 9.9px;
}

.hospitality-home .section-kicker,
.journey-page .section-kicker,
.hospitality-home .residence-card span,
.hospitality-home .privilege-grid span,
.journey-page .journey-moment-grid span {
  font-size: clamp(15.4px, 1.276vw, 19.8px);
}

.hospitality-home .section-heading-row h2,
.hospitality-home .location-copy h2,
.hospitality-home .amenities-editorial-section h2,
.hospitality-home .story-editorial-block h2,
.hospitality-home .final-concierge-section h2,
.hospitality-home .private-journey__heading h2 {
  font-size: clamp(37.4px, 4.576vw, 68.2px);
}

.journey-page .login-journey__header h1 {
  font-size: clamp(46.2px, 4.752vw, 75.9px);
}

.hospitality-home .residence-card h3,
.hospitality-home .privilege-grid h3,
.hospitality-home .neighbourhood-grid h3,
.hospitality-home .amenity-editorial-grid h3,
.journey-page .journey-timeline-row h3,
.journey-page .journey-moment-grid h3 {
  font-size: clamp(26.4px, 2.64vw, 38.5px);
}

.hospitality-home .hero-stats-strip strong,
.hospitality-home .journey-step__number,
.journey-page .journey-timeline-row .journey-node {
  font-size: clamp(23.1px, 2.464vw, 33px);
}

.hospitality-home .hero-stats-strip strong {
  font-size: clamp(40.7px, 4.4vw, 59.4px);
}

.hospitality-home .journey-step__number {
  font-size: clamp(19.8px, 2.2vw, 28.6px);
}

.hospitality-home .private-journey__heading p,
.hospitality-home .journey-step p,
.hospitality-home .residence-card p,
.hospitality-home .privilege-grid p,
.hospitality-home .location-copy p,
.hospitality-home .neighbourhood-grid p,
.hospitality-home .story-editorial-block p,
.hospitality-home .final-concierge-section p,
.journey-page .login-journey__header p:not(.section-kicker),
.journey-page .journey-progress-summary > p,
.journey-page .journey-progress-summary > small,
.journey-page .journey-timeline-row p,
.journey-page .journey-moment-grid p,
.journey-page .journey-service-grid p {
  font-size: clamp(15.95px, 1.364vw, 20.9px);
}

.journey-page .journey-progress-summary > span {
  font-size: clamp(15.4px, 1.276vw, 19.8px);
}

.journey-page .journey-progress-summary > strong {
  font-size: clamp(24.2px, 2.288vw, 35.2px);
}

.hospitality-home .quote-block blockquote {
  font-size: clamp(31.9px, 4.752vw, 64.9px);
}

.hospitality-home .luxury-footer__brand {
  font-size: clamp(33px, 3.696vw, 50.6px);
}

.hospitality-home .luxury-footer nav h2 {
  font-size: 20.9px;
}

.hospitality-home .engagement-launcher span,
.journey-page .engagement-launcher span {
  font-size: 10.45px;
}

.hospitality-home .engagement-launcher small,
.journey-page .engagement-launcher small {
  font-size: 7.7px;
}

.hospitality-home .engagement-tray-header span,
.journey-page .engagement-tray-header span {
  font-size: 28.6px;
}

.hospitality-home .engagement-tray-header small,
.hospitality-home .engagement-tray small,
.journey-page .engagement-tray-header small,
.journey-page .engagement-tray small {
  font-size: 13.2px;
}

.hospitality-home .engagement-tray strong,
.journey-page .engagement-tray strong {
  font-size: 9.9px;
}

@media (max-width: 760px) {
  .hospitality-home .section-heading-row h2,
  .hospitality-home .location-copy h2,
  .hospitality-home .amenities-editorial-section h2,
  .hospitality-home .story-editorial-block h2,
  .hospitality-home .final-concierge-section h2,
  .hospitality-home .private-journey__heading h2,
  .journey-page .login-journey__header h1 {
    font-size: clamp(37.4px, 11.44vw, 56.1px);
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .journey-step p,
  .hospitality-home .residence-card p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p,
  .journey-page .login-journey__header p:not(.section-kicker),
  .journey-page .journey-timeline-row p,
  .journey-page .journey-moment-grid p,
  .journey-page .journey-service-grid p {
    font-size: 15.95px;
  }
}

/* ===== FOOTER CONTRAST FIX ===== */
.luxury-footer__brand,
.hospitality-home .luxury-footer__brand,
.journey-page .luxury-footer__brand {
  color: rgba(255, 252, 246, .94);
}

.luxury-footer__columns,
.hospitality-home .luxury-footer__columns,
.journey-page .luxury-footer__columns,
.luxury-footer__legal {
  border-color: rgba(239, 224, 194, .18);
}

.luxury-footer nav a,
.hospitality-home .luxury-footer nav a,
.journey-page .luxury-footer nav a {
  color: rgba(255, 252, 246, .76);
}

.luxury-footer__contact,
.hospitality-home .luxury-footer__contact,
.journey-page .luxury-footer__contact {
  color: rgba(255, 252, 246, .82);
}

.luxury-footer__legal,
.hospitality-home .luxury-footer__legal,
.journey-page .luxury-footer__legal {
  color: rgba(255, 252, 246, .58);
}

/* ===== FLOATING ENGAGE VISIBILITY ===== */
.hospitality-home .engagement-launcher,
.journey-page .engagement-launcher {
  min-width: 178px;
  min-height: 57px;
  padding: 0 22px;
  border-color: rgba(154, 130, 92, .46);
  background: rgba(242, 234, 218, .94);
  color: #2e2820;
  box-shadow: 0 16px 38px rgba(34, 27, 18, .14);
}

.hospitality-home .engagement-launcher::before,
.journey-page .engagement-launcher::before {
  border-color: rgba(255, 252, 246, .72);
}

.hospitality-home .engagement-launcher svg,
.journey-page .engagement-launcher svg {
  color: rgba(75, 56, 35, .78);
  width: 18px;
  height: 18px;
}

.hospitality-home .engagement-launcher span,
.journey-page .engagement-launcher span {
  color: #2e2820;
}

.hospitality-home .engagement-launcher small,
.journey-page .engagement-launcher small {
  color: rgba(75, 56, 35, .66);
}

.hospitality-home .engagement-launcher:hover,
.journey-page .engagement-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 91, 49, .56);
  background: rgba(235, 224, 205, .96);
  box-shadow: 0 18px 42px rgba(34, 27, 18, .16);
}

@media (max-width: 720px) {
  .hospitality-home .engagement-launcher,
  .journey-page .engagement-launcher {
    min-width: 154px;
    min-height: 52px;
    padding: 0 18px;
  }
}


/* Production concierge modal + toast */
.clik-modal{position:fixed;inset:0;z-index:120;display:none;align-items:center;justify-content:center;padding:24px}.clik-modal.is-open{display:flex}.clik-modal__backdrop{position:absolute;inset:0;background:rgba(28,23,17,.36);backdrop-filter:blur(14px)}.clik-modal__card{position:relative;width:min(520px,100%);border:1px solid rgba(158,112,36,.22);background:linear-gradient(180deg,rgba(255,253,248,.98),rgba(247,241,230,.96));box-shadow:0 36px 100px rgba(24,20,15,.26);padding:28px;color:#2b241b}.clik-modal__card h2{margin:8px 0 8px;font-family:var(--display-font);font-size:clamp(34px,4vw,48px);line-height:.98;font-weight:600}.clik-modal__copy{margin:0 0 18px;color:#6f665b;line-height:1.55}.clik-modal__close{position:absolute;top:12px;right:12px;width:34px;height:34px;border:1px solid rgba(158,112,36,.18);background:#fff;color:#2b241b;cursor:pointer}.clik-modal__form{display:grid;gap:12px}.clik-modal__form label{display:grid;gap:7px;color:#403a31;font-size:12px;font-weight:760;letter-spacing:.04em;text-transform:uppercase}.clik-modal__form em{color:#8d857a;font-style:normal;font-weight:520;text-transform:none}.clik-modal__form input{min-height:48px;border:1px solid rgba(95,75,42,.18);background:#fff;padding:0 13px;color:#25221d;outline:none}.clik-modal__form input:focus{border-color:rgba(181,138,53,.44);box-shadow:0 0 0 4px rgba(181,138,53,.1)}.clik-modal__grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.clik-submit{width:100%;margin-top:4px}.clik-submit:disabled{opacity:.62;cursor:wait}.clik-form-status{min-height:20px;margin:2px 0 0;color:#6f4d1c;font-size:13px;line-height:1.4}.clik-toast{position:fixed;right:24px;bottom:148px;z-index:140;max-width:min(420px,calc(100vw - 40px));padding:14px 16px;border:1px solid rgba(158,112,36,.24);background:rgba(255,253,248,.96);box-shadow:0 24px 70px rgba(24,20,15,.18);color:#2b241b;opacity:0;transform:translateY(10px);pointer-events:none;transition:opacity .22s ease,transform .22s ease}.clik-toast.is-visible{opacity:1;transform:translateY(0)}.clik-toast[data-tone="error"]{border-color:rgba(150,50,40,.28);color:#7a241c}@media(max-width:640px){.clik-modal{padding:14px}.clik-modal__card{padding:22px 18px}.clik-modal__grid{grid-template-columns:1fr}.clik-toast{right:14px;bottom:142px}}

/* ===== FINAL RESPONSIVE PRODUCTION POLISH ===== */
html {
  scroll-padding-top: 118px;
  overflow-x: hidden;
}

body,
.hospitality-home,
.journey-page {
  width: 100%;
  overflow-x: clip;
}

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

.hospitality-home .launch-nav,
.journey-page .launch-nav {
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(156px, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hospitality-home .nav-brand,
.journey-page .nav-brand {
  justify-self: start;
  min-width: 0;
}

.hospitality-home .nav-links,
.journey-page .nav-links {
  justify-self: center;
  min-width: 0;
  white-space: nowrap;
}

.hospitality-home .nav-primary-actions,
.journey-page .nav-primary-actions {
  justify-self: end;
  min-width: 0;
}

.hospitality-home .nav-links > a,
.journey-page .nav-links > a,
.hospitality-home .nav-login-action,
.journey-page .nav-login-action,
.hospitality-home .nav-engage-action,
.journey-page .nav-engage-action {
  min-width: 0;
  white-space: nowrap;
}

.hospitality-hero.hero-video-section {
  height: 100svh;
  min-height: 680px;
  max-height: 980px;
}

.hospitality-hero .hero-video,
.hospitality-hero .hero-media-fallback {
  object-fit: cover;
  object-position: center center;
}

.hospitality-hero .hero-media-fallback {
  background-position: center center;
}

.hero-stats-strip {
  overflow: hidden;
}

.hospitality-section,
.private-journey__inner,
.final-concierge-section,
.journey-hero-inner,
.luxury-footer__columns,
.luxury-footer__legal {
  max-width: 100%;
}

.section-heading-row,
.location-section,
.story-editorial-block,
.residence-carousel,
.privilege-grid,
.neighbourhood-grid,
.amenity-editorial-grid,
.journey-steps,
.journey-service-grid,
.journey-moment-grid {
  min-width: 0;
}

.section-heading-row > *,
.location-section > *,
.story-editorial-block > *,
.residence-card,
.privilege-grid article,
.neighbourhood-grid article,
.amenity-editorial-grid article,
.journey-step,
.journey-timeline-row,
.journey-timeline-content,
.journey-moment-grid article,
.journey-service-grid article {
  min-width: 0;
}

.residence-card img,
.media-tile img,
.neighbourhood-grid img,
.amenity-editorial-grid img,
.story-editorial-block img,
.journey-moment-grid img,
.final-concierge-video {
  height: auto;
  object-fit: cover;
}

.media-gallery-shell {
  max-width: 100%;
  overflow: hidden;
}

.gallery-nav--prev {
  left: 10px;
}

.gallery-nav--next {
  right: 10px;
}

.floating-engagement {
  z-index: 110;
}

.hospitality-home .engagement-tray,
.journey-page .engagement-tray {
  max-height: min(72svh, 620px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hospitality-home .engagement-tray a,
.journey-page .engagement-tray a {
  min-height: 72px;
}

.clik-modal {
  z-index: 150;
  padding: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
}

.clik-modal__card {
  max-height: min(88svh, 720px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.clik-modal__form input {
  font-size: 16px;
}

.journey-access-card {
  width: min(560px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.journey-vertical-timeline {
  overflow: visible;
}

.journey-row-action,
.journey-gap-marker,
.journey-meta span {
  overflow-wrap: anywhere;
}

@media (min-width: 1367px) {
  html {
    scroll-padding-top: 124px;
  }

  .hospitality-section {
    width: min(1180px, calc(100% - 72px));
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 92px;
    min-height: 92px;
    padding-right: clamp(40px, 5vw, 84px);
    padding-left: clamp(40px, 5vw, 84px);
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links {
    gap: 34px;
  }

  .hospitality-hero.hero-video-section {
    min-height: 760px;
  }

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: min(820px, 56vw);
  }
}

@media (min-width: 1181px) and (max-width: 1366px) {
  html {
    scroll-padding-top: 110px;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 84px;
    min-height: 84px;
    padding-right: 34px;
    padding-left: 34px;
    grid-template-columns: minmax(136px, 1fr) auto minmax(142px, 1fr);
    gap: 14px;
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links {
    gap: 20px;
  }

  .hospitality-home .nav-links > a,
  .journey-page .nav-links > a,
  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    font-size: 11px;
  }

  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    min-height: 38px;
    padding: 0 16px;
  }

  .section-anchor-bar {
    top: 84px;
  }

  .hospitality-hero.hero-video-section {
    min-height: 700px;
    max-height: 820px;
  }

  .scroll-discover {
    bottom: 178px;
  }

  .hero-stats-strip {
    bottom: 32px;
    width: min(1040px, calc(100% - 68px));
  }

  .hero-stats-strip article {
    min-height: 104px;
    padding: 20px 18px;
  }

  .hospitality-section {
    width: min(1080px, calc(100% - 56px));
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .private-journey {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading-row h2,
  .location-copy h2,
  .amenities-editorial-section h2,
  .story-editorial-block h2,
  .final-concierge-section h2,
  .private-journey__heading h2 {
    font-size: 3.45rem;
  }

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: min(720px, calc(100vw - 120px));
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: 600px;
    min-height: 600px;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  html {
    scroll-padding-top: 104px;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 78px;
    min-height: 78px;
    padding-right: 26px;
    padding-left: 26px;
    grid-template-columns: minmax(128px, 1fr) auto minmax(132px, 1fr);
    gap: 10px;
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links {
    gap: 12px;
  }

  .hospitality-home .nav-links > a,
  .journey-page .nav-links > a {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 10.5px;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    gap: 12px;
  }

  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    font-size: 10.5px;
  }

  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    min-height: 36px;
    padding: 0 13px;
    font-size: 9.5px;
  }

  .section-anchor-bar {
    top: 78px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hospitality-hero.hero-video-section {
    min-height: 660px;
    max-height: 790px;
  }

  .scroll-discover {
    bottom: 166px;
  }

  .hero-stats-strip {
    bottom: 28px;
    width: min(960px, calc(100% - 54px));
  }

  .hero-stats-strip article {
    min-height: 98px;
    padding: 18px 14px;
  }

  .hero-stats-strip strong {
    font-size: 3rem;
  }

  .hero-stats-strip span {
    font-size: 10px;
  }

  .hospitality-section {
    width: min(980px, calc(100% - 48px));
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .private-journey {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .journey-steps {
    gap: 24px;
  }

  .section-heading-row h2,
  .location-copy h2,
  .amenities-editorial-section h2,
  .story-editorial-block h2,
  .final-concierge-section h2,
  .private-journey__heading h2 {
    font-size: 3.05rem;
  }

  .residence-card h3,
  .privilege-grid h3,
  .neighbourhood-grid h3,
  .amenity-editorial-grid h3,
  .journey-timeline-row h3,
  .journey-moment-grid h3 {
    font-size: 1.8rem;
  }

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: min(650px, calc(100vw - 96px));
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: 540px;
    min-height: 540px;
  }

  .journey-page .journey-hero-inner {
    width: min(960px, calc(100% - 48px));
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  html {
    scroll-padding-top: 104px;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 76px;
    min-height: 76px;
    padding-right: 22px;
    padding-left: 22px;
    grid-template-columns: minmax(126px, auto) minmax(0, 1fr) auto;
    gap: 12px;
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links {
    justify-self: end;
    gap: 10px;
    overflow: hidden;
  }

  .hospitality-home .nav-links > a,
  .journey-page .nav-links > a {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 10px;
  }

  .hospitality-home .nav-links > a:nth-child(n+4),
  .journey-page .nav-links > a:nth-child(n+4) {
    display: none;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    gap: 10px;
  }

  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    font-size: 10px;
  }

  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 9px;
  }

  .section-anchor-bar {
    top: 76px;
    justify-content: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hospitality-hero.hero-video-section {
    min-height: 640px;
    max-height: 840px;
  }

  .scroll-discover {
    bottom: 160px;
  }

  .hero-stats-strip {
    bottom: 26px;
    width: calc(100% - 44px);
  }

  .hero-stats-strip article {
    min-height: 94px;
    padding: 17px 12px;
  }

  .hero-stats-strip strong {
    font-size: 2.65rem;
  }

  .hero-stats-strip span {
    font-size: 9.5px;
  }

  .hospitality-section {
    width: min(100% - 44px, 920px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .private-journey {
    padding: 68px 22px;
  }

  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .journey-line {
    display: none;
  }

  .residence-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .residence-card h3 {
    font-size: 1.55rem;
  }

  .residence-card p {
    font-size: 0.95rem;
  }

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

  .privilege-grid article,
  .privilege-grid article + article {
    padding: 24px 18px;
  }

  .location-section,
  .story-editorial-block {
    grid-template-columns: 1fr;
  }

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

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: min(620px, calc(100vw - 72px));
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: 500px;
    min-height: 500px;
  }

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

  .journey-page .journey-hero-inner {
    width: min(100% - 44px, 820px);
  }

  .journey-vertical-timeline::before {
    left: 12px;
    transform: none;
  }

  .journey-timeline-row {
    display: block;
    min-height: 0;
    padding-left: 42px;
  }

  .journey-timeline-row::before {
    position: absolute;
    top: 38px;
    left: 7px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content {
    grid-column: auto;
    grid-template-columns: 38px 34px minmax(0, 1fr);
    text-align: left;
  }

  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content > div {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-timeline-row:nth-child(odd) .journey-meta {
    justify-content: flex-start;
  }
}

@media (min-width: 431px) and (max-width: 767px) {
  html {
    scroll-padding-top: 92px;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 68px;
    min-height: 68px;
    grid-template-columns: minmax(116px, 1fr) auto;
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links {
    display: none;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    gap: 12px;
  }

  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    display: none;
  }

  .section-anchor-bar {
    top: 68px;
    justify-content: flex-start;
    gap: 20px;
    padding: 13px 18px;
  }

  .section-anchor-bar a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .hospitality-hero.hero-video-section {
    min-height: 700px;
    max-height: none;
  }

  .hero-stats-strip {
    width: calc(100% - 28px);
    bottom: 22px;
  }

  .hero-stats-strip article {
    min-height: 72px;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 12px 16px;
  }

  .scroll-discover {
    bottom: 262px;
  }

  .hospitality-section,
  .final-concierge-section {
    width: min(100% - 32px, 640px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
    gap: 16px;
  }

  .section-heading-row h2,
  .location-copy h2,
  .amenities-editorial-section h2,
  .story-editorial-block h2,
  .final-concierge-section h2,
  .private-journey__heading h2,
  .journey-page .login-journey__header h1 {
    font-size: 2.8rem;
  }

  .residence-carousel,
  .privilege-grid,
  .location-section,
  .story-editorial-block,
  .neighbourhood-grid,
  .amenity-editorial-grid,
  .luxury-footer__columns,
  .journey-moment-grid,
  .journey-service-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: calc(100vw - 32px);
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: 430px;
    min-height: 430px;
  }

  .hospitality-home .floating-engagement,
  .journey-page .floating-engagement {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    align-items: end;
  }

  .hospitality-home .engagement-tray,
  .journey-page .engagement-tray {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + 60px);
    left: max(14px, env(safe-area-inset-left));
    width: auto;
    max-height: min(72svh, 560px);
  }

  .clik-modal__card {
    width: min(100%, 540px);
  }
}

@media (min-width: 360px) and (max-width: 430px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    min-width: 0;
  }

  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    height: 64px;
    min-height: 64px;
    grid-template-columns: minmax(106px, 1fr) auto;
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hospitality-home .nav-links,
  .journey-page .nav-links,
  .hospitality-home .nav-engage-action,
  .journey-page .nav-engage-action {
    display: none;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    gap: 10px;
  }

  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    min-height: 40px;
  }

  .section-anchor-bar {
    top: 64px;
    justify-content: flex-start;
    gap: 18px;
    padding: 12px 16px;
  }

  .section-anchor-bar a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    font-size: 10px;
  }

  .hospitality-hero.hero-video-section {
    min-height: 690px;
    max-height: none;
  }

  .hero-stats-strip {
    width: calc(100% - 24px);
    bottom: 18px;
  }

  .hero-stats-strip article {
    min-height: 70px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 14px;
  }

  .hero-stats-strip strong {
    font-size: 2.2rem;
  }

  .hero-stats-strip span {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .scroll-discover {
    bottom: 252px;
    font-size: 9px;
  }

  .hospitality-section,
  .final-concierge-section,
  .journey-page .journey-hero-inner {
    width: min(100% - 28px, 430px);
  }

  .hospitality-section,
  .final-concierge-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .private-journey {
    padding: 56px 14px;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
    gap: 14px;
  }

  .section-heading-row h2,
  .location-copy h2,
  .amenities-editorial-section h2,
  .story-editorial-block h2,
  .final-concierge-section h2,
  .private-journey__heading h2,
  .journey-page .login-journey__header h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .journey-step p,
  .hospitality-home .residence-card p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p,
  .journey-page .login-journey__header p:not(.section-kicker),
  .journey-page .journey-timeline-row p,
  .journey-page .journey-moment-grid p,
  .journey-page .journey-service-grid p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .residence-carousel,
  .privilege-grid,
  .location-section,
  .story-editorial-block,
  .neighbourhood-grid,
  .amenity-editorial-grid,
  .luxury-footer__columns,
  .journey-moment-grid,
  .journey-service-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery-grid,
  .gallery-track {
    grid-auto-columns: calc(100vw - 28px);
    gap: 12px;
  }

  .media-tile img,
  .media-tile-large img,
  .gallery-item:first-child img {
    height: 390px;
    min-height: 390px;
  }

  .final-concierge-video,
  .final-concierge-media img {
    aspect-ratio: 4 / 3;
  }

  .journey-access-card {
    padding: 18px;
  }

  .journey-access-card .otp-row {
    grid-template-columns: 1fr;
  }

  .journey-access-card .mini-button,
  .journey-access-card .luxury-button {
    width: 100%;
    min-height: 46px;
  }

  .journey-vertical-timeline {
    padding-left: 28px;
  }

  .journey-timeline-row::before {
    left: -25px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content {
    grid-template-columns: 30px 28px minmax(0, 1fr);
    gap: 10px;
  }

  .journey-timeline-row h3 {
    font-size: 1.55rem;
  }

  .hospitality-home .floating-engagement,
  .journey-page .floating-engagement {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    align-items: end;
  }

  .hospitality-home .engagement-launcher,
  .journey-page .engagement-launcher {
    min-width: 136px;
    min-height: 50px;
  }

  .hospitality-home .engagement-tray,
  .journey-page .engagement-tray {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 60px);
    left: max(12px, env(safe-area-inset-left));
    width: auto;
    max-height: min(70svh, 540px);
  }

  .clik-modal__card {
    max-height: min(84svh, 640px);
    padding: 20px 16px;
  }

  .clik-modal__card h2 {
    font-size: 2rem;
  }

  .clik-toast {
    right: 12px;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 72px);
    left: 12px;
    max-width: none;
  }
}

/* ===== FINAL CUSTOMER JOURNEY MOBILE READABILITY OVERRIDES ===== */
@media (max-width: 640px) {
  html,
  body,
  .journey-page,
  .journey-main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .journey-page .journey-hero-section,
  .journey-page .journey-hero-inner,
  .journey-page .journey-overview,
  .journey-page .login-journey,
  .journey-page .journey-progress-summary,
  .journey-vertical-timeline,
  .journey-timeline-row,
  .journey-timeline-content,
  .journey-timeline-content > div {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .journey-main {
    width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom) + 160px);
  }

  .journey-page .launch-nav,
  .journey-page .journey-nav {
    position: sticky;
    top: 0;
    min-height: 72px;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
  }

  .journey-page .nav-links,
  .journey-page .nav-engage-action {
    display: none;
  }

  .journey-page .nav-brand,
  .journey-page .nav-primary-actions {
    min-width: 0;
  }

  .journey-page .nav-brand-text {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .journey-page .nav-primary-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
  }

  .journey-page .nav-login-action {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .journey-page .journey-hero-section {
    min-height: 0;
    padding: 32px 0 24px;
  }

  .journey-page .journey-hero-inner {
    width: 100%;
    margin: 0;
  }

  .journey-page .login-journey {
    width: 100%;
    padding: 0 22px;
    overflow: visible;
  }

  .journey-page .login-journey__header {
    max-width: none;
    margin: 0 0 22px;
    text-align: left;
  }

  .journey-page .login-journey__header .section-kicker {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .journey-page .login-journey__header h1 {
    margin: 0;
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    max-width: 100%;
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .journey-page .journey-progress-summary {
    width: 100%;
    margin: 0 0 26px;
    padding: 0 0 22px;
    text-align: left;
  }

  .journey-page .journey-progress-summary > span,
  .journey-page .journey-progress-summary > p,
  .journey-page .journey-progress-summary > small,
  .journey-page .journey-progress-bar {
    justify-self: stretch;
  }

  .journey-page .journey-progress-summary > strong {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .journey-vertical-timeline {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0 0 120px;
    gap: 0;
  }

  .journey-vertical-timeline::before {
    display: none;
  }

  .journey-gap-marker {
    justify-self: start;
    margin: 0;
    padding: 0 0 18px;
    background: transparent;
    color: rgba(17, 17, 17, 0.48);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .journey-timeline-row {
    display: block;
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(166, 124, 82, 0.18);
  }

  .journey-timeline-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .journey-timeline-row::before,
  .journey-timeline-row:nth-of-type(odd)::before,
  .journey-timeline-row:nth-of-type(even)::before {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(17, 17, 17, 0.58);
    content: attr(data-status);
    font-family: var(--font-meta);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
  }

  .journey-timeline-row::after,
  .journey-timeline-row:nth-of-type(odd)::after,
  .journey-timeline-row:nth-of-type(even)::after {
    display: none;
    content: none;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    display: grid;
    width: 100%;
    grid-column: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 12px 16px;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }

  .journey-timeline-row .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-of-type(odd) .journey-node {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(166, 124, 82, 0.35);
    border-radius: 999px;
    background: #ffffff;
    color: #A67C52;
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .journey-timeline-row .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-of-type(odd) .journey-icon {
    grid-column: 1;
    grid-row: 2;
    width: 44px;
    height: 44px;
    color: rgba(91, 68, 34, 0.72);
  }

  .journey-timeline-row .journey-icon svg {
    width: 32px;
    height: 32px;
  }

  .journey-timeline-row .journey-timeline-content > div,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content > div,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content > div {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    min-width: 0;
  }

  .journey-timeline-row *,
  .journey-gap-marker,
  .journey-row-action,
  .journey-meta span {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .journey-timeline-row h3 {
    max-width: 100%;
    margin: 0;
    color: #111111;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    white-space: normal;
  }

  .journey-timeline-row .journey-meta,
  .journey-timeline-row:nth-child(odd) .journey-meta,
  .journey-timeline-row:nth-of-type(odd) .journey-meta {
    justify-content: flex-start;
    margin-top: 12px;
    color: rgba(17, 17, 17, 0.56);
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .journey-timeline-row p {
    max-width: 100%;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.68);
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.5;
  }

  .journey-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: max-content;
    max-width: 100%;
    min-height: 38px;
    margin-top: 14px;
    border: 1px solid rgba(166, 124, 82, 0.28);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(91, 68, 34, 0.86);
    padding: 0 14px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .journey-moments-section,
  .journey-services-section {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .journey-page .floating-engagement {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 96px);
    left: auto;
    z-index: 40;
    width: auto;
    align-items: flex-end;
  }

  .journey-page .engagement-launcher {
    width: auto;
    min-width: 176px;
    height: 56px;
    min-height: 56px;
    grid-template-columns: 18px auto;
    border-radius: 999px;
    padding: 0 16px;
  }

  .journey-page .engagement-launcher span,
  .journey-page .engagement-launcher small {
    white-space: nowrap;
  }

  .journey-page .engagement-tray {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 160px);
    left: max(14px, env(safe-area-inset-left));
    width: auto;
    max-height: min(66svh, 520px);
    overflow-y: auto;
  }
}

@media (max-width: 390px) {
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .journey-page .nav-brand-text {
    display: none;
  }

  .journey-page .login-journey {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-timeline-content,
  .journey-timeline-row:nth-child(odd) .journey-timeline-content,
  .journey-timeline-row:nth-child(even) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(odd) .journey-timeline-content,
  .journey-timeline-row:nth-of-type(even) .journey-timeline-content {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 13px;
  }

  .journey-timeline-row h3 {
    font-size: clamp(34px, 9.8vw, 38px);
  }

  .journey-row-action {
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 0.1em;
  }

  .journey-page .floating-engagement {
    right: max(14px, env(safe-area-inset-right));
  }

  .journey-page .engagement-launcher {
    min-width: 156px;
    height: 52px;
    min-height: 52px;
    padding: 0 14px;
  }

  .journey-page .engagement-launcher span {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .journey-timeline-row .journey-node,
  .journey-timeline-row:nth-child(odd) .journey-node,
  .journey-timeline-row:nth-of-type(odd) .journey-node,
  .journey-timeline-row .journey-icon,
  .journey-timeline-row:nth-child(odd) .journey-icon,
  .journey-timeline-row:nth-of-type(odd) .journey-icon {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    justify-self: start;
    box-sizing: border-box;
    margin-left: 2px;
  }
}

/* ===== FINAL GALLERY ARROW VISIBILITY OVERRIDE - CASCADE END ===== */
.gallery-nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(166, 124, 82, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #A67C52;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  z-index: 5;
  opacity: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-nav svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery-nav--prev {
  left: -24px;
}

.gallery-nav--next {
  right: -24px;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-nav--prev:hover,
.gallery-nav--next:hover {
  border-color: rgba(166, 124, 82, 0.58);
  background: #ffffff;
  color: #A67C52;
  opacity: 1;
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 640px) {
  .hospitality-home .gallery-nav,
  .gallery-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
  }

  .hospitality-home .gallery-nav--prev,
  .gallery-nav--prev {
    left: 10px;
  }

  .hospitality-home .gallery-nav--next,
  .gallery-nav--next {
    right: 10px;
  }
}

/* ===== FINAL MOBILE FLOATING CONCIERGE SAFE AREA OVERRIDE ===== */
@media (max-width: 640px) {
  .hospitality-home main,
  .journey-main {
    padding-bottom: calc(env(safe-area-inset-bottom) + 180px);
  }

  .hospitality-home .floating-engagement,
  .journey-page .floating-engagement {
    position: fixed;
    right: 22px;
    bottom: calc(env(safe-area-inset-bottom) + 110px);
    left: auto;
    width: min(260px, calc(100vw - 44px));
    z-index: 40;
  }

  .hospitality-home .engagement-launcher,
  .journey-page .engagement-launcher {
    width: 100%;
    height: 58px;
    min-height: 58px;
  }

  .hospitality-home .privileges-section {
    padding-bottom: calc(env(safe-area-inset-bottom) + 180px);
  }
}

/* ===== FINAL MOBILE PUBLIC SECTION READABILITY OVERRIDE ===== */
@media (max-width: 640px) {
  .hospitality-home .hospitality-section,
  .hospitality-home .private-journey,
  .hospitality-home .privileges-section,
  .hospitality-home .media-gallery-section,
  .hospitality-home .final-concierge-section {
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    padding-right: 26px;
    padding-left: 26px;
    overflow-x: hidden;
  }

  .hospitality-home .section-heading-row h2,
  .hospitality-home .private-journey__heading h2,
  .hospitality-home .location-copy h2,
  .hospitality-home .amenities-editorial-section h2,
  .hospitality-home .story-editorial-block h2,
  .hospitality-home .final-concierge-section h2 {
    max-width: 100%;
    font-size: clamp(48px, 14vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .privileges-section .section-heading-row h2,
  .hospitality-home .private-journey__heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hospitality-home .section-kicker,
  .hospitality-home .media-gallery-section > .section-kicker {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.18em;
  }

  .hospitality-home .private-journey__heading p,
  .hospitality-home .privilege-grid p,
  .hospitality-home .location-copy p,
  .hospitality-home .neighbourhood-grid p,
  .hospitality-home .story-editorial-block p,
  .hospitality-home .final-concierge-section p {
    color: rgba(17, 17, 17, 0.62);
    font-size: 21px;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .privilege-grid {
    gap: 30px;
    margin-top: 30px;
  }

  .hospitality-home .privilege-grid article {
    padding: 26px 0;
  }

  .hospitality-home .privilege-grid span {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .hospitality-home .privilege-grid h3,
  .hospitality-home .neighbourhood-grid h3,
  .hospitality-home .amenity-editorial-grid h3 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hospitality-home .journey-steps {
    gap: 22px;
  }

  .hospitality-home .journey-line {
    display: none;
  }

  .hospitality-home .journey-step {
    min-width: 0;
    padding: 22px 0;
  }

  .hospitality-home .journey-step__number {
    font-size: 18px;
  }

  .hospitality-home .journey-icon {
    width: 40px;
    height: 40px;
  }

  .hospitality-home .journey-icon svg {
    width: 36px;
    height: 36px;
  }

  .hospitality-home .journey-step h3 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .journey-step p {
    font-size: 20px;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hospitality-home .private-journey__actions,
  .hospitality-home .final-cta-row {
    gap: 12px;
  }

  .hospitality-home .private-journey__actions a,
  .hospitality-home .luxury-button,
  .hospitality-home .text-link {
    min-height: 54px;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }
}

@media (max-width: 390px) {
  .hospitality-home .private-journey__actions a,
  .hospitality-home .luxury-button,
  .hospitality-home .text-link {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }
}

/* ===== FINAL CUSTOMER CONCIERGE FORM PREMIUM POLISH ===== */
.clik-modal--concierge {
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.clik-modal--concierge .clik-modal__backdrop {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.clik-modal--concierge .clik-modal__card {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  width: min(620px, calc(100vw - 32px));
  max-width: 620px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 42px 44px 38px;
  border: 1px solid var(--lux-border);
  border-radius: 28px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.10),
    0 10px 30px rgba(0, 0, 0, 0.05);
  overscroll-behavior: contain;
}

.clik-modal--concierge .clik-modal__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.42), transparent);
}

.clik-modal--concierge .clik-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lux-gold-soft);
  border-radius: 999px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.clik-modal--concierge .clik-modal__close:hover,
.clik-modal--concierge .clik-modal__close:focus-visible {
  background: var(--lux-black);
  color: var(--lux-white);
  border-color: rgba(166, 124, 82, 0.45);
  transform: translateY(-1px);
  outline: none;
}

.clik-modal--concierge .section-kicker {
  margin: 0 48px 18px 0;
  color: var(--lux-gold);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.clik-modal--concierge .clik-modal__card h2 {
  margin: 0 42px 14px 0;
  color: var(--lux-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.clik-modal--concierge .clik-modal__copy {
  margin: 0 0 30px;
  color: var(--lux-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.clik-modal--concierge .clik-modal__divider {
  height: 1px;
  margin: 4px 0 8px;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.22), transparent);
}

.clik-modal--concierge .clik-modal__form {
  display: grid;
  gap: 18px;
}

.clik-modal--concierge .clik-modal__form label {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--lux-charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clik-modal--concierge .clik-modal__form label > span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 11px;
}

.clik-modal--concierge .clik-modal__form em {
  color: rgba(17, 17, 17, 0.45);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.clik-modal--concierge .clik-modal__form input,
.clik-modal--concierge .clik-modal__form select,
.clik-modal--concierge .clik-modal__form textarea {
  width: 100%;
  height: 62px;
  min-height: 62px;
  border: 1px solid rgba(166, 124, 82, 0.24);
  border-radius: 18px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  outline: none;
  padding: 0 20px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.clik-modal--concierge .clik-modal__form input::placeholder,
.clik-modal--concierge .clik-modal__form textarea::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.clik-modal--concierge .clik-modal__form input:hover,
.clik-modal--concierge .clik-modal__form select:hover,
.clik-modal--concierge .clik-modal__form textarea:hover {
  border-color: rgba(166, 124, 82, 0.38);
  transform: translateY(-1px);
}

.clik-modal--concierge .clik-modal__form input:focus,
.clik-modal--concierge .clik-modal__form select:focus,
.clik-modal--concierge .clik-modal__form textarea:focus {
  border-color: var(--lux-gold-focus);
  box-shadow:
    0 0 0 4px rgba(166, 124, 82, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.04);
}

.clik-modal--concierge .clik-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.clik-modal--concierge .clik-submit {
  width: 100%;
  height: 62px;
  margin-top: 0;
  border: 1px solid rgba(166, 124, 82, 0.30);
  border-radius: 18px;
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  color: var(--lux-white);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.clik-modal--concierge .clik-submit:hover,
.clik-modal--concierge .clik-submit:focus-visible {
  border-color: rgba(166, 124, 82, 0.55);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 0 0 4px rgba(166, 124, 82, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.clik-modal--concierge .clik-submit:active {
  transform: translateY(0);
}

.clik-modal--concierge .clik-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.clik-modal--concierge .clik-form-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: var(--lux-muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .clik-modal--concierge {
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  }

  .clik-modal--concierge .clik-modal__card {
    width: min(100%, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .clik-modal--concierge .clik-modal__card::before {
    left: 24px;
    right: 24px;
  }

  .clik-modal--concierge .clik-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .clik-modal--concierge .section-kicker {
    margin-right: 42px;
    margin-bottom: 16px;
  }

  .clik-modal--concierge .clik-modal__card h2 {
    margin-right: 38px;
    font-size: clamp(34px, 10.5vw, 38px);
    letter-spacing: -0.04em;
  }

  .clik-modal--concierge .clik-modal__copy {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .clik-modal--concierge .clik-modal__form {
    gap: 16px;
  }

  .clik-modal--concierge .clik-modal__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clik-modal--concierge .clik-modal__form input,
  .clik-modal--concierge .clik-modal__form select,
  .clik-modal--concierge .clik-modal__form textarea,
  .clik-modal--concierge .clik-submit {
    height: 58px;
    min-height: 58px;
  }
}

/* ===== FINAL CLIKHOME BRAND ASSET OVERRIDE - EOF ===== */
.hospitality-home .nav-brand,
.journey-page .nav-brand,
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #24201d;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hospitality-home .nav-brand:hover,
.journey-page .nav-brand:hover,
.nav-brand:hover {
  opacity: 0.92;
}

.hospitality-home .nav-brand-mark,
.journey-page .nav-brand-mark,
.nav-brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.hospitality-home .nav-brand-text,
.journey-page .nav-brand-text,
.nav-brand-text {
  display: inline-block;
  color: #3f3a36;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.20em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hospitality-home .launch-nav,
  .journey-page .launch-nav,
  .journey-page .journey-nav {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    width: auto;
    min-width: 0;
    height: auto;
    gap: 10px;
    justify-self: end;
  }

  .hospitality-home .nav-brand-mark,
  .journey-page .nav-brand-mark,
  .nav-brand-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    display: inline-block;
    max-width: none;
    overflow: visible;
    color: #3f3a36;
    font-size: 14px;
    letter-spacing: 0.20em;
    text-overflow: clip;
  }
}

@media (max-width: 390px) {
  .hospitality-home .nav-brand,
  .journey-page .nav-brand,
  .nav-brand {
    gap: 9px;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text,
  .nav-brand-text {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}

/* ===== FINAL SHARED PREMIUM ENGAGE CONCIERGE ===== */
.hospitality-home .floating-engagement,
.journey-page .floating-engagement {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.hospitality-home .engagement-launcher,
.journey-page .engagement-launcher {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 2px;
  width: auto;
  min-width: 156px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(166, 124, 82, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #24201d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hospitality-home .engagement-launcher::before,
.journey-page .engagement-launcher::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.hospitality-home .engagement-launcher::after,
.journey-page .engagement-launcher::after {
  display: none;
}

.hospitality-home .engagement-launcher:hover,
.journey-page .engagement-launcher:hover,
.hospitality-home .engagement-launcher:focus-visible,
.journey-page .engagement-launcher:focus-visible {
  border-color: rgba(166, 124, 82, 0.42);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
  transform: translateY(-1px);
  outline: none;
}

.hospitality-home .engagement-launcher svg,
.journey-page .engagement-launcher svg {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 20px;
  height: 20px;
  color: #A67C52;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospitality-home .engagement-launcher span,
.journey-page .engagement-launcher span {
  position: relative;
  z-index: 1;
  color: #24201d;
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.hospitality-home .engagement-launcher small,
.journey-page .engagement-launcher small {
  position: relative;
  z-index: 1;
  color: rgba(17, 17, 17, 0.55);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.hospitality-home .engagement-tray,
.journey-page .engagement-tray {
  position: relative;
  display: grid;
  width: min(430px, calc(100vw - 64px));
  max-height: min(72vh, 620px);
  gap: 0;
  border: 1px solid rgba(166, 124, 82, 0.18);
  border-radius: 28px;
  background: #ffffff;
  color: #111111;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.10),
    0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: hidden;
  overscroll-behavior: contain;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hospitality-home .engagement-tray::before,
.journey-page .engagement-tray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.42), transparent);
  pointer-events: none;
}

.hospitality-home .floating-engagement.is-open .engagement-tray,
.journey-page .floating-engagement.is-open .engagement-tray {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hospitality-home .engagement-tray-header,
.journey-page .engagement-tray-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(166, 124, 82, 0.12);
  padding: 28px 28px 24px;
}

.hospitality-home .engagement-tray-header span,
.journey-page .engagement-tray-header span {
  display: block;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: none;
}

.hospitality-home .engagement-tray-header small,
.journey-page .engagement-tray-header small {
  display: block;
  max-width: 280px;
  margin-top: 10px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.hospitality-home .engagement-close,
.journey-page .engagement-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(166, 124, 82, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hospitality-home .engagement-close:hover,
.journey-page .engagement-close:hover,
.hospitality-home .engagement-close:focus-visible,
.journey-page .engagement-close:focus-visible {
  background: #111111;
  color: #ffffff;
  border-color: rgba(166, 124, 82, 0.45);
  transform: translateY(-1px);
  outline: none;
}

.hospitality-home .engagement-tray a,
.journey-page .engagement-tray a {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  gap: 4px 16px;
  align-items: center;
  min-height: 86px;
  border: 0;
  border-bottom: 1px solid rgba(166, 124, 82, 0.12);
  border-radius: 0;
  background: #ffffff;
  color: #24201d;
  box-shadow: none;
  padding: 22px 28px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.hospitality-home .engagement-tray a:last-child,
.journey-page .engagement-tray a:last-child {
  border-bottom: 0;
}

.hospitality-home .engagement-tray a:hover,
.journey-page .engagement-tray a:hover,
.hospitality-home .engagement-tray a:focus-visible,
.journey-page .engagement-tray a:focus-visible {
  border-color: rgba(166, 124, 82, 0.12);
  background: rgba(166, 124, 82, 0.06);
  box-shadow: none;
  outline: none;
}

.hospitality-home .engagement-tray a::after,
.journey-page .engagement-tray a::after {
  content: "";
  position: static;
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  width: 24px;
  height: 1px;
  background: rgba(166, 124, 82, 0.65);
  transform: none;
  transform-origin: right;
  transition: width 180ms ease, background 180ms ease;
}

.hospitality-home .engagement-tray a:hover::after,
.journey-page .engagement-tray a:hover::after,
.hospitality-home .engagement-tray a:focus-visible::after,
.journey-page .engagement-tray a:focus-visible::after {
  width: 30px;
  background: #A67C52;
  transform: none;
}

.hospitality-home .engagement-tray a > span,
.journey-page .engagement-tray a > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #A67C52;
  box-shadow: none;
}

.hospitality-home .engagement-tray a > span svg,
.journey-page .engagement-tray a > span svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospitality-home .engagement-tray strong,
.journey-page .engagement-tray strong {
  grid-column: 2;
  align-self: end;
  color: #24201d;
  padding-right: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hospitality-home .engagement-tray small,
.journey-page .engagement-tray small {
  grid-column: 2;
  align-self: start;
  color: rgba(17, 17, 17, 0.55);
  padding-right: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

@media (max-width: 640px) {
  .hospitality-home .floating-engagement,
  .journey-page .floating-engagement {
    right: 22px;
    bottom: calc(env(safe-area-inset-bottom) + 88px);
    left: auto;
    width: min(260px, calc(100vw - 44px));
  }

  .hospitality-home .engagement-launcher,
  .journey-page .engagement-launcher {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
  }

  .hospitality-home .engagement-tray,
  .journey-page .engagement-tray {
    position: fixed;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom) + 154px);
    left: 14px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
    border-radius: 24px;
    overflow-y: auto;
    transform-origin: bottom center;
  }

  .hospitality-home .engagement-tray-header,
  .journey-page .engagement-tray-header {
    padding: 24px 22px 20px;
  }

  .hospitality-home .engagement-tray-header span,
  .journey-page .engagement-tray-header span {
    font-size: clamp(32px, 10vw, 38px);
  }

  .hospitality-home .engagement-tray a,
  .journey-page .engagement-tray a {
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    min-height: 82px;
    padding: 20px 22px;
  }
}

/* ===== FINAL DESKTOP GALLERY ARROW VISIBILITY ===== */
.media-gallery-shell {
  position: relative;
  overflow: visible;
}

.media-gallery-grid,
.gallery-track {
  overflow-x: auto;
  overflow-y: hidden;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(166, 124, 82, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #A67C52;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  opacity: 1;
  transform: translateY(-50%);
  transition: all 180ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-nav svg {
  width: 30px;
  height: 30px;
  color: #A67C52;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-nav--prev {
  left: 18px;
}

.gallery-nav--next {
  right: 18px;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-nav--prev:hover,
.gallery-nav--next:hover {
  border-color: rgba(166, 124, 82, 0.55);
  background: #ffffff;
  color: #A67C52;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 1023px) {
  .gallery-nav {
    width: 48px;
    height: 48px;
  }

  .gallery-nav--prev {
    left: 10px;
  }

  .gallery-nav--next {
    right: 10px;
  }
}

/* ===== OTP LOGIN PREMIUM IDENTITY FLOW ===== */
.journey-access-card {
  display: grid;
  box-sizing: border-box;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.journey-access-card h3 {
  margin-bottom: 2px;
}

.journey-access-card .field {
  gap: 7px;
  margin-bottom: 0;
}

.journey-access-card .field span {
  color: rgba(64, 58, 49, .76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-access-card .field input {
  min-height: 52px;
  border-color: rgba(154, 130, 92, .22);
  border-radius: 8px;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.journey-access-card .field input::placeholder {
  color: rgba(113, 108, 100, .58);
}

.journey-access-card .field input:focus {
  border-color: rgba(166, 124, 82, .5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(166, 124, 82, .11);
}

.journey-access-card .otp-row {
  grid-template-columns: minmax(0, 1fr) minmax(138px, 158px);
  align-items: end;
  gap: 12px;
}

.journey-access-card .mini-button,
.journey-access-card .luxury-button {
  min-height: 52px;
  border: 1px solid rgba(166, 124, 82, .34);
  border-radius: 8px;
  background: linear-gradient(180deg, #f5ead8 0%, #ead9bc 100%);
  color: #2b251d;
  box-shadow: 0 10px 24px rgba(95, 75, 42, .08);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.journey-access-card .luxury-button {
  width: 100%;
}

.journey-access-card .mini-button:hover,
.journey-access-card .luxury-button:hover {
  border-color: rgba(143, 107, 39, .5);
  background: linear-gradient(180deg, #f8efdf 0%, #e8d2aa 100%);
  box-shadow: 0 14px 30px rgba(95, 75, 42, .12);
  transform: translateY(-1px);
}

.journey-access-card .mini-button:focus-visible,
.journey-access-card .luxury-button:focus-visible,
.nav-login-action:focus-visible,
[data-auth-nav-action]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(166, 124, 82, .16);
}

.journey-access-card .mini-button:disabled,
.journey-access-card .luxury-button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.journey-access-card .subtle-copy {
  margin: 0;
  color: rgba(113, 108, 100, .82);
  line-height: 1.55;
}

.nav-login-action[data-authenticated="true"] {
  border-color: rgba(166, 124, 82, .3);
  background: rgba(248, 245, 238, .88);
  color: var(--ink);
}

.mobile-top-auth {
  display: none;
}

@media (max-width: 640px) {
  .hospitality-home .launch-nav,
  .journey-page .launch-nav {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    overflow: hidden;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hospitality-home .mobile-menu-toggle,
  .journey-page .mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
  }

  .hospitality-home .nav-brand,
  .journey-page .nav-brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .hospitality-home .nav-brand-text,
  .journey-page .nav-brand-text {
    display: none;
  }

  .hospitality-home .nav-primary-actions,
  .journey-page .nav-primary-actions {
    display: none;
  }

  .hospitality-home .mobile-top-auth,
  .journey-page .mobile-top-auth {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 6;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 0;
    border: 1px solid rgba(166, 124, 82, .22);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 253, 248, .78);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: 1;
    visibility: visible;
  }

  .hospitality-home .nav-login-action,
  .journey-page .nav-login-action {
    display: inline-flex;
    position: static;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hospitality-home .nav-login-action span,
  .journey-page .nav-login-action span {
    display: inline;
  }

  .hospitality-home .nav-login-action svg,
  .journey-page .nav-login-action svg {
    display: none;
  }

  .journey-page .journey-main,
  .journey-page .journey-hero-section,
  .journey-page .journey-hero-inner,
  .journey-page .login-journey {
    max-width: 100%;
    overflow-x: hidden;
  }

  .journey-page .journey-hero-inner {
    box-sizing: border-box;
    padding-right: 16px;
    padding-left: 16px;
  }

  .journey-page .login-journey {
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 0;
  }

  .journey-page .login-journey__header {
    margin-right: 0;
    margin-left: 0;
  }

  .journey-page .login-journey__header h1 {
    font-size: clamp(42px, 12vw, 52px);
    letter-spacing: 0;
    line-height: .98;
  }

  .journey-page .login-journey__header p:not(.section-kicker) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .journey-access-card {
    gap: 14px;
    padding: 20px;
  }

  .journey-access-card .otp-row {
    grid-template-columns: 1fr;
  }

  .journey-access-card .mini-button,
  .journey-access-card .luxury-button {
    width: 100%;
  }
}
