/* ==========================================================================
   V-One Heartland — Landing Page
   Ivory / champagne / sand system. No black. Warm, wide, unhurried.
   ========================================================================== */

@font-face {
  font-family: "Fraunces Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 600;
  src: url("../assets/fonts/fraunces-variable.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Fraunces Variable";
  font-style: italic;
  font-display: swap;
  font-weight: 300 600;
  src: url("../assets/fonts/fraunces-variable-italic.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #FBF8F3;
  --white: #FFFFFF;
  --sand: #F3EDE3;
  --champagne: #EDE2CE;
  --gold: #B08428;
  --gold-deep: #8C6A1C;
  --espresso: #2E2823;
  --graphite: #4A423A;
  --muted: #7A7065;
  --hairline: #E2D8C7;
  --error: #A3372B;
  --success: #2F6B4F;

  --font-display: "Fraunces Variable", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Manrope", -apple-system, sans-serif;

  --space: 8px;
  --container: 1400px;
  --gutter: 24px;
  --gutter-mobile: 20px;
  --section-pad-desktop: 112px;
  --section-pad-mobile: 64px;

  --shadow-soft: 0 2px 24px rgba(46, 40, 35, 0.07);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  /* Safety net: nothing on this page should ever force a horizontal
     scrollbar, but full-bleed sections and stray fixed-width children
     are easy to get wrong, so this is a hard backstop. */
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: inherit; }

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

/* ---------- Typography scale ---------- */
h1, h2, h3, .price-figure {
  font-family: var(--font-display);
  color: var(--espresso);
  margin: 0;
}
h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}
.price-figure { font-size: 34px; font-weight: 600; line-height: 1.1; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 19px;
  color: var(--gold-deep);
}
.lead { font-size: 21px; font-weight: 400; line-height: 1.6; color: var(--graphite); }
.lead-mobile-18 { font-size: 21px; }
p { margin: 0 0 1em; }
.measure { max-width: 62ch; }
small, .caption { font-size: 13px; line-height: 1.5; color: var(--muted); }

@media (max-width: 720px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 21px; }
  .price-figure { font-size: 26px; }
  .eyebrow { font-size: 12px; }
  .lead { font-size: 18px; }
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
@media (max-width: 720px) {
  .container { padding: 0 var(--gutter-mobile); }
}
.section {
  padding: var(--section-pad-desktop) 0;
}
@media (max-width: 720px) {
  .section { padding: var(--section-pad-mobile) 0; }
}
.bg-ivory { background: var(--ivory); }
.bg-sand { background: var(--sand); }
.bg-champagne { background: var(--champagne); }
.bg-white { background: var(--white); }

/* Gold hairline rule under H2 */
.rule { position: relative; margin: 0 0 28px; }
.rule::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
  position: relative;
  box-shadow: 52px -2px 0 0 var(--gold);
}
.rule.center::after { margin-left: auto; margin-right: auto; box-shadow: none; }
.mobi-ban {
    display: none;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 40px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary {
  background: var(--gold-deep);
  color: var(--white);
}
.btn-primary:hover { background: #7a5a17; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
  padding: 0 36px;
}
.btn-secondary:hover { background: var(--espresso); color: var(--white); }
.btn-tertiary {
  background: none;
  border: none;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 0;
  height: auto;
  text-underline-offset: 4px;
}
.btn-tertiary:hover { text-decoration: underline; }
.btn-block { width: 100%; }

@media (max-width: 420px) {
  .btn { padding: 0 24px; font-size: 15.5px; }
  .btn-secondary { padding: 0 22px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  width: 100%;
}
.site-header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 84px;
  min-width: 0;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}
.site-header .logo img { height: 60px; width: auto; max-width: 100%; }
.header-rera {
  font-size: 11px;
  color: var(--muted);
  display: none;
  white-space: nowrap;
  border-left: 1px solid var(--hairline);
  padding-left: 10px;
}

/* Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--graphite);
  padding: 6px 0;
  transition: color 200ms ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-deep);
  transition: width 220ms var(--ease);
}
.site-nav a:hover { color: var(--gold-deep); }
.site-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-call {
  display: none;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border: 1.5px solid var(--espresso);
  border-radius: 3px;
  color: var(--espresso);
  font-weight: 600;
  font-size: 15px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.header-call:hover { background: var(--espresso); color: var(--white); transform: translateY(-1px); }
.header-actions .btn-primary {
  height: 46px;
  padding: 0 24px;
  font-size: 15px;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--espresso);
  transition: transform 250ms var(--ease), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .header-rera { display: block; }
  .header-call { display: inline-flex; }
  .site-nav {
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
  }
  .nav-toggle { display: none; }
}
@media (max-width: 959px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 16px;
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms var(--ease);
  }
  .site-nav.open { display: flex; max-height: 480px; }
  .site-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .site-header { position: sticky; }
  .site-header .container { position: relative; }
}

/* Very small phones: tighten header spacing so logo + CTA never overflow */
@media (max-width: 400px) {
  .site-header .container { height: 72px; gap: 10px; }
  .site-header .logo img { height: 46px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-primary { padding: 0 16px; font-size: 14px; height: 42px; display:none; }
  .nav-toggle { width: 36px; height: 36px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(251,248,243,0.97) 0%, rgba(251,248,243,0.92) 38%, rgba(251,248,243,0.45) 62%, rgba(251,248,243,0.10) 100%),
    url("/assets/images/7.jpeg") center right / cover no-repeat;
  width: 100%;
  overflow-x: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 48px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
  width: 100%;
  min-width: 0;
}
.hero-inner > * { min-width: 0; }
.hero-copy { max-width: 620px; padding-top: 24px; min-width: 0; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead { margin-bottom: 20px; }
.hero-price { margin-bottom: 20px; }
.hero-price .price-figure { color: var(--gold-deep); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 28px; }
.hero-chips li {
  font-size: 14px;
  color: var(--graphite);
  padding-left: 16px;
  position: relative;
}
.hero-chips li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-cta-note { margin-top: 12px; }

.hero-form-panel {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  min-width: 0;
}
.hero-form-panel h2 { font-size: 26px; margin-bottom: 8px; }
.hero-form-panel .panel-sub { font-size: 15px; color: var(--graphite); margin-bottom: 24px; }

@media (max-width: 960px) {
  .hero { min-height: 0; background: none; }
  .hero-inner {
   grid-template-columns: 1fr;
        padding: 30px;
        margin-left: 0px;
  }
  .hero-image-mobile {
    background:
      linear-gradient(180deg, rgba(251,248,243,0.10) 0%, rgba(251,248,243,0.55) 55%, rgba(251,248,243,0.97) 100%),
      url("/assets/images/7.jpeg") center top / cover no-repeat;
    height: 46vh;
    /* Full-bleed edge-to-edge: cancel the container's current gutter
       exactly so there's no sliver and no overflow. */
   
  }
  .hero-copy { padding-top: 0; }
  .hero-order-form { order: 3; }
}
@media (max-width: 720px) {
    .mobi-ban {
    display: block;
}
 
  .hero-form-panel { padding: 28px 22px; }
}

/* ---------- Form ---------- */
.lead-form .field { margin-bottom: 18px; }
.lead-form label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: var(--ivory);
  color: var(--espresso);
  font-size: 16px;
  transition: border-color 200ms ease;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border: 2px solid var(--gold-deep);
  padding-left: 15px;
}
.field-error {
  display: none;
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error select { border-color: var(--error); }
.field.has-error .field-error { display: block; }
.field.is-valid input,
.field.is-valid select { border-color: var(--success); }

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.consent-field input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--gold-deep); flex-shrink: 0; }
.consent-field label { font-size: 13px; color: var(--muted); line-height: 1.5; }

.form-status {
  display: none;
  font-size: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 3px;
}
.form-status.error { display: block; background: rgba(163,55,43,0.08); color: var(--error); }
.form-status.success { display: block; background: rgba(47,107,79,0.08); color: var(--success); }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Price band ---------- */
.price-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.price-band p { margin: 0; font-size: 19px; color: var(--espresso); }
.price-band .price-figure { color: var(--gold-deep); }

/* ---------- Trust strip ---------- */
.trust-strip { text-align: center; }
.trust-strip .eyebrow { display: block; margin-bottom: 16px; }
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}
.trust-logos img { height: 34px; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-stats .stat-figure { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--espresso); }
.trust-stats .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 720px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); text-align: left; }
}

/* ---------- Tiles / Why section ---------- */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 8px;
}
.tile {
  background: var(--sand);
  padding: 36px 32px;
}
.tile img { width: 40px; height: 40px; margin-bottom: 20px; }
.tile h3 { margin-bottom: 10px; font-size: 21px; }
.tile p { font-size: 16px; margin: 0; }
@media (max-width: 900px) {
  .tiles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tiles-grid { grid-template-columns: 1fr; }
}
.section-cta { margin-top: 44px; }

/* ---------- Configurations ---------- */
.config-table-wrap { margin-top: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.config-table {
  width: 100%;
  border-collapse: collapse;
}
.config-table th, .config-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
}
.config-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.config-table .price-figure { font-size: 20px; }
.config-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.config-thumb {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}
.config-thumb img { width: 100%; }
.config-thumb figcaption { padding: 12px 16px; font-size: 14px; color: var(--graphite); }
@media (max-width: 720px) {
  .config-table, .config-table thead, .config-table tbody, .config-table tr, .config-table th, .config-table td { display: block; }
  .config-table thead { display: none; }
  .config-table tr {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 8px 16px;
  }
  .config-table td { border: none; padding: 10px 0; display: flex; justify-content: space-between; }
  .config-table td::before { content: attr(data-label); color: var(--muted); font-size: 13px; }
  .config-thumbs { grid-template-columns: 1fr; }
}

/* ---------- Amenities (tab/grid rules defined further below) ---------- */

/* ---------- Elevation / walkthrough ---------- */
.walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.video-facade {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  grid-column: 1 / -1;
}
.video-facade img { width: 100%; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn svg { margin-left: 4px; }
.elevation-shots { display: contents; }
.elevation-shots figure { margin: 0; border-radius: 4px; overflow: hidden; }
.elevation-shots img { width: 100%; }
@media (max-width: 720px) {
  .walkthrough-grid { grid-template-columns: 1fr; }
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.location-map { border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); }
.location-table { width: 100%; border-collapse: collapse; }
.location-table th {
  text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); padding-bottom: 12px; font-weight: 600;
}
.location-table td { padding: 8px 0; font-size: 15px; border-top: 1px solid var(--hairline); }
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Specifications ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th { text-align: left; font-size: 13px; text-transform: uppercase; color: var(--muted); padding: 12px 0 8px; }
.specs-table td { padding: 14px 0; border-top: 1px solid var(--hairline); font-size: 15px; }
.specs-table td:first-child { color: var(--espresso); font-weight: 600; width: 40%; }
.specs-image { border-radius: 4px; overflow: hidden; }
@media (max-width: 900px) {
  .specs-grid { grid-template-columns: 1fr; }
  .specs-image { order: -1; }
}

/* ---------- Developers ---------- */
.developers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.developer-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.developer-card img { height: 30px; margin-bottom: 18px; }
.developer-card p { font-size: 15px; margin: 0; }
.developers-photo { margin-top: 32px; border-radius: 4px; overflow: hidden; }
.developers-line { margin-top: 24px; font-size: 17px; color: var(--espresso); font-style: italic; font-family: var(--font-display); }
@media (max-width: 720px) {
  .developers-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 8px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--espresso);
}
.faq-question .plus { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ''; position: absolute; background: var(--gold-deep);
  transition: transform 250ms var(--ease);
}
.faq-question .plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-question .plus::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}
.faq-answer p { padding-bottom: 22px; font-size: 16px; margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(243,237,227,0.85) 0%, rgba(243,237,227,0.6) 100%),
    url("/assets/images/2.jpeg") center / cover no-repeat;
}
.final-cta .container { max-width: 700px; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta .lead { margin: 0 auto 32px; }
.final-cta .btn-tertiary { display: block; margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo img { height: 28px; margin-bottom: 16px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 15px; color: var(--graphite); display: block; margin-bottom: 8px; }
.footer-rera { display: flex; align-items: center; gap: 12px; }
.footer-rera img { width: 64px; height: 64px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footnote {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 250ms var(--ease);
}
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar a, .mobile-bar button {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep);
  border-right: 1px solid var(--hairline);
}
.mobile-bar > *:last-child { border-right: none; }
.mobile-bar svg { width: 20px; height: 20px; }
@media (min-width: 720px) { .mobile-bar { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 72px 0 96px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page h2 { font-size: 24px; margin: 40px 0 12px; }
.legal-page p, .legal-page li { font-size: 16px; color: var(--graphite); }
.legal-page li { margin-bottom: 8px; list-style: disc; margin-left: 20px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }

/* ---------- Thank-you page ---------- */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ivory);
}
.thankyou-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 20px;
}
.thankyou-card .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--champagne);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-card h1 { margin-bottom: 16px; }
.thankyou-card .lead { margin: 0 auto 32px; }
.thankyou-map { margin-top: 40px; border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); }

/* ==========================================================================
   Added: continuous button animation, hover effects, amenity tabs,
   location accordion, popup modal, custom cursor
   ========================================================================== */

/* ---------- Continuous button animation ---------- */
@keyframes btn-pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(176,132,40,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(176,132,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,132,40,0); }
}
@keyframes btn-shine-sweep {
  0%   { transform: translateX(-130%) skewX(-20deg); }
  55%  { transform: translateX(160%) skewX(-20deg); }
  100% { transform: translateX(160%) skewX(-20deg); }
}
.btn-anim {
  position: relative;
  overflow: hidden;
  animation: btn-pulse-glow 2.6s ease-out infinite;
}
.btn-anim::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: btn-shine-sweep 3.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-secondary.btn-anim { animation: none; }
.btn-secondary.btn-anim::before { background: linear-gradient(100deg, transparent 0%, rgba(46,40,35,0.12) 50%, transparent 100%); }
@media (prefers-reduced-motion: reduce) {
  .btn-anim, .btn-anim::before { animation: none; }
}

/* ---------- Generic hover-lift for cards / images ---------- */
.tile,
.developer-card,
.config-thumb,
.amenity-card,
.hover-card,
.faq-image,
.location-map,
.video-facade,
.elevation-shots figure {
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
  will-change: transform;
}
.tile:hover,
.developer-card:hover,
.config-thumb:hover,
.amenity-card:hover,
.hover-card:hover,
.faq-image:hover,
.location-map:hover,
.video-facade:hover,
.elevation-shots figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(46,40,35,0.14);
  z-index: 2;
}
.tile:hover img { transform: scale(1.08); }
.tile img { transition: transform 320ms var(--ease); }
.amenity-card img,
.hover-card img,
.config-thumb img {
  transition: transform 500ms var(--ease);
}
.amenity-card:hover img,
.config-thumb:hover img {
  transform: scale(1.06);
}
.trust-stats .stat { transition: transform 250ms var(--ease); }
.trust-stats .stat:hover { transform: translateY(-4px); }
.faq-item { transition: background 200ms ease; }
.faq-item:hover { background: rgba(176,132,40,0.05); }

/* ---------- Amenity tabs ---------- */
.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}
.amenity-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.amenity-tab img { opacity: 0.55; transition: opacity 200ms ease; }
.amenity-tab:hover { color: var(--espresso); }
.amenity-tab.active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.amenity-tab.active img { opacity: 1; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-card {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}
.amenity-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.amenity-card figcaption {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--espresso);
}
.amenity-card-wide { grid-column: 1 / -1; }
.amenity-card-wide img { aspect-ratio: 16/8; }
.amenity-panel[hidden] { display: none; }
@media (max-width: 900px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-tabs { gap: 4px; }
  .amenity-tab { padding: 12px 10px; font-size: 13.5px; }
}

/* ---------- FAQ image ---------- */
.faq-image {
  margin: 0 0 40px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.faq-image img { width: 100%; aspect-ratio: 20/7; object-fit: cover; }

/* ---------- Location accordion ---------- */
.location-accordion { display: flex; flex-direction: column; gap: 10px; }
.loc-item {
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
}
.loc-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--espresso);
  text-align: left;
}
.loc-title .plus { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.loc-title .plus::before, .loc-title .plus::after {
  content: ''; position: absolute; background: var(--gold-deep);
  transition: transform 250ms var(--ease);
}
.loc-title .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.loc-title .plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.loc-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.loc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
}
.loc-item.open .loc-body { max-height: 480px; }
.loc-body .location-table { padding: 0 20px 18px; }
.loc-body .location-table td { padding: 8px 0; }
.loc-body .location-table td:first-child { padding: 20px; }
.location-map { border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); line-height: 0; }
.location-map iframe { display: block; max-width: 100%; }

/* ---------- Popup lead modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,40,35,0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 280ms;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 30px 70px rgba(46,40,35,0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 320ms var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-box h2 { font-size: 25px; margin-bottom: 8px; padding-right: 24px; }
.modal-box .panel-sub { font-size: 15px; color: var(--graphite); margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--ivory);
  font-size: 20px;
  line-height: 1;
  color: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.modal-close:hover { background: var(--espresso); color: var(--white); transform: rotate(90deg); }
@media (max-width: 520px) {
  .modal-box { padding: 32px 22px; }
}

/* ---------- Custom animated cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 200ms ease;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--gold-deep);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold-deep);
  transition: opacity 200ms ease, width 180ms ease, height 180ms ease, background 180ms ease, transform 60ms linear;
}
.cursor-active .cursor-dot,
.cursor-active .cursor-ring { opacity: 0.85; }
.cursor-grow .cursor-ring {
  width: 54px; height: 54px;
  background: rgba(176,132,40,0.10);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}