/* ================================================================
   KWETU RESIDENCES — style.css  v2.0
   Luxury Redesign · Boutique African Quiet Luxury
   Fonts: DM Serif Display (editorial) + Outfit (refined sans)
   Palette: Ink → Stone → Pebble → Clay → Sand → Champagne → Cream

   SECTION COLOR FLOW:
   01. Hero           — void/ink (darkest charcoal)
   02. Brand Intro    — stone (warm dark, slight warm tint)
   03. Building Photo — ink (pure dark, image-led)
   04. Residences     — pebble gradient (slightly lighter)
   05. Floor Plans    — ink (dark, image-led slider)
   06. Rooftop Split  — ink left / image right
   07. Value Prop     — image overlay (dramatic)
   08. Amenities      — stone with texture (atmospheric)
   09. Location       — stone (map section)
   10. Loc Highlights — pebble/clay gradient (warmer)
   11. Developer      — ink (returns to dark anchor)
   12. Inquire        — stone (call to action)
       Footer         — void (darkest, closes the loop)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@200;300;400;500&display=swap');

/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  /* Core palette */
  --ink:          #1A1916;
  --void:         #141311;
  --stone:        #2C2A27;
  --pebble:       #3E3B37;
  --dust:         #5A5650;
  --clay:         #8C7E70;
  --sand:         #C4B49E;
  --linen:        #EDE6DA;
  --cream:        #F5F0E8;
  --champagne:    #D4C4A8;
  --bronze:       #B89C6E;

  /* Semantic aliases */
  --bg:           var(--void);
  --surface:      var(--stone);
  --border:       rgba(196, 180, 158, 0.13);
  --border-warm:  rgba(196, 180, 158, 0.26);
  --text:         var(--linen);
  --text-dim:     var(--sand);
  --text-muted:   var(--dust);
  --accent:       var(--clay);
  --accent-light: var(--champagne);

  /* Typography */
  --serif: 'DM Serif Display', 'Didot', Georgia, serif;
  --sans:  'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-h:  80px;
  --max:    1440px;
  --gap:    clamp(72px, 10vw, 130px);
  --pad:    clamp(1.5rem, 5vw, 5rem);
  --r:      2px;

  /* Transitions */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img, video, iframe {
  display: block;
  max-width: 100%;
}

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

sup {
  font-size: 0.5em;
  vertical-align: super;
}

/* ================================================================
   SHARED UTILITIES
================================================================ */
section {
  position: relative;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

/* Short decorative rule */
.rule {
  width: 28px;
  height: 1px;
  background: var(--clay);
  opacity: 0.55;
  margin: 0 auto 2.4rem;
}

/* Shared outline button */
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 2.8rem;
  height: 52px;
  border: 1px solid rgba(196, 180, 158, 0.36);
  background: transparent;
  color: var(--sand);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.32s var(--ease),
              color 0.32s var(--ease),
              border-color 0.32s var(--ease);
  white-space: nowrap;
}
.outline-btn:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--void);
}

/* Image placeholder — visible until real photo is inserted */
.img-placeholder {
  background: var(--pebble);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.3);
  border: 1px dashed rgba(196, 180, 158, 0.15);
}

/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollHint {
  0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.4); transform-origin: top; }
  50%       { opacity: 1; transform: translateX(-50%) scaleY(1);   transform-origin: top; }
}

@keyframes kenBurns {
  from { transform: scale(1);    }
  to   { transform: scale(1.05); }
}

@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}

@keyframes wa-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wa-tooltip-in {
  from { opacity: 0; transform: translateX(6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ================================================================
   01. NAVIGATION
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 900;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
}

.site-header.is-transparent {
  background: linear-gradient(to bottom, rgba(20, 19, 17, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid transparent;
}

.site-header:not(.is-transparent) {
  background: rgba(20, 19, 17, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

.nav-group.right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.62);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--clay);
  transition: right 0.35s var(--ease);
}

.nav-link:hover {
  color: var(--linen);
}

.nav-link:hover::after {
  right: 0;
}

.brand-mark {
  width: 80px;      /* was 62px */
  height: 80px;     /* was 62px */
  display: grid;
  place-items: center;
  overflow: visible; /* allows the logo to breathe outside the tight box */
}


.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 58px;  /* caps it so it never touches the nav edges */
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(196, 180, 158, 0.28);
  color: var(--linen);
  font-size: 18px;
  border-radius: var(--r);
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.menu-btn:hover {
  border-color: rgba(196, 180, 158, 0.55);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
}

/* ================================================================
   02. HERO
================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Color: --void / deep ink — darkest point of page */
  background: var(--void);
}

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

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.72);
}

/* Layered gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20, 19, 17, 0.52) 0%,
      rgba(20, 19, 17, 0.04) 30%,
      rgba(20, 19, 17, 0.04) 52%,
      rgba(20, 19, 17, 0.86) 100%
    );
  z-index: 1;
}

/* Scroll hint animated line */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(196, 180, 158, 0.42));
  z-index: 3;
  animation: scrollHint 2.2s ease-in-out 2.8s infinite;
}

/* REPLACE — was pulling the block upward */
.hero-center-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  margin-top: 0;              /* FIX: was -6vh, removed the upward pull */
}
.hero-kicker {
  font-family: var(--sans);
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.6);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

/* REPLACE — give the hero text true vertical centering breathing room */
.hero-center-text h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 10rem);
  line-height: 1.1;           /* was 0.9 — also fixes descender clipping */
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.65s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(300px, 92vw, 1000px);
}

.static-word {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.68);
  margin-bottom: 0.75rem;
}

.rotating-word {
  display: block;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.rotating-word.fade-out {
  opacity: 0;
  transform: translateY(14px);
}

.rotating-word.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.4);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-cta {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 3rem;
  height: 52px;
  border: 1px solid rgba(196, 180, 158, 0.38);
  background: transparent;
  color: rgba(237, 230, 218, 0.8);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
  /* FIX: never wider than the viewport */
 
  box-sizing: border-box;
}
/* Hide iOS native video play button overlay */
.hero-media video::-webkit-media-controls {
  display: none !important;
}

.hero-media video::-webkit-media-controls-start-playback-button {
  display: none !important;
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 600px) {
  .hero-center-text {
    margin-top: 0;
    padding: 0 1.5rem;
  }

  .hero-cta {
    /* FIX: smaller padding so text fits without overflowing */
    padding: 0 1.4rem;
    /* FIX: slightly smaller tracking so text takes less horizontal space */
    letter-spacing: 0.18em;
    /* FIX: pin to exactly the safe viewport width */
    width: calc(100vw - 3rem);
    max-width: 360px;
  }
}
.hero-cta::after {
  content: '→';
  font-size: 11px;
  transition: transform 0.3s;
}

.hero-cta:hover {
  background: rgba(196, 180, 158, 0.1);
  border-color: rgba(196, 180, 158, 0.6);
  color: var(--cream);
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

/* ================================================================
   03. BRAND INTRO
   Color: --stone (warm dark, slight charcoal-taupe shift)
================================================================ */
.brand-intro {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(140, 126, 112, 0.08) 0%, transparent 50%),
    var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--gap) var(--pad);
}

.brand-intro__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

/* Left image slot */
.brand-intro__visual {
  position: relative;
}

.brand-intro__image-slot {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r);
  /* REPLACE: set background-image to your lobby/lifestyle photo */
  background: url(assets/kwetu-sideview.jpg) center / cover no-repeat;
}

.brand-intro__image-slot .img-placeholder {
  width: 100%;
  height: 100%;
}

.brand-intro__caption {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dust);
}

.brand-intro__caption-line {
  flex: 1;
  height: 1px;
  background: var(--border-warm);
}

/* Right copy */
.brand-intro__copy {
  padding: 2rem 0;
}

.section-title-gold {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  color: var(--champagne);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.intro-copy {
  color: var(--linen);
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 2.1;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

/* ================================================================
   04. BUILDING ARRIVAL
   Color: --ink (pure dark, image-led)
================================================================ */
.building-arrival {
  background: var(--ink);
}

.arrival-image {
  position: relative;
  height: clamp(460px, 56vw, 760px);
  overflow: hidden;
  /* IMAGE: replace with url("assets/kwetu frontview 2.jpg") */
  background: url("assets/kwetu frontview 2.jpg") center 40% / cover no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.arrival-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 19, 17, 0.72) 0%, transparent 52%),
    linear-gradient(to right, rgba(20, 19, 17, 0.2) 0%, transparent 50%);
}

.arrival-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: var(--pad) var(--pad) clamp(2rem, 5vw, 4rem);
}

.arrival-overlay__content {
  max-width: 480px;
}

.arrival-overlay__content .eyebrow {
  color: rgba(196, 180, 158, 0.65);
  margin-bottom: 0.8rem;
}

.arrival-overlay__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.01em;
}

.arrival-overlay__title em {
  font-style: italic;
  color: var(--champagne);
}

/* Strip of 3 image placeholders below the hero image */
/* ── Arrival Strip — Auto-sliding 3-up panel ── */
.arrival-strip {
  position: relative;
  width: 100%;
  height: clamp(140px, 18vw, 240px);
  overflow: hidden;
  background: var(--ink);
}

.arrival-strip__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}

.arrival-strip__cell {
  flex: 0 0 33.333%;   /* always exactly 1/3 wide — 3 visible at once */
  height: 100%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.arrival-strip__cell:last-child { border-right: none; }

.arrival-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.arrival-strip__cell:hover img { transform: scale(1.04); }

/* Bottom fade overlay */
.arrival-strip__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,19,17,0.45) 0%, transparent 55%);
  pointer-events: none;
}

.arrival-strip__label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196,180,158,0.58);
  font-weight: 300;
}

/* Dot navigation — bottom right */
.arrival-strip__nav {
  position: absolute;
  bottom: 10px;
  right: 14px;
  z-index: 4;
  display: flex;
  gap: 5px;
}

.arrival-strip__dot {
  width: 18px;
  height: 2px;
  background: rgba(196,180,158,0.28);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.arrival-strip__dot.active {
  background: rgba(196,180,158,0.72);
  width: 32px;
}

/* Auto-advance progress bar — runs along the bottom edge */
.arrival-strip__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(196,180,158,0.42);
  width: 0%;
  z-index: 5;
}

/* ================================================================
   05. RESIDENCES
   Color: pebble gradient (slightly lighter charcoal)
================================================================ */
.residences {
  background:
    linear-gradient(rgba(20, 22, 20, 0.78), rgba(18, 20, 20, 0.68)),
    url(assets/crystals-bg.png) center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.residences__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--gap) var(--pad);
}

.residences__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}

.res-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin-bottom: 1.2rem;
}

.res-heading em {
  font-style: italic;
}

.res-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Unit cards grid */
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 960px;
  margin: 0 auto;
}

.unit-card {
  background: rgba(20, 19, 17, 0.48);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: background 0.4s var(--ease);
  position: relative;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.4s;
  z-index: 2;
}

.unit-card:hover {
  background: rgba(140, 126, 112, 0.08);
}

.unit-card:hover::before {
  background: var(--clay);
}

/* Image slot inside card 
.unit-card__image {
  height: clamp(140px, 18vw, 220px);
  background-image: url();
}
  /* IMAGE SLOT: set background-image to interior photo */



.unit-card__body {
  padding: 2.4rem 2rem 2.8rem;
  text-align: left;
}

.unit-label {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 1rem;
}

.unit-size {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--linen);
  line-height: 1;
}

.unit-sqm {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.3rem 0 2rem;
}

.unit-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--champagne);
  line-height: 1.3;
}

.unit-price-note {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: 0.6;
  margin-top: 4px;
}

.unit-divider {
  width: 18px;
  height: 1px;
  background: var(--clay);
  opacity: 0.3;
  margin: 1.5rem 0;
}

.unit-feat {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  position: relative;
}

.unit-feat::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--clay);
}

/* CTA strip below cards */
.residences__cta-strip {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-top: clamp(3rem, 5vw, 5rem);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.residences__cta-line {
  flex: 1;
  height: 1px;
  background: var(--border-warm);
}

/* ================================================================
   06. FLOOR PLANS SLIDER
   Color: --ink (dark, image-led)
================================================================ */
.floor-plans {
  background: var(--ink);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.floor-plans__header {
  text-align: center;
  padding: clamp(3rem, 5vw, 5rem) var(--pad) clamp(2rem, 3vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
}

.floor-plans__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.floor-plans__title em {
  font-style: italic;
}

.slider-shell {
  position: relative;
}

.amenity-slider {
  position: relative;
  height: clamp(440px, 58vw, 800px);
  overflow: hidden;
}

.slide-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--ink);
  transform: scale(1.025);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.4s ease;
}

.slide-frame.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 19, 17, 0.72) 0%, transparent 48%);
}

.slide-label {
  position: absolute;
  bottom: 2.4rem;
  left: 3rem;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: 0.02em;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(20, 19, 17, 0.52);
  border: 1px solid rgba(196, 180, 158, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(6px);
}

.slider-arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
}

.slider-arrow.left  { left: 1.8rem; }
.slider-arrow.right { right: 1.8rem; }

.slider-arrow.left::after  { transform: rotate(-135deg) translateX(2px); }
.slider-arrow.right::after { transform: rotate(45deg) translateX(-2px); }

.slider-arrow:hover {
  background: rgba(196, 180, 158, 0.14);
  border-color: var(--clay);
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1.4rem 0 1.8rem;
  background: var(--ink);
}

.slider-dot {
  width: 24px;
  height: 1px;
  background: var(--dust);
  border: none;
  opacity: 0.4;
  transition: opacity 0.25s, background 0.25s, width 0.3s;
  border-radius: 0;
}

.slider-dot.active {
  background: var(--clay);
  opacity: 1;
  width: 44px;
}

/* ================================================================
   07. ROOFTOP SPLIT
   Color: --ink left / image right
================================================================ */
.rooftop-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-top: 1px solid var(--border);
}

.rooftop-split__copy {
  background:
    radial-gradient(ellipse at 100% 100%, rgba(140, 126, 112, 0.07) 0%, transparent 55%),
    var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(3rem, 5vw, 5rem);
  border-right: 1px solid var(--border);
}

.rooftop-split__copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 2rem;
}

.rooftop-split__copy h2 em {
  font-style: italic;
}

.rooftop-split__copy p {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 2.1;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.02em;
  max-width: 380px;
}

/* Right image panel */
.rooftop-split__image {
  position: relative;
  overflow: hidden;
  /* IMAGE: replace with url("assets/skyline.webp") */
  background: url("assets/skyline.webp") center / cover no-repeat;
}

.rooftop-split__image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 19, 17, 0.32) 0%, transparent 55%);
}

/* Floating badge on image */
.rooftop-split__badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  text-align: center;
  background: rgba(20, 19, 17, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 180, 158, 0.22);
  padding: 1rem 1.5rem;
  border-radius: var(--r);
}

.rooftop-split__badge-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
}

.rooftop-split__badge-label {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.4rem;
}

/* ================================================================
   08. VALUE PROPOSITION — Full-bleed atmospheric panel
   Color: image-led with deep overlay
================================================================ */
.value-prop {
  position: relative;              /* fix: "position: center" is not valid CSS */
  min-height: 560px;
  display: flex;
  align-items: center;             /* fix: was flex-end (pinned to bottom) */
  justify-content: center;        /* fix: centres the content block horizontally */
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  /*background: url("assets/crystals-bg.png") center / cover no-repeat;*/
  border-top: 1px solid var(--border);
  text-align: center;             /* centres inline text and the button */
}

.value-prop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 19, 17, 0.92) 0%, rgba(20, 19, 17, 0.1) 55%);
}

.value-prop__content {
  position: relative;
  z-index: 2;
  max-width: 640px;               /* slightly wider suits centred layout */
  margin: 0 auto;                 /* fix: explicit auto margins centre the block */
}

.value-prop__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.value-prop__title em {
  font-style: italic;
}

.value-prop__body {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 2.1;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;              /* centres the body text block */
  margin-right: auto;
}

/* ================================================================
   09. AMENITIES
   Color: stone + texture background (atmospheric)
================================================================ */
.amenities {
  background:
    linear-gradient(rgba(20, 22, 20, 0.8), rgba(18, 20, 20, 0.72)),
    url("assets/kwetu-sideview.jpg") center / cover no-repeat;
  border-top: 1px solid var(--border);
  padding: var(--gap) var(--pad);
  overflow: hidden;
}

.amenities__top {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 6rem;
  align-items: end;
}

.amenities__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--linen);
}

.amenities__heading em {
  font-style: italic;
  color: var(--champagne);
  display: block;
}

.amenities__body {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 2.1;
  color: var(--sand);
  letter-spacing: 0.02em;
  max-width: 420px;
  align-self: end;
}

/* 4-column card grid */
.amenities__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.amenity-card {
  padding: 2.2rem 1.8rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}

.amenity-card:nth-child(4)  { border-right: none; }
.amenity-card:nth-child(8)  { border-right: none; }
.amenity-card:nth-child(n+5){ border-top: 1px solid var(--border); }

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.4s;
}

.amenity-card:hover {
  background: rgba(154, 122, 85, 0.05);
}

.amenity-card:hover::before {
  background: var(--champagne);
}

.amenity-card__num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--champagne);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  transition: color 0.4s;
}

.amenity-card:hover .amenity-card__num {
  color: rgba(198, 180, 154, 0.22);
}

.amenity-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.2rem;
  opacity: 0.42;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-card:hover .amenity-card__icon {
  opacity: 0.88;
}

.amenity-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--champagne);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-card__label {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.amenity-card__title {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.2;
  transition: color 0.4s;
}

.amenity-card:hover .amenity-card__title {
  color: var(--champagne);
}

.amenity-card__rule {
  width: 14px;
  height: 1px;
  background: var(--bronze);
  opacity: 0;
  margin-top: 1rem;
  transition: opacity 0.4s, width 0.4s;
}

.amenity-card:hover .amenity-card__rule {
  opacity: 0.5;
  width: 26px;
}

.amenities__footer {
  max-width: var(--max);
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.amenities__footer-line {
  flex: 1;
  height: 1px;
  background: rgba(184, 169, 154, 0.1);
}

.amenities__footer-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(184, 169, 154, 0.24);
  white-space: nowrap;
}

/* ================================================================
   10. LOCATION SECTION
   Color: --stone (map section, slightly lighter)
================================================================ */
.location-section {
  background: var(--stone);
  border-top: 1px solid var(--border);
  padding: var(--gap) var(--pad);
}

.location-section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.location-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.location-section__header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 1.4rem;
}

.location-section__header h2 em {
  font-style: italic;
}

.location-section__header p {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 2.1;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.02em;
}

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  border: 0;
  filter: grayscale(72%) contrast(1.06) brightness(0.78);
  display: block;
}
/* ── Location Office Card ── */
.location-office-card {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}

.location-office-card__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196, 180, 158, 0.25),
    transparent
  );
}

.location-office-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 1rem;
}

.location-office-card__divider {
  width: 1px;
  height: 48px;
  background: rgba(196, 180, 158, 0.2);
  flex-shrink: 0;
}

.location-office-card__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.location-office-card__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--clay);
}

.location-office-card__address {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--sand);
}

.location-office-card__phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--champagne);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.location-office-card__phone:hover {
  color: var(--clay);
}

/* Mobile */
@media (max-width: 560px) {
  .location-office-card__body {
    flex-direction: column;
    gap: 1.6rem;
  }

  .location-office-card__divider {
    width: 40px;
    height: 1px;
    background: rgba(196, 180, 158, 0.2);
  }
}

/* ================================================================
   11. LOCATION HIGHLIGHTS
   Color: pebble + soft radial warmth (warmer than location section)
*/

/* ================================================================
   LOCATION HIGHLIGHTS — Split layout: tiles left / image right
   Replace the existing .location-highlights block in style.css
================================================================ */

.location-highlights {
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 180, 158, 0.06), transparent 40%);

  color: var(--linen);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* Decorative inset frame — sits behind content */
.location-highlights::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(196, 180, 158, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

/* ── Main two-column layout ── */
.location-highlights__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* No min-height — right panel stretches to match left column naturally */
  position: relative;
  z-index: 1;
}

/* ── LEFT COLUMN: header + card grid ── */
.location-highlights__left {
  padding: clamp(50px, 7vw, 90px) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(196, 180, 158, 0.1);
}

/* Header block */
.location-highlights__header {
  text-align: left;                  /* left-aligned in split layout */
  max-width: 460px;
}

.location-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--clay);
}

.location-highlights__header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--champagne);
  margin-bottom: 1.4rem;
}

.location-highlights__header h2 em {
  font-style: italic;
  color: var(--champagne);
}

.location-highlights__header p {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: rgba(214, 207, 196, 0.65);
  max-width: 400px;
}

/* ── Place cards grid — 2 columns within the left panel ── */
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Last card (05) spans full width for a cleaner end */
.place-card:last-child {
  grid-column: 1 / -1;
}

.place-card {
  min-height: 160px;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(242, 237, 230, 0.07),
    rgba(181, 168, 154, 0.05)
  );
  border: 1px solid rgba(196, 180, 158, 0.15);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.place-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    145deg,
    rgba(242, 237, 230, 0.12),
    rgba(181, 168, 154, 0.09)
  );
  border-color: rgba(181, 168, 154, 0.4);
}

.place-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: rgba(181, 168, 154, 0.4);
  line-height: 1;
}

.place-card__body h3 {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 10px;
}

.place-card__body p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
}

.place-card__body p::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(181, 168, 154, 0.55);
  flex-shrink: 0;
}

/* ── RIGHT COLUMN: floating square image ── */
.location-highlights__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Generous padding so the floating card never touches the column edges */
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}

/* The floating square card */
.location-highlights__image-square {
  position: relative;
  /* Square: width drives size, aspect-ratio locks height to match */
  width: clamp(260px, 38vw, 480px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;

  /* Rounded corners — subtle, not circular */
  border-radius: 12px;
  overflow: hidden;

  /* Border + layered shadow for the "floating card" look */
  border: 1px solid rgba(196, 180, 158, 0.2);
  box-shadow:
    0 2px  6px  rgba(0, 0, 0, 0.18),
    0 8px  24px rgba(0, 0, 0, 0.28),
    0 28px 70px rgba(0, 0, 0, 0.40);

  /* IMAGE: swap this URL for your actual photo/infographic */
  background: url("assets/kwetu\ plan.JPEG") center / contain no-repeat;
  background-color: var(--stone);

  /* Gentle float animation */
  animation: floatSquare 7s ease-in-out infinite;
}

/* Thin champagne top-edge highlight — premium feel */
.location-highlights__image-square::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(212, 196, 168, 0.35);
  z-index: 2;
}

/* Subtle bottom-fade so card lifts visually from the background */
.location-highlights__image-square::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(20, 19, 17, 0.22) 100%
  );
  border-radius: 12px;
}

/* Float keyframes — gentle vertical drift */
@keyframes floatSquare {
  0%, 100% { transform: translateY(0px)    rotate(0deg); }
  33%       { transform: translateY(-10px)  rotate(0.3deg); }
  66%       { transform: translateY(-5px)   rotate(-0.2deg); }
}

/* Caption beneath the square */
.location-highlights__image-caption {
  position: absolute;
  bottom: clamp(1rem, 2.5vw, 1.8rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.4);
  font-weight: 300;
  white-space: nowrap;
}

.location-highlights__image-caption-line {
  width: 24px;
  height: 1px;
  background: rgba(196, 180, 158, 0.28);
}

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

/* Tablet: stack vertically, image below cards */
@media (max-width: 960px) {
  .location-highlights__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .location-highlights__left {
    border-right: none;
    border-bottom: 1px solid rgba(196, 180, 158, 0.1);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  }

  .location-highlights__header {
    max-width: 100%;
  }

  .location-highlights__image {
    padding: clamp(2rem, 5vw, 4rem) 1rem 3rem;
    min-height: auto;
  }

  .location-highlights__image-square {
    width: clamp(220px, 60vw, 380px);
  }
}

/* Mobile: tighten card grid */
@media (max-width: 560px) {
  .places-grid {
    grid-template-columns: 1fr;
  }

  .place-card:last-child {
    grid-column: auto;
  }

  .location-highlights::before {
    inset: 12px;
    border-radius: 14px;
  }

  .location-highlights__header h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }
}
/* ================================================================
   12. DEVELOPER SECTION
   Color: --ink (dark anchor, returns to darkest)
================================================================ */
.developer-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 156, 110, 0.04) 0%, transparent 45%),
    #1a1a18;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--gap) var(--pad);
}

.developer-section__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.developer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 156, 110, 0.32);
  margin-bottom: 1.8rem;
  border-radius: var(--r);
}

.developer-section__left .eyebrow {
  color: var(--bronze);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.developer-section__left .eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.55;
}

.developer-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.12;
  color: var(--linen);
  margin-bottom: 1.4rem;
}

.developer-heading em {
  font-style: italic;
  color: var(--bronze);
}

.developer-divider {
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin: 1.8rem 0;
  opacity: 0.65;
}

.developer-location {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 2.4rem;
  font-family: var(--sans);
}

.developer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(184, 156, 110, 0.36);
  transition: color 0.25s, border-color 0.25s;
}

.developer-cta:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}

.developer-body {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(200, 194, 182, 0.88);
  margin-bottom: 2.5rem;
}

/* Stats grid */
.developer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-stat {
  background: #1a1a18;
  padding: 1.4rem 1.6rem;
}

.developer-stat__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 5px;
}

.developer-stat__label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
}

/* ================================================================
   13. INQUIRE
   Color: --stone (CTA section, slightly lighter than ink)
================================================================ */
.inquire {
  background: var(--stone);
  border-top: 1px solid var(--border);
  padding: var(--gap) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.inquire__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(140, 126, 112, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.inquire__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.inquire__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  color: var(--champagne);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.lead {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  line-height: 2.1;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.02em;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* Form */
.form-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  background: rgba(20, 19, 17, 0.6);
  border: 1px solid rgba(196, 180, 158, 0.18);
  color: var(--linen);
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  outline: none;
  border-radius: var(--r);
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(196, 180, 158, 0.3);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(196, 180, 158, 0.48);
  background: rgba(20, 19, 17, 0.85);
}

.form-grid select {
  cursor: pointer;
}

.form-grid select option {
  background: var(--ink);
  color: var(--linen);
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 240px;
  height: 52px;
  border: 1px solid rgba(196, 180, 158, 0.36);
  background: transparent;
  color: var(--sand);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--void);
}

.inquire__or {
  margin-top: 2.4rem;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dust);
}

.inquire__email {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sand);
  border-bottom: 1px solid rgba(196, 180, 158, 0.26);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.inquire__email:hover {
  color: var(--champagne);
  border-color: rgba(196, 180, 158, 0.5);
}
/* Brochure download note inside form */
.form-brochure-note {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.form-brochure-link {
  color: var(--champagne);
  border-bottom: 1px solid rgba(196, 180, 158, 0.3);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.form-brochure-link:hover {
  color: var(--cream);
  border-color: rgba(196, 180, 158, 0.6);
}

/* ================================================================
   14. FOOTER
   Color: --void (darkest — closes the loop)
================================================================ */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--pad);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}

.site-footer__logo {
  
  object-fit: contain;
  
  width: 80px;      /* was 62px */
  height: 80px;     /* was 62px */
  display: grid;
  place-items: center;
  overflow: visible; /* allows the logo to breathe outside the tight box */
}


.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2rem;
}

.site-footer__nav a {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(196, 180, 158, 0.3);
  transition: color 0.25s;
}

.site-footer__nav a:hover {
  color: rgba(196, 180, 158, 0.65);
}

.site-footer__copy {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(190, 170, 158, 0.5);
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
================================================================ */
.wa-fab-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  animation: wa-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
  text-decoration: none;
}

.wa-fab-wrap__tooltip {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  animation: wa-tooltip-in 0.4s ease 4.5s forwards;
}

.wa-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 1.4rem 0 1rem;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out 2.5s infinite;
  z-index: -1;
}

.wa-fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-fab:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.wa-fab:hover::before {
  animation-play-state: paused;
}

.wa-fab__label {
  display: inline;
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

/* ================================================================
   MOBILE MENU
================================================================ */
@media (max-width: 1080px) {
  :root { --nav-h: 72px; }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.4rem;
  }

.brand-mark {
  width: 70px;      /* was 52px */
  height: 70px;     /* was 52px */
}

.brand-mark img {
  max-height: 48px;
}
  .menu-btn {
    display: flex;
    order: 2;
  }

  .nav-group {
    display: none !important;
  }

  /* Mobile menu */
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(82vw, 400px);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--stone);
    border-left: 1px solid var(--border);
    overflow: hidden;
  }

  .site-header.menu-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--sand);
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 3rem;
    overflow-y: auto;
  }

  .mobile-menu__link {
    display: block;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--sand);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .mobile-menu__link:hover {
    color: var(--champagne);
  }

  .mobile-menu__cta {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 2rem;
    border: 1px solid rgba(196, 180, 158, 0.36);
    border-radius: var(--r);
    color: var(--sand);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
  }

  .mobile-menu__cta:hover {
    background: var(--clay);
    border-color: var(--clay);
    color: var(--void);
  }

  .mobile-menu__cta-icon {
    font-size: 11px;
  }

  .mobile-menu__email {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dust);
    line-height: 2;
  }

  .mobile-menu__email a {
    color: var(--sand);
    display: block;
    letter-spacing: 0.08em;
    text-transform: none;
    margin-top: 0.2rem;
  }
}

/* ================================================================
   RESPONSIVE — Tablet 900px
================================================================ */
@media (max-width: 900px) {

  /* Brand intro: stack vertically */
  .brand-intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-intro__image-slot {
    aspect-ratio: 16 / 9;
    max-height: 380px;
  }

  /* Arrival strip: 1 column */
  .arrival-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .arrival-strip__cell {
    height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .arrival-strip__cell:last-child {
    border-bottom: none;
  }

  /* Units: 1 column */
  .units-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Rooftop split: stack */
  .rooftop-split {
    grid-template-columns: 1fr;
  }

  .rooftop-split__copy {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.8rem, 4vw, 3rem);
  }

  .rooftop-split__image {
    min-height: 360px;
  }

  /* Amenities grid: 2 cols */
  .amenities__top {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .amenities__body {
    max-width: 100%;
  }

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

  .amenity-card:nth-child(4)  { border-right: 1px solid var(--border); }
  .amenity-card:nth-child(8)  { border-right: none; }
  .amenity-card:nth-child(even) { border-right: none; }
  .amenity-card:nth-child(n+3)  { border-top: 1px solid var(--border); }

  /* Location highlights: 2 cols */
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Developer section: stack */
  .developer-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ================================================================
   RESPONSIVE — Mobile 600px
================================================================ */
@media (max-width: 600px) {
  .hero-center-text {
    margin-top: 0;
    padding: 0 1.5rem;
  }

  .hero-cta {
      bottom: 5rem;
      left: 50%;
      transform: translateX(-50%);
      width: auto;                  /* shrinks to fit the text */
      max-width: calc(100vw - 4rem);/* never bleeds off screen */
      padding: 0 2rem;              /* controls internal breathing room */
      font-size: 8px;
      letter-spacing: 0.22em;
      
  }
}
  /* Amenities: 1 col */
  .amenities__grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    border-right: none !important;
    border-top: 1px solid var(--border) !important;
  }

  .amenity-card:first-child {
    border-top: none !important;
  }

  /* Form: 1 col */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Slider label */
  .slide-label {
    left: 1.5rem;
    bottom: 1.8rem;
  }

  /* WhatsApp: icon only */
  .wa-fab {
    padding: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .wa-fab__label {
    display: none;
  }

  .wa-fab-wrap {
    bottom: 1.4rem;
    right: 1.2rem;
  }

  /* Location highlights: 1 col */
  .places-grid {
    grid-template-columns: 1fr;
  }

  .location-highlights::before {
    inset: 12px;
    border-radius: 18px;
  }

  /* Residences CTA strip */
  .residences__cta-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .residences__cta-line {
    width: 100%;
    height: 1px;
  }

  /* Footer nav */
  .site-footer__nav {
    gap: 0.5rem 1.4rem;
  }
