/* ════════════════════════════════════════════════════════════════════════════
   AURORA RESIDENCES — style.css
   Design System: Near-black, Cormorant Garamond, Inter, Gold #C4975A
   ════════════════════════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #C4975A;
  --gold-light: #D4AB74;
  --gold-dark:  #A67B3E;
  --black:      #080808;
  --surface:    #0F0F0F;
  --surface-2:  #161616;
  --surface-3:  #1E1E1E;
  --border:     rgba(196,151,90,0.18);
  --white:      #FFFFFF;
  --white-70:   rgba(255,255,255,0.7);
  --white-45:   rgba(255,255,255,0.45);
  --white-25:   rgba(255,255,255,0.25);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, sans-serif;
  --nav-h:      76px;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--white);
}
.section-heading em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.section-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 56ch;
  margin-bottom: 1.4rem;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,151,90,0.05);
}

.btn-gold {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.btn-gold:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────────────── */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-up    { transform: translateY(36px); }
.reveal-fade  { transform: translateY(10px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color 0.25s;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.55rem 1.2rem;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white-70);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white-70);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-link-cta { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease-out), transform 2.5s var(--ease-out);
}
.hero.loaded .hero-image { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.7) 0%,
    rgba(8,8,8,0.4) 50%,
    rgba(8,8,8,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white-70);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  transition: opacity 0.4s;
}
.hero-scroll.hidden { opacity: 0; pointer-events: none; }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─── INTRO BAR ─────────────────────────────────────────────────────────── */
.intro-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.intro-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.intro-stat {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-45);
}
.intro-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 1rem 0;
}

/* ─── THE ADDRESS ───────────────────────────────────────────────────────── */
.section-address {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.address-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

.address-image-stack {
  position: relative;
  height: 600px;
}
.addr-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  z-index: 1;
}
.addr-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  z-index: 2;
  border: 3px solid var(--surface);
}

.address-text-col .section-heading { margin-bottom: 1.8rem; }

.address-landmarks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.landmark {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.landmark-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.landmark-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.landmark-desc {
  font-size: 0.78rem;
  color: var(--white-45);
  font-weight: 300;
}

.address-full-image {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  margin: 0 -2rem;
  max-width: calc(100% + 4rem);
}
.address-full-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.address-full-caption {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 2;
}
.caption-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 50ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ─── RESIDENCES ────────────────────────────────────────────────────────── */
.section-residences {
  background: var(--surface);
  padding: 8rem 2rem;
}

.residences-intro {
  max-width: 1400px;
  margin: 0 auto 5rem;
}
.residences-intro .section-heading { margin-bottom: 1.5rem; }

/* Interior Gallery — Row 1 */
.interiors-row-1 {
  max-width: 1400px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.int-hero {
  min-height: 300px;
}
.int-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.int-stack-top,
.int-stack-bottom {
  aspect-ratio: 4/3;
}

/* Interior Gallery — Row 2 */
.interiors-row-2 {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.interiors-row-2 .int-cell {
  aspect-ratio: 3/4;
}

/* Shared int-cell */
.int-cell {
  position: relative;
  overflow: hidden;
}
.int-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.int-cell:hover img { transform: scale(1.04); }

.interior-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.2rem;
  background: none;
}
.int-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.int-note {
  font-size: 0.78rem;
  color: var(--white-70);
}

/* Floor Plans */
.floorplans-section {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
}
.fp-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.fp-subhead {
  font-size: 0.9rem;
  color: var(--white-45);
  margin-bottom: 2.5rem;
}

.fp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.fp-tab {
  background: none;
  border: none;
  color: var(--white-45);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 1.8rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.fp-tab:hover { color: var(--white-70); }
.fp-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.fp-panel { display: none; }
.fp-panel.active { display: block; }

.fp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fp-image {
  background: var(--surface-2);
  padding: 2rem;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fp-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.05);
}

/* Duplex layouts — align specs to top */
.fp-duplex4-layout {
  align-items: start;
}

/* Duplex 4BR two-floor layout */
.fp-duplex4-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: none;
  padding: 0;
  aspect-ratio: auto;
  overflow: visible;
}
.fp-floor-block {
  background: var(--surface-2);
  padding: 1.5rem 1.5rem 0.8rem;
}
.fp-floor-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.05);
  display: block;
}
.fp-floor-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.6rem 0 0.2rem;
}
.fp-spec-sub .spec-val {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.fp-spec-sub .spec-key {
  color: var(--text-muted);
}

.fp-specs { padding: 1rem 0; }
.fp-type {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.fp-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}

.fp-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.fp-spec {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.spec-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.spec-key {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-45);
}

.fp-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--white-70);
  margin-bottom: 2rem;
}

.fp-cta { display: inline-block; }

/* ─── BREAK SECTION ─────────────────────────────────────────────────────── */
.break-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.break-image {
  position: absolute;
  inset: 0;
}
.break-image img {
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
}
.break-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.break-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

/* ─── THE DEVELOPERS ────────────────────────────────────────────────────── */
.section-developers {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.dev-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 6rem;
}

.dev-text-col .section-heading { margin-bottom: 1.8rem; }

.dev-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 2.5rem 0;
}
.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.pillar-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pillar-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.pillar-body {
  font-size: 0.82rem;
  color: var(--white-45);
  line-height: 1.7;
}

.dev-image-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.dev-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
.dev-image-caption {
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--surface-2);
}
.dev-philosophy {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-70);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.dev-attribution {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Developer Fleet */
.dev-fleet {
  padding: 1.2rem 1.5rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.fleet-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-25);
  margin-bottom: 0.6rem;
}
.fleet-brands {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.fleet-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.fleet-sep {
  color: var(--white-25);
  font-size: 0.8rem;
}

/* Asim Ahmed Buksh Section */
.asim-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.asim-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.asim-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.asim-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.asim-title-tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--white-45);
  margin-bottom: 2rem;
}
.asim-bio {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--white-70);
  max-width: 68ch;
  margin-bottom: 1.2rem;
}

.asim-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.asim-cred {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cred-brand {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.cred-role {
  font-size: 0.7rem;
  color: var(--white-45);
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
}
.trust-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-45);
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ─── AMENITIES ─────────────────────────────────────────────────────────── */
.section-amenities {
  background: var(--surface);
  padding: 8rem 2rem;
}

.amenities-intro {
  max-width: 1400px;
  margin: 0 auto 4rem;
}
.amenities-intro .section-heading { margin-bottom: 1.2rem; }

.amenities-hero-image {
  max-width: 1400px;
  margin: 0 auto 5rem;
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}
.amenities-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.amenities-hero-overlay {
  position: absolute;
  bottom: 2rem; left: 2.5rem;
}
.amenities-hero-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 0.3rem;
}
.amenities-hero-sub {
  font-size: 0.78rem;
  color: var(--white-70);
  letter-spacing: 0.06em;
}

.amenities-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.amenity-card:hover {
  border-color: rgba(196,151,90,0.45);
  transform: translateY(-3px);
}

.amenity-icon-wrap {
  height: 200px;
  overflow: hidden;
}
.amenity-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.amenity-card:hover .amenity-img { transform: scale(1.06); }

.amenity-icon-text {
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-symbol {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
}

.amenity-body { padding: 1.8rem; }
.amenity-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.amenity-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--white-45);
}

/* ─── STATEMENT SECTION ─────────────────────────────────────────────────── */
.statement-section {
  padding: 10rem 2rem;
  text-align: center;
  background: var(--black);
}
.statement-inner {
  max-width: 900px;
  margin: 0 auto;
}
.statement-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.statement-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
}
.statement-heading em { font-style: italic; color: var(--gold-light); }

/* ─── CONTACT ───────────────────────────────────────────────────────────── */
.section-contact {
  background: var(--surface);
  padding: 8rem 2rem;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text .section-heading { margin-bottom: 1.8rem; }

.enquire-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.enquire-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.enquire-note {
  font-size: 0.78rem;
  color: var(--white-45);
  margin-bottom: 2.5rem;
}

.toggle-group-wrap {
  margin-bottom: 2rem;
}
.toggle-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-45);
  margin-bottom: 0.8rem;
}

.btn-toggle-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn-toggle {
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white-45);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-toggle:hover {
  border-color: var(--gold);
  color: var(--white-70);
}
.btn-toggle.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 500;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-bottom: 1rem;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe58; transform: translateY(-1px); }
.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

.enquire-privacy {
  font-size: 0.7rem;
  color: var(--white-25);
  text-align: center;
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-address {
  font-size: 0.8rem;
  color: var(--white-45);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-link {
  font-size: 0.78rem;
  color: var(--white-45);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

.footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-45);
}
.footer-whatsapp { display: inline-block; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--white-25);
}

/* ─── STICKY CTA ────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.sticky-btn:hover { transform: translateY(-2px); }
.sticky-enquire { background: var(--gold); color: var(--black); }
.sticky-wa { background: #25D366; color: var(--white); }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .address-split,
  .dev-split,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .address-image-stack { height: 400px; }

  .fp-layout { grid-template-columns: 1fr; gap: 2rem; }

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

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

  .dev-image-col { position: static; }

  .asim-section { grid-template-columns: 200px 1fr; gap: 2.5rem; }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section-address,
  .section-residences,
  .section-developers,
  .section-amenities,
  .section-contact { padding: 5rem 1.5rem; }

  .interiors-row-1 {
    grid-template-columns: 1fr;
  }
  .int-stack { flex-direction: row; }
  .int-stack-top, .int-stack-bottom { aspect-ratio: 1/1; }

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

  .asim-section { grid-template-columns: 1fr; gap: 2rem; }
  .asim-portrait-img { max-width: 280px; margin: 0 auto; }

  .amenities-grid { grid-template-columns: 1fr; }

  .intro-bar-inner { flex-wrap: wrap; justify-content: space-around; }
  .intro-stat { padding: 1.5rem; }
  .intro-divider { display: none; }

  .trust-bar { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .trust-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }

  .fp-spec-grid { grid-template-columns: 1fr 1fr; }

  .btn-toggle-group { gap: 0.4rem; }
  .btn-toggle { font-size: 0.65rem; padding: 0.5rem 0.7rem; }
}

/* ─── BROCHURE ─────────────────────────────────────────────────────────── */
.section-brochure {
  background: #080808;
  padding: 7rem 4rem;
  border-top: 1px solid rgba(168,133,58,0.25);
}

.brochure-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.brochure-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brochure-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.brochure-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.brochure-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.brochure-title em {
  font-style: italic;
  color: var(--gold);
}

.brochure-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 420px;
}

.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.btn-brochure:hover {
  background: transparent;
  color: var(--gold);
}

.brochure-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-brochure-view {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-brochure-view:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .brochure-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
  }
  .section-brochure { padding: 5rem 1.5rem; }
}
