/* ============================================================
   Thomson Reserve — Brand Stylesheet (Jolyn Fo variant)
   Palette:
     Teal Blue      #517777  (primary, this variant) — logos, accents, CTAs
     Cedar Wood     #7E553A  (Kent/Idy's primary — not used here)
     Mulled Wine    #60363C  (deep)         — dark surfaces
     Porcelain Lt   #F4F4EA  (cream)        — base background
     Stone Garden   #DAD6B3  (warm tan)     — secondary tint
     Morning Mist   #98B5B1  (misty teal)   — soft accent, used as --gold-light here
     Canopy Green   #A8A67B  (olive)        — natural accent
     Water Lilies   #D8D2D5  (soft neutral) — support

   Typography:
     Headers — Cormorant Garamond (fallback for Civane Norm Book)
     Body    — Nunito Sans (fallback for ABC Ginto Nord Regular)
   ============================================================ */

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

:root {
  /* dark warm-brown surfaces */
  --black:        #2C1A11;
  --black-soft:   #3A2418;
  /* primary accent for this site (Teal Blue, from the Thomson Reserve secondary palette) —
     kept var name --gold for legacy CSS/HTML reuse; Cedar Wood is Kent/Idy's accent, this
     is Jolyn's so the two sites don't read identically */
  --gold:         #517777;
  --gold-light:   #98B5B1;
  --gold-muted:   rgba(81,119,119,0.25);
  /* cream surfaces */
  --cream:        #F4F4EA;
  --cream-dark:   #E8E4D0;
  --white:        #FFFFFF;
  /* text tones */
  --text:         #2C1E15;
  --text-muted:   #6B5C4E;
  --border:       rgba(81,119,119,0.2);
  --nav-h:        80px;

  /* Thomson Reserve secondary accents */
  --mist:         #98B5B1;
  --teal:         #517777;
  --canopy:       #A8A67B;
  /* deep cedar — woody/earthy dark tone (replaces Mulled Wine per client) */
  --wine:         #5A3D2B;
  --stone:        #DAD6B3;
  --lily:         #D8D2D5;

  --serif:  'Fraunces', 'Civane Norm Book', Georgia, serif;
  --sans:   'Manrope', 'ABC Ginto Nord', 'Helvetica Neue', sans-serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html { font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse at 15% 10%, rgba(152,181,177,0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 25%, rgba(218,214,179,0.12) 0%, transparent 45%),
    var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
.serif { font-family: var(--serif); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 130px 0; }

.section--dark {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(81,119,119,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(168,166,123,0.18) 0%, transparent 55%),
    var(--wine);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }

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

.section--dark .body-text,
.card--dark .body-text,
.split__content .body-text { color: rgba(244, 244, 234, 0.75); }

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--mist  { background: linear-gradient(180deg, var(--cream) 0%, #E8ECE9 100%); }
.section--stone { background: var(--stone); }

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line--center { margin: 1.5rem auto; }

.section-header { margin-bottom: 60px; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-mist   { color: var(--mist); }
.text-teal   { color: var(--teal); }
.text-canopy { color: var(--canopy); }

/* ─── Brand mark (inline SVG logo) ──────────────────────────── */
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  line-height: 1;
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  color: currentColor;
  display: block;
}

.brand-mark__wordmark {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: currentColor;
}

.brand-mark--lg svg { width: 68px; height: 68px; }
.brand-mark--lg .brand-mark__wordmark { font-size: 1.35rem; letter-spacing: 0.32em; }

.brand-mark--sm svg { width: 30px; height: 30px; }
.brand-mark--sm .brand-mark__wordmark { font-size: 0.72rem; letter-spacing: 0.24em; }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(244, 244, 234, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  text-shadow: none;
}

.nav__logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

.nav__logo:hover .nav__logo-img { opacity: 0.8; }

/* legacy inline-SVG fallback */
.nav__logo svg { width: 34px; height: 34px; color: currentColor; }
.nav__logo-text {
  font-family: var(--serif); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: currentColor;
  white-space: nowrap; margin-left: 0.65rem;
}
@media (max-width: 1100px) { .nav__logo-text { display: none; } }

.nav--scrolled .nav__logo { color: var(--gold); }

/* Screen-reader only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  padding-left: 2rem;
}

.nav__link {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(60, 30, 21, 0.78);
  text-shadow: none;
  transition: color 0.3s;
  position: relative;
}

.nav--scrolled .nav__link {
  color: rgba(60, 30, 21, 0.72);
  text-shadow: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link--active { color: var(--wine); }

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__cta {
  margin-left: 1rem;
  padding: 0.55rem 1.5rem;
  background: var(--gold);
  color: var(--cream) !important;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, opacity 0.3s;
  text-shadow: none;
}

.nav__cta:hover { background: var(--gold-light); }
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span { background: var(--wine); }

/* ─── Mobile Nav ────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  flex-direction: column;
  gap: 2rem;
}

.nav__mobile--open { display: flex; }

.nav__mobile .nav__link {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(244,244,234,0.75);
}

.nav__mobile .nav__cta {
  display: inline-block;
  margin-left: 0;
  text-align: center;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after { display: none; }

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.05);
  will-change: transform;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Placeholder hero backdrop — soft watercolour wash on cream */
.hero__bg--placeholder {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(152,181,177,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(216,201,213,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 70% 85%, rgba(218,214,179,0.75) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 25% 90%, rgba(168,166,123,0.5) 0%, transparent 55%),
    linear-gradient(180deg, #F4F4EA 0%, #EEEBDD 50%, #E4E4D0 100%);
  transform: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244,244,234,0) 0%,
    rgba(244,244,234,0.15) 60%,
    rgba(244,244,234,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero__brand-mark {
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease) 0.2s forwards;
}

.hero__brand-mark svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
  filter: none;
}

.hero__logo {
  display: block;
  width: min(420px, 68vw);
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s var(--ease) 0.4s forwards;
}

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

.hero__brand-mark svg {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease) 0.4s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 auto 1.75rem;
  max-width: 12ch;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s var(--ease) 0.65s forwards;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease) 0.9s forwards;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--wine);
  opacity: 0.72;
  letter-spacing: 0.01em;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease) 1.1s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin: 2.75rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease) 1.3s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFade 1s var(--ease) 1.5s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.5;
  writing-mode: horizontal-tb;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Cinematic media hero (video / photo background) ───────── */
.hero--media { align-items: flex-end; }

.hero--media .hero__content {
  padding-bottom: 6rem;
}

.hero--media .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(30,18,11,0.55) 0%,
    rgba(30,18,11,0.20) 38%,
    rgba(30,18,11,0.72) 100%
  );
}

.hero--media .hero__logo { filter: brightness(0) invert(1); opacity: 0.97; }
.hero--media .hero__eyebrow { color: var(--gold-light); }
.hero--media .hero__title,
.hero--media .hero__tagline { color: #FFFFFF; }
.hero--media .hero__subtitle { color: rgba(255,255,255,0.88); }
.hero--media .hero__scroll span { color: rgba(255,255,255,0.72); opacity: 1; }
.hero--media .hero__scroll-line { background: linear-gradient(to bottom, var(--gold-light), transparent); }

.hero--media .btn--outline {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}
.hero--media .btn--outline:hover { background: var(--gold); border-color: var(--gold); color: var(--cream); }

/* Transparent nav sits over the media hero (index only) — light treatment */
.nav:not(.nav--scrolled) .nav__link { color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.nav:not(.nav--scrolled) .nav__link:hover,
.nav:not(.nav--scrolled) .nav__link--active { color: #FFFFFF; }
.nav:not(.nav--scrolled) .nav__logo-img { filter: brightness(0) invert(1); }
.nav:not(.nav--scrolled) .nav__hamburger span { background: #FFFFFF; }

/* ─── Intro Split ───────────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-split__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--mist) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Map / infographic variant — show the full image, never crop */
.intro-split__image--map {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  border-radius: 8px;
}
.intro-split__image--map img {
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(90,61,43,0.08);
}

.intro-split__image--placeholder::before {
  content: '';
  position: absolute;
  inset: 20% 25%;
  background:
    radial-gradient(circle at 30% 40%, rgba(244,244,234,0.35) 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(218,214,179,0.4) 0%, transparent 50%);
}

.intro-split__image--placeholder .brand-mark {
  position: relative;
  color: rgba(244,244,234,0.9);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  max-width: 80%;
  text-align: center;
}
/* Keep multi-word wordmarks fully inside the plate — wrap & centre, no crop */
.intro-split__image--placeholder .brand-mark__wordmark {
  white-space: normal;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: center;
}

/* ─── Two-col tables ────────────────────────────────────────── */
.two-col-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─── Stats Strip ───────────────────────────────────────────── */
.stats {
  background: linear-gradient(180deg, rgba(218,214,179,0.55) 0%, rgba(218,214,179,0.35) 100%);
  border-top: 1px solid rgba(81,119,119,0.15);
  border-bottom: 1px solid rgba(81,119,119,0.15);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.stat {
  padding: 2.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(81,119,119,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat:last-child { border-right: none; }

.stats__trust {
  text-align: center;
  padding: 1.5rem 2rem 2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
  border-top: 1px solid rgba(81,119,119,0.15);
}

.stat__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.stat__label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
}

/* ─── Cards Grid ────────────────────────────────────────────── */
.cards { display: grid; gap: 1.5rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(81,119,119,0.15);
  border-radius: 6px;
  padding: 2.75rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(90,61,43,0.10);
  border-color: rgba(81,119,119,0.35);
}

.card--dark {
  background: var(--black-soft);
  border-color: var(--border);
}

.card--dark:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.card__number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Amenity Image Cards ───────────────────────────────────── */
.amenity-card { padding: 0; overflow: hidden; }

.amenity-card__img {
  position: relative;
  height: 200px;
  background: var(--cream-dark);
  overflow: hidden;
}

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

.amenity-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--stone) 0%, var(--canopy) 100%);
}

.amenity-card__img--placeholder::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wine);
  z-index: 1;
}

.amenity-card__img--dark { background: #1a1a18; }

.amenity-card__img--dark.amenity-card__img--placeholder {
  background: linear-gradient(135deg, var(--wine) 0%, var(--black-soft) 100%);
}

.amenity-card__img--dark.amenity-card__img--placeholder::after {
  color: var(--gold-light);
}

.amenity-card__img-label { display: none; }

.amenity-card__body { padding: 1.75rem; }

/* ─── Image-Text Split ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split--duo .split__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.split--duo .split__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}
.split--duo:hover .split__images img { transform: scale(1.04); }

.split__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--mist) 0%, var(--teal) 60%, var(--wine) 100%);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split:hover .split__image img { transform: scale(1.04); }

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--black);
}

.split__content--light { background: var(--cream); }

/* ─── Tables ────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

thead th {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 1rem 1.5rem;
  background: var(--black);
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(81,119,119,0.12);
  transition: background 0.2s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(81,119,119,0.04); }

tbody td {
  padding: 1rem 1.5rem;
  font-weight: 400;
  color: var(--text);
  vertical-align: top;
  line-height: 1.6;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.table--dark tbody td { color: rgba(244,244,234,0.8); }
.table--dark tbody td:first-child { color: var(--cream); }
.table--dark tbody tr { border-color: var(--border); }
.table--dark tbody tr:hover { background: rgba(81,119,119,0.06); }

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}

.faq-question__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.faq-question__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s var(--ease);
}

.faq-item--open .faq-question__icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item--open .faq-question__icon svg {
  stroke: var(--cream);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-answer__inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer__inner p + p { margin-top: 0.75rem; }

/* ─── Page Hero (Sub-pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(152,181,177,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(216,201,213,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 70% 90%, rgba(218,214,179,0.7) 0%, transparent 65%),
    linear-gradient(180deg, #F4F4EA 0%, #EEEBDD 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244,244,234,0) 0%,
    rgba(244,244,234,0.2) 60%,
    rgba(244,244,234,0.55) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.55;
  margin-bottom: 1.25rem;
}

.page-hero__breadcrumb a {
  color: var(--wine);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.page-hero__breadcrumb a:hover { color: var(--gold); opacity: 1; }
.page-hero__breadcrumb .sep { opacity: 0.4; }
.page-hero__breadcrumb .current { color: var(--gold); opacity: 1; }

/* ─── Selling Points ────────────────────────────────────────── */
.selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.selling-point {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.selling-point:nth-child(3n) { border-right: none; }
.selling-point:nth-child(n+7) { border-bottom: none; }

.selling-point::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.selling-point:hover::before { width: 100%; }

.selling-point__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.selling-point__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.selling-point__text {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Page Nav Links ────────────────────────────────────────── */
.page-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-nav__item {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}

.page-nav__item:last-child { border-right: none; }
.page-nav__item:hover { background: rgba(81,119,119,0.05); }

.page-nav__item::after {
  content: '→';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s, right 0.3s var(--ease);
}

.page-nav__item:hover::after {
  opacity: 1;
  right: 1.25rem;
}

.page-nav__num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold-light);
}

.page-nav__title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,244,234,0.75);
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(152,181,177,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(218,214,179,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 50% 15%, rgba(216,201,213,0.55) 0%, transparent 60%),
    linear-gradient(180deg, #F4F4EA 0%, #E8ECE9 100%);
}

/* Photo variant — used where cta-banner__bg carries a background-image instead of the abstract gradient */
.cta-banner__bg--photo {
  background: none;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
}

.btn--gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--gold);
}

.btn--outline:hover { background: var(--gold); color: var(--cream); border-color: var(--gold); }

.btn--outline-dark {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--gold);
}

.btn--outline-dark:hover { background: var(--gold); color: var(--cream); }

/* Buttons in dark sections need a lighter outline */
.section--dark .btn--outline {
  color: var(--cream);
  border-color: var(--gold-light);
}
.section--dark .btn--outline:hover { background: var(--gold-light); color: var(--wine); }

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Facility Icon Grid ─────────────────────────────────────── */
.fac-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 4rem;
}

.fac-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.fac-icon__wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(81,119,119,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.fac-icon:hover .fac-icon__wrap {
  border-color: var(--gold);
  background: rgba(81,119,119,0.08);
}

.fac-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fac-icon__label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) { .fac-icons { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .fac-icons { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; } }

/* ─── Form ──────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.section--dark .form-group input,
.section--dark .form-group select,
.section--dark .form-group textarea {
  background: rgba(81,119,119,0.04);
  border-color: var(--border);
  color: var(--cream);
}

.section--dark .form-group input::placeholder,
.section--dark .form-group textarea::placeholder {
  color: rgba(244,244,234,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── fSelect: multi-select dropdown ───────────────────────── */
.fselect { position: relative; font-family: var(--sans); }

.fselect__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 0.5rem 2.5rem 0.5rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}

.fselect__trigger:hover { border-color: var(--gold); }
.fselect.is-open .fselect__trigger { border-color: var(--gold); border-bottom-color: transparent; border-radius: 3px 3px 0 0; }

.fselect__placeholder {
  font-size: 0.85rem;
  color: #aaa;
  pointer-events: none;
  user-select: none;
}

.fselect__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold-muted);
  border: 1px solid rgba(81,119,119,0.4);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.fselect__tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(81,119,119,0.3);
  color: var(--black);
  font-size: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}

.fselect__tag-remove:hover { background: var(--gold); color: var(--cream); }

.fselect__arrow {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold);
  transition: transform 0.2s;
}

.fselect.is-open .fselect__arrow { transform: translateY(-50%) rotate(180deg); }

.fselect__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gold);
  border-top: none;
  border-radius: 0 0 3px 3px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.fselect.is-open .fselect__menu { display: block; }

.fselect__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(81,119,119,0.08);
}

.fselect__option:last-child { border-bottom: none; }
.fselect__option:hover { background: var(--cream); }
.fselect__option.is-selected { background: rgba(81,119,119,0.08); }

.fselect__tick {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.fselect__option.is-selected .fselect__tick {
  background: var(--gold);
  border-color: var(--gold);
}

.fselect__tick::after {
  content: '';
  display: none;
  width: 4px;
  height: 7px;
  border: 1.5px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.fselect__option.is-selected .fselect__tick::after { display: block; }
.fselect__option-label { flex: 1; font-weight: 400; }

.fselect__option-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ─── Toggle pills ─────────────────────────────────────────── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.pill-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}

.pill-option:hover { border-color: var(--gold); color: var(--black); }

.pill-option.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

.pill-option input[type="checkbox"] { display: none; }

.gated-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ─── Developer Cards ───────────────────────────────────────── */
.dev-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  margin-bottom: 1.5rem;
  background: #F3F3EE;
  border: 1px solid rgba(81,119,119,0.12);
  border-radius: 6px;
  padding: 1.1rem 1.5rem;
}

.dev-card__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/* Developer logo plate inside a split image column (developer.html) */
.intro-split__image--logo {
  aspect-ratio: 4 / 3;
  background: #F3F3EE;
  border: 1px solid rgba(81,119,119,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.intro-split__image--logo::before { content: none; }
.intro-split__image--logo img {
  width: 76%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
}

.dev-card__logo--placeholder {
  background: var(--stone);
  color: var(--wine);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
}

.dev-card__logo--dark {
  background: var(--black);
  border-radius: 6px;
  padding: 1rem 1.5rem;
}

/* ─── Developer Logos ────────────────────────────────────────── */
.dev-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.dev-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.dev-logo:hover { opacity: 1; }

.dev-logo__mark {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dev-logo__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
}

/* ─── PDF Modal ─────────────────────────────────────────────── */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.pdf-modal--open { display: flex; }

.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 17, 0.88);
  backdrop-filter: blur(6px);
}

.pdf-modal__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 1000px);
  height: min(88vh, 800px);
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.pdf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pdf-modal__title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pdf-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  color: rgba(244,244,234,0.5);
  font-size: 1.5rem;
  transition: color 0.2s;
}

.pdf-modal__close:hover { color: var(--cream); }

.pdf-modal__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.pdf-modal__frame {
  flex: 1;
  width: 100%;
  min-height: 100%;
  border: none;
  display: block;
}

/* ─── Location Highlights ────────────────────────────────────── */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.location-highlight {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--cream-dark);
}

.location-highlight__label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
}

.location-highlight__text {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.6;
}

/* ─── Unit Collection Cards ──────────────────────────────────── */
.unit-collection__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}

.unit-collection__subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.unit-collection__list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.unit-collection__list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.unit-collection__list li span {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Collection quick-facts row (towers · storeys · bedrooms) */
.unit-collection__meta {
  display: flex;
  gap: 1.75rem;
  margin: 0.25rem 0 1.25rem;
  flex-wrap: wrap;
}
.unit-collection__meta > div {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}
.unit-collection__meta-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--wine);
}

/* Finishing tiers */
.unit-collection__tiers {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}
.unit-tier__head {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.unit-tier__list {
  list-style: none;
}
.unit-tier__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
}
.unit-tier__list li span {
  color: var(--text-muted);
  text-align: right;
}

/* ─── Floor-plan gallery (show units) ────────────────────────── */
.floorplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.floorplan-card {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.floorplan-card__figure {
  margin: 0;
  background: #fff;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.floorplan-card__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.floorplan-card__body {
  padding: 1.4rem 1.6rem 1.6rem;
}
.floorplan-card__type {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1.2;
}
.floorplan-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.floorplan-card__meta strong {
  color: var(--text);
  font-weight: 600;
}
.floorplan-card__tag {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 780px) {
  .floorplan-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── Amenity gallery (facilities renders) ──────────────────── */
.amenity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.amenity-gallery figure {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(90,61,43,0.10);
}
.amenity-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.amenity-gallery figure:hover img { transform: scale(1.05); }
.amenity-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.75rem 1.1rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(30,18,11,0.78) 0%, transparent 100%);
}
@media (max-width: 900px) { .amenity-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenity-gallery { grid-template-columns: 1fr; } .amenity-gallery img { height: 220px; } }

/* ─── SML banner (School · MRT · Large) ──────────────────────── */
.sml-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(90,61,43,0.08);
}

/* ─── Responsive price grid ─────────────────────────────────── */
@media (max-width: 900px) {
  .section--dark [style*="grid-template-columns:1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ─── Integrated Lifestyle Grid ──────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.lifestyle-grid__map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(90,61,43,0.08);
}

.lifestyle-grid__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.lifestyle-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.lifestyle-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  box-shadow: 0 6px 18px rgba(90,61,43,0.10);
}

.lifestyle-item p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
  line-height: 1.5;
  margin: 0;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

@media (max-width: 900px) {
  .lifestyle-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .lifestyle-item { grid-template-columns: 100px 1fr; gap: 1rem; }
  .lifestyle-item img { height: 78px; }
  .lifestyle-item p { font-size: 1rem; }
}

/* ─── Facilities Image Strip ─────────────────────────────────── */
.facilities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 400px;
  overflow: hidden;
  margin-top: 3rem;
}

.facilities-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.facilities-images:hover img { transform: scale(1.03); }

.facilities-images__placeholder {
  background: linear-gradient(135deg, var(--teal) 0%, var(--wine) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,234,0.7);
}

.facilities-images__placeholder + .facilities-images__placeholder {
  background: linear-gradient(135deg, var(--mist) 0%, var(--canopy) 100%);
  color: var(--wine);
}

/* ─── Mobile Nav Book-A-Viewing button ──────────────────────── */
.nav__book-btn {
  display: none;
  padding: 0.45rem 0.85rem;
  background: var(--gold);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  align-items: center;
}

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  background: var(--gold);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(81,119,119,0.5);
  z-index: 150;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
  flex-shrink: 0;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(81,119,119,0.65);
  color: var(--cream);
  background: var(--gold-light);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand .brand-mark {
  align-items: flex-start;
  color: var(--gold-light);
}

.footer__logo-img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer__tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(244,244,234,0.5);
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(244,244,234,0.55);
  transition: color 0.3s;
}

.footer__link:hover { color: var(--gold-light); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(244,244,234,0.75);
  margin-bottom: 0.75rem;
}

.footer__disclaimer {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(244,244,234,0.45);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  text-align: center;
}

.footer__agency {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__agency-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer__era-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin: 0 auto 1rem;
  display: block;
}

.footer__agency-info {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(244,244,234,0.85);
  line-height: 1.7;
  margin-bottom: 0.2rem;
}

.footer__agency-sales {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(244,244,234,0.65);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer__legal-links {
  font-size: 0.7rem;
  color: rgba(244,244,234,0.3);
  margin-top: 0.75rem;
}

.footer__legal-links a {
  color: rgba(244,244,234,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-links a:hover { color: var(--gold-light); }

.footer__legal-sep { margin: 0 0.5rem; opacity: 0.4; }

/* ─── Unit Type Cards ───────────────────────────────────────── */
.unit-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.unit-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.unit-card__header {
  background: var(--black);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

.unit-card__type {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.unit-card__size {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.unit-card__body {
  background: var(--white);
  padding: 1.5rem 2rem;
}

.unit-card__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(81,119,119,0.1);
  font-size: 0.85rem;
}

.unit-card__detail:last-child { border-bottom: none; }
.unit-card__detail-label { font-weight: 400; color: var(--text-muted); }
.unit-card__detail-value { font-weight: 600; color: var(--text); }

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Facilities Grid ───────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.facility-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.3s;
}

.facility-item:hover { background: rgba(81,119,119,0.04); }
.facility-item:nth-child(3n) { border-right: none; }

.facility-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.facility-item__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ─── Positioning callout (sanctuary block) ─────────────────── */
.positioning {
  background: var(--stone);
  padding: 90px 0;
  text-align: center;
}

.positioning__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.positioning__lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--wine);
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.positioning__body {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--wine);
  opacity: 0.85;
  line-height: 1.9;
}

.positioning__body p + p { margin-top: 1.25rem; }

.positioning__mark {
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ─── Spacers ───────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__inner { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n) { border-right: none; }
  .stat:nth-child(3) { border-right: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .selling-points { grid-template-columns: repeat(2, 1fr); }
  .selling-point:nth-child(3n) { border-right: 1px solid var(--border); }
  .selling-point:nth-child(2n) { border-right: none; }
  .selling-point:nth-child(n+7) { border-bottom: 1px solid var(--border); }
  .selling-point:nth-child(n+9) { border-bottom: none; }
  .page-nav { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .facility-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 0 1.25rem; }
  .nav__logo-text { display: none; }

  .section { padding: 70px 0; }

  .pdf-modal__box {
    width: 100%;
    height: 100dvh;
    height: 100vh;
    border: none;
  }
  .pdf-modal__header { padding: 0.75rem 1rem; }
  .pdf-modal__body { -webkit-overflow-scrolling: touch; }
  .pdf-modal__frame { min-height: 500px; }
  .container { padding: 0 1.25rem; }

  .intro-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-split__image { order: -1; aspect-ratio: 4/3; }

  .two-col-tables { grid-template-columns: 1fr; gap: 2.5rem; }

  .container .btn,
  .container--narrow .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .hero__content { padding: 0 1.25rem 5rem; }
  .stats { padding-bottom: 1.5rem; }
  .page-hero { height: auto; min-height: 0; padding: 6rem 0 3rem; align-items: center; }
  .page-hero__content { padding: 1.5rem 1.25rem 2rem; }

  .split { grid-template-columns: 1fr; }
  .split__image { height: 300px; }
  .split__content { padding: 3rem 1.5rem; }

  .split--duo { grid-template-columns: 1fr; }
  .split--duo .split__images { height: 500px; grid-template-rows: 1fr 1fr; }

  .facilities-images { height: 260px; gap: 2px; }

  .cards--2,
  .cards--3 { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: 1fr; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: none; }
  .location-highlights { grid-template-columns: 1fr; }

  .selling-points { grid-template-columns: 1fr; }
  .selling-point { border-right: none; }
  .selling-point:nth-child(n) { border-bottom: 1px solid var(--border); }
  .selling-point:last-child { border-bottom: none; }

  .page-nav { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__brand-mark { display: flex; justify-content: center; }
  .footer__logo-img { margin: 0 auto; width: 180px; }
  .footer__tagline { text-align: center; }
  .footer__links { align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__disclaimer { text-align: center; max-width: 100%; }

  .form-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-item:nth-child(n) { border-right: none; }

  .table-wrap { overflow-x: visible; font-size: 0.9rem; }
  table { min-width: 0; width: 100%; }
  thead { display: none; }
  tbody tr {
    display: block;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
  }
  tbody tr:last-child { border-bottom: 1px solid var(--border); margin-bottom: 0; }
  tbody tr:hover { background: inherit; }
  tbody td {
    display: block;
    padding: 0.5rem 1rem 0.35rem;
    white-space: normal;
    border-bottom: 1px solid rgba(81,119,119,0.08);
  }
  tbody td:last-child { border-bottom: none; padding-bottom: 0.6rem; }
  tbody td:first-child { white-space: normal; }
  tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }
  .table--dark tbody tr { border-color: rgba(81,119,119,0.25); }
  .table--dark tbody td { border-bottom-color: rgba(81,119,119,0.1); }

  .body-text { font-size: 1rem; line-height: 1.8; }
  .selling-point__title { font-size: 1.1rem; }
  .selling-point__text { font-size: 0.9rem; }
  .page-nav__title { font-size: 0.72rem; }
  .page-nav__num { font-size: 0.95rem; }
  .page-nav { grid-template-columns: 1fr 1fr; }
  thead th { padding: 0.75rem 1rem; }
}

/* ─── Floor Plan Lightbox ──────────────────────────────────── */
.fp-thumb { cursor: zoom-in; transition: opacity 0.2s; }
.fp-thumb:hover { opacity: 0.88; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(44, 26, 17, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 3.5rem 1.5rem 2rem;
}
.lightbox.is-open { display: block; animation: lb-in 0.22s var(--ease) both; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner {
  position: relative;
  width: min(780px, 95vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f0ea;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lb-scale 0.24s var(--ease) both;
}
@keyframes lb-scale { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__caption {
  margin-top: 0.85rem;
  color: rgba(244,244,234,0.75);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  background: none;
  border: 1px solid rgba(81,119,119,0.35);
  color: var(--gold-light);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.lightbox__close:hover { background: rgba(81,119,119,0.15); border-color: var(--gold); }

/* ─── Booking Modal ──────────────────────────────────────────── */
.booking-modal {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(44,26,17,0.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.booking-modal.is-open { display: flex; animation: lb-in 0.22s var(--ease) both; }
.booking-modal__box {
  background: var(--cream); width: min(480px, 100%); border-radius: 4px;
  padding: 2.5rem 2rem 2rem; position: relative;
}
.booking-modal__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.4rem; color: var(--text-muted); cursor: pointer; line-height: 1;
}
.booking-modal__close:hover { color: var(--black); }
.booking-modal__label {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block;
}
.booking-modal__title {
  font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--black); margin-bottom: 0.4rem; line-height: 1.15;
}
.booking-modal__sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.booking-modal__field { margin-bottom: 1rem; }
.booking-modal__field input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #d8d0c2;
  background: #fff; font-family: var(--sans); font-size: 0.9rem;
  color: var(--black); border-radius: 2px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.booking-modal__field input:focus { outline: none; border-color: var(--gold); }
.booking-modal__field input::placeholder { color: #aaa; }
.booking-modal__submit {
  width: 100%; margin-top: 0.5rem; padding: 0.9rem;
  background: var(--gold); color: var(--cream); border: none; border-radius: 2px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.booking-modal__submit:hover { background: var(--gold-light); color: var(--black); }
.booking-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.booking-modal__note {
  text-align: center; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.85rem;
}
.booking-modal--full .booking-modal__box {
  width: min(620px, 100%); max-height: 90vh; overflow-y: auto; padding-bottom: 2.5rem;
}
.booking-modal--full .booking-modal__box .form-group { margin-bottom: 1.25rem; }
.booking-modal--full .booking-modal__box .form-group label {
  display: block; font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.booking-modal--full .booking-modal__box .form-group input,
.booking-modal--full .booking-modal__box .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #d8d0c2;
  background: #fff; font-family: var(--sans); font-size: 0.9rem;
  color: var(--black); border-radius: 2px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.booking-modal--full .booking-modal__box .form-group input:focus,
.booking-modal--full .booking-modal__box .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.booking-modal--full .booking-modal__box textarea { resize: vertical; min-height: 80px; }
.booking-modal--full .booking-modal__pdpa {
  font-size: 0.7rem; color: var(--text-muted); line-height: 1.6; margin: 0.5rem 0 1rem;
}
.vm-progress { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }
.vm-dot { height: 3px; flex: 1; background: #ddd; border-radius: 2px; transition: background 0.3s; }
.vm-dot--active { background: var(--gold); }
.vm-step { display: none; }
.vm-step.vm-step--active { display: block; animation: lb-in 0.2s var(--ease) both; }
.vm-step-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.vm-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.vm-back {
  padding: 0.9rem 1.25rem; background: transparent; border: 1px solid #d8d0c2;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.vm-back:hover { border-color: var(--gold); color: var(--gold); }

.footer__credit-link { color: rgba(244,244,234,0.3); text-decoration: none; transition: color 0.2s; }
.footer__credit-link:hover { color: var(--gold-light); }

/* ─── PDPA Consent Checkbox ────────────────────────────────── */
.pdpa-check { display: flex; align-items: flex-start; gap: 0; }
.pdpa-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.pdpa-label input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--gold); width: 14px; height: 14px; cursor: pointer; }
.pdpa-label span { font-family: var(--sans); font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.pdpa-label span a { color: var(--gold); text-decoration: none; }
.pdpa-label span a:hover { text-decoration: underline; }
