/* ══════════════════════════════════════════════════════════════
   Godrej Trilogy — Worli, South Mumbai
   Apple-style LIQUID GLASS design system
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── Palette — deep marine, smoked glass, bronze/gold ── */
  --sea-abyss: #060C15;      /* deepest */
  --sea-deep:  #0A1524;      /* page base */
  --sea-mid:   #0E1E32;      /* section alt */
  --marine:    #16324F;      /* marine accent */
  --marine-2:  #245073;      /* lighter marine */
  --pearl:     #F5F1E9;      /* ivory text */
  --pearl-dim: rgba(245,241,233,0.74);
  --pearl-mute:rgba(245,241,233,0.52);
  --gold:      #C9A15A;      /* bronze/gold accent */
  --gold-2:    #E4C588;      /* bright gold */
  --gold-soft: rgba(201,161,90,0.16);
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);

  /* ── Liquid glass tokens ── */
  --glass-tint:      rgba(16,30,50,0.42);
  --glass-tint-hi:   rgba(24,42,66,0.55);
  --glass-blur:      blur(22px) saturate(180%) brightness(1.05);
  --glass-blur-lite: blur(16px) saturate(160%);
  --glass-inner:     inset 0 1px 0 rgba(255,255,255,0.45), inset 0 0 0 1px rgba(255,255,255,0.05);
  --glass-float:     0 28px 64px -28px rgba(0,0,0,0.72), 0 8px 24px -16px rgba(0,0,0,0.6);

  --radius:    26px;
  --radius-sm: 16px;
  --radius-xs: 12px;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--sea-deep);
  color: var(--pearl);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Ambient aurora backdrop — gives glass color to catch */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60vw 55vh at 82% 8%, rgba(201,161,90,0.14), transparent 60%),
    radial-gradient(65vw 60vh at 12% 88%, rgba(30,72,110,0.30), transparent 62%),
    radial-gradient(80vw 70vh at 50% 50%, rgba(10,25,44,0.0), transparent 70%),
    linear-gradient(180deg, var(--sea-deep) 0%, var(--sea-abyss) 100%);
  pointer-events: none;
}
/* faint grain to keep gradients from banding */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(201,161,90,0.32); color: #fff; }

/* ════════════════ LIQUID GLASS CORE ════════════════ */
.glass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--glass-tint);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  box-shadow: var(--glass-inner), var(--glass-float);
}
/* light-catching gradient border: bright top-left → dim bottom-right */
.glass::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.10) 34%,
    rgba(255,255,255,0.02) 55%,
    rgba(201,161,90,0.28) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}

/* interactive glass (cards you can hover-lift) */
.glass-lift { transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s; }
@media (hover: hover) {
  .glass-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--glass-inner), 0 40px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,161,90,0.12);
  }
}

/* ════════════════ SHARED TYPE ════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.24em; color: var(--gold-2);
  font-weight: 500;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow.center::after { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }

.display {
  font-family: var(--font-display); font-weight: 400;
  line-height: 1.06; letter-spacing: -0.01em; color: var(--pearl);
}
.display em { font-style: italic; color: var(--gold-2); }

.section-head { font-size: clamp(30px, 4.4vw, 54px); }
.lede { color: var(--pearl-dim); font-size: clamp(15px, 1.4vw, 18px); font-weight: 300; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  padding: 16px 30px; border-radius: 100px; border: none; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  color: #1c1508;
  box-shadow: 0 12px 30px -12px rgba(201,161,90,0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.7s;
}
@media (hover: hover) {
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201,161,90,0.8), inset 0 1px 0 rgba(255,255,255,0.5); }
  .btn-gold:hover::after { transform: translateX(120%); }
}
.btn-glass {
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: var(--glass-blur-lite); backdrop-filter: var(--glass-blur-lite);
  color: var(--pearl); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
@media (hover: hover) { .btn-glass:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); } }

/* anchor jumps must clear the fixed ticker + nav */
html { scroll-padding-top: 140px; }

/* ════════════════ TICKER ════════════════ */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: 34px; overflow: hidden;
  background: rgba(6,12,21,0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.ticker-track { display: flex; width: max-content; height: 100%; animation: tickerScroll 44s linear infinite; }
.ticker-row { display: flex; align-items: center; }
.ticker-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  font-size: 11.5px; letter-spacing: 0.14em; color: var(--pearl-dim);
  padding: 0 26px;
}
.ticker-item::after { content: '◆'; color: var(--gold); opacity: 0.55; font-size: 7px; margin-left: 26px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px clamp(20px, 4vw, 48px);
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.solid {
  background: rgba(8,16,28,0.62);
  -webkit-backdrop-filter: blur(20px) saturate(160%); backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 12px 40px -24px rgba(0,0,0,0.9);
}
.nav-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.nav-logo { height: 30px; width: auto; flex-shrink: 0; }
.nav-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.22); flex-shrink: 0; }
.nav-meta { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.nav-project { font-family: var(--font-display); font-size: 20px; color: var(--pearl); }
.nav-loc { font-size: 10px; letter-spacing: 0.2em; color: var(--gold-2); margin-top: 5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 13px; letter-spacing: 0.04em; color: var(--pearl-dim); font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: var(--gold); transition: width 0.3s; }
@media (hover: hover) { .nav-links a:hover { color: var(--pearl); } .nav-links a:hover::after { width: 100%; } }
.nav-cta { padding: 12px 24px; font-size: 12.5px; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  /* top padding clears the fixed ticker (34px) + nav (~86px) so the glass
     panel can never slide under them on shorter viewports */
  overflow: hidden; padding: 150px clamp(20px, 4vw, 48px) clamp(40px, 5vw, 60px);
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-media .desk { display: block; }
.hero-media .mob { display: none; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,21,0.30) 0%, rgba(6,12,21,0.04) 30%, rgba(6,12,21,0.16) 58%, rgba(6,12,21,0.72) 100%),
    linear-gradient(90deg, rgba(6,12,21,0.62) 0%, rgba(6,12,21,0.18) 38%, transparent 56%);
}

/* left-anchored frosted panel — leaves the towers on the right in clear view */
.hero-panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 640px; margin: 0;
  padding: clamp(26px, 3.2vw, 42px);
}
.hero-panel.glass { background: rgba(8,16,28,0.55); }
.hero-eyebrow { margin-bottom: 22px; }
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(42px, 6.6vw, 78px); line-height: 1.0; letter-spacing: -0.015em;
  color: var(--pearl); margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub { font-size: clamp(15px, 1.5vw, 18px); color: var(--pearl-dim); font-weight: 300; max-width: 520px; margin-bottom: 26px; }
.hero-strip {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  padding: 18px 0; margin-bottom: 26px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.hero-strip-item { display: flex; flex-direction: column; gap: 5px; }
.hero-strip-label { font-size: 10.5px; letter-spacing: 0.16em; color: var(--pearl-mute); }
.hero-strip-value { font-family: var(--font-display); font-size: 19px; color: var(--pearl); line-height: 1.1; }
.hero-cta-row { display: flex; flex-wrap: nowrap; gap: 14px; align-items: center; }
.hero-rera { font-size: 10.5px; color: var(--pearl-mute); margin-top: 22px; letter-spacing: 0.04em; line-height: 1.55; }

/* stats bar directly below the hero */
.hero-statsbar {
  background: rgba(6,12,21,0.5);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px clamp(20px, 4vw, 48px);
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px clamp(28px, 4vw, 54px); }
.hero-stat-val { font-family: var(--font-display); font-size: 32px; color: var(--gold-2); line-height: 1; }
.hero-stat-lbl { font-size: 11px; letter-spacing: 0.1em; color: var(--pearl-dim); margin-top: 8px; line-height: 1.4; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; color: var(--pearl-mute);
}
.hero-scroll span.line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ════════════════ SECTIONS ════════════════ */
.section { padding: clamp(72px, 9vw, 130px) clamp(20px, 4vw, 48px); position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; }
.sec-head-block { max-width: 780px; margin-bottom: clamp(40px, 5vw, 60px); }
.sec-head-block .eyebrow { margin-bottom: 22px; }
.sec-head-block .lede { margin-top: 22px; }

/* ── Overview ── */
.overview-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.overview-visual { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--glass-float); }
.overview-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
@media (hover: hover) { .overview-visual:hover img { transform: scale(1.05); } }
.overview-visual .tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  padding: 12px 20px; font-size: 12px; letter-spacing: 0.06em; color: var(--pearl);
  border-radius: 100px;
}
.pull {
  margin-top: 30px; padding: 22px 28px;
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(201,161,90,0.06);
}
.pull p { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2vw, 24px); line-height: 1.4; color: var(--gold-2); }
.overview-copy p + p { margin-top: 18px; }
.overview-copy .lede { color: var(--pearl-dim); }

/* ── Configurations ── */
.config-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.config-card { padding: 0; }
.config-card .img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.config-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
@media (hover: hover) { .config-card:hover .img img { transform: scale(1.06); } }
.config-card .body { padding: 28px 30px 32px; }
.config-card .type { font-family: var(--font-display); font-size: 30px; color: var(--pearl); }
.config-card .kicker { font-size: 12px; letter-spacing: 0.14em; color: var(--gold-2); margin: 4px 0 16px; }
.config-card .desc { font-size: 14.5px; color: var(--pearl-dim); font-weight: 300; line-height: 1.65; }
.config-card .price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.config-card .price { font-family: var(--font-display); font-size: 21px; color: var(--gold-2); }
.config-card .price small { display: block; font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.12em; color: var(--pearl-mute); margin-top: 3px; }
.config-note { margin-top: 26px; font-size: 13px; color: var(--pearl-mute); letter-spacing: 0.03em; }
.link-btn {
  display: inline-flex; align-items: center; gap: 8px; background: none; border: none;
  color: var(--gold-2); font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; padding: 8px 0;
}
.link-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
@media (hover: hover) { .link-btn:hover svg { transform: translateX(4px); } }

/* ── Investment (the case for Worli) ── */
.invest-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.invest-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.invest-stat { padding: 26px 24px; border-radius: var(--radius-sm); }
.invest-stat .val { font-family: var(--font-display); font-size: 30px; color: var(--gold-2); line-height: 1; }
.invest-stat .lbl { font-size: 12px; letter-spacing: 0.05em; color: var(--pearl-dim); margin-top: 10px; line-height: 1.5; }

/* ── Accordion (investment reasons + FAQ) ── */
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 19px; color: var(--pearl); line-height: 1.3;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: '+'; flex-shrink: 0;
  font-family: var(--font-body); font-weight: 300; font-size: 22px; color: var(--gold-2);
  transition: transform 0.3s;
}
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { padding: 0 0 20px; font-size: 14px; color: var(--pearl-dim); font-weight: 300; line-height: 1.7; max-width: 62ch; }
.faq-list { max-width: 820px; }

/* ── Developer ── */
.dev-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.dev-stats { display: grid; gap: 16px; }
.dev-stat { padding: 24px 28px; display: flex; align-items: baseline; gap: 20px; border-radius: var(--radius-sm); }
.dev-stat .val { font-family: var(--font-display); font-size: 28px; color: var(--gold-2); white-space: nowrap; }
.dev-stat .lbl { font-size: 13px; color: var(--pearl-dim); font-weight: 300; line-height: 1.5; }

/* ── Features + inline form (dark) ── */
.features-wrap { display: grid; grid-template-columns: 1fr 380px; gap: clamp(40px, 5vw, 68px); align-items: start; }
.feature-list { display: flex; flex-direction: column; }
.feature-row { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: none; }
.feature-num { font-family: var(--font-display); font-style: italic; font-size: 32px; color: var(--gold-2); line-height: 1; }
.feature-row h3 { font-family: var(--font-display); font-size: 23px; color: var(--pearl); line-height: 1.2; margin-bottom: 8px; }
.feature-row p { font-size: 14px; color: var(--pearl-dim); font-weight: 300; line-height: 1.65; }

.form-card { padding: 34px 30px; position: sticky; top: 110px; }
.form-title { font-family: var(--font-display); font-size: 25px; color: var(--pearl); line-height: 1.2; margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--pearl-dim); line-height: 1.6; margin-bottom: 24px; }
.field { position: relative; margin-bottom: 4px; }
.inp {
  display: block; width: 100%; padding: 14px 2px; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--pearl);
  font-family: var(--font-body); font-size: 14.5px; font-weight: 300; outline: none;
  transition: border-color 0.3s;
}
.inp::placeholder { color: var(--pearl-mute); }
.inp:focus { border-bottom-color: var(--gold); box-shadow: 0 1px 0 0 var(--gold); }
.phone-wrap { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color 0.3s; }
.phone-wrap:focus-within { border-bottom-color: var(--gold); box-shadow: 0 1px 0 0 var(--gold); }
.phone-cc { padding: 14px 12px 14px 2px; font-size: 14.5px; color: var(--pearl-dim); border-right: 1px solid rgba(255,255,255,0.2); margin-right: 12px; white-space: nowrap; }
.phone-wrap .inp { border: none; flex: 1; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 4px; cursor: pointer; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.consent span { font-size: 11.5px; color: var(--pearl-mute); line-height: 1.5; }
.form-submit { width: 100%; margin-top: 20px; padding: 16px; }
.form-note { font-size: 10.5px; color: var(--pearl-mute); margin-top: 14px; line-height: 1.5; letter-spacing: 0.03em; }
.field-err { color: #ff9a8a; font-size: 11.5px; margin-top: 6px; min-height: 0; display: none; }
.field-err.show { display: block; }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.g-item::after {
  content: attr(data-caption); position: absolute; left: 16px; bottom: 14px; right: 16px;
  color: var(--pearl); font-size: 12.5px; letter-spacing: 0.03em;
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s; z-index: 2;
}
.g-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(6,12,21,0.82));
  opacity: 0; transition: opacity 0.35s;
}
@media (hover: hover) {
  .g-item:hover img { transform: scale(1.06); }
  .g-item:hover::after { opacity: 1; transform: translateY(0); }
  .g-item:hover::before { opacity: 1; }
}
@media (hover: none) { .g-item::after, .g-item::before { opacity: 1; transform: none; } }
.g-1 { grid-column: span 4; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 2; grid-row: span 1; }
.g-6 { grid-column: span 2; grid-row: span 1; }
.g-7 { grid-column: span 3; grid-row: span 2; }
.g-8 { grid-column: span 3; grid-row: span 2; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(6,12,21,0.9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.35s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-img { max-width: min(1100px, 94vw); max-height: 82vh; border-radius: var(--radius-sm); box-shadow: 0 40px 120px rgba(0,0,0,0.7); }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; font-size: 13px; color: var(--pearl-dim); letter-spacing: 0.04em; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16); color: var(--pearl);
  display: flex; align-items: center; justify-content: center; transition: background 0.25s;
}
.lb-btn svg { width: 20px; height: 20px; }
@media (hover: hover) { .lb-btn:hover { background: rgba(255,255,255,0.16); } }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-close { top: 22px; right: 22px; transform: none; }

/* ── Amenities ── */
.amen-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.amen-hero { position: relative; min-height: 380px; display: flex; align-items: flex-end; padding: 28px; overflow: hidden; }
.amen-hero .bg { position: absolute; inset: 0; z-index: -2; }
.amen-hero .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.amen-hero .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,21,0.1), rgba(6,12,21,0.78)); }
@media (hover: hover) { .amen-hero:hover .bg img { transform: scale(1.06); } }
.amen-hero h3 { font-family: var(--font-display); font-size: 24px; color: var(--pearl); line-height: 1.15; position: relative; }
.amen-hero p { font-size: 13px; color: var(--pearl-dim); font-weight: 300; margin-top: 6px; }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.amen-card { padding: 26px 24px; }
.amen-icon { width: 34px; height: 34px; color: var(--gold-2); margin-bottom: 16px; }
.amen-card h4 { font-family: var(--font-display); font-size: 19px; color: var(--pearl); line-height: 1.2; margin-bottom: 7px; }
.amen-card p { font-size: 13px; color: var(--pearl-dim); font-weight: 300; line-height: 1.6; }
.amen-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.amen-tag { font-size: 12.5px; padding: 9px 18px; border-radius: 100px; color: var(--pearl-dim); background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); letter-spacing: 0.03em; }

/* ── Location ── */
.loc-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 4vw, 56px); align-items: stretch; }
.loc-map { border-radius: var(--radius); overflow: hidden; min-height: 420px; box-shadow: var(--glass-float); position: relative; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
.loc-panel { padding: 32px 34px; }
.loc-panel .addr { font-size: 14px; color: var(--pearl-dim); font-weight: 300; line-height: 1.6; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.loc-panel .addr strong { color: var(--pearl); font-weight: 600; }
.conn-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.conn-row:last-child { border-bottom: none; }
.conn-name { font-size: 14px; color: var(--pearl); }
.conn-dist { font-family: var(--font-display); font-size: 16px; color: var(--gold-2); white-space: nowrap; }

/* ── Lead CTA band ── */
.cta-band { position: relative; overflow: hidden; }
.cta-band .glass { padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 72px); text-align: center; }
.cta-band .display { font-size: clamp(30px, 4.6vw, 56px); max-width: 860px; margin: 0 auto 22px; }
.cta-band .lede { max-width: 560px; margin: 0 auto 34px; }
.cta-band .glow { position: absolute; z-index: -1; inset: auto; }

/* ── Bottom form ── */
.bform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.bform-visual { position: relative; min-height: 480px; }
.bform-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bform-body { padding: clamp(36px, 4vw, 56px); }
.bform-body .eyebrow { margin-bottom: 20px; }
.bform-body h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px); color: var(--pearl); line-height: 1.1; margin-bottom: 14px; }
.bform-body h2 em { font-style: italic; color: var(--gold-2); }
.bform-body .lede { margin-bottom: 28px; }
.bform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .bform-row { grid-template-columns: 1fr; gap: 4px; } }

/* ── Footer ── */
footer { background: rgba(6,12,21,0.6); border-top: 1px solid var(--line-soft); padding: clamp(56px, 6vw, 80px) clamp(20px, 4vw, 48px) 36px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line-soft); }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-brand img { height: 30px; }
.footer-brand .divider { width: 1px; height: 24px; background: rgba(255,255,255,0.24); }
.footer-brand .project { font-family: var(--font-display); font-size: 20px; color: var(--pearl); }
.footer-text { font-size: 13.5px; color: var(--pearl-dim); font-weight: 300; line-height: 1.7; max-width: 440px; }
.footer-rera { margin-top: 20px; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07); font-size: 11.5px; color: var(--pearl-dim); line-height: 1.7; letter-spacing: 0.02em; }
.footer-rera strong { color: var(--pearl); font-weight: 600; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; color: var(--gold-2); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 13.5px; color: var(--pearl-dim); line-height: 1.9; font-weight: 300; }
@media (hover: hover) { .footer-col a:hover { color: var(--pearl); } }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 11px; color: var(--pearl-mute); line-height: 1.6; }

/* ════════════════ MODAL ════════════════ */
.modal { position: fixed; inset: 0; z-index: 9500; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(6,12,21,0.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s; }
.modal.open { display: flex; opacity: 1; }
.modal-card { max-width: 460px; width: 100%; padding: 38px 34px; }
.modal-card.glass { background: var(--glass-tint-hi); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); color: var(--pearl); display: flex; align-items: center; justify-content: center; }
.modal-close svg { width: 15px; height: 15px; }
@media (hover: hover) { .modal-close:hover { background: rgba(255,255,255,0.16); } }
.modal-eyebrow { margin-bottom: 16px; }
.modal-title { font-family: var(--font-display); font-size: 26px; color: var(--pearl); line-height: 1.15; margin-bottom: 8px; padding-right: 30px; }
.modal-title em { font-style: italic; color: var(--gold-2); }
.modal-sub { font-size: 13px; color: var(--pearl-dim); margin-bottom: 22px; line-height: 1.55; }

/* ════════════════ REVEAL ════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1440px) {
  .hero-title { font-size: clamp(40px, 5vw, 64px); }
  .hero-panel { max-width: 600px; }
}
/* short laptop viewports (e.g. 1280×800 with browser chrome) — compress the
   hero panel vertically so it fits between the fixed nav and the fold */
@media (min-width: 721px) and (max-height: 820px) {
  .hero { padding-top: 132px; padding-bottom: 32px; }
  .hero-panel { padding: clamp(20px, 2.4vw, 30px); }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-title { font-size: clamp(36px, 4.2vw, 54px); margin-bottom: 14px; }
  .hero-sub { margin-bottom: 18px; }
  .hero-strip { padding: 14px 0; margin-bottom: 18px; }
  .hero-strip-value { font-size: 17px; }
  .hero-rera { margin-top: 14px; }
  .hero-scroll { display: none; }
}
@media (max-width: 1080px) {
  .hero-panel { max-width: 560px; }
  .hero-stats { gap: 18px 30px; }
  .overview-grid, .features-wrap, .loc-grid, .bform-grid { grid-template-columns: 1fr; }
  .config-grid { grid-template-columns: 1fr; }
  .invest-grid, .dev-grid { grid-template-columns: 1fr; }
  .amen-trio, .amen-grid { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .bform-visual { min-height: 260px; order: -1; }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; }
  .g-1 { grid-column: span 4; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 2; }
  .g-4 { grid-column: span 2; grid-row: span 2; }
  .g-5, .g-6 { grid-column: span 2; }
  .g-7, .g-8 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 720px) {
  .ticker { height: 30px; }
  .ticker-item { font-size: 10.5px; padding: 0 18px; }
  .nav { top: 30px; padding: 12px 18px; background: rgba(8,16,28,0.7); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
  .nav-project { font-size: 17px; }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
  .nav-logo { height: 26px; }

  /* mobile hero: image first at top, solid dark text panel below, side-by-side CTAs */
  .hero { min-height: auto; padding: 0; display: block; }
  .hero-media { position: relative; height: 58vh; min-height: 340px; max-height: 540px; }
  .hero-media .desk { display: none; }
  .hero-media .mob { display: block; }
  .hero-media::after { background: linear-gradient(180deg, rgba(6,12,21,0.25), rgba(6,12,21,0.05) 55%, var(--sea-deep) 100%); }
  .hero-panel, .hero-panel.glass {
    max-width: none; padding: 24px 20px 10px;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    border-radius: 0; box-shadow: none; overflow: visible;
  }
  .hero-panel.glass::before { display: none; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: clamp(30px, 8.5vw, 42px); margin-bottom: 14px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 20px; }
  .hero-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 14px 0; margin-bottom: 20px; }
  .hero-strip-value { font-size: 15px; }
  .hero-cta-row { gap: 10px; }
  .hero-cta-row .btn { flex: 1; padding: 15px 10px; font-size: 12px; letter-spacing: 0.04em; }
  .hero-cta-row .btn svg { display: none; }
  .hero-rera { margin-top: 16px; }
  .hero-scroll { display: none; }
  .hero-statsbar { padding: 22px 20px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-stat-val { font-size: 25px; }
  .hero-stat-lbl { font-size: 10px; letter-spacing: 0.06em; margin-top: 6px; }

  .config-card .body { padding: 24px 22px 26px; }
  .config-card .price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .invest-stats { gap: 12px; }
  .invest-stat { padding: 20px 18px; }
  .dev-stat { padding: 20px 22px; gap: 14px; }
  .acc summary { font-size: 17px; padding: 17px 0; }

  .amen-trio { gap: 16px; }
  .amen-hero { min-height: 300px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: span 1; grid-row: span 1; }
  .g-1, .g-4, .g-7 { grid-column: span 2; grid-row: span 2; }
  .lb-btn { width: 44px; height: 44px; }
  .footer-bottom { flex-direction: column; }
  .modal-card { padding: 30px 24px; }
}
@media (max-width: 400px) {
  .nav-meta { display: none; }
  .nav-divider { display: none; }
}

/* ════════════════ A11Y & MOTION ════════════════ */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold-2); outline-offset: 3px;
}
/* text inputs use the gold underline (below) as their focus cue — no full box */
.inp:focus-visible { outline: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
