/* ==========================================================================
   GODREJ REGENT PARK — LANDING PAGE STYLES
   Palette & type derived from the project brochure:
   deep navy (brochure covers), warm parchment grey (section backgrounds),
   aged-brass accent (Victorian architectural motif), cream text on dark.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0d1b2e;   /* brochure cover navy */
  --navy-800: #142a45;
  --navy-700: #1c3a5e;
  --parchment: #eeece6;  /* brochure section background grey */
  --parchment-dark: #e2dfd6;
  --cream: #f7f5f0;
  --brass: #b08d57;      /* Victorian brass/gold accent */
  --brass-dark: #8f6f3f;
  --ink: #1a2330;
  --ink-soft: #4b5563;
  --white: #ffffff;
  --line: rgba(13,27,46,0.12);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -25px rgba(13,27,46,0.35);
  --nav-height: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; min-width: 0; display: block; }
picture { display: block; width: 100%; }
picture img { width: 100%; height: auto; }
/* Full-bleed "cover" photos (hero, gallery tiles) need their <picture>
   wrapper to actually fill the container's height so height:100% on the
   <img> inside has something real to resolve against. */
.hero-media picture, .gallery-item picture { height: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; font-weight: 600; }
p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; }
ul { padding-left: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--brass-dark);
  margin-bottom: 0.9em;
}
.eyebrow-light { color: var(--brass); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brass); color: var(--white); }
.btn-primary:hover { background: var(--brass-dark); }
.btn-outline { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 1em 2em; font-size: 1rem; }
.btn-block { width: 100%; }
.link-cta {
  background: none; border: none; color: var(--white); text-decoration: underline;
  text-underline-offset: 4px; font-weight: 600; margin-top: 1.1rem; padding: 0;
  font-size: 0.95rem;
}

/* ============ NAV ============ */
.site-nav {
  position: sticky; top: 0; z-index: 500;
  width: 100%;
  background: rgba(13,27,46,0.92);
  backdrop-filter: blur(10px);
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; text-decoration: none; }
.nav-links { display: flex; gap: 1.6rem; flex: 1; justify-content: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color 0.15s; }
.nav-links a:hover { color: var(--brass); }
.nav-toggle { display: none; background: none; border: none; width: 34px; height: 24px; position: relative; padding: 0; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: 0.2s; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

/* ============ HERO ============ */
.hero { position: relative; color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,35,0.55) 0%, rgba(10,20,35,0.72) 55%, rgba(10,20,35,0.94) 100%); }
.hero-content { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; padding: 84px 24px 60px; }
.hero .eyebrow-light {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  padding: 0.4em 0.9em; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--white); max-width: 780px; }
.hero-sub { display: block; font-size: 0.5em; font-weight: 500; color: var(--parchment); margin-top: 0.3em; }
.hero-copy { color: rgba(255,255,255,0.86); max-width: 560px; font-size: 1.05rem; }
.hero-price-row { display: flex; align-items: center; gap: 1.6rem; margin: 1.6rem 0; }
.hero-price-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); margin-bottom: 0.2em; }
.hero-price { font-family: var(--font-display); font-size: 2rem; color: var(--brass); }
.hero-price--sm { font-size: 1.4rem; color: var(--white); }
.hero-price sup { font-size: 0.5em; }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.trust-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-item { padding: 20px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-item:last-child { border-right: none; }
.trust-icon {
  display: none; /* shown on mobile card layout only */
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(176,141,87,0.16); color: var(--brass);
  align-items: center; justify-content: center; margin: 0 auto 0.5rem;
}
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ============ SECTIONS ============ */
.section { padding: 84px 24px; max-width: var(--max-width); margin: 0 auto; }
.section-tinted { background: var(--parchment); max-width: none; }
.section-tinted > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section-tinted .section-head,
.section-tinted .amenity-feature,
.section-tinted .amenity-groups,
.section-tinted .cta-band,
.section-tinted .why-grid,
.section-tinted .distance-groups { max-width: var(--max-width); margin-left: auto; margin-right: auto; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.section-grid > * { min-width: 0; }
.section-grid--reverse { direction: rtl; }
.section-grid--reverse > * { direction: ltr; }
.section-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.section-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; height: auto; object-fit: contain; }

.stat-row { display: flex; gap: 1.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--navy-800); }
.stat-row span { font-size: 0.8rem; color: var(--ink-soft); }

/* ============ COST SHEET ============ */
.config-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.config-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.config-card--featured { border-color: var(--brass); box-shadow: var(--shadow-soft); position: relative; transform: translateY(-8px); }
.config-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-dark); }
.config-card h3 { font-size: 1.4rem; margin-bottom: 0.1em; }
.config-size { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.3em; }
.config-price { font-size: 1.1rem; margin-bottom: 0.6em; }
.config-price strong { font-family: var(--font-display); color: var(--navy-800); font-size: 1.3rem; }
.config-specs { margin-bottom: 1rem; }
.config-specs li { position: relative; padding-left: 1.2em; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.4em; }
.config-specs li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.pricing-disclaimer { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 2rem; }

/* ============ AMENITIES ============ */
.amenity-feature img { border-radius: var(--radius-lg); width: 100%; height: auto; margin-bottom: 3rem; box-shadow: var(--shadow-soft); object-fit: contain; }
.amenity-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.amenity-group { text-align: center; }
.amenity-group h4 {
  position: relative; display: inline-block; font-size: 1rem; color: var(--navy-800);
  padding-bottom: 0.7em; margin-bottom: 1rem;
}
.amenity-group h4::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 34px; height: 2px; background: var(--brass);
}
.amenity-group li { font-size: 0.9rem; color: var(--ink-soft); padding: 0.3em 0; text-align: center; }
.cta-band { text-align: center; margin-top: 3rem; }

/* ============ FLOOR PLAN ============ */
.floorplan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.floorplan-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; text-align: center; min-width: 0; }
.floorplan-thumb { position: relative; display: block; width: 100%; padding: 0; border: none; background: none; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1rem; }
.floorplan-thumb img { width: 100%; height: auto; object-fit: contain; }
.zoom-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(13,27,46,0.85); color: var(--white); font-size: 0.72rem; padding: 0.35em 0.8em; border-radius: 999px; }

/* Locked (blurred) floor plans — drives enquiry before revealing detail */
.floorplan-thumb--locked img { filter: blur(9px) saturate(0.85); transform: scale(1.06); transition: filter 0.2s ease; }
.floorplan-thumb--locked:hover img { filter: blur(7px) saturate(0.9); }
.lock-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(180deg, rgba(13,27,46,0.35) 0%, rgba(13,27,46,0.55) 100%);
  color: var(--white); text-align: center; padding: 1rem;
}
.lock-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  backdrop-filter: blur(2px);
}
.lock-text { font-size: 0.82rem; font-weight: 700; max-width: 160px; line-height: 1.3; }
.floorplan-card h4 { font-size: 1rem; margin-bottom: 0.2em; }
.floorplan-card p { font-size: 0.82rem; margin-bottom: 1rem; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border: none; padding: 0; border-radius: var(--radius-md); overflow: hidden; background: none; aspect-ratio: 4 / 3; min-width: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--tall { aspect-ratio: 4 / 3; }

/* ============ LOCATION ============ */
.location-map img { border-radius: var(--radius-lg); width: 100%; height: auto; box-shadow: var(--shadow-soft); object-fit: contain; }
.map-note { text-align: center; font-size: 0.78rem; margin-top: 0.6rem; }
.distance-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.distance-group h4 { font-size: 0.95rem; color: var(--navy-800); margin-bottom: 0.7em; }
.distance-group li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.86rem; padding: 0.3em 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.distance-group li strong { color: var(--navy-800); white-space: nowrap; }

/* ============ WHY / AWARDS ============ */
.why-grid, .award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-card, .award-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.6rem;
}
.why-card h4 { font-size: 1.02rem; margin-bottom: 0.4em; color: var(--navy-800); }
.why-card p { font-size: 0.88rem; margin: 0; }
.award-item strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--navy-800); margin-bottom: 0.3em; }
.award-item span { font-size: 0.82rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.1rem 1.4rem; margin-bottom: 0.8rem; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--navy-800); }
.faq-item p { margin-top: 0.8em; margin-bottom: 0; }

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative; color: var(--white); max-width: none; padding: 110px 24px;
  background: linear-gradient(180deg, rgba(10,18,32,0.75) 0%, rgba(10,18,32,0.92) 100%), url('/assets/images/final-cta-towers.jpg') center/cover no-repeat;
}
@media (max-width: 640px) {
  .final-cta {
    padding: 70px 20px;
    background: linear-gradient(180deg, rgba(10,18,32,0.75) 0%, rgba(10,18,32,0.92) 100%), url('/assets/images/final-cta-towers-mobile.jpg') center/cover no-repeat;
  }
}
@media (max-width: 640px) and (min-resolution: 1.5x) {
  .final-cta {
    background: linear-gradient(180deg, rgba(10,18,32,0.75) 0%, rgba(10,18,32,0.92) 100%), url('/assets/images/final-cta-towers-mobile.webp') center/cover no-repeat;
  }
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.final-cta .hero-cta-row { justify-content: center; margin-top: 1.6rem; }

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { background: #1ebe57; }


/* ============ INLINE FORM SECTION ============ */
/* Section sits between "why" (tinted) and "recognition" (plain) — keep
   standard section padding so vertical rhythm matches its neighbors. */
.inline-form-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--navy-900); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
}
.inline-form-card > * { min-width: 0; }
.inline-form-copy { padding: 3rem; color: var(--white); }
.inline-form-copy h2 { color: var(--white); }
.inline-form-copy p { color: rgba(255,255,255,0.8); }
.trust-bullets { margin-top: 1.4rem; }
.trust-bullets li { position: relative; padding-left: 1.4em; font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 0.6em; }
.trust-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); font-weight: 700; }
.inline-form-box { background: var(--white); padding: 2.4rem; }

.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-method {
  display: flex; align-items: flex-start; gap: 0.6rem; text-decoration: none; color: var(--white);
  padding: 0.2rem 0;
}
.contact-method__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--brass);
}
.contact-method strong { display: block; font-size: 0.85rem; font-weight: 700; }
.contact-method span span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.68); line-height: 1.4; margin-top: 0.1em; }
.contact-method:hover strong { color: var(--brass); }
.contact-method--static { cursor: default; }

/* ============ LEAD FORM (shared modal + inline) ============ */
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.35em; }
.form-row label { font-size: 0.82rem; font-weight: 700; color: var(--navy-800); }
.form-row input, .form-row select {
  padding: 0.75em 0.9em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; background: var(--white); color: var(--ink);
  min-height: 46px;
}
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(176,141,87,0.18); }
.form-row.has-error input, .form-row.has-error select { border-color: #c0392b; }
.field-error { font-size: 0.78rem; color: #c0392b; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { font-size: 0.76rem; color: var(--ink-soft); margin: 0; }
.privacy-note a { text-decoration: underline; }
.btn-submit { position: relative; margin-top: 0.4em; }
.btn-spinner {
  display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: var(--white);
  animation: spin 0.7s linear infinite;
}
.btn-submit.is-loading .btn-label { opacity: 0.6; }
.btn-submit.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { font-size: 0.88rem; min-height: 1.2em; }
.form-status.success { color: #2f7a4d; font-weight: 700; }
.form-status.error { color: #c0392b; font-weight: 700; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,18,30,0.6); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg); max-width: 460px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 2.2rem; position: relative; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--parchment); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.3rem; line-height: 1; color: var(--navy-800); }
.modal-head { margin-bottom: 1.4rem; }
.modal-head h3 { font-size: 1.4rem; margin-bottom: 0.2em; }
.modal-head p { font-size: 0.9rem; margin: 0; }

/* ============ LIGHTBOX ============ */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(5,10,18,0.92); z-index: 1100;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; }

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  display: none; gap: 0.6rem; padding: 0.7rem 0.9rem;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.12);
}
.mobile-cta-bar .btn { flex: 1; padding: 0.8em 0.6em; font-size: 0.86rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 44px 24px 40px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-disclaimer { margin-top: 0; font-size: 0.74rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-disclaimer a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-copy { margin-top: 1rem; font-size: 0.72rem; }

/* ============ THANK YOU / LEGAL PAGES ============ */
.thankyou-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 100px 24px; }
.thankyou-card { max-width: 520px; text-align: center; }
.thankyou-icon { color: #2f7a4d; margin-bottom: 1rem; }
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }
.thankyou-footnote { font-size: 0.85rem; margin-top: 2rem; }

.legal-page { padding: 100px 24px 80px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-size: 2rem; }
.legal-inner h2 { font-size: 1.2rem; color: var(--navy-800); margin-top: 1.8em; }
.legal-updated { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 2rem; }
.legal-inner ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-inner li { color: var(--ink-soft); margin-bottom: 0.4em; }
.legal-inner a { text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--navy-900);
    flex-direction: column; align-items: flex-start; padding: 1.2rem 24px; gap: 0.9rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.18s ease; }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .section-grid, .section-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .config-cards, .amenity-groups, .why-grid, .award-grid, .distance-groups, .floorplan-grid { grid-template-columns: repeat(2, 1fr); }
  .config-card--featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-form-card { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE HERO — screens below 768px only. Desktop hero (>=768px)
   is untouched; see the base .hero rules above.
   ============================================================ */
@media (max-width: 767px) {
  .hero-media img { object-position: center 28%; }

  /* Softer at the top (towers/sky stay visible), stronger toward the
     text block lower down — readable without darkening the whole photo. */
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(8,16,28,0.20) 0%,
      rgba(8,16,28,0.30) 28%,
      rgba(8,16,28,0.72) 62%,
      rgba(8,16,28,0.93) 100%);
  }

  .hero-content { padding: 36px 20px 30px; }

  .hero .eyebrow-light {
    font-size: 0.66rem; line-height: 1.45; padding: 0.4em 0.85em;
  }

  /* Fluid, tested to stay on one/two clean lines from 320px to 767px —
     "Godrej Regent Park" never breaks mid-word. */
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    max-width: 100%;
    margin-bottom: 0.5em;
  }
  .hero-sub { font-size: 0.5em; line-height: 1.35; margin-top: 0.45em; }

  /* Reduce clutter: the long descriptive paragraph and secondary link
     are dropped on mobile — price + two clear CTAs carry the section. */
  .hero-copy, .link-cta { display: none; }

  .hero-price-row {
    gap: 1rem; margin: 1.3rem 0 1.4rem; padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md); backdrop-filter: blur(8px);
  }
  .hero-price-label { font-size: 0.7rem; }
  .hero-price { font-size: 1.45rem; }
  .hero-price--sm { font-size: 1.1rem; }

  .hero-cta-row { flex-direction: column; gap: 0.7rem; margin-bottom: 0; }
  .hero-cta-row .btn { width: 100%; padding: 0.95em 1.4em; font-size: 0.95rem; }

  /* Trust strip becomes a floating glass card, overlapping the hero photo */
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    background: rgba(13,27,46,0.72); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    margin: 24px 16px 0; position: relative; z-index: 2;
    box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .trust-item { padding: 16px 10px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-icon { display: flex; width: 32px; height: 32px; }
  .trust-item strong { font-size: 1.1rem; }
  .trust-item span { font-size: 0.72rem; }
}

/* Very small phones (iPhone SE / 320px class) — trim once more so
   nothing feels cramped or wraps awkwardly. */
@media (max-width: 359px) {
  .hero h1 { font-size: 1.5rem; }
  .hero .eyebrow-light { font-size: 0.6rem; }
  .hero-price { font-size: 1.3rem; }
}

/* ============================================================
   OTHER MOBILE COMPONENT ADJUSTMENTS (unrelated to hero) —
   unchanged from the previous responsive pass.
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 56px 20px; }
  .config-cards, .amenity-groups, .why-grid, .award-grid, .distance-groups, .floorplan-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .contact-methods { grid-template-columns: 1fr; }
  .inline-form-copy, .inline-form-box { padding: 1.8rem; }
  .mobile-cta-bar { display: flex; padding-bottom: calc(0.7rem + env(safe-area-inset-bottom)); }
  body { padding-bottom: 84px; } /* room for sticky bar, incl. safe-area devices */
  .final-cta .btn { width: 100%; }
  .modal { padding: 1.6rem; max-height: 92vh; }
  .modal-head h3 { font-size: 1.2rem; }
  .nav-brand span { display: none; }
  .nav-inner { padding: 0 16px; gap: 0.75rem; }
  .lock-text { font-size: 0.76rem; max-width: 140px; }
  .lock-icon { width: 34px; height: 34px; }
  .config-card--featured { transform: none; }
  .site-plan-note, .map-note { font-size: 0.72rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--brass); outline-offset: 2px;
}
