/* ================================================================
   EMINENCE ZENITH — Visual Design System v5
   
   Research basis: Aman, Six Senses, Soneva, Nihi Sumba
   Core principle: The image IS the product. Typography is the host.
   
   Hierarchy rules:
   1. One dominant visual per viewport — never two heroes competing
   2. Whitespace is luxury tax — spend it generously
   3. Serif for romance. Sans for precision. Never blurred.
   4. Gold is punctuation, not decoration
   5. Dark backgrounds are moments, not moods — use sparingly
   6. CTAs earn their place — text links only in sections
   7. No shadows, no radii, no borders on images — zero chrome
================================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Palette — warm, mineral, alive */
  --ink:         #16140f;   /* near-black with warm undertone */
  --charcoal:    #252219;   /* deep warm dark */
  --stone:       #7d7669;   /* warm mid-tone body text */
  --mid:         #aba49a;   /* muted warm */
  --sand:        #c8c0af;   /* light warm neutral */
  --linen:       #e8e0d0;   /* warm off-white */
  --cream:       #f4f0e8;   /* page background */
  --white:       #fdfbf7;   /* pure warm white */
  --gold:        #9c7e42;   /* aged bronze-gold */
  --gold-light:  #c4a05a;   /* brighter gold for dark backgrounds */

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing system */
  --max:        1400px;
  --pad:        clamp(1.5rem, 5vw, 5.5rem);
  --pad-sm:     clamp(1.25rem, 3vw, 3rem);

  /* Vertical rhythm — section breathing */
  --section:    clamp(6rem, 10vw, 11rem);
  --section-sm: clamp(4rem, 7vw, 8rem);
  --section-xs: clamp(2.5rem, 4vw, 5rem);
}

/* ── Legacy token aliases (inner pages use --ez-* and --font-*) ──
   These map old variable names to the new token values.
   Do NOT remove — required by about, booking, spa, dining, etc.
────────────────────────────────────────────────────────────────── */
:root {
  /* Old --ez-* → new tokens */
  --ez-ink:        var(--ink);
  --ez-charcoal:   var(--charcoal);
  --ez-stone:      var(--stone);
  --ez-mid:        var(--mid);
  --ez-sand:       var(--sand);
  --ez-linen:      var(--linen);
  --ez-cream:      var(--cream);
  --ez-white:      var(--white);
  --ez-gold:       var(--gold);
  --ez-bone:       var(--cream);
  /* Old --font-* */
  --font-display:  var(--serif);
  --font-sans:     var(--sans);
  --font-serif:    var(--serif);
}

/* Legacy shared component classes used by inner pages */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.muted {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.75;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.page-hero {
  position: relative;
  min-height: 60vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,20,15,0.65) 0%, rgba(22,20,15,0.2) 40%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--pad) var(--pad) clamp(3rem,5vw,5rem);
  max-width: 860px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.75rem 0 1rem;
}
.hero-content .hero-eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 0; }
.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(232,224,208,0.75);
  line-height: 1.75;
  max-width: 55ch;
}
/* Legacy btn */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(22,20,15,0.3);
  padding: 0.7rem 1.8rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-solid:hover { background: var(--charcoal); border-color: var(--charcoal); }
/* Legacy pillar classes used in about, spa, dining, etc. */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(22,20,15,0.08);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.75rem;
  opacity: 0.8;
}
/* Legacy stats grid (investors, maleny pages) */
.stats {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 2vw, 2rem);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-l {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(220,212,196,0.85);
  margin-top: 0.75rem;
}
/* Legacy footer-grid (used in some inner partials that may reference old name) */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(3rem,5vw,6rem); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-grid { grid-template-columns: 1fr; } }
/* Legacy form styles */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.6rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(22,20,15,0.18);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ================================================================
   TYPOGRAPHY SYSTEM
   The scale is the hierarchy. Obey the scale.
================================================================ */

/* Display — editorial headline, used sparingly (1–2× per page) */
.t-display {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* Section headline — the workhorse large serif */
.t-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* Sub-head — cards, rooms, pillars */
.t-h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Eyebrow — department / section marker */
.t-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* Body — prose, descriptions */
.t-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone);
}

/* Body editorial — intro paragraphs, pull-quotes */
.t-lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
}

/* CTA — the only two states: dark-on-light and light-on-dark */
.t-cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  transition: gap 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s;
}
.t-cta::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.t-cta:hover { gap: 1.35rem; color: var(--gold); }
.t-cta:hover::after { width: 40px; }

.t-cta--light { color: rgba(255,255,255,0.88); }
.t-cta--light:hover { color: var(--white); }

/* ================================================================
   SCROLL REVEAL SYSTEM
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1),
              transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal--slow { transition-duration: 1.6s; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ================================================================
   LAYOUT UTILITIES
================================================================ */
.bound {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.bound--text {
  max-width: 780px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ================================================================
   HEADER
   Three-column grid: [burger] [logo] [reserve]
   Outside hero: transparent. Scrolled: frosted cream.
================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem var(--pad);
  transition: padding 0.6s cubic-bezier(0.16,1,0.3,1),
              background 0.6s cubic-bezier(0.16,1,0.3,1);
}
.site-header.scrolled {
  background: rgba(244,240,232,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.15rem var(--pad);
  box-shadow: 0 1px 0 rgba(22,20,15,0.07);
}

/* Logo — centre */
.nav-logo { grid-column: 2; text-align: center; line-height: 1; }
.nav-logo-mark {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.65em;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  display: block;
  transition: color 0.5s, text-shadow 0.5s;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.42rem;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 5px;
  transition: color 0.5s;
}
.site-header.scrolled .nav-logo-mark { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav-logo-sub  { color: var(--gold); }

/* Burger — left col */
.nav-left { grid-column: 1; }
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.35rem;
  width: 32px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transition: background 0.4s, transform 0.4s, opacity 0.4s, width 0.4s;
  transform-origin: left center;
}
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger:hover span:nth-child(2) { width: 100%; }
.site-header.scrolled .nav-burger span { background: var(--ink); }

/* Reserve — right col */
.nav-right { grid-column: 3; display: flex; justify-content: flex-end; }
.nav-reserve {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-reserve:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}
.site-header.scrolled .nav-reserve {
  color: var(--ink);
  border-color: rgba(22,20,15,0.28);
}
.site-header.scrolled .nav-reserve:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ── Nav overlay ─────────────────────────────────────────────── */
.nav-links { display: none; list-style: none; }
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--ink);
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  z-index: 200;
  padding: var(--pad);
}
.nav-links.open li { list-style: none; }
.nav-links.open a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(232,224,208,0.75);
  transition: color 0.3s, letter-spacing 0.4s;
}
.nav-links.open a:hover {
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-close {
  position: absolute;
  top: 2rem;
  right: var(--pad);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.45);
  cursor: pointer;
  transition: color 0.3s;
}
.nav-close:hover { color: var(--white); }

/* Investor / portal link — visually separated from guest nav */
.nav-links.open .nav-portal-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(156,126,66,0.4);
  margin: clamp(1rem,2vw,1.75rem) 0;
}
.nav-links.open .nav-portal a {
  font-family: var(--sans);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  letter-spacing: 0.32em;
  color: var(--gold-light);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(196,160,90,0.35);
  padding: 0.65rem 1.4rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.nav-links.open .nav-portal a:hover {
  color: var(--white);
  border-color: rgba(196,160,90,0.75);
  background: rgba(196,160,90,0.1);
}

/* ================================================================
   HERO
   Full viewport. The single most important real estate.
   Image breathes. Text is whispered at the bottom edge.
================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  background: var(--ink);
  overflow: hidden;
}

/* Image layer — pure background-image, zero transforms */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 65% center;
  opacity: 0;
  animation: heroReveal 2.8s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
  will-change: opacity;
}
@keyframes heroReveal {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Cinematic veil — dark at edges, lighter in center */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Dual gradient: fade bottom for CTAs, fade top for nav */
  background:
    linear-gradient(to top,  rgba(16,14,9,0.72) 0%, rgba(16,14,9,0.18) 35%, transparent 60%),
    linear-gradient(to bottom, rgba(16,14,9,0.42) 0%, transparent 22%);
}

/* Bottom bar: location left, CTAs right */
.hero-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--pad) clamp(3rem, 5vw, 5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

/* Hero centre text — large, proud, anchored to bottom third */
.hero-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
  pointer-events: none;
  /* Shift down toward bottom third */
  padding-top: 30vh;
}
.hero-title-main {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
  opacity: 0;
  animation: heroText 1.4s cubic-bezier(0.16,1,0.3,1) 1.6s forwards;
}
.hero-title-sub {
  font-family: var(--sans);
  font-size: clamp(0.52rem, 0.9vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  opacity: 0;
  animation: heroText 1.4s cubic-bezier(0.16,1,0.3,1) 2s forwards;
}
@keyframes heroText {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: none; }
}

.hero-location {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  opacity: 0;
  animation: heroText 1s ease 2.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  opacity: 0;
  animation: heroText 1s ease 2.6s forwards;
}

/* Scroll pulse */
.hero-scroll {
  position: absolute;
  bottom: clamp(2rem, 3.5vw, 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroText 1s ease 3.2s forwards;
}
.hero-scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent);
  animation: scrollPulse 2.5s ease-in-out 3.5s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.38; transform: scaleY(1); }
  50%      { opacity: 0.7; transform: scaleY(1.15); transform-origin: top; }
}

/* ================================================================
   INTRO — the brand statement
   One thought. Maximum space. The first thing after the hero.
================================================================ */
.intro {
  padding: var(--section) 0;
  background: var(--cream);
}
.intro-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.intro-left {
  padding-top: 0.6rem;
}
.intro-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.intro-right .t-lead {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* ================================================================
   NUMBERS — 4-stat dark band
   Brief. Dark. Confident. No excess.
================================================================ */
.numbers {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.number-item {
  padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.number-item:last-child { border-right: none; }
.number-n {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.03em;
}
.number-l {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(220,212,196,0.85);
  margin-top: 1rem;
}

/* ================================================================
   EDITORIAL LINE — full-width typographic moment
   One sentence. Cream background. Nothing else competing.
================================================================ */
.editorial-line {
  background: var(--cream);
  padding: clamp(6rem, 11vw, 13rem) var(--pad);
  text-align: center;
}
.editorial-line-text {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  max-width: 22ch;
  margin: 0 auto;
}
.editorial-line-text em {
  font-style: italic;
  color: var(--stone);
}

/* ================================================================
   SPLIT — image fills one side, text fills the other
   The fundamental unit of luxury editorial layout.
   Never 50/50. Always an intentional tension.
================================================================ */
.split {
  display: grid;
  min-height: 80vh;
}
/* Default: image left (55%), text right (45%) */
.split--default { grid-template-columns: 55fr 45fr; }
/* Reverse: text left (42%), image right (58%) */
.split--reverse { grid-template-columns: 42fr 58fr; }
/* Wide image: image left (62%), text right (38%) */
.split--wide    { grid-template-columns: 62fr 38fr; }

/* Image panel */
.split-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.split-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Subtle zoom on hover — gentle, not gyrating */
  transition: transform 9s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.split:hover .split-image-bg { transform: scale(1.04); }

/* Text panel */
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 9rem) clamp(3rem, 6vw, 8rem);
  background: var(--white);
}
.split-text--dark {
  background: var(--charcoal);
}
.split-text--cream {
  background: var(--cream);
}

/* Text panel modifiers */
.split-text .t-eyebrow   { margin-bottom: 1.5rem; }
.split-text .t-h2        { margin-bottom: 2rem; }
.split-text .t-body      { margin-bottom: clamp(2.5rem, 4vw, 4rem); max-width: 42ch; }

/* Dark panel overrides */
.split-text--dark .t-h2    { color: var(--linen); }
.split-text--dark .t-body  { color: var(--mid); }
.split-text--dark .t-cta   { color: rgba(232,224,208,0.8); }
.split-text--dark .t-cta:hover { color: var(--white); }

/* ================================================================
   FULLBLEED — image spanning the full width with text overlay
   Used for singular, cinematic moments between splits.
================================================================ */
.fullbleed {
  position: relative;
  height: clamp(520px, 65vw, 880px);
  overflow: hidden;
}
.fullbleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.fullbleed:hover .fullbleed-bg { transform: scale(1.03); }
.fullbleed-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16,14,9,0.55) 0%,
    rgba(16,14,9,0.15) 50%,
    rgba(16,14,9,0.05) 100%
  );
}
.fullbleed-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--pad) var(--pad) clamp(4rem, 7vw, 8rem);
}
.fullbleed-content .t-eyebrow { margin-bottom: 1.25rem; }
.fullbleed-content .t-h2 { 
  color: var(--white); 
  max-width: 16ch;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.fullbleed-content .t-cta--light { margin-top: 0; }

/* ================================================================
   VILLA CARDS — accommodation grid
   Three-column at desktop. Each card bleeds image to text.
================================================================ */
.villas {
  padding: var(--section) 0;
  background: var(--cream);
}
.villas-header {
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 7vw, 8rem);
}
.villas-header .t-eyebrow { margin-bottom: 1.5rem; }
.villas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.villa-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.villa-card-image {
  position: relative;
  height: clamp(340px, 38vw, 520px);
  overflow: hidden;
  background: var(--ink);
}
.villa-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.villa-card:hover .villa-card-image-bg { transform: scale(1.05); }
.villa-card-body {
  padding: 2rem 1.75rem 2.5rem;
  background: var(--white);
  border-top: none;
}
.villa-card-body .t-eyebrow { margin-bottom: 0.75rem; }
.villa-card-body .t-h3 { margin-bottom: 0.85rem; }
.villa-card-body .t-body { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 36ch; }
.villa-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}
.villa-price span {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-left: 0.35rem;
}

/* ================================================================
   EDITORIAL GALLERY
   A 3-image mosaic that feels like a magazine spread.
   Large landscape (left), two portrait stacks (right).
================================================================ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: clamp(480px, 55vw, 760px);
}
.gallery-mosaic-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.gallery-mosaic-a,
.gallery-mosaic-b {
  position: relative;
  overflow: hidden;
}
.gallery-mosaic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.gallery-mosaic-main:hover .gallery-mosaic-bg,
.gallery-mosaic-a:hover .gallery-mosaic-bg,
.gallery-mosaic-b:hover .gallery-mosaic-bg { transform: scale(1.04); }

/* ================================================================
   PULL QUOTE — a single sentence that earns its page
================================================================ */
.pull-quote {
  background: var(--ink);
  padding: var(--section) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative corner mark — ultra-refined */
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: clamp(3rem, 6vw, 7rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 16vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.42;
  color: var(--white);
  max-width: 840px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.pull-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ================================================================
   THREE HOUSES — pillars, centered grid
   Separated by hairline rules rather than boxes.
================================================================ */
.houses {
  padding: var(--section) 0;
  background: var(--white);
}
.houses-header {
  text-align: center;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto clamp(5rem, 8vw, 10rem);
}
.houses-header .t-eyebrow { margin-bottom: 1.5rem; }
.houses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 0;
}
.house-item {
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2rem, 4vw, 4.5rem);
  border-right: 1px solid rgba(22,20,15,0.07);
  display: flex;
  flex-direction: column;
}
.house-item:last-child { border-right: none; }
.house-item:first-child { padding-left: 0; }
.house-item:last-child  { padding-right: 0; }
/* Icon mark — a simple geometric line, not a web icon */
.house-mark {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  display: block;
}
.house-item .t-eyebrow { margin-bottom: 1rem; }
.house-item .t-h3 { margin-bottom: 1.25rem; }
.house-item .t-body { font-size: 0.92rem; max-width: 32ch; margin-bottom: 2rem; flex: 1; }

/* ================================================================
   EXPERIENCE STRIP — horizontal scroll of short labels
   Creates rhythm and pace. Shows breadth.
================================================================ */
.experience-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 3rem) 0;
  position: relative;
}
.experience-track {
  display: flex;
  gap: clamp(2.5rem, 5vw, 6rem);
  animation: stripScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.experience-track--duplicate {
  animation-delay: -15s;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.experience-strip:hover .experience-track { animation-play-state: paused; }
.experience-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(200,192,175,0.7);
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
}
.experience-label::after {
  content: '·';
  color: var(--gold);
  opacity: 0.6;
}

/* ================================================================
   CTA CLOSING SECTION
   The final invitation. White. Generous. One thought.
================================================================ */
.invitation {
  padding: clamp(5rem, 9vw, 10rem) var(--pad);
  text-align: center;
  background: var(--cream);
}
.invitation .t-eyebrow {
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--stone);
}
.invitation .t-display   { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.invitation-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  margin-top: 2rem;
  line-height: 1.7;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--ink);
  padding: clamp(6rem, 9vw, 11rem) 0 clamp(2.5rem, 4vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(3rem, 5vw, 6rem);
  margin-bottom: clamp(4rem, 7vw, 8rem);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.6em;
  font-weight: 400;
  color: var(--linen);
  display: block;
}
.footer-brand-sub {
  font-size: 0.42rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-top: 6px;
}
.footer-brand-desc {
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #c8bfaf;
  max-width: 230px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #a09890;
  font-weight: 500;
  margin-bottom: 2rem;
  display: block;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 0.28rem 0; }
.footer-col a {
  font-size: 0.92rem;
  font-weight: 300;
  color: #c8bfaf;
  transition: color 0.3s;
}
.footer-col a:hover { color: #fdfbf7; }
.footer-nl-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #a09890;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.footer-nl-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #c8bfaf;
  margin-bottom: 1.5rem;
}
.footer-nl-form {
  display: flex;
  border-bottom: 1px solid rgba(171,164,154,0.18);
}
.footer-nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--linen);
  outline: none;
}
.footer-nl-form input::placeholder { color: #7a726a; }
.footer-nl-form button {
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 0 0.25rem;
  transition: color 0.3s;
}
.footer-nl-form button:hover { color: var(--linen); }
.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.footer-socials a {
  font-size: 1rem;
  color: #a09890;
  transition: color 0.3s;
}
.footer-socials a:hover { color: #fdfbf7; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #7a726a;
  letter-spacing: 0.04em;
}

/* ================================================================
   LEGACY INNER-PAGE CLASSES
   Used by about, spa, dining, accommodation, experiences, location,
   investors, maleny, investor-brief, contact, ads pages.
   These MUST remain here — do not remove.
================================================================ */

/* Section wrappers */
.section-light {
  background: var(--cream);
  padding: clamp(5rem, 8vw, 9rem) 0;
}
.section-dark {
  background: var(--charcoal);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

/* Narrow container for centred intros */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
}

/* Section header block */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
  padding: 0 var(--pad);
}
.section-header .eyebrow,
.section-header .t-eyebrow { margin-bottom: 1.25rem; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-dark .section-header h2 { color: var(--linen); }

/* Decorative ornament (gold icon mark) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin: 1.25rem 0 1.75rem;
  opacity: 0.7;
}

/* Sub-name label (used in pillar cards) */
.sub-name {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Light button (for dark section backgrounds) */
.btn-light {
  color: var(--linen);
  border-color: rgba(232,224,208,0.45);
}
.btn-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(232,224,208,0.8);
}

/* ── Dark section text overrides — readability on dark bg ── */
.section-dark p,
.section-dark li,
.section-dark .muted {
  color: rgba(220,212,196,0.82);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--linen);
}
.section-dark strong { color: var(--white); }
.section-dark .eyebrow,
.section-dark .t-eyebrow { color: var(--gold-light); }

/* ── Spacing for generic <section> without explicit padding ──
   Covers: <section>, <section id="...">, <section style="...">
   but NOT sections that have a class (those self-define padding)
── */
section:not([class]) {
  padding: clamp(4rem, 7vw, 8rem) 0;
}
/* Also cover section[id] without class (common pattern in inner pages) */
section[id]:not([class]) {
  padding: clamp(4rem, 7vw, 8rem) 0;
}

/* ── Section linen background ── */
.section-linen {
  background: var(--linen);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

/* ── Experience grid (flexible card grid) ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .experience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .experience-grid { grid-template-columns: 1fr; }
}

/* ── Experience card (image + overlay text) ── */
.exp-card {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,14,9,0.78) 0%, rgba(16,14,9,0.1) 55%, transparent 100%);
  transition: background 0.5s;
}
.exp-card:hover::before {
  background: linear-gradient(to top, rgba(16,14,9,0.88) 0%, rgba(16,14,9,0.25) 65%, rgba(16,14,9,0.05) 100%);
}
.exp-card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 2rem;
  color: var(--white);
}
.exp-card-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin: 0.4rem 0 0.6rem;
}
.exp-card-body p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232,224,208,0.82);
  margin: 0;
}

/* ── Villa grid (accommodation & experiences 4-up cards) ── */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
@media (max-width: 860px) {
  .villa-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 520px) {
  .villa-grid { grid-template-columns: 1fr; }
}

/* ── Villa card image ── */
.villa-card-img {
  height: clamp(220px, 28vw, 340px);
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  transition: transform 8s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}
.villa-card:hover .villa-card-img { transform: scale(1.04); }

/* ── Villa card body (inner pages) ── */
.villa-card-body {
  padding: 1.75rem 1.5rem 2.25rem;
  background: var(--white);
}
.villa-card-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 0.5rem 0 0.75rem;
}
.villa-card-body .muted { font-size: 0.92rem; }

/* ── Feature list (accommodation cards) ── */
.features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--linen);
  padding-top: 1.25rem;
}
.features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.4;
}
.features li i {
  color: var(--gold);
  font-size: 0.7rem;
  width: 14px;
  flex-shrink: 0;
}

/* ── Dining menu styles ── */
.menu-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--linen);
}
.menu-section:last-child { border-bottom: none; }
.menu-section-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.menu-section-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(22,20,15,0.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.menu-item .desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}
.menu-item .price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Lede (intro paragraph large text) ── */
.lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-top: 1.5rem;
}

/* ── Testimonial / pull quote (dining page) ── */
.testimonial {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--pad);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 1rem 0 1.5rem;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Location page stats grid ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--charcoal);
  margin: 0 0 2rem;
}
.stats > div {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stats > div:last-child { border-right: none; }
.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(220,212,196,0.75);
  margin-top: 0.75rem;
}
@media (max-width: 860px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div:nth-child(2) { border-right: none; }
  .stats > div:nth-child(1),
  .stats > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   TOAST
================================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--ink);
  color: var(--linen);
  padding: 1.1rem 1.6rem;
  font-size: 0.8rem;
  border-left: 2px solid var(--gold);
  z-index: 9000;
  transform: translateX(120%);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  max-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  line-height: 1.6;
}
.toast.show { transform: none; }

/* ================================================================
   RESPONSIVE
================================================================ */

/* Large tablet ≤ 1100px */
@media (max-width: 1100px) {
  .villas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Tablet ≤ 860px */
@media (max-width: 860px) {

  /* Splits: stack, image first always */
  .split { grid-template-columns: 1fr !important; min-height: unset; }
  .split--reverse .split-image { order: -1; }
  .split-image { min-height: 65vw; }
  .split-text  { padding: clamp(3rem, 8vw, 5.5rem) var(--pad); }
  .split-text .t-body { max-width: 100%; }

  /* Intro: single column */
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-rule  { display: none; }

  /* Numbers: 2×2 */
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(1),
  .number-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.05); }

  /* Villas: single column */
  .villas-grid { grid-template-columns: 1fr; }
  .villa-card-image { height: 65vw; }

  /* Gallery mosaic: stacked */
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-mosaic-main { grid-row: auto; height: 65vw; }
  .gallery-mosaic-a,
  .gallery-mosaic-b { height: 50vw; }

  /* Houses: single col */
  .houses-grid { grid-template-columns: 1fr; }
  .house-item {
    border-right: none;
    border-bottom: 1px solid rgba(22,20,15,0.07);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  .house-item:first-child { padding-top: 0; }
  .house-item:last-child  { border-bottom: none; padding-bottom: 0; }
  .house-item .t-body { max-width: 100%; }

  /* Footer: 2-col */
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Hero foot */
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Fullbleed: shorter on mobile */
  .fullbleed { height: clamp(420px, 80vw, 620px); }
}

/* Mobile ≤ 520px */
@media (max-width: 520px) {
  :root {
    --pad: 1.4rem;
    --section: clamp(5rem, 12vw, 8rem);
  }

  /* Numbers: still 2×2, tighter */
  .number-item { padding: 2.5rem 1rem; }
  .number-n    { font-size: 3rem; }

  /* Footer: single col */
  .footer-inner { grid-template-columns: 1fr; gap: 2.75rem; }

  /* Villas: full width */
  .villa-card-image { height: 75vw; }

  /* Gallery: taller cells */
  .gallery-mosaic-main { height: 75vw; }
  .gallery-mosaic-a,
  .gallery-mosaic-b    { height: 60vw; }

  /* Hero actions: stack */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Pull quote: tighter */
  .pull-quote { padding: clamp(5rem, 10vw, 7rem) var(--pad); }
}
