/* =========================================================
   Supreme Villagio — Landing Page
   Palette taken from the logo: cream #E2E0CF + terracotta #E15E3F
   on a warm charcoal base.
   ========================================================= */

:root {
  /* Logo colours */
  --logo-cream: #e2e0cf;
  --logo-terra: #e15e3f;

  /* Dark base (logo sits on this) */
  --dark: #1c1a18;
  --dark-2: #25221f;
  --dark-3: #302c28;

  /* Accent — terracotta */
  --terra: #e15e3f;
  --terra-light: #ef8b70;
  --terra-deep: #c2482b;
  --terra-text: #b3432a;          /* terracotta for text on light bgs (AA) */
  --terra-soft: rgba(225, 94, 63, 0.12);
  --line-terra: rgba(225, 94, 63, 0.35);

  /* Light surfaces */
  --cream: #f5f3ea;
  --paper: #fbfaf6;
  --white: #ffffff;

  /* Text */
  --ink: #221f1c;
  --ink-soft: #5c5650;
  --on-dark: #f3f1e6;
  --on-dark-soft: #b9b4a6;

  --line: rgba(34, 31, 28, 0.12);
  --line-dark: rgba(226, 224, 207, 0.14);

  --shadow-sm: 0 6px 18px rgba(28, 26, 24, 0.08);
  --shadow-md: 0 18px 44px rgba(28, 26, 24, 0.14);
  --shadow-lg: 0 30px 70px rgba(28, 26, 24, 0.28);

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Poppins", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: 24px;
  --radius: 14px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; min-height: 48px;
  font-family: var(--ff-body); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.03em;
  border-radius: 6px; border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap; text-align: center;
}
.btn--sm { padding: 10px 20px; min-height: 42px; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(194, 72, 43, 0.32);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(194, 72, 43, 0.42); }
.btn--ghost { color: var(--on-dark); border-color: rgba(226, 224, 207, 0.55); background: transparent; }
.btn--ghost:hover { background: var(--logo-cream); border-color: var(--logo-cream); color: var(--dark); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28, 26, 24, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo img { width: auto; height: 54px; }
.brand__logo { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  position: relative; color: var(--on-dark-soft);
  font-size: 0.88rem; letter-spacing: 0.02em; padding: 8px 12px; border-radius: 4px;
  transition: color .2s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 1.5px;
  background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__link:hover { color: var(--on-dark); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta {
  margin-left: 10px; padding: 10px 18px; color: #fff; font-weight: 500;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { color: #fff; }

.header__phone {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  color: var(--on-dark); font-size: 0.88rem; font-weight: 500;
  padding: 9px 14px; border: 1px solid var(--line-terra); border-radius: 6px;
  transition: border-color .2s ease, color .2s ease;
}
.header__phone i { color: var(--terra); }
.header__phone:hover { border-color: var(--terra); color: var(--terra-light); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--logo-cream); transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--dark); color: var(--on-dark);
  padding: clamp(64px, 9vw, 120px) 0;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(28, 26, 24, 0.95) 0%, rgba(28, 26, 24, 0.82) 45%, rgba(28, 26, 24, 0.5) 100%),
    url("Supreme_Villagio_Website_Images/project-images/page-64-image-1.jpeg") center 40% / cover no-repeat;
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center; gap: clamp(32px, 5vw, 72px);
}
.hero__inner { display: flex; flex-direction: column; align-items: flex-start; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 36px; height: 1.5px; background: var(--terra); }

/* Brand lockup — mirrors the logo: arc, SUPREME, VILLAGIO, location */
.hero__title {
  display: inline-flex; flex-direction: column; align-items: center; text-align: center;
  font-weight: 400; line-height: 1; margin-bottom: 26px;
}
.hero__title::before {
  content: ""; width: 42%; height: clamp(14px, 2vw, 22px);
  border-top: clamp(4px, 0.6vw, 6px) solid var(--logo-terra);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-bottom: 10px;
}
.hero__brand-top {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.9rem, 5.2vw, 3.6rem); letter-spacing: 0.14em; margin-right: -0.14em;
  color: var(--logo-cream);
}
.hero__brand-main {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.9rem, 5.2vw, 3.6rem); letter-spacing: 0.14em; margin-right: -0.14em;
  color: var(--logo-cream); margin-top: 6px;
}
.hero__brand-location {
  display: flex; align-items: center; gap: 14px; margin-top: 16px;
  font-family: var(--ff-body); font-weight: 400;
  font-size: clamp(0.78rem, 1.3vw, 1rem); letter-spacing: 0.4em; margin-right: -0.4em;
  color: var(--logo-cream);
}
.hero__brand-location::before,
.hero__brand-location::after { content: ""; width: 32px; height: 1px; background: rgba(226, 224, 207, 0.55); }

.hero__sub {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.35;
  color: var(--on-dark); max-width: 540px; margin-bottom: 26px;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-dark);
  padding: 8px 15px; border-radius: 40px; font-size: 0.84rem; color: var(--on-dark);
}
.hero__chips li i { color: var(--terra-light); }
.hero__chips .hero__chips--rera i { color: #7fcf9a; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Offers card */
.offers {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: 28px 26px 24px;
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--terra);
}
.offers__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-size: 1.25rem; line-height: 1.25; margin-bottom: 16px; color: var(--ink);
}
.offers__title i { color: var(--terra); }
.offers__list { display: grid; gap: 10px; }
.offers__list li { position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--ink); }
.offers__list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 2px; color: var(--terra); font-size: 0.82rem;
}
.offers__note {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 0.78rem; color: var(--terra-text); font-weight: 500;
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); }
.eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--terra-text);
}
.section__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.8rem, 4.2vw, 3rem); line-height: 1.15; color: var(--ink);
}
.section__lead { margin-top: 14px; color: var(--ink-soft); font-size: 1.02rem; }
.rule {
  display: block; width: 80px; height: 0; margin: 22px auto 0; position: relative;
  border-top: 1px solid var(--terra);
}
.rule::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px;
  transform: translate(-50%, -50%) rotate(45deg); background: var(--terra);
}

/* ---------- Overview ---------- */
.overview { background: var(--cream); }
.overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.overview__copy p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.04rem; }
.overview__copy strong { color: var(--ink); }
.overview__copy .btn { margin-top: 8px; }

.highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.highlights li { background: var(--paper); padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.highlights__k { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-text); }
.highlights__v { font-family: var(--ff-display); font-size: 1.12rem; font-weight: 600; line-height: 1.3; color: var(--ink); overflow-wrap: anywhere; }

.rera-badge {
  display: flex; width: fit-content; max-width: 100%; align-items: center; gap: 12px;
  margin: 44px auto 0; padding: 14px 22px;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid #3f9a6b;
  border-radius: 8px; box-shadow: var(--shadow-sm); font-size: 0.92rem; color: var(--ink-soft);
}
.rera-badge strong { color: var(--ink); }
.rera-badge__tick { color: #3f9a6b; display: inline-flex; font-size: 1.2rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
  max-width: 820px; margin: 0 auto; align-items: stretch;
}
.price-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--terra); }
.price-card--feature { background: var(--dark); color: var(--on-dark); border-color: var(--dark); }
.price-card__ribbon {
  position: absolute; top: 20px; right: -50px; width: 170px; transform: rotate(45deg); text-align: center;
  background: var(--terra); color: #fff;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 0;
}
.price-card__tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra-text); background: var(--terra-soft); border-radius: 30px; padding: 5px 14px; margin-bottom: 18px;
}
.price-card--feature .price-card__tag { color: var(--terra-light); background: rgba(225, 94, 63, 0.16); }
.price-card__type { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 4px; }
.price-card__area { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.price-card--feature .price-card__area { color: var(--on-dark-soft); }
.price-card__price {
  font-family: var(--ff-display); font-size: 2.1rem; font-weight: 700; line-height: 1.1;
  color: var(--terra-text); margin-bottom: 26px;
}
.price-card__price::before {
  content: "Starting"; display: block; margin-bottom: 4px;
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.price-card--feature .price-card__price { color: var(--terra-light); }
.price-card--feature .price-card__price::before { color: var(--on-dark-soft); }
.price-card__price small { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 400; color: inherit; }
.price-card > .btn { margin-top: auto; }
.pricing__offer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 10px;
  width: fit-content; max-width: 100%; margin: 36px auto 0; text-align: center;
  font-size: 0.9rem; font-weight: 500; color: var(--terra-text);
  background: var(--terra-soft); border: 1px solid var(--line-terra);
  padding: 11px 24px; border-radius: 40px;
}

/* ---------- Amenities ---------- */
.amenities { background: var(--cream); }
.amenities__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.amenity-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.amenity-card:hover { transform: translateY(-5px); border-color: var(--terra); box-shadow: var(--shadow-md); }
.amenity-card__icon {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: var(--terra-soft); border: 1px solid var(--line-terra); margin-bottom: 16px;
}
.amenity-card__icon i { font-size: 24px; color: var(--terra); }
.amenity-card h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
.amenity-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Location ---------- */
.location { padding: 0; background: var(--paper); }
.location-premium { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.location-premium__visual {
  position: relative; background: var(--dark); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px);
}
.location-premium__visual img {
  width: 100%; height: auto; border-radius: 10px;
  border: 1px solid var(--line-dark); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.location-premium__image-badge {
  order: -1; align-self: flex-start; margin-bottom: -16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 30px; font-size: 0.8rem;
  background: rgba(28, 26, 24, 0.85); border: 1px solid var(--line-terra); color: var(--on-dark);
}
.location-premium__image-badge i { color: var(--terra); }
.location-premium__overlay span {
  display: block; margin-bottom: 12px;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.28em; color: var(--terra-light);
}
.location-premium__overlay h2 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.12; color: var(--on-dark); }
.location-premium__line { width: 56px; height: 2px; margin: 20px 0 16px; background: var(--terra); }
.location-premium__overlay p { max-width: 480px; color: var(--on-dark-soft); font-size: 0.95rem; line-height: 1.75; }

.location-premium__content { padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.location-premium__eyebrow { display: block; margin-bottom: 12px; color: var(--terra-text); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.28em; }
.location-premium__heading h2 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.12; color: var(--ink); }
.location-premium__gold-line { width: 56px; height: 2px; margin: 20px 0 16px; background: var(--terra); }
.location-premium__heading > p { max-width: 560px; margin-bottom: 28px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.75; }

.location-premium__address {
  display: flex; gap: 16px; padding: 20px 22px; margin-bottom: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm);
}
.location-premium__address-icon {
  flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--dark); color: var(--terra);
}
.location-premium__address span { display: block; margin-bottom: 4px; color: var(--terra-text); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; }
.location-premium__address h3 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); margin-bottom: 4px; }
.location-premium__address p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; }
.location-premium__address-divider { width: 40px; height: 1px; margin: 12px 0 8px; background: var(--terra); }
.location-premium__address em { color: var(--ink-soft); font-family: var(--ff-serif); font-size: 0.98rem; line-height: 1.5; }

.location-premium__distances { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.location-distance {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.location-distance__icon {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: var(--terra-soft); color: var(--terra); font-size: 0.88rem;
}
.location-distance__info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.location-distance__info strong { color: var(--ink); font-size: 0.92rem; font-weight: 600; }
.location-distance__info span { color: var(--ink-soft); font-size: 0.76rem; }
.location-distance > b { color: var(--terra-text); font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; white-space: nowrap; }

.location-premium__bottom {
  display: flex; align-items: center; gap: 16px; margin-top: 26px; padding: 18px 22px;
  background: var(--dark); border-radius: 12px; color: var(--on-dark);
}
.location-premium__bottom-icon {
  flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; padding-right: 14px; box-sizing: content-box;
  border-right: 1px solid var(--line-terra); color: var(--terra);
}
.location-premium__bottom > div:not(.location-premium__bottom-icon) { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.location-premium__bottom strong { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--logo-cream); }
.location-premium__bottom span { color: var(--terra-light); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; }
.location-premium__bottom > i { color: var(--terra); font-size: 1.1rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 200px; gap: 16px; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background-color: var(--dark-2); background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm); transition: transform .4s ease, box-shadow .4s ease;
}
.gallery__item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28, 26, 24, 0.7) 0%, transparent 50%);
}
.gallery__item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  font-size: 1.6rem; color: var(--logo-cream); background: rgba(28, 26, 24, 0.45);
  opacity: 0; transition: opacity .3s ease;
}
.gallery__item:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: 1 / -1; background-position: center 35%; }
.gallery__caption {
  position: absolute; left: 18px; right: 18px; bottom: 14px; z-index: 2; text-align: left;
  font-family: var(--ff-display); color: var(--logo-cream); font-size: 1.08rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none; place-items: center;
  background: rgba(20, 18, 16, 0.92); backdrop-filter: blur(6px); padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox__figure { max-width: 960px; width: 100%; text-align: center; }
.lightbox__img {
  width: 100%; aspect-ratio: 16 / 10; max-height: 78vh; border-radius: var(--radius);
  background-size: contain; background-position: center; background-repeat: no-repeat;
}
.lightbox__figure figcaption { color: var(--logo-cream); font-family: var(--ff-display); font-size: 1.15rem; margin-top: 14px; }
.lightbox__close {
  position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%;
  font-size: 2.2rem; line-height: 1; color: var(--logo-cream); transition: background .2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.accordion { display: grid; gap: 12px; }
.acc {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.acc.is-open { border-color: var(--terra); box-shadow: var(--shadow-sm); }
.acc__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; font-size: 1rem; font-weight: 500; color: var(--ink); transition: color .2s ease;
}
.acc__q:hover { color: var(--terra-text); }
.acc__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--terra); transition: transform .3s ease; }
.acc__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc.is-open .acc__icon::after { transform: scaleY(0); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--dark); color: var(--on-dark); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 64px); align-items: center; }
.contact__info .eyebrow { color: var(--terra-light); }
.contact__info .section__title { color: var(--on-dark); text-align: left; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.contact__info > p { color: var(--on-dark-soft); margin: 16px 0 26px; max-width: 480px; }
.contact__points { display: grid; gap: 14px; margin-bottom: 32px; }
.contact__points li { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; font-size: 0.98rem; color: var(--on-dark); }
.contact__points li i {
  width: 36px; height: 36px; display: grid; place-items: center; flex-shrink: 0;
  border-radius: 50%; background: rgba(225, 94, 63, 0.14); color: var(--terra-light);
}
.contact__points a { color: var(--terra-light); font-weight: 500; border-bottom: 1px solid transparent; }
.contact__points a:hover { border-color: var(--terra-light); }

.qr {
  display: flex; gap: 18px; align-items: center; padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.qr__box {
  width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 12px; background: rgba(127, 207, 154, 0.12); color: #7fcf9a; font-size: 1.5rem;
}
.qr__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.qr__meta strong { color: var(--on-dark); font-size: 0.95rem; }
.qr__num { color: var(--terra-light); font-weight: 600; letter-spacing: 0.05em; }
.qr__meta small { color: var(--on-dark-soft); font-size: 0.78rem; }
.qr__meta a { color: var(--on-dark-soft); font-size: 0.8rem; overflow-wrap: anywhere; }
.qr__meta a:hover { color: var(--terra-light); }

/* Form */
.form-card {
  position: relative; background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: 40px 34px 32px;
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--terra);
}
.form-card__badge {
  position: absolute; top: -14px; left: 34px;
  background: var(--terra); color: #fff;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
}
.form-card__title { font-family: var(--ff-display); font-size: 1.65rem; margin: 4px 0 22px; color: var(--ink); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; min-height: 48px; padding: 12px 16px;
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 8px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c2482b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(225, 94, 63, 0.18); }
.field.is-invalid input, .field.is-invalid select { border-color: #d0453a; }
.field__err { display: block; font-size: 0.76rem; color: #c0392b; margin-top: 4px; }
.field__err:empty { display: none; }
.form-card .btn, .popup .btn { margin-top: 6px; }
.form-card__legal { font-size: 0.74rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-card__legal a { color: var(--terra-text); text-decoration: underline; }
.form-card__success {
  margin-top: 16px; padding: 14px; background: rgba(63, 154, 107, 0.12); border: 1px solid #3f9a6b;
  border-radius: 8px; color: #2c7550; font-size: 0.9rem; text-align: center; font-weight: 500;
}

/* ---------- Footer ---------- */
.footer { background: #151311; color: var(--on-dark-soft); font-size: 0.9rem; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding-top: 52px; padding-bottom: 40px;
}
.footer__brand { max-width: 440px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand .brand-logo img { height: 70px; }
.footer__brand p { margin-bottom: 16px; color: var(--on-dark-soft); }
.footer__tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra-light); border: 1px solid var(--line-terra); padding: 6px 16px; border-radius: 30px;
}
.footer__contact { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }
.footer__rera { border-top: 1px solid var(--line-dark); padding-top: 28px; padding-bottom: 28px; }
.footer__rera-label { color: var(--terra-light); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.74rem; font-weight: 600; margin-bottom: 12px; }
.footer__fine { color: rgba(226, 224, 207, 0.6); font-size: 0.78rem; line-height: 1.75; }
.footer__fine + .footer__fine { margin-top: 12px; }
.footer__bar { background: #0f0e0c; padding: 18px 0; }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 8px 16px; flex-wrap: wrap; }
.footer__bar p { font-size: 0.78rem; color: rgba(226, 224, 207, 0.6); }
.footer__links a { color: var(--on-dark-soft); }
.footer__links a:hover { color: var(--terra-light); }

/* ---------- Popup Enquiry Form ---------- */
.popup { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup.is-open { display: flex; }
.popup__overlay { position: absolute; inset: 0; background: rgba(20, 18, 16, 0.85); backdrop-filter: blur(6px); animation: popFade .3s ease; }
.popup__dialog {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  width: 100%; max-width: 440px; max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px);
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--terra);
  animation: popIn .4s cubic-bezier(.2, .8, .25, 1);
}
@keyframes popFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.popup__close {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.7rem; line-height: 1;
  color: var(--ink); background: rgba(0, 0, 0, 0.06); transition: background .2s, transform .2s;
}
.popup__close:hover { background: rgba(0, 0, 0, 0.12); transform: rotate(90deg); }
.popup__body { padding: 32px 28px 26px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.popup__title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--ink); line-height: 1.15; padding-right: 36px; }
.popup__sub { color: var(--ink-soft); font-size: 0.9rem; margin: 6px 0 20px; }
.popup__body .field { margin-bottom: 14px; }

/* ---------- Floating / Sticky CTA ---------- */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; background: #1f9d55; color: #fff;
  box-shadow: 0 10px 26px rgba(31, 157, 85, 0.4); transition: transform .25s ease;
}
.fab-wa:hover { transform: scale(1.08); }
.mobile-cta { display: none; }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--terra-deep), var(--terra-light)); transition: width .1s linear;
}

/* ---------- Project stats (overview) ---------- */
.stats {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; margin-top: 48px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stats li { background: var(--paper); padding: 22px 12px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stats strong { font-family: var(--ff-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.1; color: var(--terra-text); }
.stats span { font-size: 0.76rem; letter-spacing: 0.04em; color: var(--ink-soft); }
.overview__note {
  display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  margin-top: 20px; font-size: 0.92rem; color: var(--ink-soft);
}
.overview__note i { color: var(--terra); }

/* ---------- Project details ---------- */
.project { background: var(--cream); }
.unit-mix { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 28px; }
.unit-mix li {
  background: var(--dark); color: var(--on-dark); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; display: flex; flex-direction: column; gap: 4px;
  border-bottom: 3px solid var(--terra);
}
.unit-mix strong { font-family: var(--ff-display); font-size: 2.2rem; line-height: 1; color: var(--logo-cream); }
.unit-mix span { font-size: 0.84rem; color: var(--on-dark-soft); }

.project__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.project__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.project__card-title { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 20px; }
.project__card-title i { color: var(--terra); font-size: 1rem; }

.status { list-style: none; position: relative; display: grid; gap: 18px; }
.status::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.status__item { position: relative; display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 16px; align-items: start; }
.status__dot { width: 16px; height: 16px; margin-top: 3px; border-radius: 50%; background: var(--paper); border: 3px solid var(--terra); position: relative; z-index: 1; }
.status__item--done .status__dot { background: #3f9a6b; border-color: #3f9a6b; }
.status__item strong { display: block; color: var(--ink); font-size: 0.98rem; }
.status__item span { font-size: 0.86rem; color: var(--ink-soft); }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.specs li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--ink); line-height: 1.4; }
.specs i {
  flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--terra-soft); color: var(--terra); font-size: 0.9rem;
}
.project__note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line); font-size: 0.86rem; color: var(--ink-soft);
}
.project__note i { color: var(--terra); margin-top: 4px; }

/* ---------- Club Villagio ---------- */
.club {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 32px; align-items: center;
  margin-top: 32px; padding: 34px; border-radius: var(--radius);
  background: var(--dark); color: var(--on-dark);
}
.club__badge {
  display: inline-block; margin-bottom: 10px; padding: 4px 12px; border-radius: 30px;
  background: rgba(127, 207, 154, 0.14); color: #7fcf9a; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.club__head h3 { font-family: var(--ff-display); font-size: 1.9rem; color: var(--logo-cream); margin-bottom: 8px; }
.club__head p { color: var(--on-dark-soft); font-size: 0.94rem; }
.club__label { display: block; margin-bottom: 12px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-light); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  padding: 7px 14px; border-radius: 30px; font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark); color: var(--on-dark);
}
.tags--dark li { background: var(--terra-soft); border-color: var(--line-terra); color: var(--terra-text); }

/* ---------- Nearby ---------- */
.nearby { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(56px, 7vw, 88px); }
.nearby__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.nearby__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.nearby__card h3 { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink); margin-bottom: 14px; }
.nearby__card h3 i { color: var(--terra); font-size: 0.95rem; }
.nearby__card li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 0.86rem; color: var(--ink-soft); }
.nearby__card b { color: var(--terra-text); font-weight: 600; white-space: nowrap; }

/* ---------- Developer ---------- */
.developer { background: var(--paper); }
.developer__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.developer__intro .section__title { text-align: left; }
.developer__intro .developer__tagline { font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 600; color: var(--terra-text); margin: 10px 0 18px; }
.developer__intro > p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 22px; }
.developer__quote {
  font-family: var(--ff-display); font-size: 1.3rem; font-style: italic; color: var(--ink);
  border-left: 3px solid var(--terra); padding: 4px 0 4px 18px; margin-bottom: 26px;
}
.developer__people { display: grid; gap: 12px; }
.developer__people li { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; }
.developer__people span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-text); margin-bottom: 2px; }
.developer__people strong { font-size: 0.96rem; color: var(--ink); font-weight: 600; }

.developer__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.developer__stats li { background: var(--dark); border-radius: var(--radius); padding: 22px 18px; display: flex; flex-direction: column; gap: 2px; }
.developer__stats strong { font-family: var(--ff-display); font-size: 2.1rem; line-height: 1.1; color: var(--logo-cream); }
.developer__stats span { font-size: 0.8rem; color: var(--on-dark-soft); }
.developer__block + .developer__block { margin-top: 24px; }
.developer__block h3 { font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink); margin-bottom: 12px; }
.awards { display: grid; gap: 10px; }
.awards li { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.awards i { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); color: var(--terra); }
.awards strong { display: block; font-size: 0.94rem; color: var(--ink); }
.awards span { font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nearby__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .project__grid, .club, .developer__grid { grid-template-columns: 1fr; }
  .unit-mix { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; }
  .stats li { padding: 18px 10px; }
  .overview__note { font-size: 0.86rem; align-items: flex-start; text-align: left; }
  .overview__note i { margin-top: 4px; }
  .unit-mix { gap: 12px; }
  .unit-mix li { padding: 20px 12px; }
  .unit-mix strong { font-size: 1.9rem; }
  .project__card { padding: 24px 20px; }
  .specs { grid-template-columns: 1fr; }
  .club { padding: 26px 20px; gap: 22px; }
  .club__head h3 { font-size: 1.6rem; }
  .nearby__grid { grid-template-columns: 1fr; }
  .developer__stats strong { font-size: 1.8rem; }
  .developer__quote { font-size: 1.15rem; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .header__phone { margin-left: auto; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark-2); border-bottom: 1px solid var(--line-dark);
    padding: 8px var(--gutter) 22px; box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: 14px 4px; font-size: 0.98rem; color: var(--on-dark); border-bottom: 1px solid var(--line-dark); }
  .nav__link::after { display: none; }
  .nav__link--cta { margin: 16px 0 0; padding: 14px; text-align: center; border-radius: 6px; border-bottom: 0; }

  .amenities__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; justify-items: center; }
  .hero__inner { align-items: center; text-align: center; }
  .hero__eyebrow::after { content: ""; width: 36px; height: 1.5px; background: var(--terra); }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__chips, .hero__cta { justify-content: center; }
  .offers { width: 100%; max-width: 480px; }

  .overview__grid { grid-template-columns: 1fr; }
  .overview__copy { text-align: center; }
  .location-premium { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { text-align: center; }
  .contact__info .section__title { text-align: center; }
  .contact__info > p { margin-left: auto; margin-right: auto; }
  .contact__points { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }
  .contact__points li { flex-wrap: nowrap; }
  .qr { max-width: 480px; margin: 0 auto; text-align: left; }
  .contact__form-wrap { max-width: 560px; width: 100%; margin: 0 auto; }
  .gallery__grid { grid-auto-rows: 170px; }
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; gap: 8px;
    background: var(--dark); border-top: 1px solid var(--line-dark); padding: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  }
  .mobile-cta__btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    min-height: 46px; padding: 10px 6px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 500; color: var(--on-dark); border: 1px solid var(--line-dark);
  }
  .mobile-cta__btn--call { background: rgba(255, 255, 255, 0.06); }
  .mobile-cta__btn--call i { color: var(--terra-light); }
  .mobile-cta__btn--wa { background: #1f9d55; border-color: #1f9d55; color: #fff; }
  .mobile-cta__btn--enquire { background: linear-gradient(135deg, var(--terra), var(--terra-deep)); border: 0; color: #fff; }
  .fab-wa { display: none; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }

  .amenities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; --header-h: 66px; }
  .brand-logo img { height: 46px; }
  .header__phone span { display: none; }
  .header__phone { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }
  .header__inner { gap: 10px; }

  .section { padding: 60px 0; }
  .section__head { margin-bottom: 32px; }
  .section__lead { font-size: 0.96rem; }

  .hero { padding: 52px 0 56px; }
  .hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.2em; gap: 10px; margin-bottom: 22px; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 22px; }
  .hero__brand-top, .hero__brand-main { font-size: clamp(1.7rem, 9.5vw, 2.4rem); }
  .hero__brand-location { font-size: 0.72rem; gap: 10px; }
  .hero__chips { gap: 8px; }
  .hero__chips li { font-size: 0.78rem; padding: 7px 12px; }
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .offers { padding: 24px 20px 20px; }

  .highlights li { padding: 16px 14px; }
  .highlights__v { font-size: 1rem; }
  .rera-badge { font-size: 0.84rem; padding: 12px 16px; text-align: left; }

  .price-card { padding: 30px 24px; }
  .amenity-card { padding: 22px 14px; }
  .amenity-card__icon { width: 52px; height: 52px; }
  .amenity-card__icon i { font-size: 20px; }
  .amenity-card h3 { font-size: 0.96rem; }
  .amenity-card p { font-size: 0.8rem; }

  .location-premium__address { padding: 18px 16px; gap: 14px; }
  .location-distance { grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px; }
  .location-distance__icon { width: 36px; height: 36px; }

  .pricing__offer { flex-direction: column; gap: 2px; border-radius: 14px; padding: 12px 18px; }
  .pricing__offer span { display: none; }
  .location-premium__visual { gap: 28px; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 10px; }
  .gallery__item--lg { grid-column: 1 / -1; grid-row: span 2; }
  .gallery__caption { left: 12px; right: 12px; bottom: 10px; font-size: 0.92rem; }

  .acc__q { padding: 16px 18px; font-size: 0.95rem; }
  .acc__a p { padding: 0 18px 18px; }

  .form-card { padding: 34px 20px 24px; }
  .form-card__badge { left: 20px; }
  .form-card__title { font-size: 1.4rem; }

  .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__contact { width: 100%; min-width: 0; }
  .footer__bar-inner { flex-direction: column; text-align: center; }

  .popup { padding: 12px; }
  .popup__body { padding: 28px 20px 22px; }
}

@media (max-width: 380px) {
  .amenities__grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .hero__chips li { width: 100%; justify-content: center; }
}

/* =========================================================
   Standalone pages (Privacy / Terms / Thank You)
   ========================================================= */
.subhead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28, 26, 24, 0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.subhead__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.subhead .back-link { color: var(--on-dark-soft); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 7px; }
.subhead .back-link:hover { color: var(--terra-light); }

.page-hero { background: var(--dark); color: var(--on-dark); padding: clamp(52px, 8vw, 90px) 0 clamp(40px, 6vw, 64px); text-align: center; }
.page-hero .eyebrow { color: var(--terra-light); }
.page-hero h1 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); margin-top: 6px; }
.page-hero .updated { color: var(--on-dark-soft); font-size: 0.85rem; margin-top: 12px; }

.legal { padding: clamp(40px, 7vw, 84px) 0; background: var(--cream); }
.legal__doc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 5vw, 56px); box-shadow: var(--shadow-sm); }
.legal__doc h2 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--ink); margin: 32px 0 12px; }
.legal__doc h2:first-child { margin-top: 0; }
.legal__doc h3 { font-size: 1.05rem; color: var(--ink); margin: 22px 0 8px; }
.legal__doc p, .legal__doc li { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 12px; }
.legal__doc ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal__doc li { margin-bottom: 8px; }
.legal__doc a { color: var(--terra-text); text-decoration: underline; }
.legal__doc .lead { font-size: 1.02rem; color: var(--ink); border-left: 3px solid var(--terra); padding-left: 16px; margin-bottom: 26px; }

.subfoot { background: #151311; color: var(--on-dark-soft); padding: 24px 0; }
.subfoot__inner { display: flex; align-items: center; justify-content: space-between; gap: 10px 16px; flex-wrap: wrap; font-size: 0.82rem; }
.subfoot a:hover { color: var(--terra-light); }

.thankyou {
  min-height: 100vh; min-height: 100dvh; display: grid; place-items: center; text-align: center;
  background: var(--dark); color: var(--on-dark); padding: 40px var(--gutter);
}
.thankyou__card {
  max-width: 560px; width: 100%; background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark); border-top: 4px solid var(--terra);
  border-radius: var(--radius); padding: clamp(32px, 6vw, 56px) clamp(22px, 5vw, 48px);
  box-shadow: var(--shadow-lg);
}
.thankyou__logo { height: 84px; width: auto; margin: 0 auto 22px; }
.thankyou__check {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2.2rem; color: #fff;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  box-shadow: 0 12px 30px rgba(194, 72, 43, 0.4); animation: popIn .5s cubic-bezier(.2, .8, .25, 1);
}
.thankyou__card h1 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2rem, 5vw, 2.6rem); margin-bottom: 12px; }
.thankyou__card h1 span { color: var(--terra-light); }
.thankyou__card p { color: var(--on-dark-soft); font-size: 1rem; margin-bottom: 10px; }
.thankyou__meta { color: var(--terra-light) !important; font-weight: 500; margin-bottom: 28px !important; }
.thankyou__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.thankyou__brand { margin-top: 30px; letter-spacing: 0.26em; font-size: 0.72rem; color: var(--on-dark-soft); }

@media (max-width: 600px) {
  .subhead .back-link span { display: none; }
  .subfoot__inner { flex-direction: column; text-align: center; }
  .thankyou__actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
