/* ============================================================
   Sobha Rivana — V4 Teal
   Base: cream · Accent: deep teal + gold · Type: Cormorant + Inter
   ============================================================ */

:root {
  --white:   #FFFFFF;
  --bg:      #f5f1e8;       /* cream — the whole page */
  --bg-2:    #ede8da;       /* slightly deeper cream, alternate sections */
  --ink:     #1A1A1A;       /* primary text */
  --ink-2:   #444444;       /* secondary text */
  --ink-3:   #888888;       /* captions, small labels */
  --navy:    #0d4a4a;       /* deep teal — primary dark accent */
  --navy-2:  #0a3b3b;       /* deeper teal for hover/depth */
  --gold:    #C9A84C;       /* gold accent — unchanged */
  --gold-2:  #D9BE6E;
  --gold-pale: #f5e9c8;
  --line:    rgba(13,74,74,.10);
  --line-light: rgba(255,255,255,.18);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, 'Segoe UI', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(13,74,74,.08);
  --shadow-md: 0 16px 48px rgba(13,74,74,.14);
  --shadow-lg: 0 32px 72px rgba(13,74,74,.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(60px, 8vw, 112px) 0; }

/* ── Type ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
em { font-style: italic; color: var(--gold); }
p { margin: 0 0 1em; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }

.big-p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--ink-2);
}

/* ── Chip / label ── */
.chip {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: transparent;
}
.chip.light {
  color: var(--bg);
  border-color: rgba(255,255,255,.35);
}

/* ── Buttons ── */
.btn-nav {
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  background: var(--navy);
  color: #fff;
  transition: background .25s, transform .25s;
}
.btn-nav:hover { background: var(--navy-2); transform: translateY(-1px); }

/* Navy + teal shadow — same family as .btn-nav / .btn-price-dark (not WhatsApp green) */
.btn-submit,
.btn-submit.dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  border: none;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(13, 74, 74, 0.25);
  margin-top: 4px;
}
.btn-submit:hover,
.btn-submit.dark:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(13, 74, 74, 0.35);
}

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost-dark:hover { color: var(--gold); border-color: var(--gold); }

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  color: var(--navy);
  transition: all .25s;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-gold-solid {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  background: var(--gold);
  border-radius: 999px;
  font-size: .9rem; font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
  transition: all .25s;
}
.btn-gold-solid:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,168,76,.5); }
.btn-gold-solid.full { width: 100%; }
button.btn-gold-solid {
  border: none; cursor: pointer;
  font-family: var(--sans);
}

.btn-price {
  display: block; text-align: center;
  padding: 11px 0;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .82rem; font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  transition: all .25s;
}
.btn-price:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn-price-dark {
  display: block; text-align: center;
  padding: 11px 0;
  background: var(--navy);
  border-radius: 8px;
  font-size: .82rem; font-weight: 600;
  color: #fff;
  margin-top: auto;
  transition: all .25s;
}
.btn-price-dark:hover { background: var(--navy-2); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(245,241,232,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13,74,74,.10);
  box-shadow: 0 1px 0 rgba(13,74,74,.04);
  transition: box-shadow .3s;
}
.nav::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 60%, var(--navy) 100%);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(13,74,74,.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1260px; margin: 0 auto;
  padding: 0 32px; height: 64px; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: .95rem; font-weight: 700;
  letter-spacing: .04em;
}
.brand-text strong {
  display: block;
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--navy); font-weight: 700; line-height: 1.15;
  white-space: nowrap;
}
.brand-text small {
  display: block;
  font-size: .68rem; color: var(--ink-3);
  letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: .83rem; font-weight: 500;
  color: var(--ink-2); letter-spacing: .02em;
  padding: 6px 14px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.nav-call {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
  letter-spacing: .01em; white-space: nowrap;
  transition: color .2s;
}
.nav-call svg { opacity: .7; flex-shrink: 0; }
.nav-call:hover { color: var(--navy); }
.nav-call:hover svg { opacity: 1; }

@media (max-width: 1060px) { .nav-links { display: none; } }
@media (max-width: 680px)  { .nav-call  { display: none; } }
@media (max-width: 420px)  { .brand-text small { display: none; } }
@media (max-width: 380px)  { .nav-inner { padding: 0 16px; } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  /* unified deep teal base */
  background-color: #071e1e;
  background-image: radial-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Subtle aerial building image — replaces with client's render when available */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=2400&q=60');
  background-size: cover;
  background-position: center 40%;
  opacity: .055;
  z-index: 0;
  pointer-events: none;
}

/* Vertical divider between panels */
.hero::after {
  content: '';
  position: absolute;
  left: 52%; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.07) 30%, rgba(255,255,255,.07) 70%, transparent);
  z-index: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════
   VIDEO PANEL — Phone mockup hero
══════════════════════════════════════ */
.hero-vid-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 44px 28px 32px;
  background: transparent; /* hero bg shows through */
  overflow: hidden;
  z-index: 2;
}

/* Focused glow behind the phone — gold warmth on teal dark */
.vid-stage-glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(201,168,76,.11) 0%,
    rgba(13,74,74,.08) 50%,
    transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Phone body ── */
.phone-mockup {
  position: relative;
  z-index: 1;
  /* Sizing: screen height drives everything */
  --screen-h: min(calc(100svh - 148px), 720px);
  --screen-w: calc(var(--screen-h) * 9 / 16);
  --bz-x: 13px;   /* horizontal bezel */
  --bz-top: 56px; /* top bezel (for island) */
  --bz-bot: 22px; /* bottom bezel (home indicator) */

  width: calc(var(--screen-w) + var(--bz-x) * 2);
  padding: var(--bz-top) var(--bz-x) var(--bz-bot);

  /* Premium dark teal glass finish */
  background: linear-gradient(160deg, #1a2e2e 0%, #0f2020 45%, #091818 100%);
  border-radius: 46px;

  /* Layered box-shadow: inner rim → outer rim → depth shadow → ambient glow */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.13),
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 0 1px rgba(0,0,0,.6),
    0 0 0 2.5px rgba(255,255,255,.04),
    0 48px 120px rgba(0,0,0,.75),
    0 12px 40px rgba(0,0,0,.5),
    0 0 80px rgba(201,168,76,.07);

  /* Subtle tilt — looks intentional, not broken */
  transform: rotate(-4deg);
  transform-origin: center bottom;
  transition: transform .5s cubic-bezier(.34,1.1,.64,1);
}

.hero-vid-panel:hover .phone-mockup {
  transform: rotate(-1.5deg);
}

/* Volume buttons (left side) */
.phone-btns-l {
  position: absolute;
  left: -5px; top: 112px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone-btns-l span {
  display: block;
  width: 5px; height: 30px;
  background: linear-gradient(to right, #0f2020, #1a2e2e);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.08);
}
.phone-btns-l span:first-child { height: 22px; margin-bottom: 4px; }

/* Power button (right side) */
.phone-btn-r {
  position: absolute;
  right: -5px; top: 148px;
  width: 5px; height: 52px;
  background: linear-gradient(to left, #0f2020, #1a2e2e);
  border-radius: 0 2px 2px 0;
  box-shadow: inset 0 0 0 .5px rgba(255,255,255,.08);
}

/* Dynamic island */
.phone-island {
  position: absolute;
  top: 14px;
  left: 50%; transform: translateX(-50%);
  width: 104px; height: 30px;
  background: #080808;
  border-radius: 18px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
/* Camera dot inside island */
.phone-island::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #151515;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.04),
    0 0 6px rgba(59,130,246,.2);
}

/* ── Phone screen ── */
.phone-screen {
  position: relative;
  width: var(--screen-w);
  height: var(--screen-h);
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}

/* Home indicator bar */
.phone-screen::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,.25);
  z-index: 4;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Specular shine on the phone body */
.phone-shine {
  position: absolute; inset: 0;
  border-radius: 46px;
  background: linear-gradient(
    130deg,
    rgba(255,255,255,.07) 0%,
    rgba(255,255,255,.02) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 10;
}

/* Sound toggle — inside screen, top-right */
.vid-sound {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 3;
}
.vid-sound:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.vid-sound .ico-sound { display: none; }
.vid-sound.sounding .ico-mute  { display: none; }
.vid-sound.sounding .ico-sound { display: block; }

/* Caption below phone */
.vid-caption {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  letter-spacing: .06em;
  font-weight: 500;
}
.vid-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: vidpulse 2s infinite;
  flex-shrink: 0;
}
@keyframes vidpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  60%      { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

/* ── Right panel ── */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 60px);
  background: transparent;  /* lets unified hero bg show through */
  overflow-y: auto;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2); margin: 0 0 14px;
}
.hero-copy h1 {
  margin-bottom: 16px; line-height: 1.1;
  color: #fff;
}
.hero-copy h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 22px; line-height: 1.7;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0;
}
.hero-pills li {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Form card — white island on dark ── */
.hero-form-wrap {
  max-width:600px;
  width: 100%;
}
.hero-form-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 24px 64px rgba(0,0,0,.45),
    0 8px 24px rgba(0,0,0,.3);
}
.form-head {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin: 0 0 4px;
}
.form-sub { font-size: .82rem; color: var(--ink-3); margin: 0 0 20px; }

/* ── Form fields ── */
.the-form { display: flex; flex-direction: column; gap: 14px; }
/* Honeypot: hidden from users, not from bots */
.form-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.form-hp input { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2);
  min-width: 0;
}
.field.full { grid-column: 1 / -1; }
.field input,
.field select {
  font-family: var(--sans); font-size: .92rem; font-weight: 400;
  color: var(--ink); text-transform: none; letter-spacing: normal;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.field input::placeholder { color: #aaa; }
.field input:focus,
.field select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.ph-wrap {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--line); border-radius: 8px;
  overflow: hidden; background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  width: 100%; min-width: 0;
}
.ph-wrap:focus-within {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.cc {
  padding: 10px 12px;
  background: var(--bg-2); border-right: 1.5px solid var(--line);
  font-weight: 600; font-size: .9rem; color: var(--navy);
  flex-shrink: 0;
}
.ph-wrap input { border: none; flex: 1; min-width: 0; width: 0; background: transparent; box-shadow: none; }
.form-note {
  font-size: .72rem; color: var(--ink-3); text-align: center;
  margin: 6px 0 0; line-height: 1.5;
}

/* HERO: Mobile */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero::after { display: none; } /* hide vertical divider on mobile */
  .hero-vid-panel { padding: 36px 24px 24px; }
  .phone-mockup {
    --screen-h: 52vw;
    transform: rotate(-3deg);
  }
  .hero-vid-panel:hover .phone-mockup { transform: rotate(-1deg); }
  .hero-right {
    padding: 32px 20px 40px;
    gap: 28px;
    /* subtle dark fade at top so it reads as continuation, not new section */
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .field-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   NUMBERS BAR
═══════════════════════════════════════ */
.bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.bar-inner {
  display: flex; align-items: stretch;
  flex-wrap: wrap;
}
.bar-item {
  flex: 1 1 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px;
  text-align: center; gap: 4px;
}
.bar-item strong {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.bar-item span {
  font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.bar-div {
  width: 1px; background: var(--line);
  margin: 18px 0;
  align-self: stretch;
}
@media (max-width: 700px) {
  .bar-inner { justify-content: center; }
  .bar-item { flex: 0 1 calc(33% - 2px); padding: 20px 10px; }
  .bar-item strong { font-size: 1.5rem; }
  .bar-div { display: none; }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: var(--bg-2); }

.about-intro {
  max-width: 840px;
  margin: 0 0 60px;
}
.about-intro h2 { margin-bottom: 20px; }

.about-cta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 28px;
}
.btn-brochure {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-size: .84rem; font-weight: 600;
  color: var(--navy);
  background: transparent;
  transition: background .22s, color .22s, transform .22s, box-shadow .22s;
}
.btn-brochure:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,74,74,.18);
}
.btn-brochure svg { flex-shrink: 0; transition: transform .22s; }
.btn-brochure:hover svg { transform: translateY(2px); }
.brochure-note {
  font-size: .74rem; color: var(--ink-3);
  letter-spacing: .02em;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 52px;
  align-items: start;
}

/* ── Snapshot card (typography-only left panel) ── */
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
.about-snapshot {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float-card 5.5s ease-in-out infinite;
  transition: box-shadow .35s, transform .35s;
  will-change: transform;
  cursor: default;
}
.about-snapshot:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    var(--shadow-lg),
    0 28px 72px rgba(13,74,74,.28),
    0 0 0 1px rgba(201,168,76,.18);
}
.about-snapshot::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
}
.snapshot-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 22px;
}
.snapshot-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 700; line-height: .92;
  color: #fff; margin: 0 0 14px;
  letter-spacing: -.02em;
}
.snapshot-loc {
  font-size: .75rem; color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase;
  margin: 0 0 26px;
}
.snapshot-divider {
  width: 36px; height: 1.5px;
  background: var(--gold); opacity: .55;
  margin-bottom: 26px;
}
.snapshot-stats {
  flex: 1; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.ss-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ss-row:last-child { border-bottom: none; }
.ss-row dt {
  font-size: .74rem; color: rgba(255,255,255,.38);
  letter-spacing: .03em; flex-shrink: 0;
}
.ss-row dd {
  font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.86);
  text-align: right; margin: 0;
}
.snapshot-footer {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem; color: rgba(255,255,255,.28);
  letter-spacing: .05em;
  display: flex; align-items: center; gap: 8px;
}
.sf-sep { color: var(--gold); opacity: .4; }

/* ── Detail rows ── */
.detail-row {
  display: flex; gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:first-child { padding-top: 0; }
.detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  flex-shrink: 0; width: 44px; padding-top: 2px;
}
.detail-row h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.detail-row p { font-size: .88rem; line-height: 1.7; margin: 0; color: var(--ink-2); }

/* ── Image variant (Version B) ── */
.about-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  min-height: 480px;
}
.about-img-block img { width: 100%; height: 100%; object-fit: cover; }
.img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: rgba(7,30,30,.6);
  backdrop-filter: blur(8px);
  font-size: .72rem; color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-snapshot { padding: 32px 28px 26px; }
  .snapshot-title { font-size: 3rem; }
}

/* ═══════════════════════════════════════
   APARTMENT
═══════════════════════════════════════ */
.apt { background: var(--bg-2); }
.apt-head {
  max-width: 700px; margin: 0 0 52px;
}
.apt-showcase {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 52px; align-items: start; margin-bottom: 52px;
}
.apt-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.apt-img img { width: 100%; height: 100%; object-fit: cover; }
.spec-block {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.spec-label { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-weight: 500; }
.spec-towers { font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; }
.spec-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  font-size: .88rem;
  border-bottom: 1px solid var(--line);
  gap: 12px;
  background: var(--white);
}
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--ink-3); }
.spec-row strong { color: var(--navy); font-weight: 600; text-align: right; }
.spec-row.highlight { background: var(--gold-pale); }
.spec-row.highlight strong { color: var(--navy); }
.apt-note {
  font-size: .88rem; color: var(--ink-2); line-height: 1.7;
  margin: 0 0 20px;
  padding: 16px; border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.apt-life {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.apt-life figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  position: relative;
}
.apt-life figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.apt-life figure:hover img { transform: scale(1.06); }
.apt-life figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 14px;
  background: rgba(7,30,30,.55);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .03em;
}

@media (max-width: 860px) {
  .apt-showcase { grid-template-columns: 1fr; gap: 32px; }
  .apt-life { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .apt-life { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { background: var(--navy); }
.pricing-head { max-width: 700px; margin: 0 0 48px; }
.pricing-head h2 { color: var(--white); }
.pricing-head p { color: rgba(255,255,255,.6); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .3s ease;
  position: relative;
}
.price-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--bg);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.price-card.featured .pc-config { color: var(--navy); }
.price-card.featured .pc-towers { color: var(--ink-3); }
.price-card.featured .pc-area { color: var(--ink-3); }
.price-card.featured .pc-price { color: var(--navy); }
.price-card.featured .pc-facts li { color: var(--ink-2); border-color: var(--line); }
.pc-badge {
  position: absolute; top: -12px; left: 18px;
  background: var(--gold); color: var(--navy);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(201,168,76,.4);
}
.pc-config {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.pc-towers { font-size: .75rem; color: rgba(255,255,255,.5); }
.pc-area { font-size: .78rem; color: rgba(255,255,255,.45); padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-card.featured .pc-area { border-color: var(--line); }
.pc-price {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.pc-price span { font-size: 1.2rem; }
.pc-facts {
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.pc-facts li {
  font-size: .8rem; color: rgba(255,255,255,.65);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.pc-facts li:last-child { border-bottom: none; }
.pricing-asterisk {
  font-size: .72rem; color: rgba(255,255,255,.35);
  line-height: 1.65; margin-top: 4px;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   AMENITIES
═══════════════════════════════════════ */
.amenities { background: var(--bg-2); }
.amen-head { max-width: 640px; margin: 0 0 52px; }

/* ── Zone label pill (shared) ── */
.az-zone-label {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  flex-shrink: 0; align-self: flex-start;
}
.az-zone-label.water  { background: rgba(59,130,246,.1);  color: #1d4ed8; }
.az-zone-label.sports { background: rgba(34,197,94,.1);   color: #166534; }
.az-zone-label.social { background: rgba(201,168,76,.14); color: #92400e; }
.az-zone-label.nature { background: rgba(16,185,129,.12); color: #065f46; }

/* ── 2×2 amenity grid ── */
.amen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.amen-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.amen-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.amen-card.water::before  { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.amen-card.sports::before { background: linear-gradient(90deg, #22c55e, #86efac); }
.amen-card.social::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.amen-card.nature::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.amen-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.ac-headline {
  font-family: var(--serif);
  font-size: 1.22rem; font-weight: 500;
  color: var(--navy); line-height: 1.3;
  margin: 0;
}
.ac-headline em { font-style: italic; color: var(--gold); }
.ac-line {
  font-size: .84rem; color: var(--ink-2);
  line-height: 1.7; margin: 0;
  flex: 1;
}
.ac-chips {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 4px;
}
.ac-chip {
  font-size: .72rem; font-weight: 500;
  color: var(--ink-2);
  padding: 5px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .2s;
}
.amen-card:hover .ac-chip {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}

/* ── Count bar ── */
.amen-count-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex; align-items: center;
}
.acb-inner {
  display: flex; align-items: center; gap: 24px;
}
.acb-num {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 400;
  color: var(--gold); line-height: 1;
  flex-shrink: 0;
}
.acb-label {
  font-size: .95rem; color: rgba(255,255,255,.65);
  line-height: 1.6; max-width: 520px;
}

@media (max-width: 860px) {
  .amen-grid { grid-template-columns: 1fr; }
  .amen-card { padding: 24px 20px 20px; }
  .amen-count-bar { padding: 24px 28px; }
  .acb-num { font-size: 3rem; }
}

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.location { background: var(--bg-2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.loc-copy h2 { margin-bottom: 18px; }
.loc-copy > p { margin-bottom: 14px; }

.loc-rows { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.loc-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.loc-row:last-child { border-bottom: none; }
.loc-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.loc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 0 3px rgba(201,168,76,.2);
}
.loc-row strong { display: block; font-size: .92rem; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.loc-row span { font-size: .82rem; color: var(--ink-3); }

.loc-col-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.loc-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: #e8e4dc;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.35),
    0 20px 50px rgba(13, 74, 74, 0.12);
  padding: 4px;
  box-sizing: border-box;
}
.loc-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 10px 10px 0 0;
  z-index: 3;
  pointer-events: none;
}
/* pointer-events: none — map is visual reference only; stops taps opening Google in a new tab */
.loc-map iframe {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 0;
  display: block;
  pointer-events: none;
  cursor: default;
  border-radius: calc(var(--radius-lg) - 4px);
}
/* Brand pin + soft pulse (decorative) — place embed also shows the Google pin for this address */
.loc-map-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-map-pulse {
  position: absolute;
  width: 64px;
  height: 64px;
  left: 50%;
  top: 50%;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.55);
  animation: locMapPulse 2.4s ease-out infinite;
}
@keyframes locMapPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.85;
  }
  60% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.loc-map-icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(13, 74, 74, 0.45));
}
.loc-map-caption {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-3);
  text-align: center;
}
.loc-map-caption strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}
.loc-map-caption span {
  color: var(--ink-2);
}

@media (max-width: 860px) {
  .loc-grid { grid-template-columns: 1fr; gap: 36px; }
  .loc-col-map .loc-map { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════
   QUALITY
═══════════════════════════════════════ */
.quality { background: var(--bg); }
.quality-head { max-width: 720px; margin: 0 0 52px; }

.quality-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 52px;
}
.quality-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s ease;
}
.quality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.qc-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.quality-card h4 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.quality-card p { font-size: .85rem; color: var(--ink-2); margin: 0; line-height: 1.65; }

.quality-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 21/8;
  box-shadow: var(--shadow-lg);
}
.quality-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.75); }
.quality-image-text {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  text-align: center; padding: 24px;
}
.quality-image-text p {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400;
  color: #fff; margin: 0; line-height: 1.3;
}
.quality-image-text span { font-size: .82rem; color: var(--gold-2); letter-spacing: .08em; }

@media (max-width: 1000px) { .quality-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .quality-grid { grid-template-columns: 1fr; } .quality-image { aspect-ratio: 4/3; } }

/* ═══════════════════════════════════════
   SITE VISIT — same boxed width as .quality-head (720px)
═══════════════════════════════════════ */
.visit { background: var(--navy); }
/* Mirror quality section: content sits in a readable column inside .wrap, not edge-to-edge */
.visit-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.visit-copy h2 { color: #fff; }
.visit-copy p { color: rgba(255, 255, 255, 0.65); }
.visit-perks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.visit-perks li {
  padding: 14px 0 14px 26px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: .92rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.visit-perks li:last-child { border-bottom: none; }
.visit-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.visit-closing {
  margin-top: 28px;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.visit-cta-block {
  width: 100%;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/* Tight CTA row + gold accent — lines up with amen cards / CTA band language */
.visit-cta-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  width: 100%;
  padding: 22px 24px 22px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: left;
}
.visit-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.visit-cta-pitch {
  flex: 1 1 12rem;
  margin: 0;
  padding-top: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.65vw, 1.1rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
.visit-cta-btn {
  flex-shrink: 0;
  gap: 10px;
  padding-left: 26px;
  padding-right: 22px;
}
.visit-cta-arrow {
  flex-shrink: 0;
  opacity: 0.95;
}
@media (max-width: 520px) {
  /* space-between + flex-grow on the pitch caused a huge vertical gap in column layout */
  .visit-cta-card {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 14px;
  }
  .visit-cta-pitch {
    flex: 0 1 auto;
    width: 100%;
  }
  .visit-cta-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { background: var(--bg-2); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-head { position: sticky; top: 80px; }
.faq-head h2 { margin-bottom: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--sans); font-size: 1.4rem; color: var(--gold); font-weight: 300; transition: transform .25s; }
details[open] summary::after { content: '−'; }
details p { padding: 0 22px 20px; font-size: .92rem; color: var(--ink-2); margin: 0; line-height: 1.7; }

@media (max-width: 760px) { .faq-inner { grid-template-columns: 1fr; gap: 28px; } .faq-head { position: static; } }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band { background: var(--bg); padding: 64px 0; border-top: 1px solid var(--line); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h3 { color: var(--navy); font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 6px; }
.cta-inner p { color: var(--ink-3); margin: 0; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 64px 0 32px; font-size: .88rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand strong { color: #fff; }
.footer-brand .brand small { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col p { color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-col ul li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-disc { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-disc p { font-size: .7rem; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 8px; }
.copy { color: rgba(255,255,255,.35) !important; font-size: .75rem !important; }

@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-inner { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════ */
.mob-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none;
  gap: 1px; z-index: 80;
  background: var(--line);
  box-shadow: 0 -4px 24px rgba(26,26,26,.15);
}
.mob-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.mob-btn.visit { background: var(--navy); }
@media (max-width: 760px) {
  .mob-bar { display: flex; }
  body { padding-bottom: 60px; }
}

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 200;
}
.modal.open { display: flex; animation: fdIn .3s ease; }
@keyframes fdIn { from { opacity: 0; } to { opacity: 1; } }
.modal-bg { position: absolute; inset: 0; background: rgba(13,74,74,.75); backdrop-filter: blur(8px); }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,.3);
  animation: riseUp .35s ease both;
}
@keyframes riseUp { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-x {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  font-size: 1.3rem; line-height: 1; color: var(--ink-3);
  cursor: pointer; display: grid; place-items: center;
  transition: all .2s;
}
.modal-x:hover { background: var(--navy); color: #fff; }
.modal-tick {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 18px;
}
.modal-box h3 { font-size: 1.4rem; margin-bottom: 10px; }
.modal-box p { font-size: .9rem; color: var(--ink-2); margin: 0 0 20px; }

/* ═══════════════════════════════════════
   MASTER PLAN
═══════════════════════════════════════ */
.masterplan { background: var(--bg-2); }
.mp-head { max-width: 760px; margin: 0 0 40px; }

.mp-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 40px;
}
.mp-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ── Masterplan image — mouse parallax container ── */
.mp-image-wrap {
  transform-style: preserve-3d;
  will-change: transform;
}
.mp-image {
  transition: transform .08s linear;
  will-change: transform;
}

/* ── Annotation pins — staggered entry ── */
.mp-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 3;
  pointer-events: none;
  /* hidden until parent gets .pins-visible */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.mp-pin.left {
  flex-direction: row;
  align-items: center;
}
/* staggered delays — one per pin */
.mp-pin:nth-child(2)  { transition-delay: .0s; }
.mp-pin:nth-child(3)  { transition-delay: .15s; }
.mp-pin:nth-child(4)  { transition-delay: .30s; }
.mp-pin:nth-child(5)  { transition-delay: .45s; }
.mp-pin:nth-child(6)  { transition-delay: .60s; }
.mp-pin:nth-child(7)  { transition-delay: .75s; }

/* triggered by JS when wrap enters viewport */
.mp-image-wrap.pins-visible .mp-pin {
  opacity: 1;
  transform: translateY(0);
}

/* ── Pulse ring keyframe ── */
@keyframes pin-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Pin dot — with pulse ring ── */
.mp-pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  flex-shrink: 0;
  position: relative;
}
/* the pulse ring lives as a pseudo-element */
.mp-pin-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: pin-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.mp-pin-dot.water  { background: #3b82f6; color: #3b82f6; }
.mp-pin-dot.gold   { background: var(--gold); color: var(--gold); }
.mp-pin-dot.green  { background: #22c55e; color: #22c55e; }
.mp-pin-dot.navy   { background: var(--navy); color: var(--navy); }
.mp-pin-dot.grey   { background: #6b7280; color: #6b7280; }

/* offset each dot's pulse so they don't all blink together */
.mp-pin:nth-child(2) .mp-pin-dot::after { animation-delay: 0s; }
.mp-pin:nth-child(3) .mp-pin-dot::after { animation-delay: .4s; }
.mp-pin:nth-child(4) .mp-pin-dot::after { animation-delay: .8s; }
.mp-pin:nth-child(5) .mp-pin-dot::after { animation-delay: 1.2s; }
.mp-pin:nth-child(6) .mp-pin-dot::after { animation-delay: 1.6s; }
.mp-pin:nth-child(7) .mp-pin-dot::after { animation-delay: 2.0s; }

.mp-pin-line {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.mp-pin.left .mp-pin-line { width: 24px; height: 1px; }

.mp-pin-text {
  background: rgba(7,30,30,.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.15);
}
.mp-pin-text em { color: var(--gold-2); font-style: normal; display: block; font-size: .62rem; }

.mp-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mp-leg-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mp-leg-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0; margin-top: 3px;
}
.mp-leg-dot.water { background: #3b82f6; }
.mp-leg-dot.gold  { background: var(--gold); }
.mp-leg-dot.green { background: #22c55e; }
.mp-leg-dot.navy  { background: var(--navy); }
.mp-leg-item strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: 4px; }
.mp-leg-item p { font-size: .78rem; color: var(--ink-3); margin: 0; line-height: 1.5; }

@media (max-width: 900px) { .mp-legend { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .mp-legend { grid-template-columns: 1fr; } .mp-pin { display: none; } }

/* ═══════════════════════════════════════
   FLOOR PLANS
═══════════════════════════════════════ */
.floorplans { background: var(--bg); }
.fp-head { max-width: 800px; margin: 0 0 36px; }

.fp-tabs {
  display: flex; gap: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
  width: fit-content;
}
.fp-tab {
  padding: 13px 28px;
  font-family: var(--sans); font-size: .88rem; font-weight: 600;
  color: var(--ink-3);
  background: var(--white);
  border: none; cursor: pointer;
  transition: all .25s;
  border-right: 1.5px solid var(--line);
}
.fp-tab:last-child { border-right: none; }
.fp-tab:hover { color: var(--navy); background: var(--bg-2); }
.fp-tab.active { background: var(--navy); color: #fff; }

.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fdIn .3s ease; }

.fp-grid {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 48px; align-items: start;
}
.fp-label-top {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* ── Real floor plan image block ── */
.fp-image-block { display: flex; flex-direction: column; }
.fp-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #e8f0ef;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.fp-img {
  width: 100%; display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.fp-img-wrap:hover .fp-img { transform: scale(1.04); }
.fp-zoom-btn {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(7,30,30,.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.fp-zoom-btn:hover { background: var(--navy); color: var(--gold); }
.fp-img-note {
  font-size: .68rem; color: var(--ink-3);
  letter-spacing: .04em; margin: 10px 0 0;
  text-align: center;
}
.fp-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 3px;
  background: var(--line);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 3px;
}
.fp-room {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 10px 8px; text-align: center;
  min-height: 72px;
  background: var(--white);
  border-radius: 6px;
  gap: 3px;
  transition: background .2s;
}
.fp-room:hover { background: var(--gold-pale); }
.fp-room-name { font-size: .7rem; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
.fp-room-dim  { font-size: .65rem; color: var(--ink-3); }
.fp-room-tag  { font-size: .6rem; color: var(--gold); font-weight: 600; }
.fp-room.balcony { background: rgba(59,130,246,.08); }
.fp-room.balcony:hover { background: rgba(59,130,246,.14); }
.fp-room.living { background: rgba(201,168,76,.07); min-height: 88px; }
.fp-room.living.large { min-height: 96px; }
.fp-room.bed1.large { min-height: 96px; }
.fp-room.kitchen { background: rgba(34,197,94,.06); }
.fp-room.bath { background: rgba(139,92,246,.06); }
.fp-room.wide { grid-column: 1 / -1; min-height: 52px; }
.fp-room.grande-bal { min-height: 64px; background: rgba(59,130,246,.12); }
.fp-note {
  font-size: .68rem; color: var(--ink-3);
  margin-top: 8px; text-align: center; letter-spacing: .03em;
}

.fp-spec-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; flex-wrap: wrap; gap: 8px;
}
.fp-spec-header h3 { margin: 0; font-size: 1.5rem; }
.fp-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
}
.fp-badge.alt { background: rgba(59,130,246,.12); color: #1d4ed8; }
.fp-callout {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
}
.fp-callout p { font-size: .88rem; color: var(--ink-2); line-height: 1.7; margin: 0; }

@media (max-width: 860px) {
  .fp-grid { grid-template-columns: 1fr; gap: 28px; }
  .fp-tabs { width: 100%; }
  .fp-tab { flex: 1; font-size: .78rem; padding: 12px 14px; text-align: center; }
}

/* ═══════════════════════════════════════
   PRICING — TWO COLUMNS
═══════════════════════════════════════ */
.pricing-two {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}
.price-card .pc-price-block {
  padding: 16px 0 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pricing-two .price-card .pc-price-block {
  border-color: var(--line);
}
.pc-price-note {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  line-height: 1.5;
}
.pricing-two .pc-price-note { color: var(--ink-3); }
.pc-price.grande {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--gold); line-height: 1;
}
.price-card.featured .pc-price-note { color: rgba(255,255,255,.5); }

@media (max-width: 680px) { .pricing-two { grid-template-columns: 1fr; } }

.pricing-three {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-bottom: 24px;
}
@media (max-width: 900px) { .pricing-three { grid-template-columns: 1fr; gap: 16px; } }

/* ── Floor plan variant cards (2BHK / 4BHK panels) ── */
.fp-cards-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fp-variant-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.fp-variant-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.fp-variant-card.featured-card { border-color: var(--gold); box-shadow: var(--shadow); }
.fvc-head { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.fvc-type {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--navy); flex: 1;
}
.fvc-towers { font-size: .72rem; color: var(--ink-3); }
.fvc-price-note {
  padding: 12px 14px;
  background: var(--bg-2);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 3px;
}
.fvc-price-note strong {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--navy);
}
.fvc-price-note span { font-size: .75rem; color: var(--ink-3); }

/* ── Sub-tabs inside 3BHK panel ── */
.fp-tabs-sub {
  display: flex; gap: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  width: fit-content;
}
.fp-sub {
  padding: 10px 22px;
  font-family: var(--sans); font-size: .83rem; font-weight: 600;
  color: var(--ink-3);
  background: var(--white);
  border: none; cursor: pointer;
  transition: all .2s;
  border-right: 1.5px solid var(--line);
}
.fp-sub:last-child { border-right: none; }
.fp-sub:hover { color: var(--navy); background: var(--bg); }
.fp-sub.active { background: var(--navy); color: #fff; }

.fp-subpanel { display: none; }
.fp-subpanel.active { display: block; animation: fdIn .25s ease; }

@media (max-width: 860px) {
  .fp-cards-row { grid-template-columns: 1fr; }
  .fp-tabs-sub { width: 100%; }
  .fp-sub { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════
   QUALITY ACCORDION
═══════════════════════════════════════ */
.quality-accordion {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.qa-item { border-bottom: 1px solid var(--line); }
.qa-item:last-child { border-bottom: none; }
.qa-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none; cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.qa-trigger:hover { background: var(--bg); }
.qa-item.open .qa-trigger { background: var(--navy); }
.qa-item.open .qa-title { color: #fff; }
.qa-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); flex-shrink: 0;
  transition: all .2s;
}
.qa-item.open .qa-num { background: var(--gold); color: var(--navy); }
.qa-title {
  flex: 1;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); transition: color .2s;
}
.qa-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  font-family: var(--sans); line-height: 1; flex-shrink: 0;
  transition: all .2s;
}
.qa-item.open .qa-icon { color: var(--gold-2); }

.qa-body {
  display: none;
  padding: 24px 24px 28px;
  background: var(--white);
}
.qa-item.open .qa-body { display: block; }

.qa-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.qa-fact {
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.qa-fact strong {
  display: block;
  font-size: .9rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.qa-fact p { font-size: .82rem; color: var(--ink-2); margin: 0; line-height: 1.65; }
.qa-fact strong em { font-style: normal; color: var(--gold); }

@media (max-width: 860px) { .qa-grid { grid-template-columns: 1fr; } .qa-trigger { padding: 16px 18px; } .qa-title { font-size: .96rem; } }

/* ═══════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════ */
.thanks-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.thanks-nav .thanks-back-btn {
  padding: 9px 18px;
  font-size: .8rem;
}
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) 0;
}
.thanks-inner { width: 100%; }
.thanks-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  padding-top: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.thanks-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 55%, var(--navy) 100%);
  margin-bottom: clamp(24px, 4vw, 32px);
}
.thanks-card .chip { margin-bottom: 14px; }
.thanks-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 18px;
}
.thanks-title em { color: var(--gold); font-style: italic; }
.thanks-lead {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 28px;
}
.thanks-steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thanks-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.thanks-steps strong {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.thanks-foot {
  margin: 0;
  margin-top: 8px;
  font-size: .84rem;
}
.thanks-foot a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(13,74,74,.25);
  transition: color .2s, border-color .2s;
}
.thanks-foot a:hover { color: var(--gold-2); border-color: var(--gold); }
.thanks-footer { margin-top: auto; }
.thanks-footer .footer-disc { padding-top: 24px; padding-bottom: 28px; }

