/* ==========================================================================
   Senior Living — Sector 63, Gurgaon
   Design tokens: navy #12263F, blue #4E8FCB, ivory #F7F3EB, sage #6E8B74
   Display: Fraunces · Body: Inter
   ========================================================================== */

:root{
  --navy: #12263F;
  --navy-deep: #0C1A2E;
  --blue: #4E8FCB;   /* accent (was gold) */
  --blue-dark: #356EA1;
  --ivory: #F7F3EB;
  --ivory-2: #EFE9DC;
  --sage: #6E8B74;
  --ink: #1F2733;
  --ink-soft: #4B5563;
  --white: #FFFFFF;
  --line: #E4DDCB;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -20px rgba(12,26,46,.35);
  --shadow-card: 0 10px 30px -14px rgba(12,26,46,.25);

  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:110px; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family:var(--font-display); margin:0; color:var(--navy); }
p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.container--narrow{ max-width:760px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:999px; border:1px solid transparent;
  font-weight:600; font-size:15px; letter-spacing:.01em;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--gold{ background:var(--blue); color:var(--navy-deep); box-shadow:0 10px 22px -10px rgba(78,143,203,.6); }
.btn--gold:hover{ background:var(--blue-dark); }
.btn--outline-light{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.55); }
.btn--outline-light:hover{ background:rgba(255,255,255,.1); }
.btn--ghost{ background:transparent; color:var(--navy); border-color:var(--line); }
.btn--ghost:hover{ background:var(--ivory); }
.btn--navy{ background:var(--navy); color:#fff; }
.btn--navy:hover{ background:var(--navy-deep); }
.btn--sm{ padding:10px 18px; font-size:14px; }
.btn--block{ width:100%; padding:15px; }
.hero__cta-group--center{ justify-content:center; }

/* ---------- Eyebrow / Section headings ---------- */
.eyebrow{
  font-family:var(--font-body); font-size:13px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--blue-dark); margin:0 0 10px;
}
.eyebrow--gold{ color:var(--blue); }
.eyebrow--light{ color:var(--blue); }
.section__title{ font-size:clamp(28px,4vw,40px); font-weight:600; margin-bottom:14px; }
.section__title--light{ color:var(--white); }
.section__sub{ max-width:620px; color:var(--ink-soft); font-size:16px; margin-bottom:34px; }
.section__sub--light{ color:#C9D2DE; }

.section{ padding:76px 0; }
.section--tint{ background:var(--ivory); }
.section--navy{ background:var(--navy); position:relative; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar{ background:var(--navy-deep); color:#CBD5DF; font-size:13px; }
.topbar__inner{
  max-width:var(--container); margin:0 auto; padding:8px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.topbar__msg{ opacity:.85; }
.topbar__phone{ display:inline-flex; align-items:center; gap:6px; color:var(--blue); font-weight:600; }
@media (max-width:700px){ .topbar__msg{ display:none; } .topbar__inner{ justify-content:flex-end; } }

/* ==========================================================================
   Header
   ========================================================================== */
.header{
  position:sticky; top:0; z-index:60; background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--line);
}
.header__inner{
  max-width:var(--container); margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; gap:24px;
}
.logo{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.logo__text{ display:flex; flex-direction:column; line-height:1.15; }
.logo__title{ font-family:var(--font-display); font-weight:600; font-size:19px; color:var(--navy); }
.logo__title--light{ color:var(--white); }
.logo__sub{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--blue-dark); }
.logo__sub--light{ color:var(--blue); }

.nav{ display:flex; gap:26px; }
.nav a{ font-size:14.5px; font-weight:500; color:var(--ink-soft); transition:color .15s; }
.nav a:hover{ color:var(--navy); }
.header__cta{ display:flex; align-items:center; gap:10px; }

.nav--mobile{ display:none; flex-direction:column; padding:8px 24px 18px; gap:2px; border-top:1px solid var(--line); }
.nav--mobile a{ padding:12px 4px; font-size:15px; border-bottom:1px solid var(--line); color:var(--ink); }

.hamburger{ display:none; flex-direction:column; justify-content:center; gap:5px; width:38px; height:38px; background:none; border:none; }
.hamburger span{ height:2px; background:var(--navy); border-radius:2px; transition:.2s; }

@media (max-width:980px){
  .nav{ display:none; }
  .header__cta .btn--ghost{ display:none; }
  .hamburger{ display:flex; }
  .header.is-open .nav--mobile{ display:flex; }
}
@media (max-width:480px){
  .header__cta{ display:none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative; overflow:hidden; color:var(--white);
  background:linear-gradient(160deg,#16304F 0%, #0C1A2E 65%);
  padding:88px 24px 120px;
}
.hero__bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:.62;
}
.hero__scrim{
  position:absolute; inset:0;
  background:radial-gradient(circle at 20% 20%, rgba(78,143,203,.14), transparent 45%),
             linear-gradient(180deg, rgba(12,26,46,.35) 0%, rgba(12,26,46,.4) 40%, rgba(12,26,46,.82) 100%);
}
.hero__skyline{ position:absolute; left:0; right:0; bottom:0; width:100%; height:130px; opacity:.9; }
.hero__content{ position:relative; max-width:760px; margin:0 auto; text-align:center; }
.hero__title{ font-size:clamp(32px,5.4vw,54px); font-weight:600; line-height:1.12; margin:6px 0 18px; color:var(--white); text-shadow:0 2px 18px rgba(0,0,0,.45); }
.hero__title em{ font-style:italic; color:var(--blue); }
.hero__lede{ font-size:17px; color:#EDF1F6; max-width:600px; margin:0 auto 34px; text-shadow:0 1px 12px rgba(0,0,0,.5); }

.hero__price-row{
  display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap; margin-bottom:30px;
}
.hero__price{ display:flex; align-items:center; gap:10px; }
.hero__price-num{ display:block; font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--blue); }
.hero__price-label{ display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:#B9C3D1; }
.hero__cta-group{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

.hero__facts{
  display:flex; gap:28px; justify-content:center; flex-wrap:wrap;
  font-size:14px; color:#C9D2DE; border-top:1px solid rgba(255,255,255,.18); padding-top:22px;
}
.hero__facts strong{ color:var(--blue); font-family:var(--font-display); font-size:16px; margin-right:4px; }

@media (max-width:600px){
  .hero{ padding:64px 20px 96px; }
  .hero__price-row{ flex-direction:column; gap:18px; }
}

/* ==========================================================================
   Overview
   ========================================================================== */
.overview-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
@media (max-width:900px){ .overview-grid{ grid-template-columns:repeat(2,1fr); } }

.ov-card{
  border:1px solid rgba(78,143,203,.35); border-radius:var(--radius);
  padding:28px 18px; text-align:center; background:rgba(255,255,255,.02);
  transition:border-color .2s, background .2s;
}
.ov-card:hover{ border-color:var(--blue); background:rgba(78,143,203,.06); }
.ov-card__icon{ width:34px; height:34px; color:var(--blue); margin-bottom:14px; }
.ov-card__value{ font-family:var(--font-display); font-weight:600; font-size:17px; color:var(--white); margin-bottom:4px; }
.ov-card__label{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#9FADBE; }

.side-tab{
  position:fixed; right:0; top:58%; transform:translateY(-50%) rotate(180deg);
  writing-mode:vertical-rl; background:var(--blue); color:var(--navy-deep);
  border:none; padding:16px 10px; font-weight:700; letter-spacing:.06em;
  border-radius:8px 0 0 8px; box-shadow:-6px 0 20px -8px rgba(0,0,0,.4); z-index:40;
  font-size:13px;
}
.side-tab:hover{ background:var(--blue-dark); }
@media (max-width:700px){ .side-tab{ display:none; } }

/* ==========================================================================
   Highlights
   ========================================================================== */
.highlights-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px 28px;
}
@media (max-width:900px){ .highlights-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .highlights-grid{ grid-template-columns:1fr; } }
.highlights-grid li{
  display:flex; align-items:flex-start; gap:12px; font-size:15.5px; color:var(--ink); padding:6px 0;
}
.tick{
  flex:0 0 auto; width:24px; height:24px; border-radius:50%; background:var(--sage);
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:180px; gap:14px;
}
.gallery-item{ border-radius:var(--radius-sm); overflow:hidden; background:var(--ivory-2); position:relative; }
.gallery-item--wide{ grid-column:span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.img-pending{
  display:flex; align-items:center; justify-content:center;
  background:repeating-linear-gradient(135deg, var(--ivory-2), var(--ivory-2) 10px, #E4DCC7 10px, #E4DCC7 20px);
}
.img-pending::after{
  content:"Image coming soon"; font-size:12px; color:var(--ink-soft); font-weight:600;
}
.img-pending img{ display:none; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; } .gallery-item--wide{ grid-column:span 2; } }
@media (max-width:520px){ .gallery-grid{ grid-template-columns:1fr; } .gallery-item--wide{ grid-column:span 1; } }

/* ==========================================================================
   Price list
   ========================================================================== */
.price-table{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.price-table__row{
  display:grid; grid-template-columns:1fr 1fr 1.4fr auto; align-items:center;
  padding:18px 24px; gap:12px;
}
.price-table__row--head{
  background:var(--navy); color:#fff; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
}
.price-table__row:not(.price-table__row--head){ border-top:1px solid var(--line); font-weight:600; }
.fineprint{ margin-top:14px; font-size:12.5px; color:var(--ink-soft); }
@media (max-width:640px){
  .price-table__row--head{ display:none; }
  .price-table__row{ grid-template-columns:1fr; text-align:left; gap:4px; padding:20px; }
  .price-table__row span::before{ content:attr(data-label) ": "; font-weight:700; color:var(--blue-dark); }
  .price-table__row span:last-child::before{ content:""; }
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenities-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:760px){ .amenities-grid{ grid-template-columns:1fr; } }
.amenity-card{
  background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-card);
  text-align:center; padding-bottom:22px;
}
.amenity-card__img{ height:170px; background:var(--ivory-2); }
.amenity-card__img img{ width:100%; height:100%; object-fit:cover; }
.amenity-card__icon{ width:26px; height:26px; color:var(--blue-dark); margin:18px auto 8px; }
.amenity-card p{ font-weight:600; font-family:var(--font-display); font-size:16px; color:var(--navy); }

/* ==========================================================================
   Location
   ========================================================================== */
.location-layout{ display:grid; grid-template-columns:1.5fr 1fr; gap:32px; align-items:stretch; }
@media (max-width:860px){ .location-layout{ grid-template-columns:1fr; } }
.location-map{
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-card); min-height:380px; border:1px solid var(--line);
}
.location-map iframe{ width:100%; height:100%; min-height:380px; border:0; }
.location-list li{
  display:flex; align-items:baseline; gap:12px; padding:13px 0; border-bottom:1px dashed var(--line); font-size:15px;
}
.location-list li:first-child{ padding-top:0; }
.loc-dist{ flex:0 0 auto; font-family:var(--font-display); font-weight:600; color:var(--blue-dark); min-width:58px; }

/* ==========================================================================
   Floor plans / master plan
   ========================================================================== */
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.plans-grid--2col{ grid-template-columns:repeat(2,1fr); }
@media (max-width:860px){ .plans-grid{ grid-template-columns:1fr; } }
.plan-card__img{
  position:relative; height:230px; border-radius:var(--radius); overflow:hidden;
  background:var(--ivory-2); box-shadow:var(--shadow-card);
}
.plan-card__img img{ width:100%; height:100%; object-fit:cover; }
.plan-card__img--locked img{ filter:blur(14px) saturate(0.8); transform:scale(1.08); }
.plan-card__img--locked.is-unlocked img{ filter:none; transform:none; transition:filter .5s ease, transform .5s ease; }
.plan-card__img--locked.is-unlocked .plan-lock{ display:none; }
.plan-lock{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  background:rgba(12,26,46,.42);
}
.plan-card__label{ margin-top:12px; font-weight:600; color:var(--navy); text-align:center; }
.plan-card__download{
  display:none; margin-top:8px; text-align:center; font-size:13.5px; font-weight:700; color:var(--blue-dark);
}
.plan-card__img--locked.is-unlocked ~ .plan-card__download{ display:block; }

/* ==========================================================================
   Lead form
   ========================================================================== */
.lead-form{ display:flex; flex-direction:column; gap:14px; }
.lead-form--full .lead-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:600px){ .lead-form--full .lead-form__row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; text-align:left; }
.field label{ font-size:13px; font-weight:600; color:var(--ink-soft); }
.section--navy .field label{ color:#C9D2DE; }
.field__optional{ font-weight:400; opacity:.7; }
.field input{
  padding:13px 14px; border-radius:var(--radius-sm); border:1px solid var(--line);
  font-family:inherit; font-size:15px; background:#fff; color:var(--ink);
}
.field input:focus{ outline:2px solid var(--blue); outline-offset:1px; border-color:var(--blue); }
.consent{ display:flex; align-items:flex-start; gap:8px; font-size:12.5px; color:var(--ink-soft); }
.section--navy .consent{ color:#B9C3D1; }
.consent input{ margin-top:3px; }
.form-status{ font-size:13.5px; min-height:18px; font-weight:600; }
.form-status[data-state="ok"]{ color:var(--sage); }
.form-status[data-state="error"]{ color:#B34747; }

.modal .lead-form .field input{ background:var(--ivory); }

/* ==========================================================================
   Modals
   ========================================================================== */
.modal{
  position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center; padding:20px;
}
.modal.is-open{ display:flex; }
.modal__overlay{ position:absolute; inset:0; background:rgba(12,20,33,.66); backdrop-filter:blur(2px); }
.modal__panel{
  position:relative; background:#fff; border-radius:18px; max-width:440px; width:100%;
  padding:34px 30px 28px; box-shadow:0 30px 70px -20px rgba(0,0,0,.45);
  max-height:90vh; overflow-y:auto; animation:modalIn .25s ease;
}
@keyframes modalIn{ from{ opacity:0; transform:translateY(14px) scale(.98);} to{opacity:1; transform:none;} }
.modal__panel h3{ font-size:22px; margin-bottom:6px; }
.modal__sub{ font-size:14px; color:var(--ink-soft); margin-bottom:20px; }
.modal__close{
  position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%;
  background:var(--ivory); border:none; font-size:20px; line-height:1; color:var(--ink-soft);
}
.modal__close:hover{ background:var(--ivory-2); }

/* ==========================================================================
   Mobile sticky CTA bar
   ========================================================================== */
.mobile-bar{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:70;
  background:var(--navy-deep); border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -8px 24px rgba(0,0,0,.25);
}
.mobile-bar__item{
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  padding:9px 4px 10px; color:#C9D2DE; font-size:11.5px; font-weight:600; border:none; background:none;
}
.mobile-bar__item--cta{ background:var(--blue); color:var(--navy-deep); }
@media (max-width:820px){
  .mobile-bar{ display:flex; }
  body{ padding-bottom:64px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ background:var(--navy-deep); color:#B9C3D1; padding:56px 0 30px; }
.footer__top{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer__contact{ display:flex; gap:22px; font-weight:600; flex-wrap:wrap; }
.footer__contact a:hover{ color:var(--blue); }
.footer__disclaimer{ font-size:12px; line-height:1.7; color:#8996A6; padding:26px 0; max-width:980px; }
.footer__bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.footer__links{ display:flex; gap:18px; }
.footer__links a:hover{ color:var(--blue); }

/* ==========================================================================
   Quick Compare table
   ========================================================================== */
.compare-table-wrap{ overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius); }
.compare-table{ width:100%; border-collapse:collapse; min-width:760px; }
.compare-table th{
  text-align:left; background:var(--navy); color:#fff; font-size:12px; letter-spacing:.06em;
  text-transform:uppercase; font-weight:700; padding:14px 16px;
}
.compare-table td{ padding:16px; border-top:1px solid var(--line); font-size:14.5px; vertical-align:middle; }
.compare-table tbody tr:hover{ background:var(--ivory); }
.compare-sub{ font-size:12.5px; color:var(--ink-soft); font-weight:500; }
@media (max-width:760px){
  .compare-table-wrap{ border:none; }
  .compare-table, .compare-table thead, .compare-table tbody, .compare-table th, .compare-table td, .compare-table tr{ display:block; }
  .compare-table thead{ display:none; }
  .compare-table tr{ border:1px solid var(--line); border-radius:var(--radius); margin-bottom:14px; padding:6px 4px; }
  .compare-table td{ border-top:none; padding:8px 14px; display:flex; justify-content:space-between; gap:12px; align-items:center; }
  .compare-table td::before{ content:attr(data-label); font-weight:700; color:var(--blue-dark); font-size:12px; text-transform:uppercase; letter-spacing:.04em; }
  .compare-table td:last-child{ justify-content:flex-end; }
}

/* ---------- Status pill ---------- */
.status-pill{
  display:inline-block; padding:5px 12px; border-radius:999px; font-size:12px; font-weight:700;
  letter-spacing:.02em; background:var(--ivory-2); color:var(--blue-dark); border:1px solid var(--line);
}
.status-pill--ready{ background:rgba(110,139,116,.12); color:var(--sage); border-color:rgba(110,139,116,.35); }
.status-pill--lg{ font-size:13px; padding:8px 16px; }

/* ==========================================================================
   Project panels (one per developer)
   ========================================================================== */
.project-panel{ scroll-margin-top:110px; }
.project-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--line);
}
.section--navy .project-head{ border-bottom-color:rgba(255,255,255,.14); }
.project-head__loc{ font-size:15px; color:#C9D2DE; margin-top:4px; }
.project-head__loc--dark{ color:var(--ink-soft); }

.fact-strip{
  display:flex; flex-wrap:wrap; gap:10px 14px; margin-bottom:34px;
}
.fact-strip span{
  background:var(--ivory); border:1px solid var(--line); border-radius:999px; padding:8px 16px; font-size:13.5px; color:var(--ink);
}
.fact-strip--light span{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18); color:#E3E8EE; }
.fact-strip span strong{ color:var(--blue); font-family:var(--font-display); font-weight:600; }
.fact-strip:not(.fact-strip--light) span strong{ color:var(--blue-dark); }

.project-grid{ display:grid; grid-template-columns:1.15fr 1fr; gap:44px; align-items:start; }
@media (max-width:900px){ .project-grid{ grid-template-columns:1fr; gap:36px; } }

.project-subhead{
  font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--navy);
  margin:0 0 14px; padding-top:4px;
}
.project-subhead--light{ color:var(--white); }
.project-grid > div > .project-subhead:first-child{ padding-top:0; }

.highlights-grid--2col{ display:grid; grid-template-columns:1fr; gap:4px 20px; }
.section--navy .highlights-grid li{ color:#E3E8EE; }
.section--navy .tick{ background:var(--blue); color:var(--navy-deep); }

.amenities-grid--photo{ margin-bottom:30px; }
.amenity-chip-list{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; list-style:none; padding:0; }
.amenity-chip-list li{
  background:#fff; border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-size:13.5px; color:var(--ink);
}

.gallery-grid--compact{ grid-auto-rows:150px; margin-bottom:30px; }
.gallery-note{ font-size:13px; color:var(--ink-soft); margin:-6px 0 14px; }
.gallery-placeholder{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px;
  border:1.5px dashed var(--line); border-radius:var(--radius); padding:34px 24px; margin-bottom:30px;
  color:var(--ink-soft); background:rgba(255,255,255,.4);
}
.gallery-placeholder svg{ color:var(--blue-dark); opacity:.7; }
.gallery-placeholder p{ font-size:13.5px; max-width:340px; }
.gallery-placeholder code{ background:var(--ivory-2); padding:1px 5px; border-radius:4px; font-size:12px; }

.location-map--panel{ min-height:220px; margin-bottom:30px; }
.location-map--panel iframe{ min-height:220px; }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }

/* ==========================================================================
   Image lightbox — click any gallery / amenity photo to view large
   ========================================================================== */
.gallery-item img,
.amenity-card__img img{ cursor:zoom-in; }

.lightbox{
  position:fixed; inset:0; z-index:120; display:none; align-items:center; justify-content:center;
  padding:40px 20px;
}
.lightbox.is-open{ display:flex; }
.lightbox__overlay{ position:absolute; inset:0; background:rgba(8,14,24,.92); }
.lightbox__img{
  position:relative; max-width:min(92vw,1100px); max-height:82vh; width:auto; height:auto;
  object-fit:contain; border-radius:10px; box-shadow:0 30px 80px -20px rgba(0,0,0,.6);
  animation:lightboxIn .2s ease;
}
@keyframes lightboxIn{ from{ opacity:0; transform:scale(.97);} to{ opacity:1; transform:none; } }
.lightbox__caption{
  position:relative; margin-top:14px; color:#E3E8EE; font-size:13.5px; text-align:center; max-width:90vw;
}
.lightbox__close{
  position:absolute; top:18px; right:20px; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); color:#fff;
  font-size:26px; line-height:1; z-index:1;
}
.lightbox__close:hover{ background:rgba(255,255,255,.22); }

/* ==========================================================================
   Visual showcase — photo-led entry point above the compare table
   ========================================================================== */
.showcase-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
@media (max-width:760px){ .showcase-grid{ grid-template-columns:repeat(2,1fr); } }

.showcase-card{
  position:relative; display:block; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/4; box-shadow:var(--shadow-card); background:var(--ivory-2);
}
.showcase-card::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, transparent 38%, rgba(8,16,28,.88) 100%);
}
.showcase-card__img{ position:absolute; inset:0; }
.showcase-card__img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; cursor:pointer; }
.showcase-card:hover .showcase-card__img img{ transform:scale(1.07); }
.showcase-card__img.img-pending::after{ content:''; } /* suppress duplicate "coming soon" text; card label is enough */
.showcase-card__pill{
  position:absolute; top:10px; left:10px; z-index:2; background:rgba(255,255,255,.94);
}
.showcase-card__body{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:14px 16px; }
.showcase-card__body h3{ font-family:var(--font-display); font-size:16.5px; font-weight:600; margin:0 0 2px; color:#fff; }
.showcase-card__body p{ font-size:12px; color:#CBD5DF; margin:0; }
.status-pill--sm{ font-size:10.5px; padding:3px 10px; }
