/* =============================================
   LEGACY KAIROS — Premium Landing Page
   ============================================= */

@font-face {
  font-family: Gotham;
  src: url('fonts/Gotham-HTF-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Gotham;
  src: url('fonts/Gotham-HTF-Book.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Gotham;
  src: url('fonts/Gotham-HTF-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Gotham;
  src: url('fonts/Gotham-HTF-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Gotham;
  src: url('fonts/Gotham-HTF-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

/* ---- VARIABLES ---- */
:root {
  --gold:        #B09041;
  --gold-dark:   #8a6f30;
  --gold-light:  #c9a84c;
  --gold-muted:  rgba(176,144,65,0.18);
  --dark:        #141414;
  --charcoal:    #222222;
  --text:        #333333;
  --muted:       #777777;
  --light-bg:    #f8f6f1;
  --white:       #ffffff;
  --header-h:    76px;
  --pad:         clamp(60px, 8vw, 110px);
  --radius:      3px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Gotham, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ---- TYPOGRAPHY ---- */
.label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.h1 {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}

.h2 {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.h2.white { color: var(--white); }

.h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--dark); }

.body-text { font-size: 15px; line-height: 1.8; color: var(--muted); }
.body-text.white { color: rgba(255,255,255,0.72); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-gold   { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-gold { background: transparent; color: var(--gold-light); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: #fff; color: var(--dark); }

.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #000; }

/* ---- FORMS ---- */
.field { margin-bottom: 14px; }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.field input::placeholder,
.field textarea::placeholder { color: #bbb; }
.field textarea { resize: vertical; min-height: 90px; }

.field.dark input,
.field.dark textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.field.dark input:focus,
.field.dark textarea:focus { border-color: var(--gold); }
.field.dark input::placeholder,
.field.dark textarea::placeholder { color: rgba(255,255,255,0.3); }

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--gold-dark); }
.submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.form-msg {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}
.form-msg.ok  { color: #2e7d32; }
.form-msg.err { color: #c62828; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
  background: rgba(18,18,18,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.site-logo img { height: 46px; width: auto; }

.site-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold-light); }
.site-nav a.active { color: var(--gold-light); border-bottom: 1px solid var(--gold-light); padding-bottom: 2px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/intersteller-kairos-gate-full.jpg') center 60% / cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,8,2,0.55) 0%,
      rgba(10,8,2,0.35) 40%,
      rgba(10,8,2,0.65) 100%),
    linear-gradient(105deg,
      rgba(10,6,0,0.92) 0%,
      rgba(30,20,0,0.75) 45%,
      rgba(176,144,65,0.12) 75%,
      rgba(10,8,2,0.5) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 4rem;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
}
.hero-tagline { color: var(--gold-light); }
.hero-title { margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .desc {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: 4px;
  padding: 2.25rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.hero-form-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.hero-form-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-form-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ---- STATS BAR ---- */
.stats-bar { background: var(--dark); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .s-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-cell .s-label {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- SECTION BASE ---- */
.section { padding: var(--pad) 0; }
.section.dark-bg { background: var(--dark); }
.section.light-bg { background: var(--light-bg); }

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .h2 { margin: 0 auto; }

/* ---- OVERVIEW ---- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.overview-copy { padding-right: 1rem; }
.overview-copy .h2 { margin-bottom: 1.25rem; }
.overview-list { margin: 1.5rem 0 2rem; }
.overview-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 14.5px;
  color: #555;
}
.overview-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}
.overview-visual { position: relative; }
.overview-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.overview-visual::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}
.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s;
}
.video-thumb:hover img { opacity: 0.85; }

/* ---- PRICE ---- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}
.price-card {
  border: 1px solid rgba(176,144,65,0.28);
  border-radius: 4px;
  padding: 2.25rem;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card .pc-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.price-card .pc-name {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.pc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pc-row:last-of-type { border-bottom: none; }
.pc-row .k { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.pc-row .v { font-size: 13.5px; font-weight: 600; color: #fff; }
.pc-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 1.5rem 0;
}
.pc-cta { margin-top: 1.5rem; }

/* ---- GALLERY ---- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}
.gal-item {
  overflow: hidden;
  position: relative;
}
.gal-item:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1rem 0.75rem 0.6rem;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.gal-item:hover .gal-caption { opacity: 1; transform: translateY(0); }

/* ---- LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-list { margin: 1.5rem 0 2rem; }
.location-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 14.5px;
  color: #555;
}
.location-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
}

/* ---- AMENITIES ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.amenity-card {
  background: #fff;
  border-radius: 4px;
  padding: 1.4rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.055);
  transition: transform 0.22s, box-shadow 0.22s;
}
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.amenity-card img { width: 46px; height: 46px; object-fit: contain; }
.amenity-card span { font-size: 11.5px; color: #555; font-weight: 500; line-height: 1.3; }

/* ---- SPECIFICATIONS ---- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.spec-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.spec-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-icon-wrap img { width: 28px; height: 28px; object-fit: contain; }
.spec-body .spec-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.spec-body .spec-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---- FLOOR PLANS ---- */
.plan-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.plan-tab {
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.plan-tab.active, .plan-tab:hover { background: var(--gold); color: #fff; }
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-panel img { max-width: 680px; margin: 0 auto; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.yt-lazy {
  position: relative;
  cursor: pointer;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.yt-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s, transform 0.4s;
}
.yt-lazy:hover img { opacity: 0.82; transform: scale(1.04); }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 40px;
  background: rgba(0,0,0,0.78);
  border-radius: 8px;
  pointer-events: none;
  transition: transform 0.2s, background 0.2s;
}
.yt-lazy:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); background: rgba(176,144,65,0.9); }
.yt-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  border: 10px solid transparent;
  border-left: 17px solid #fff;
}
.yt-lazy iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- RERA ---- */
.rera-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.rera-card img { width: 110px; flex-shrink: 0; }
.rera-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.rera-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}
.rera-card p { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-info-block { margin-top: 2rem; }
.contact-info-block h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 1.75rem;
}
.contact-info-block h5:first-child { margin-top: 0; }
.contact-info-block p,
.contact-info-block a {
  font-size: 15.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.contact-info-block a:hover { color: var(--gold-light); }

/* ---- FOOTER ---- */
.site-footer {
  background: #0d0d0d;
  padding: 3rem 0 1.5rem;
}
.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-logo img { height: 44px; }
.footer-logos { display: flex; align-items: center; gap: 2rem; }
.footer-logos img { height: 38px; opacity: 0.7; }
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy p { font-size: 11.5px; color: rgba(255,255,255,0.25); }

/* ---- MOBILE CTA BAR ---- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #fff;
  box-shadow: 0 -3px 18px rgba(0,0,0,0.14);
  padding: 10px 1rem;
}
.mobile-cta-bar a,
.mobile-cta-bar button {
  flex: 1;
  padding: 13px;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.mobile-cta-bar { display: none; }
.mobile-cta-bar .inner {
  display: flex;
  gap: 0.75rem;
}
.mobile-cta-bar a { background: var(--charcoal); color: #fff; display: flex; align-items: center; justify-content: center; }
.mobile-cta-bar button { background: var(--gold); color: #fff; }

/* ---- MODAL ---- */
.modal-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.72);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-wrap.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 430px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
}
.modal-close:hover { color: var(--dark); }
.modal-box h3 { font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.modal-box > p { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
.modal-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ---- FADE IN ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .overview-grid { gap: 3rem; }
}

@media (max-width: 860px) {
  /* Header */
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 16px 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
  }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 1.5rem);
  }
  .hero-form-card { max-width: 480px; }

  /* 2-col → 1-col */
  .overview-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .overview-visual::after { display: none; }

  /* Stats bar */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2),
  .stat-cell:nth-child(4) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }

  /* Price */
  .price-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gal-item:first-child img { height: 260px; }
  .gal-item:not(:first-child) img { height: 190px; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  /* Specs */
  .specs-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* RERA */
  .rera-card { flex-direction: column; text-align: center; gap: 1.5rem; }

  /* Footer */
  .footer-row { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-nav { justify-content: center; }
  .footer-logos { justify-content: center; }
  .footer-copy { flex-direction: column; gap: 6px; text-align: center; }

  /* Mobile CTA */
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  :root { --pad: 48px; --header-h: 62px; }
  .hero-form-card { padding: 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat .num { font-size: 24px; }
  .hero-stat .desc { font-size: 9px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gal-item:first-child { grid-column: 1; }
  .gal-item img, .gal-item:first-child img, .gal-item:not(:first-child) img { height: 210px; }
  .plan-panel img { max-width: 100%; }
  .modal-box { padding: 1.75rem 1.25rem; }
  .rera-card { padding: 2rem 1.5rem; }
}
