/* =========================================================
   SIGNATURE LAMBORGHINI RESIDENCES
   Premium Light Theme — Custom Design
   ========================================================= */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-2: #f5f3ef;
  --bg-3: #eae6dc;
  --gold: #c49535;
  --gold-light: #dabb62;
  --gold-dark: #9b7228;
  --charcoal: #111111;
  --mid: #444240;
  --muted: #78726a;
  --border: #dedad0;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --max-w: 1300px;
  --gutter: clamp(20px, 5vw, 64px);
  --pad: clamp(72px, 9vw, 50px);
  --pad-sm: clamp(48px, 6vw, 38px);

  --r-sm: 8px;
  --r-md: 8px;
  --r-lg: 8px;
  --r-xl: 8px;

  --sh-sm: 0 2px 12px rgba(17, 17, 17, 0.05);
  --sh-md: 0 6px 28px rgba(17, 17, 17, 0.08);
  --sh-lg: 0 16px 56px rgba(17, 17, 17, 0.11);
  --sh-xl: 0 28px 90px rgba(17, 17, 17, 0.14);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.38s;
}

/* ── Reset ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Base Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-pad {
  padding-block: var(--pad);
}
.section-pad--sm {
  padding-block: var(--pad-sm);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 20px;
}

/* ── Image Placeholders ───────────────────────────────────────── */
.img-ph {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(196, 149, 53, 0.09) 24px,
    rgba(196, 149, 53, 0.09) 25px
  );
}
.img-ph span {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 20px;
}
.img-ph--portrait {
  aspect-ratio: 3/4;
}
.img-ph--landscape {
  aspect-ratio: 16/9;
}
.img-ph--legacy {
  aspect-ratio: 4/3;
  width: 100%;
}
.img-ph--map {
  min-height: 380px;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.img-ph--rosso {
  aspect-ratio: 16/6;
  width: 100%;
  border-radius: var(--r-xl);
}
.img-ph--g {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: 0;
}

/* ── Typography ───────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.section-heading em {
  font-style: italic;
  color: var(--muted);
}
.section-heading--center {
  text-align: center;
}

.section-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.75;
}
.section-sub--center {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg {
  padding: 15px 34px;
  font-size: 14px;
}
.btn-xl {
  padding: 17px 40px;
  font-size: 15px;
}
.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--mid);
  border-color: var(--mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* ── Form Elements ────────────────────────────────────────────── */
.fgroup {
  position: relative;
  margin-bottom: 18px;
}

.finput {
  width: 100%;
  padding: 20px 16px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.finput:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 149, 53, 0.12);
}

.flabel {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.22s var(--ease);
}
.finput:focus ~ .flabel,
.finput:not(:placeholder-shown) ~ .flabel {
  top: 10px;
  transform: none;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.fgroup--phone {
  display: flex;
  align-items: stretch;
}
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.finput--phone {
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 14px 16px;
}
.flabel--phone {
  left: 0;
  display: none;
}

.fselect {
  cursor: pointer;
  padding: 14px 16px;
}

.fgroup--checkbox {
  margin-bottom: 20px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.consent-label span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.form-consent {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}
.form-alert--success {
  background: #ebf9f2;
  color: #27ae60;
  border: 1px solid #a8e6c6;
}
.form-alert--error {
  background: #fdeded;
  color: #c0392b;
  border: 1px solid #f5b7b1;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--dur) var(--ease);
}

/* Announcement Bar */
.announce-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px var(--gutter);
  transition:
    height var(--dur),
    padding var(--dur),
    opacity var(--dur);
}
.site-header.scrolled .announce-bar {
  height: 0;
  padding-block: 0;
  overflow: hidden;
  opacity: 0;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.announce-sep {
  opacity: 0.35;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  padding-inline: var(--gutter);
}
.site-header.scrolled .navbar {
  margin: 10px 14px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 28px rgba(17, 17, 17, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.6);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--dur) var(--ease);
}
.nav-logo-img--scrolled { display: none; }
.site-header.scrolled .nav-logo-img--default { display: none; }
.site-header.scrolled .nav-logo-img--scrolled { display: block; }
.site-header.scrolled .nav-logo {
  background: none;
  padding: 0;
}

/* ── Mobile: floating solid-dark scrolled header ── */
@media (max-width: 1024px) {
  .site-header.scrolled .navbar {
    margin: 10px 12px 0;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }
  .site-header.scrolled .nav-logo {
    background: none;
    padding: 0;
  }
  .site-header.scrolled .nav-logo-img--default { display: block; }
  .site-header.scrolled .nav-logo-img--scrolled { display: none; }
  .site-header.scrolled .hamburger span {
    background: rgba(255, 255, 255, 0.85);
  }
}
.logo-emblem {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s;
}
.site-header:not(.scrolled) .logo-emblem {
  background: rgba(196, 149, 53, 0.85);
}
.logo-wordmark {
  line-height: 1.15;
}
.logo-wordmark strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--charcoal);
}
.logo-wordmark em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--muted);
}
.site-header:not(.scrolled) .logo-wordmark strong,
.site-header:not(.scrolled) .logo-wordmark em {
  color: rgba(255, 255, 255, 0.9);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav-link:hover {
  color: var(--mid);
}
.nav-link:hover::after {
  width: 100%;
}
.site-header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.site-header:not(.scrolled) .nav-link:hover {
  color: #fff;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: color 0.2s;
}
.site-header:not(.scrolled) .nav-phone {
  color: rgba(255, 255, 255, 0.85);
}
.nav-phone:hover {
  color: var(--gold);
}
.nav-cta {
  font-size: 12.5px;
  padding: 10px 22px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.site-header:not(.scrolled) .hamburger span {
  background: rgba(255, 255, 255, 0.85);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 40px 60px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-bottom: 32px;
}
.mobile-link {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 0;
  transition: color 0.2s;
  display: block;
  text-align: center;
}
.mobile-link:hover {
  color: var(--muted);
}
.mobile-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.mobile-cta-btn {
  width: 100%;
  max-width: 300px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    150deg,
    #080706 0%,
    #121008 40%,
    #1a1610 70%,
    #221c12 100%
  );
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 7, 6, 0.9) 0%,
    rgba(8, 7, 6, 0.55) 55%,
    rgba(8, 7, 6, 0.15) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 149, 53, 0.14);
  border: 1px solid rgba(196, 149, 53, 0.28);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  max-width: fit-content;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  display: flex;
}
.eyebrow-pulse {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 500px;
}
.hero-collab {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(196, 149, 53, 0.35);
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 28px;
}
.hero-collab-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.hero-collab-logo {
  height: 38px;
  width: auto;
  display: block;
  margin-left: 10px;
  padding: 4px 10px;
  background: rgb(255 255 255);
  border-radius: 4px;
}

.hero-price-tag {
  margin-bottom: 36px;
}
.hpt-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.hpt-value {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 600;
  color: var(--gold);
}
.hpt-value sup {
  font-size: 55%;
  vertical-align: super;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: slideBar 1.8s ease-in-out infinite;
}
@keyframes slideBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero-scroll-indicator span {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-xl);
}
.hfc-header {
  margin-bottom: 24px;
}
.hfc-eyebrow {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.hfc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.hfc-sub {
  font-size: 12.5px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  overflow-x: auto;
}
.stats-bar::-webkit-scrollbar {
  display: none;
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.stat-tick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  text-align: center;
  flex-shrink: 0;
  gap: 4px;
}
.stat-tick--featured {
  background: rgba(196, 149, 53, 0.1);
}
.st-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.st-value sup {
  font-size: 60%;
  vertical-align: super;
}
.st-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.stat-tick-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  flex-shrink: 0;
  margin-block: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   VISION / OVERVIEW
═══════════════════════════════════════════════════════════════ */
.section-vision {
  background: var(--white);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.vision-quote {
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 18px;
}
.vision-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--mid);
  line-height: 1.55;
}
.vision-quote--alt {
  border-color: var(--gold-light);
  background: var(--bg-2);
}
.vision-body {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15.5px;
}
.vision-cta {
  margin-top: 14px;
}

.vision-image-col {
  position: relative;
}
.vision-img-frame {
  position: relative;
}
.vision-img-frame .img-ph {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}
.vision-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 3/4;
}
.vision-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vision-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  min-width: 110px;
}
.vib-inner {
  text-align: center;
}
.vib-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.vib-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.6);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   HIGHLIGHT / KEY NUMBERS
═══════════════════════════════════════════════════════════════ */
.section-highlight {
  background: var(--bg);
}
.highlight-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.highlight-header .section-sub {
  margin-top: 4px;
  margin-inline: auto;
}

.key-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.key-num-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.key-num-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.key-num-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold-light);
}
.key-num-card:hover::before {
  transform: scaleX(1);
}
.key-num-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.key-num-card--featured .knc-num,
.key-num-card--featured .knc-unit {
  color: var(--gold-light);
}
.key-num-card--featured .knc-desc {
  color: rgba(255, 255, 255, 0.55);
}
.knc-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.knc-num sup {
  font-size: 55%;
  vertical-align: super;
}
.knc-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  margin-top: 4px;
  margin-bottom: 12px;
}
.knc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Feature Panels */
.feature-panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.feature-panel {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.feature-panel--wide .img-ph {
  height: 280px;
  border-radius: 0;
}
.feature-img-wrap {
  height: 280px;
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--ease);
}
.feature-panel--wide:hover .feature-img {
  transform: scale(1.04);
}
.fp-caption {
  padding: 20px 24px;
  background: var(--charcoal);
}
.fp-cap-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.fp-caption h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.fp-content {
  padding: 32px 28px;
}
.fp-icon-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.fp-content h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.fp-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL LEGACY
═══════════════════════════════════════════════════════════════ */
.section-legacy {
  background: var(--white);
}
.legacy-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.legacy-header .section-sub {
  margin-inline: auto;
}

.legacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.legacy-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  background: var(--white);
}
.legacy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold-light);
}
.legacy-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.legacy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease);
}
.legacy-card:hover .legacy-card-img img {
  transform: scale(1.06);
}
.legacy-card-body {
  padding: 22px 24px 28px;
}
.legacy-location {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.legacy-card-body h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.35;
}
.legacy-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.legacy-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

/* Rosso Banner */
.rosso-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.rosso-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 12, 8, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  gap: 10px;
}
.rosso-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.rosso-overlay h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   CONFIGURATIONS / FLOOR PLANS
═══════════════════════════════════════════════════════════════ */
.section-configs {
  background: var(--bg);
}
.configs-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.config-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.config-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.config-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: var(--gold-light);
}

.config-card--elite {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.config-card--elite .config-num {
  color: rgba(255, 255, 255, 0.45);
}
.config-card--elite .config-type {
  color: #fff;
}
.config-card--elite .config-size {
  color: rgba(255, 255, 255, 0.5);
}
.config-card--elite .config-divider {
  background: rgba(255, 255, 255, 0.12);
}
.config-card--elite .config-features li {
  color: rgba(255, 255, 255, 0.7);
}
.config-card--elite .config-features li::before {
  background: var(--gold);
}

.config-card--signature {
  border-color: var(--gold-light);
  background: linear-gradient(145deg, var(--white) 0%, #fbf7f1 100%);
}
.config-card--signature .config-card-tier {
  background: var(--gold);
  color: var(--charcoal);
}

.config-card-tier {
  position: absolute;
  top: 22px;
  right: -24px;
  background: var(--bg-3);
  color: var(--mid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 32px 5px 16px;
  transform: rotate(0deg);
}
.config-card-tier--urban {
  background: var(--bg-3);
  color: var(--muted);
}
.config-card-tier--elite {
  background: rgba(196, 149, 53, 0.2);
  color: var(--gold-light);
}
.config-card-tier--luxe {
  background: var(--gold);
  color: var(--charcoal);
}

.config-num {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.config-type {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.config-type sup {
  font-size: 55%;
  vertical-align: super;
}
.config-size {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.config-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.config-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.config-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
}
.config-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.config-cta {
  margin-top: auto;
}

.config-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════════════════════ */
.section-amenities {
  background: var(--white);
}
.amenities-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.clubhouse-stat {
  background: var(--charcoal);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  text-align: center;
  margin-bottom: 40px;
}
.cs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cs-number {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cs-label {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.amenity-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--dur) var(--ease);
}
.amenity-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-light);
  background: var(--white);
}
.at-icon {
  color: var(--gold-dark);
}
.amenity-tile span {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.section-gallery {
  background: var(--bg);
}
.gallery-header {
  text-align: center;
  margin-bottom: 44px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.g-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}

.g-item .img-ph {
  width: 100%;
  height: 100%;
  transition: transform 0.55s var(--ease);
}
.g-item:hover .img-ph {
  transform: scale(1.05);
}
.g-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}
.g-img--top {
  object-position: center top;
}
.g-img--bottom {
  object-position: center bottom;
}
.g-img--center {
  object-position: center center;
}
.g-img--right {
  object-position: right center;
}
.g-img--left {
  object-position: left center;
}
.g-img--mid {
  object-position: center 40%;
}
.g-item:hover .g-img {
  transform: scale(1.05);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 12, 8, 0.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-overlay span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════════════ */
.section-location {
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.location-intro {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 15.5px;
}
.location-intro strong {
  color: var(--charcoal);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--mid);
  transition: all var(--dur) var(--ease);
}
.loc-item:hover {
  transform: translateX(6px);
  border-color: var(--gold-light);
  box-shadow: var(--sh-sm);
}
.loc-item strong {
  color: var(--charcoal);
}
.loc-pin {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--gold-dark);
}

.location-map-frame {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}
.map-pin-anim {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-dot {
  width: 10px;
  height: 10px;
  background: var(--charcoal);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ripple 2.5s ease-out infinite;
}
.r1 {
  width: 32px;
  height: 32px;
}
.r2 {
  width: 52px;
  height: 52px;
  animation-delay: 0.7s;
}
@keyframes ripple {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.map-label {
  text-align: center;
}
.map-label strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.map-label small {
  font-size: 12px;
  color: var(--muted);
}

.loc-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lqt {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}

/* ═══════════════════════════════════════════════════════════════
   PRICE CTA SECTION
═══════════════════════════════════════════════════════════════ */
.section-price-cta {
  background: var(--bg-2);
  padding-block: var(--pad);
}
.price-cta-block {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 72px 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.pct-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.pct-price {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 14px;
}
.pct-price sup {
  font-size: 55%;
  vertical-align: super;
}
.pct-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
}
.pct-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-intro {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 15.5px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.cil-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cil-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--gold-dark);
}
.cil-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cil-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}
a.cil-value:hover {
  color: var(--gold-dark);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-lg);
}
.contact-card-head {
  margin-bottom: 28px;
}
.contact-card-head h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.contact-card-head p {
  font-size: 14px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding-block: 72px 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo .logo-wordmark strong,
.footer-logo .logo-wordmark em {
  color: rgba(255, 255, 255, 0.85);
}
.footer-logo .logo-emblem {
  background: rgba(196, 149, 53, 0.2);
  color: var(--gold-light);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px 10px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-nav-list a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-row a:hover {
  color: var(--gold-light);
}
.footer-rera {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}
.footer-rera span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 3px;
}
.footer-rera strong {
  color: rgba(255, 255, 255, 0.5);
}

.footer-enquire-btn {
  display: inline-flex;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.fsoc-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.fsoc-btn:hover {
  border-color: var(--gold); color: var(--gold);
}
.footer-privacy-link {
  font-size: 12.5px; color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-privacy-link:hover { color: var(--gold-light); }

.footer-disclaimer-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-disclaimer-bar .container p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
}

.footer-bottom-bar {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   ENQUIRY POPUP
═══════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.popup-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 32px 80px rgba(17, 17, 17, 0.25);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.open .popup-modal {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.popup-close:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.popup-head {
  margin-bottom: 4px;
}
.popup-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  margin-top: 6px;
}
.popup-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY BAR + SCROLL TOP
═══════════════════════════════════════════════════════════════ */
.float-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(196, 149, 53, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.float-call-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(196, 149, 53, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.18);
}

.scroll-top-btn {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--dur) var(--ease);
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  background: var(--mid);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
[data-anim="fade-up"] {
  transform: translateY(30px);
}
[data-anim="fade-right"] {
  transform: translateX(-28px);
}
[data-anim="fade-left"] {
  transform: translateX(28px);
}
[data-anim].in-view {
  opacity: 1;
  transform: none;
}

[data-anim="stagger"] {
  opacity: 1;
  transform: none;
}
[data-anim="stagger"] > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
[data-anim="stagger"].in-view > * {
  opacity: 1;
  transform: none;
}
[data-anim="stagger"].in-view > *:nth-child(1) {
  transition-delay: 0.04s;
}
[data-anim="stagger"].in-view > *:nth-child(2) {
  transition-delay: 0.1s;
}
[data-anim="stagger"].in-view > *:nth-child(3) {
  transition-delay: 0.16s;
}
[data-anim="stagger"].in-view > *:nth-child(4) {
  transition-delay: 0.22s;
}
[data-anim="stagger"].in-view > *:nth-child(5) {
  transition-delay: 0.28s;
}
[data-anim="stagger"].in-view > *:nth-child(6) {
  transition-delay: 0.34s;
}
[data-anim="stagger"].in-view > *:nth-child(7) {
  transition-delay: 0.4s;
}
[data-anim="stagger"].in-view > *:nth-child(8) {
  transition-delay: 0.46s;
}
[data-anim="stagger"].in-view > *:nth-child(9) {
  transition-delay: 0.52s;
}
[data-anim="stagger"].in-view > *:nth-child(10) {
  transition-delay: 0.58s;
}
[data-anim="stagger"].in-view > *:nth-child(11) {
  transition-delay: 0.64s;
}
[data-anim="stagger"].in-view > *:nth-child(12) {
  transition-delay: 0.7s;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .key-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-phone,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-body {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
  /* .hero-right { order: -1; } */
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-image-col {
    max-width: 520px;
    margin-inline: auto;
  }
  .feature-panels {
    grid-template-columns: 1fr 1fr;
  }
  .feature-panel--wide {
    grid-column: 1 / -1;
  }
  .legacy-cards {
    grid-template-columns: 1fr 1fr;
  }
  .config-cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 56px;
    --pad-sm: 40px;
    --gutter: 20px;
  }
  .stats-bar-inner {
    gap: 0;
  }
  .stat-tick {
    padding: 18px 20px;
  }
  .key-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature-panels {
    grid-template-columns: 1fr;
  }
  .legacy-cards {
    grid-template-columns: 1fr;
  }
  .config-cards {
    grid-template-columns: 1fr;
  }
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
  }
  .price-cta-block {
    padding: 48px 28px;
  }
  .pct-actions {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    padding: 30px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-body {
    padding-top: 120px;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-eyebrow{
    font-size: 9px;
  }
  .hero-cta-row .btn {
    justify-content: center;
  }
  .float-call-btn {
    display: flex;
  }
  .announce-bar {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .key-numbers {
    grid-template-columns: 1fr 1fr;
  }
  /* ── 3-per-row amenities ── */
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .amenity-tile {
    padding: 16px 6px;
    gap: 8px;
  }
  .amenity-tile span {
    font-size: 10.5px;
  }
  .at-icon svg {
    width: 22px;
    height: 22px;
  }
  /* ── 3-per-row stats ── */
  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 0;
  }
  .stat-tick {
    text-align: center;
    align-items: center;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .stat-tick-sep {
    display: none;
  }
  /* ── gallery ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  /* ── misc ── */
  .loc-quick-tags {
    flex-wrap: wrap;
  }
  .hero-form-card {
    padding: 24px 18px;
  }
  .config-card-tier {
    display: none;
  }
  .config-card {
    padding: 24px 20px;
  }
  .legacy-card-body {
    padding: 18px 16px 20px;
  }
  .price-cta-block {
    padding: 40px 20px;
  }
  .contact-card {
    padding: 24px 18px;
  }
  .footer-main {
    padding-block: 48px 36px;
  }
}

@media (max-width: 360px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .amenity-tile {
    padding: 12px 4px;
  }
  .amenity-tile span {
    font-size: 9.5px;
  }
  .stat-tick .st-value {
    font-size: 15px;
  }
  .stat-tick .st-label {
    font-size: 8px;
  }
  .hero-headline {
    font-size: clamp(36px, 11vw, 52px);
  }
  .smb-btn {
    padding: 12px 18px;
    font-size: 12.5px;
  }
}
