/* ============================================================
   CATTLEYA RESIDENSI — LUXURY PARALLAX HERO
   Vanilla HTML/CSS/JS edition
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink: #0b0810;
  --champagne-50: #fbf6ec;
  --champagne-100: #f3e8d0;
  --champagne-200: #e7cf9f;
  --champagne-300: #d9b46d;
  --champagne-400: #c89a45;
  --champagne-500: #a87a2d;
  --plum-700: #2a1c2c;
  --plum-800: #1a121d;
  --plum-900: #0d090f;
  --bronze-400: #b08856;
  --bronze-500: #8b6738;
  --gold: #C5A46D;

  /* Type */
  --font-display: "Cormorant Garamond", Didot, Garamond, serif;
  --font-sans: "Rubik", system-ui, -apple-system, sans-serif;
  --tracking-editorial: 0.32em;

  /* Motion */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background-color: var(--ink);
  color: var(--champagne-100);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Block only horizontal overscroll-bounce; keep vertical so the
     browser's pull-to-refresh still works on mobile. */
  overscroll-behavior-x: none;
  /* Clip stray horizontal overflow (e.g. off-screen GSAP pre-entrance
     translates, decorative oversized images) so there's no sideways
     scroll / empty gap on mobile. `clip` (not `hidden`) does this
     without creating a scroll container, so vertical scroll +
     pull-to-refresh are unaffected. */
  overflow-x: clip;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Lenis ---------- */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ---------- Page ---------- */
.page {
  position: relative;
  width: 100%;
  background: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  contain: layout paint;
}

/* ---------- Generic layer ---------- */
.layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* ============================================================
   LAYER 01 — BACKGROUND
   ============================================================ */
.layer--bg .layer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  pointer-events: none;
}

.layer__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(11, 8, 16, 0.15) 0%,
      rgba(11, 8, 16, 0) 35%,
      rgba(11, 8, 16, 0.25) 100%
    ),
    radial-gradient(
      120% 80% at 70% 30%,
      rgba(231, 207, 159, 0.18) 0%,
      rgba(231, 207, 159, 0) 60%
    );
  pointer-events: none;
}

/* ============================================================
   LAYER 02 — MIDGROUND ATMOSPHERE
   ============================================================ */
.layer--mid {
  pointer-events: none;
}

.fog {
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
}

.fog--ground {
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(11, 8, 16, 0) 0%,
    rgba(40, 28, 38, 0.2) 55%,
    rgba(11, 8, 16, 0.45) 100%
  );
}

.fog--horizon {
  top: 42%;
  height: 22%;
  background: radial-gradient(
    120% 100% at 50% 50%,
    rgba(231, 207, 159, 0.18) 0%,
    rgba(168, 122, 45, 0.08) 35%,
    rgba(168, 122, 45, 0) 70%
  );
}

/* Decorative cattleya pattern — sits behind the building overlay (layer--fg
   stacks above layer--mid in DOM, so the building partially covers it). */
.layer__pattern {
  position: absolute;
  left: 28%;
  top: 4%;
  width: 100vw;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767px) {
  .layer__pattern {
    left: 10%;
    top: 14%;
    width: 100vw;
  }
}

/* ============================================================
   LAYER 03 — FOREGROUND ARCHITECTURE
   ============================================================ */
.layer__building {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 145%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  transform: translate3d(-4%, 2%, 0);
}

/* Mobile: portrait overlay (overlay-new-mobile.png) sits compact at
   bottom-left so it doesn't crowd the headline. Placed AFTER the base
   rule above so it wins the cascade; height:auto overrides the 145%. */
@media (max-width: 767px) {
  .layer__building {
    height: auto;
    width: 55%;
    max-width: 300px;
    transform: translate3d(0, 0, 0);
  }
}

/* ============================================================
   SCRIM — directional darkening for text legibility
   Sits above FX, below content. Heavier on the side
   where the headline lives (bottom on mobile, right on desktop).
   ============================================================ */
.scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 25;
  /* Mobile default: dark wash from bottom for bottom-aligned text.
     Reaches higher and sits deeper so the headline + description stay
     legible over a bright sky/landscape background. */
  background:
    linear-gradient(
      180deg,
      rgba(11, 8, 16, 0) 8%,
      rgba(11, 8, 16, 0.4) 32%,
      rgba(11, 8, 16, 0.65) 50%,
      rgba(11, 8, 16, 0.82) 70%,
      rgba(11, 8, 16, 0.9) 100%
    ),
    radial-gradient(
      130% 85% at 40% 88%,
      rgba(11, 8, 16, 0.5) 0%,
      rgba(11, 8, 16, 0) 78%
    );
}

@media (min-width: 768px) {
  .scrim {
    /* Desktop: dark on the right where text lives, plus deeper vignette */
    background:
      linear-gradient(
        90deg,
        rgba(11, 8, 16, 0) 30%,
        rgba(11, 8, 16, 0.2) 60%,
        rgba(11, 8, 16, 0.45) 100%
      ),
      radial-gradient(
        60% 70% at 80% 50%,
        rgba(11, 8, 16, 0.3) 0%,
        rgba(11, 8, 16, 0) 70%
      ),
      linear-gradient(
        180deg,
        rgba(11, 8, 16, 0.08) 0%,
        rgba(11, 8, 16, 0) 30%,
        rgba(11, 8, 16, 0) 70%,
        rgba(11, 8, 16, 0.25) 100%
      );
  }
}

/* ============================================================
   LAYER 06 — CONTENT
   ============================================================ */
.layer--content {
  z-index: 30;
  display: flex;
  align-items: flex-end;
}

.content {
  width: 100%;
  padding: 0 1.5rem 6rem;
}

.content__inner {
  max-width: 720px;
}

.editorial-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: rgba(231, 207, 159, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.rule {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: rgba(231, 207, 159, 0.6);
  vertical-align: middle;
  transform-origin: left center;
}

.label-text {
  display: inline-block;
}

.line-mask {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}

.line-mask .line {
  display: block;
  will-change: transform;
}

.display-headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-top: 1.5rem;
  font-size: clamp(3.5rem, 9vw + 1rem, 8.5rem);
  text-wrap: balance;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.7),
    0 4px 14px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(0, 0, 0, 0.5);
}

.gold-text {
  font-style: normal;
  color: var(--gold);
}

.tagline {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  /* Mobile 36–52 · Tablet 48–64 · Laptop 60–80 · Desktop 72–110 */
  font-size: clamp(36px, 4.7vw + 1.2rem, 110px);
  line-height: 1.1;
  color: var(--champagne-200);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.tagline__line {
  display: block;
}

.tagline__accent {
  color: #ffffff;
}

@media (min-width: 768px) {
  .tagline { line-height: 1.0; }
}
@media (min-width: 1440px) {
  .tagline { line-height: 0.95; }
}

.subhead {
  margin-top: 1.25rem;
  max-width: 520px;
  color: rgba(243, 232, 208, 0.9);
  font-weight: 300;
  font-size: clamp(15px, 1vw + 0.5rem, 16px);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* ---------- CTAs ---------- */
.cta-group {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  border-radius: 9999px;
  transition: transform 0.6s var(--ease-luxury),
    background 0.6s var(--ease-luxury),
    border-color 0.6s var(--ease-luxury),
    color 0.6s var(--ease-luxury);
}

/* Soft Light Luxury — primary white capsule */
.cta--primary {
  color: #49284D;
  background: #FFFFFF;
  border: 1px solid #DCCFDF;
}

.cta--primary:hover {
  background: #F5EFF6;
  border-color: #CBB8CF;
  transform: translateY(-2px);
}

/* Primary Luxury Dark — plum capsule */
.cta--secondary {
  color: #FFFFFF;
  background: #49284D;
  border: 1px solid #6B4770;
}

.cta--secondary:hover {
  background: #5A3460;
  border-color: #8A6090;
  transform: translateY(-2px);
}

/* ============================================================
   FLOATING QUICK-ACTION MENU — right-side fixed
   ============================================================ */
.float-menu {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  pointer-events: none;
}

.float-menu__btn {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #49284D;
  font-size: 22px;
  text-decoration: none;
  box-shadow:
    0 10px 28px -6px rgba(0, 0, 0, 0.4),
    0 4px 10px -4px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.45s var(--ease-luxury),
    background 0.4s var(--ease-soft),
    color 0.4s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft);
}

.float-menu__btn:hover,
.float-menu__btn:focus-visible {
  outline: none;
  background: var(--gold);
  color: #1a121d;
  transform: translateX(-4px) scale(1.06);
  box-shadow:
    0 16px 36px -8px rgba(0, 0, 0, 0.5),
    0 6px 14px -4px rgba(197, 164, 109, 0.35);
}

/* WhatsApp gets its signature green for instant recognition */
.float-menu__btn--whatsapp {
  background: #25D366;
  color: #ffffff;
}
.float-menu__btn--whatsapp:hover,
.float-menu__btn--whatsapp:focus-visible {
  background: #1ebe5a;
  color: #ffffff;
  box-shadow:
    0 16px 36px -8px rgba(0, 0, 0, 0.5),
    0 6px 14px -4px rgba(37, 211, 102, 0.45);
}

/* Tooltip label (left of button, fades in on hover) */
.float-menu__btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1a121d;
  color: #f3e8d0;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.float-menu__btn:hover::before,
.float-menu__btn:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Hide tooltip on touch devices */
@media (hover: none) {
  .float-menu__btn::before { display: none; }
}

@media (max-width: 599px) {
  .float-menu {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.55rem;
  }
  .float-menu__btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ============================================================
   TOP NAV — sticky to viewport, follows scroll
   ============================================================ */
.topnav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  pointer-events: none;
}

.topnav__bg {
  position: absolute;
  inset: 0;
  background: #49284D;
  border: 1px solid #6B4770;
  border-radius: 9999px;
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
}

.topnav__inner {
  width: 100%;
  padding: 0.45rem 1.25rem 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  pointer-events: auto;
}

.topnav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  pointer-events: auto;
  transition: opacity 0.4s var(--ease-soft);
}

.topnav__logo:hover {
  opacity: 0.85;
}

.topnav__logo img {
  display: block;
  height: 2.25rem;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

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

.topnav__partner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  pointer-events: auto;
  transition: opacity 0.4s var(--ease-soft);
}

.topnav__partner:hover {
  opacity: 0.85;
}

.topnav__partner-label {
  display: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  line-height: 1.1;
  color: rgba(243, 232, 208, 0.7);
  white-space: nowrap;
  text-align: center;
}

.topnav__partner img {
  display: block;
  height: 1.5rem;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.topnav__menu {
  display: none;
  gap: 2.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: rgba(243, 232, 208, 0.8);
}

.topnav__menu li {
  cursor: pointer;
}

.topnav__menu a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 0.4s var(--ease-soft);
}

.topnav__menu a:hover {
  color: var(--champagne-50);
}

/* Offset scroll targets so the sticky nav doesn't cover section tops */
#property-types,
#advantage,
#surroundings,
#gallery,
#contact {
  scroll-margin-top: 6rem;
}

/* Soft Light Luxury — nav capsule on plum bar */
.topnav__cta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: #49284D;
  background: #FFFFFF;
  border: 1px solid #DCCFDF;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft);
}

.topnav__cta:hover {
  background: #F5EFF6;
  border-color: #CBB8CF;
}

/* ============================================================
   HAMBURGER (mobile only) + MOBILE MENU OVERLAY
   ============================================================ */
.topnav__burger {
  display: none; /* shown on mobile via media query below */
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: none;
  pointer-events: auto;
  z-index: 2;
}

.topnav__burger-box {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.topnav__burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #f3e8d0;
  transition: transform 0.35s var(--ease-soft), opacity 0.25s var(--ease-soft);
}
.topnav__burger-line:nth-child(1) { top: 0; }
.topnav__burger-line:nth-child(2) { top: 7px; }
.topnav__burger-line:nth-child(3) { top: 14px; }

/* Burger -> X when menu is open */
.topnav__burger[aria-expanded='true'] .topnav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topnav__burger[aria-expanded='true'] .topnav__burger-line:nth-child(2) {
  opacity: 0;
}
.topnav__burger[aria-expanded='true'] .topnav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Overlay panel ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95; /* below topnav (100) so the X stays tappable */
  background: rgba(20, 11, 24, 0.97);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s var(--ease-soft);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 6rem 2rem 3rem;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #f3e8d0;
  text-decoration: none;
  /* Each link eases up + fades in when the menu opens */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft),
    color 0.3s var(--ease-soft);
}

.mobile-menu__list a:active { color: var(--gold); }

.mobile-menu.is-open .mobile-menu__list a {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger the link reveal */
.mobile-menu.is-open .mobile-menu__list li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) a { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) a { transition-delay: 0.26s; }

.mobile-menu__cta {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: #49284D;
  background: #ffffff;
  padding: 0.85rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease-soft) 0.32s,
    transform 0.45s var(--ease-soft) 0.32s;
}
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__partner {
  position: absolute;
  bottom: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft) 0.4s;
}
.mobile-menu.is-open .mobile-menu__partner { opacity: 0.85; }
.mobile-menu__partner span {
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(243, 232, 208, 0.6);
}
.mobile-menu__partner img { height: 1.5rem; width: auto; }

/* Show burger, hide desktop menu — mobile only */
@media (max-width: 767px) {
  .topnav__burger { display: inline-flex; }
}

/* Belt-and-braces: ensure the overlay never shows on desktop */
@media (min-width: 768px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   FLOATING STACK — 3D CTA + glass feature card (bottom-left)
   ============================================================ */
.hero-floating {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  pointer-events: none;
}

/* 3D Immersive Experience CTA pill — Soft Light Luxury (flat matte) */
.hero-3d {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.4rem 0.5rem 0.5rem;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid #DCCFDF;
  color: #49284D;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-luxury),
    background 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury);
}

.hero-3d:hover {
  transform: translateY(-2px);
  background: #F5EFF6;
  border-color: #CBB8CF;
}

.hero-3d__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #49284D;
  color: #FFFFFF;
  font-size: 18px;
}

.hero-3d__icon .bi {
  display: block;
}

.hero-features {
  pointer-events: none;
  padding: 0.85rem;
  border-radius: 30px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.62) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 30px 60px -18px rgba(73, 40, 77, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.4rem 0.7rem 1rem;
  border-radius: 9999px;
  color: #2a1c2c;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
  background: transparent;
  border: 1px solid transparent;
}

/* Highlighted first item — solid white pill */
.hero-features li:first-child {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.78) 100%
  );
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 14px -4px rgba(73, 40, 77, 0.18);
  color: #1a121d;
}

.hero-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #2a1c2c;
  font-size: 20px;
  line-height: 1;
}

.hero-features__icon .bi {
  display: block;
}

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

  /* Enquire is in the hamburger menu on mobile — keep the bar uncluttered */
  .topnav__cta {
    display: none;
  }
  .topnav__right {
    gap: 0.75rem;
  }

  /* Give the CTA group room above the absolutely-positioned scroll cue.
     Without this the "Scroll" label sits ~7px under Download Brochure. */
  .content {
    padding-bottom: 8.5rem;
  }
  .scroll-cue {
    bottom: 1.25rem;
    gap: 0.5rem;
  }
  .scroll-cue__line {
    height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-floating {
    left: 3.5rem;
  }
  .hero-features {
    padding: 1rem;
  }
  .hero-features li {
    font-size: 16px;
    padding: 0.8rem 1.6rem 0.8rem 1.15rem;
  }
  .hero-features__icon {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }
  .hero-3d {
    font-size: 15px;
    padding: 0.55rem 1.6rem 0.55rem 0.55rem;
  }
  .hero-3d__icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ============================================================
   SCROLL CUE
   ============================================================ */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.scroll-cue__line {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(
    to bottom,
    rgba(231, 207, 159, 0.7) 0%,
    transparent 100%
  );
}

/* ============================================================
   SPACER (for scroll testing)
   ============================================================ */
.spacer {
  height: 120vh;
  background: linear-gradient(
    to bottom,
    var(--ink) 0%,
    var(--plum-900) 50%,
    var(--ink) 100%
  );
  content-visibility: auto;
  contain-intrinsic-size: 100vh 120vh;
}

/* ============================================================
   ENTRANCE INITIAL STATES — JS (.is-ready) will reveal
   We pre-hide so there's no flash before the master timeline runs.
   ============================================================ */
html:not(.is-ready) .layer--bg .layer__img,
html:not(.is-ready) .layer__wash,
html:not(.is-ready) .fog,
html:not(.is-ready) .layer__pattern,
html:not(.is-ready) .layer__building,
html:not(.is-ready) [data-topnav-bg],
html:not(.is-ready) [data-nav-logo],
html:not(.is-ready) [data-line-1],
html:not(.is-ready) [data-line-2],
html:not(.is-ready) [data-tagline],
html:not(.is-ready) [data-subhead],
html:not(.is-ready) [data-cta-primary],
html:not(.is-ready) [data-cta-secondary],
html:not(.is-ready) [data-nav-item],
html:not(.is-ready) [data-nav-cta],
html:not(.is-ready) [data-nav-partner],
html:not(.is-ready) [data-hero-card],
html:not(.is-ready) [data-hero-feature],
html:not(.is-ready) [data-hero-3d] {
  opacity: 0;
}

/* Pre-entrance: headline line pushed below mask */
html:not(.is-ready) [data-line-1],
html:not(.is-ready) [data-line-2] {
  transform: translateY(110%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .layer--content {
    align-items: flex-end;
  }

  .content {
    padding: 0 2.5rem 5rem;
  }

  .content__inner {
    margin-left: auto;
    text-align: right;
  }

  .content__inner .editorial-label,
  .content__inner .tagline,
  .content__inner .subhead,
  .content__inner .cta-group {
    margin-left: auto;
  }

  .cta-group {
    justify-content: flex-end;
  }

  .topnav {
    top: 1.25rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  .topnav__inner {
    padding: 0.55rem 1.75rem 0.55rem 2rem;
  }

  .topnav__menu {
    display: flex;
  }

  .topnav__logo img {
    height: 2.6rem;
  }
  .topnav__partner img {
    height: 1.75rem;
  }
  .topnav__partner-label {
    display: block;
  }
  .topnav__right {
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .topnav {
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
  }
  .topnav__inner {
    padding: 0.6rem 2rem 0.6rem 2.5rem;
  }
  .content {
    padding: 0 3.5rem 5rem;
  }
  .topnav__logo img {
    height: 2.9rem;
  }
  .topnav__partner img {
    height: 1.9rem;
  }
  .topnav__partner-label {
    font-size: 10px;
  }
}

/* Reduced motion — skip choreography, show final state immediately */
@media (prefers-reduced-motion: reduce) {
  html:not(.is-ready) *,
  html:not(.is-ready) *::before,
  html:not(.is-ready) *::after {
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
  }
}

/* ============================================================
   PROPERTY TYPES — interactive layout picker
   ============================================================ */
.ptypes {
  --pt-bg-top: #150b18;
  --pt-bg-bot: #1a0f1c;
  --pt-text: #f3e8d0;
  --pt-mute: rgba(243, 232, 208, 0.6);
  --pt-accent: #C5A46D;
  --pt-rule: rgba(197, 164, 109, 0.22);

  position: relative;
  width: 100%;
  padding: 6.5rem 1.5rem 7rem;
  background: linear-gradient(180deg, var(--pt-bg-top) 0%, var(--pt-bg-bot) 100%);
  color: var(--pt-text);
}

/* Inner container matches the other constrained sections so the title
   and content align with the rest of the page's visual axis. */
.ptypes__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: stretch;
}

/* ---------- Left list ---------- */
.ptypes__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ptypes__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--pt-accent);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.ptypes__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 3.8vw + 0.5rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.ptypes__title-accent {
  display: block;
  font-style: italic;
  color: var(--pt-accent);
}

.ptypes__items {
  display: flex;
  flex-direction: column;
}

.ptype-item {
  appearance: none;
  background: transparent;
  border: none;
  border-top: 1px solid var(--pt-rule);
  padding: 1.1rem 1rem 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  color: var(--pt-text);
  transition:
    color 0.4s var(--ease-soft),
    padding-left 0.5s var(--ease-luxury),
    background 0.4s var(--ease-soft);
  position: relative;
}

.ptype-item:last-child {
  border-bottom: 1px solid var(--pt-rule);
}

/* Subtle gold left-indicator on hover/active */
.ptype-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--pt-accent);
  transform: translateY(-50%);
  transition: width 0.5s var(--ease-luxury);
}

.ptype-item:hover,
.ptype-item:focus-visible {
  outline: none;
  padding-left: 1.5rem;
}
.ptype-item:hover::before,
.ptype-item:focus-visible::before {
  width: 1rem;
}

.ptype-item.is-active {
  padding-left: 1.5rem;
}
.ptype-item.is-active::before {
  width: 1rem;
  background: var(--pt-accent);
}
.ptype-item.is-active .ptype-item__name {
  color: var(--pt-accent);
}

.ptype-item__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ptype-item__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: #ffffff;
  transition: color 0.4s var(--ease-soft);
  letter-spacing: 0.005em;
}

.ptype-item__size {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pt-mute);
}

.ptype-item__price {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-mute);
  white-space: nowrap;
}

.ptype-item__price strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* ---------- Right preview ---------- */
.ptypes__preview {
  position: relative;
  min-height: 580px;
}

.ptypes__preview-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0810;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}

.ptypes__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.7s var(--ease-luxury),
    transform 8s linear;
  will-change: opacity, transform;
}

.ptypes__preview-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.ptypes__preview-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
  z-index: 2;
}

.ptypes__preview-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  color: #ffffff;
}

.ptypes__preview-meta {
  font-size: 10.5px;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: rgba(255, 245, 225, 0.75);
  margin-bottom: 0.85rem;
}

.ptypes__preview-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  line-height: 1;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin-bottom: 0.45rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.ptypes__preview-size {
  font-size: 11px;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: rgba(255, 245, 225, 0.75);
  margin-bottom: 1.5rem;
}

.ptypes__preview-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}

.ptypes__preview-price span {
  font-size: 10.5px;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: rgba(255, 245, 225, 0.7);
}

.ptypes__preview-price strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw + 0.3rem, 2rem);
  color: var(--pt-accent);
  letter-spacing: 0.005em;
}

.ptypes__preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: #1a121d;
  background: #ffffff;
  border: 1px solid #DCCFDF;
  border-radius: 9999px;
  text-decoration: none;
  transition:
    transform 0.5s var(--ease-luxury),
    background 0.5s var(--ease-luxury),
    border-color 0.5s var(--ease-luxury);
}

.ptypes__preview-cta:hover {
  background: #F5EFF6;
  border-color: #CBB8CF;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 999px) {
  .ptypes { padding: 4.5rem 1.25rem 5rem; }
  .ptypes__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ptypes__preview-frame { min-height: 460px; }
}

@media (max-width: 599px) {
  .ptype-item {
    padding: 0.95rem 0;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .ptype-item__price { text-align: left; }
  .ptypes__preview-frame { min-height: 420px; border-radius: 14px; }
}

/* Pre-entrance hide so GSAP reveal lands cleanly */
html:not(.is-ready) [data-ptypes-eyebrow],
html:not(.is-ready) [data-ptypes-title],
html:not(.is-ready) [data-ptype],
html:not(.is-ready) [data-ptypes-preview] {
  opacity: 0;
}

/* ============================================================
   CONTACT — Register Your Interest
   ============================================================ */
.contact {
  --c-bg-top: #1a0f1c;
  --c-bg-bot: #150b18;
  --c-text: #f3e8d0;
  --c-mute: rgba(243, 232, 208, 0.6);
  --c-accent: #C5A46D;
  --c-rule: rgba(197, 164, 109, 0.28);

  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      90% 55% at 50% 0%,
      rgba(73, 40, 77, 0.4) 0%,
      rgba(73, 40, 77, 0) 65%
    ),
    linear-gradient(180deg, var(--c-bg-top) 0%, var(--c-bg-bot) 100%);
  color: var(--c-text);
}

/* Decorative cattleya silhouette overlay — large, overflows top/bottom,
   masked gold so it reads on the dark plum stage. */
.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28%;
  transform: translateY(-50%) rotate(-8deg);
  width: 155vh;
  height: 155vh;
  max-width: 1400px;
  max-height: 1400px;
  background: var(--c-accent);
  -webkit-mask: url('assets/pattern.svg') center / contain no-repeat;
          mask: url('assets/pattern.svg') center / contain no-repeat;
  -webkit-mask-mode: alpha;
          mask-mode: alpha;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* ---------- Intro (left column) ---------- */
.contact__intro {
  text-align: left;
}

.contact__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-wrap: balance;
}

.contact__title-accent {
  display: block;
  font-style: italic;
  color: var(--c-accent);
}

.contact__sub {
  margin-top: 1.5rem;
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--c-mute);
  max-width: 380px;
}

/* ---------- Form (right column) ---------- */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
}

.contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--c-mute);
}

.contact-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-rule);
  padding: 0.6rem 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  outline: none;
  transition: border-color 0.4s var(--ease-soft);
}

.contact-field input:focus,
.contact-field input:not(:placeholder-shown) {
  border-bottom-color: var(--c-accent);
}

.contact-field input:invalid:not(:placeholder-shown) {
  border-bottom-color: #d97070;
}

/* ---------- PDPA consent ---------- */
.contact__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  margin-top: 0.5rem;
  user-select: none;
}

.contact__consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.contact__consent-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--c-rule);
  border-radius: 3px;
  position: relative;
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}

.contact__consent-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--c-bg-top);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s var(--ease-luxury);
}

.contact__consent input:checked + .contact__consent-mark {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.contact__consent input:checked + .contact__consent-mark::after {
  transform: rotate(45deg) scale(1);
}

.contact__consent input:focus-visible + .contact__consent-mark {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.contact__consent-text {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--c-mute);
}

/* ---------- Submit ---------- */
.contact__submit {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.85rem;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--c-bg-top);
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
  border-radius: 9999px;
  cursor: pointer;
  transition:
    transform 0.5s var(--ease-luxury),
    background 0.5s var(--ease-luxury),
    border-color 0.5s var(--ease-luxury),
    color 0.5s var(--ease-luxury);
}

.contact__submit:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.contact__submit svg {
  flex-shrink: 0;
}

/* ---------- Success state ---------- */
.contact__success {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--c-text);
  background: rgba(197, 164, 109, 0.1);
  border: 1px solid var(--c-rule);
  border-radius: 12px;
  text-align: center;
}

.contact__form.is-submitted .contact-field,
.contact__form.is-submitted .contact__consent,
.contact__form.is-submitted .contact__submit {
  display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 859px) {
  .contact {
    min-height: 100svh;
    padding: 4rem 1.25rem;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact::before {
    left: -40%;
    width: 110vw;
    height: 110vw;
    opacity: 0.06;
  }
}

/* ============================================================
   SITE FOOTER — luxury editorial
   ============================================================ */
.site-footer {
  --foot-bg: #120914;
  --foot-fg: rgba(243, 232, 208, 0.85);
  --foot-mute: rgba(243, 232, 208, 0.55);
  --foot-gold: #C5A46D;
  --foot-rule: rgba(197, 164, 109, 0.22);

  position: relative;
  width: 100%;
  padding: 5rem 1.5rem 2.5rem;
  background:
    radial-gradient(
      120% 50% at 50% 0%,
      rgba(73, 40, 77, 0.45) 0%,
      rgba(73, 40, 77, 0) 65%
    ),
    linear-gradient(180deg, #150b18 0%, var(--foot-bg) 100%);
  color: var(--foot-fg);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.6;
  overflow: hidden;  /* clips the oversized brand mark's bottom half */
}

/* Single subtle top hairline as the only entry divider */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 14%,
    var(--foot-rule) 50%,
    transparent 86%
  );
  pointer-events: none;
}

/* ---------- Top: brand (left) + partner (right) ---------- */
.site-footer__top {
  max-width: 1480px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 460px;
}

.site-footer__logo {
  display: block;
  height: 3.25rem;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.site-footer__description {
  font-size: 13px;
  line-height: 1.65;
  color: var(--foot-fg);
  text-align: left;
}

.site-footer__partner-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}

.site-footer__byline {
  font-size: 10.5px;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--foot-mute);
  max-width: 280px;
}

.site-footer__partner {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s var(--ease-soft);
}
.site-footer__partner:hover { opacity: 0.7; }
.site-footer__partner img {
  display: block;
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

/* ---------- Address strip ---------- */
.site-footer__address {
  max-width: 720px;
  margin: 0 auto 3rem 0;
  font-style: normal;
  font-size: 13px;
  color: var(--foot-mute);
  line-height: 1.7;
}

/* ---------- Regulatory grid ---------- */
.site-footer__grid {
  max-width: 1480px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.footer-col__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--foot-gold);
  margin-bottom: 1.1rem;
  letter-spacing: 0.005em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
}

.footer-meta__row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-meta__row dt {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foot-mute);
  font-weight: 500;
}

.footer-meta__row dd {
  margin: 0;
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.45;
}

.footer-meta__note {
  display: block;
  margin-top: 0.2rem;
  font-size: 11.5px;
  color: var(--foot-mute);
  font-weight: 300;
}

/* ---------- Restriction & approval notices ---------- */
.site-footer__restriction,
.site-footer__approval {
  max-width: 1480px;
  margin: 0 auto 1rem;
  font-size: 12px;
  line-height: 1.65;
  color: var(--foot-mute);
}

.site-footer__restriction strong {
  color: var(--foot-fg);
  font-weight: 500;
}

.site-footer__approval {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--foot-gold);
  margin-bottom: 2.5rem;
}

.site-footer__approval a {
  color: var(--foot-gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.3s var(--ease-soft);
}
.site-footer__approval a:hover { opacity: 0.7; }

/* ---------- Disclaimer (always visible, full width) ---------- */
.site-footer__disclaimer {
  max-width: 1480px;
  margin: 0 auto 2.5rem;
}

.site-footer__disclaimer-title {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--foot-mute);
  margin-bottom: 0.75rem;
}

.site-footer__disclaimer p {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--foot-mute);
  font-style: italic;
  text-align: justify;
  margin: 0;
}

/* ---------- Bottom ---------- */
.site-footer__bottom {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--foot-mute);
}

.site-footer__credit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--foot-gold);
  margin: 0;
}

/* ---------- Oversized brand mark — full logo flush at the bottom ---------- */
.site-footer__big-logo {
  /* break out of footer's horizontal + bottom padding */
  margin: 2.5rem -1.5rem -2.5rem;
  position: relative;
  pointer-events: none;
  opacity: 0.92;
}

.site-footer__big-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .site-footer {
    padding: 3.5rem 1.25rem 2rem;
  }
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer__approval {
    font-size: 10px;
    text-align: left;
  }
  .site-footer__big-logo {
    margin: 2rem -1.25rem -2rem;
  }
}

/* ============================================================
   STORY — Apple-style scroll storytelling
   ------------------------------------------------------------
   · 500vh tall section with sticky inner viewport             ·
   · Lines reveal sequentially (opacity only — GPU friendly)   ·
   · Background scales from small card → fullscreen viewport   ·
   · Text colour swaps light → dark once bg fills viewport     ·
   · No blur, no backdrop-filter, no heavy shadows             ·
   ============================================================ */
.story {
  --story-bg: #150b18;     /* matches cattleya-stage so transition is seamless */
  --story-text: #f3e8d0;   /* champagne body text */
  --story-text-dark: #1a121d;
  --story-accent: #C5A46D;

  position: relative;
  height: 500vh;
  background: var(--story-bg);
}

.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--story-bg);
}

/* ---------- Plum brand backdrop (fades in after text reveal) ---------- */
.story__plum-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #49284D;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ---------- Paragraph (one flowing block, phrases fade in sequence) ---------- */
.story__paragraph {
  position: relative;
  z-index: 5;
  max-width: 720px;
  padding: 0 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw + 0.4rem, 30px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--story-text);
  will-change: color;
}

.story__phrase {
  opacity: 0.18;
  will-change: opacity, color;
}

/* a soft space between phrases without forcing a break */
.story__phrase + .story__phrase {
  margin-left: 0.25em;
}

/* ---------- Background — image at viewport size; only the MASK grows ---------- */
/* Image container is always 100vw × 100vh. The pattern-shape mask is
   centered and starts small (30vmax), then GSAP grows the mask-size
   to 180vmax — revealing more of the underlying viewport-bound image. */
.story__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-mask-image: url('assets/pattern-shape-full.svg');
          mask-image: url('assets/pattern-shape-full.svg');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 30vmax 30vmax;
          mask-size: 30vmax 30vmax;
  -webkit-mask-mode: alpha;
          mask-mode: alpha;
  opacity: 0;
  z-index: 1;
  will-change: opacity;
}

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

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .story {
    height: 450vh;
  }
  .story__paragraph {
    font-size: clamp(17px, 4.5vw, 22px);
  }
  .story__bg {
    -webkit-mask-size: 75vmin 75vmin;
            mask-size: 75vmin 75vmin;
  }
  /* Landscape banner cropped to portrait: anchor left so the couple
     (on the left of the image) stays in frame instead of being cut off. */
  .story__bg img {
    object-position: left center;
  }
}

/* Reduced motion: just show paragraph + small bg */
@media (prefers-reduced-motion: reduce) {
  .story { height: 100vh; }
  .story__phrase { opacity: 1; }
  .story__bg { opacity: 1; }
}

/* ============================================================
   CATTLEYA STAGE — single container wrapping
   .advantage (panel fan) + .surroundings (location directory).
   ONE background, ONE overflow boundary, ONE stacking context.
   ============================================================ */
.cattleya-stage {
  position: relative;
  width: 100%;
  background:
    /* Top plum glow (entry from hero) */
    radial-gradient(
      100% 30% at 50% 0%,
      rgba(73, 40, 77, 0.85) 0%,
      rgba(73, 40, 77, 0) 70%
    ),
    /* Base dark plum — uniform across both inner blocks */
    linear-gradient(
      180deg,
      #1d121f 0%,
      #1a0f1c 50%,
      #150b18 100%
    );
  overflow: hidden;
  isolation: isolate;
}

/* Top divider hairline — sits at the very top of the unified stage
   (was previously on .advantage). */
.cattleya-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 12%,
    rgba(197, 164, 109, 0.45) 38%,
    rgba(197, 164, 109, 0.55) 50%,
    rgba(197, 164, 109, 0.45) 62%,
    transparent 88%
  );
  z-index: 2;
  pointer-events: none;
}

/* ---------- Advantage block — content-only inside the stage ---------- */
.advantage {
  position: relative;
  width: 100%;
  padding: 7rem 1.5rem 5rem;
}

/* ---------- Intro ---------- */
.advantage__intro {
  max-width: 880px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* Small diamond ornament above the eyebrow — anchors the divider above */
.advantage__intro::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 2.25rem;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
  box-shadow: 0 0 18px rgba(197, 164, 109, 0.45);
}

.advantage__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: rgba(243, 232, 208, 0.7);
  margin-bottom: 1.25rem;
  position: relative;
  padding: 0 1.5rem;
}

.advantage__eyebrow::before,
.advantage__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: rgba(231, 207, 159, 0.4);
}
.advantage__eyebrow::before { left: -2rem; }
.advantage__eyebrow::after  { right: -2rem; }

.advantage__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-wrap: balance;
}

.advantage__title-accent {
  display: block;
  font-style: italic;
  color: var(--gold);
}

/* ---------- Panel container (fan layout) ---------- */
.advantage__panels {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: 1480px;
  margin: 0 auto;
  perspective: 1400px;
}

/* ---------- Individual panel — photo on top, text panel below ---------- */
.adv-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #1f1422;
  box-shadow:
    0 30px 60px -28px rgba(0, 0, 0, 0.85),
    0 12px 24px -16px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transform-origin: 50% 100%;
  transition:
    transform 0.7s var(--ease-luxury),
    box-shadow 0.7s var(--ease-luxury);
  /* No permanent will-change: GSAP sets/clears it per reveal, and the
     hover transition doesn't need a persistent compositor layer.
     Keeping it on all five cards wasted GPU memory on mobile. */
}

/* Fan rotation per panel — outer panels tilt away, center stays upright */
.adv-panel--01 { transform: rotate(-7deg) translateY(28px); z-index: 1; }
.adv-panel--02 { transform: rotate(-3.5deg) translateY(12px); z-index: 2; }
.adv-panel--03 { transform: rotate(0deg) translateY(0); z-index: 3; }
.adv-panel--04 { transform: rotate(3.5deg) translateY(12px); z-index: 2; }
.adv-panel--05 { transform: rotate(7deg) translateY(28px); z-index: 1; }

/* Hover — straighten + lift the panel forward */
.adv-panel:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.03);
  z-index: 10;
  box-shadow:
    0 50px 90px -28px rgba(0, 0, 0, 0.9),
    0 20px 40px -18px rgba(73, 40, 77, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* ---------- Panel media — photo fills the top portion ---------- */
.adv-panel__media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a121d;
}

.adv-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

/* Ken-burns zoom only where hover exists (desktop). will-change is scoped
   here too so mobile photos don't each hold an idle GPU layer. */
@media (hover: hover) {
  .adv-panel__media img {
    transition: transform 0.9s var(--ease-luxury);
    will-change: transform;
  }
}

/* Subtle ken-burns zoom on hover for cinematic feel */
.adv-panel:hover .adv-panel__media img {
  transform: scale(1.06);
}

/* ---------- Body — solid plum panel holding the text ---------- */
.adv-panel__body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.1rem 1.4rem 1.6rem;
  background: linear-gradient(180deg, #221627 0%, #190f1d 100%);
  border-top: 1px solid rgba(197, 164, 109, 0.22);
}

/* Related icon — gold ring straddling the image/panel seam */
.adv-panel__icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #190f1d;
  font-size: 22px;
  background: var(--gold, #C5A46D);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.8);
  transition: transform 0.5s var(--ease-luxury);
}

.adv-panel:hover .adv-panel__icon {
  transform: translateX(-50%) translateY(-3px) scale(1.06);
}

.adv-panel__label {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
}

.adv-panel__desc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(243, 232, 208, 0.78);
  text-wrap: balance;
}

/* Open / CTA icon — centred under the description */
.adv-panel__cta {
  margin-top: 1.1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold, #C5A46D);
  font-size: 16px;
  background: rgba(197, 164, 109, 0.12);
  border: 1px solid rgba(197, 164, 109, 0.5);
  transition: transform 0.45s var(--ease-luxury),
    background 0.45s var(--ease-luxury), color 0.45s var(--ease-luxury);
}

.adv-panel:hover .adv-panel__cta {
  transform: translateY(-2px) scale(1.08);
  background: var(--gold, #C5A46D);
  color: #190f1d;
}

/* ---------- Tablet ---------- */
@media (max-width: 1023px) {
  .advantage { padding: 5rem 1.25rem 6rem; }

  .advantage__panels {
    gap: 0.5rem;
  }
  .adv-panel { max-width: 220px; border-radius: 18px; }

  .adv-panel--01 { transform: rotate(-5deg) translateY(20px); }
  .adv-panel--02 { transform: rotate(-2.5deg) translateY(8px); }
  .adv-panel--04 { transform: rotate(2.5deg) translateY(8px); }
  .adv-panel--05 { transform: rotate(5deg) translateY(20px); }
}

/* ---------- Mobile — stack vertically, drop the fan ---------- */
@media (max-width: 767px) {
  .advantage { padding: 4rem 1.25rem 5rem; }
  .advantage__intro { margin-bottom: 2.75rem; }

  .advantage__panels {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .adv-panel,
  .adv-panel--01,
  .adv-panel--02,
  .adv-panel--03,
  .adv-panel--04,
  .adv-panel--05 {
    transform: none;
    /* Stack vertically; height grows with content (image + text panel).
       flex:0 0 auto avoids the column-flex collapse that hid the cards. */
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }
  /* Wider image on mobile since the card is no longer portrait */
  .adv-panel__media {
    aspect-ratio: 16 / 10;
  }
  .adv-panel:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

/* ---------- Pre-entrance hide so JS reveal can land cleanly ---------- */
html:not(.is-ready) [data-adv-eyebrow],
html:not(.is-ready) [data-adv-title],
html:not(.is-ready) [data-adv-panel] {
  opacity: 0;
}

/* ============================================================
   SURROUNDINGS — STRATEGIC LOCATION DIRECTORY
   Content-only block inside .cattleya-stage. No own background.
   ============================================================ */
.surroundings {
  --surr-text: #f3e8d0;                  /* champagne body text */
  --surr-muted: rgba(231, 207, 159, 0.6); /* muted secondary */
  --surr-accent: #C5A46D;                /* gold accent (titles, italics) */
  --surr-rule: rgba(197, 164, 109, 0.28); /* hairline divider */
  --surr-badge-bg: #fbf6ec;              /* cream pill */
  --surr-badge-text: #2a1c2c;            /* deep plum number */

  position: relative;
  width: 100%;
  padding: 3rem 1.5rem 7rem;
  color: var(--surr-text);
  /* Reset counter once for this block so badges go 1 → N */
  counter-reset: surround-num;
}

/* ---------- Section head ---------- */
.surroundings__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.surroundings__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: var(--surr-accent);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.surroundings__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-wrap: balance;
}

.surroundings__title-accent {
  font-style: italic;
  color: var(--surr-accent);
}

.surroundings__rule {
  display: block;
  width: 120px;
  height: 1px;
  margin: 1.5rem auto 1.75rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--surr-accent) 50%,
    transparent 100%
  );
  opacity: 0.65;
}

.surroundings__sub {
  font-family: var(--font-sans);
  font-size: clamp(14px, 0.7vw + 0.45rem, 15px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 232, 208, 0.75);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ---------- Grid of categories ---------- */
.surroundings__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem 2.25rem;
}

/* ---------- Category column ---------- */
.surround-cat__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.005em;
  color: var(--surr-accent);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--surr-rule);
}

.surround-cat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.surround-cat__item {
  counter-increment: surround-num;
  position: relative;
  padding-left: 36px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--surr-text);
  min-height: 24px;
}

/* Numbered circular badge — cream pill with deep plum number for contrast on dark stage */
.surround-cat__item::before {
  content: counter(surround-num);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surr-badge-bg);
  color: var(--surr-badge-text);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 4px 12px -3px rgba(0, 0, 0, 0.4);
}

/* Optional distance pill — muted, smaller */
.surround-cat__km {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--surr-muted);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

/* ---------- Tablet ---------- */
@media (max-width: 1199px) {
  .surroundings__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .surroundings { padding: 4.5rem 1.25rem 5rem; }
  .surroundings__head { margin-bottom: 2.75rem; }
  .surroundings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .surround-cat__name { font-size: 1.1rem; }
}

@media (max-width: 479px) {
  .surroundings__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 360px;
  }
}

/* ---------- Pre-entrance hide ---------- */
html:not(.is-ready) [data-surr-eyebrow],
html:not(.is-ready) [data-surr-title],
html:not(.is-ready) [data-surr-sub],
html:not(.is-ready) [data-surr-cat] {
  opacity: 0;
}

/* ============================================================
   GALLERY — full-viewport cinematic crossfade slideshow
   ============================================================ */
.gallery {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0b0810;
  isolation: isolate;
}

/* ---------- Slide stack ---------- */
.gallery__stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gallery__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* No permanent will-change: GSAP force3D promotes each slide during its
     tween. Keeping 5 always-on compositor layers wasted GPU memory on
     mobile even while the gallery was far off-screen.
     JS positions all slides — no CSS interference. */
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
  transform: scale(1.35);
}

/* ---------- Scrim — darken corners for text legibility ---------- */
.gallery__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0, 0, 0, 0.35) 78%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 45%
    );
}

/* ---------- Bottom-left title label ---------- */
.gallery__label {
  position: absolute;
  left: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  z-index: 3;
  max-width: 600px;
  color: #ffffff;
  pointer-events: none;
}

.gallery__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-editorial);
  text-transform: uppercase;
  color: rgba(243, 232, 208, 0.85);
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.gallery__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}

.gallery__title-accent {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.gallery__caption {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 245, 225, 0.7);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  transition: opacity 0.5s var(--ease-luxury);
}

/* ---------- Bottom-right indicator ---------- */
.gallery__indicator {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.gallery__count {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 245, 225, 0.92);
}

.gallery__disclaimer {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 245, 225, 0.5);
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .gallery {
    height: 100svh;
  }
  .gallery__title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }
  .gallery__caption {
    font-size: 11px;
    letter-spacing: 0.15em;
  }
}
