/* =========================================================
   Kohinoor Royale Towers — Art Deco Landing Page
   Palette: deep navy + champagne gold + ivory
   ========================================================= */

:root {
  /* Deep oxblood base (was navy) */
  --navy: #2a0d12;
  --navy-2: #381219;
  --navy-3: #4a1922;
  --ink: #2a1418;
  /* Ruby-red accent (was gold) */
  --gold: #be2f39;
  --gold-2: #d85a62;
  --gold-deep: #8c1a24;
  --ivory: #f7f0ea;
  --cream: #fcf8f4;
  --muted: #9c8b8f;
  --muted-light: #d8c8ca;
  --white: #ffffff;
  --line: rgba(190, 47, 57, 0.28);

  --shadow-sm: 0 6px 18px rgba(42, 13, 18, 0.10);
  --shadow-md: 0 18px 50px rgba(42, 13, 18, 0.16);
  --shadow-lg: 0 30px 80px rgba(42, 13, 18, 0.24);

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

  --container: 1180px;
  --radius: 14px;
  --topbar-h: 0px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  -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; }

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

/* ---------- Icons (Font Awesome) ---------- */
.btn i, .nav__link i, .header__phone i, .hero__chips li i,
.contact__points li i, .mobile-cta__btn i, .footer i { font-size: 0.95em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--ff-body);
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.04em;
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  position: relative; white-space: nowrap;
}
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(140, 26, 36, 0.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(140, 26, 36, 0.45); }
.btn--ghost {
  background: transparent; color: var(--gold-2);
  border: 1.5px solid var(--gold-2);
}
.btn--ghost:hover { background: var(--gold); color: #fff; transform: translateY(-3px); border-color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(42, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(190,47,57,0.18);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ivory); }
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 8px; overflow: hidden; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--ff-display); letter-spacing: 0.14em; font-size: 1.05rem; font-weight: 700; }
.brand__text small { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; }
.brand--light { color: var(--ivory); }
.brand__logo { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
@media (max-width: 420px) { .brand__logo { height: 38px; } }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  color: var(--muted-light); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.03em;
  padding: 8px 14px; border-radius: 4px; transition: color .2s ease;
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta {
  color: #fff; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  margin-left: 8px; font-weight: 500;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { color: #fff; transform: translateY(-1px); }

.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ivory); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 4px;
}
.header__phone:hover { border-color: var(--gold); color: var(--gold-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-2); 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;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--ivory);
  padding: clamp(70px, 11vw, 130px) 0 clamp(110px, 14vw, 170px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(100deg, rgba(42,13,18,0.96) 0%, rgba(42,13,18,0.82) 42%, rgba(42,13,18,0.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(190,47,57,0.18), transparent 45%),
    url("images/grand-entrance.jpg");
  background-size: cover; background-position: center right;
}
.hero__inner { max-width: 720px; }
.hero__eyebrow {
  font-family: var(--ff-serif); font-size: 1.1rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 18px; padding-left: 4px;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero__title span {
  background: linear-gradient(120deg, var(--gold-2), #e7949b 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__logo {
  width: min(470px, 84%); height: auto; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}
.hero__sub {
  font-family: var(--ff-serif); font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 500;
  color: var(--muted-light); max-width: 560px; margin-bottom: 30px;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 40px; font-size: 0.85rem; color: var(--ivory);
}
.hero__chips--rera { border-color: rgba(120,200,140,0.5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Offers card */
.offers {
  position: absolute; right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  bottom: -54px; z-index: 5; width: 320px; max-width: calc(100% - 48px);
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius); padding: 26px 26px 22px;
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold);
}
.offers__title { font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: 14px; color: var(--ink); }
.offers__list { display: grid; gap: 10px; }
.offers__list li {
  position: relative; padding-left: 26px; font-size: 0.9rem; color: #3a3f4d;
}
.offers__list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 2px; color: var(--gold-deep); font-size: 0.82rem;
}
.offers__note { margin-top: 14px; font-size: 0.72rem; color: var(--muted); font-style: italic; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.eyebrow {
  font-family: var(--ff-serif); font-size: 1rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-block; margin-bottom: 12px;
}
.section__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.1; color: var(--ink);
}
.section__lead { margin-top: 16px; color: #5a606e; font-size: 1.02rem; }
.rule {
  display: block; width: 80px; height: 0; margin: 22px auto 0; position: relative;
  border-top: 1px solid var(--gold);
}
.rule::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 10px;
  transform: translate(-50%, -50%) rotate(45deg); background: var(--gold);
}

/* ---------- Overview ---------- */
.overview { background: var(--cream); }
.overview__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.overview__copy p { margin-bottom: 18px; color: #444b59; font-size: 1.05rem; }
.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(--white); padding: 22px 20px; display: flex; flex-direction: column; gap: 4px;
}
.highlights__k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.highlights__v { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }

.rera-badge {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid #4caf7d;
  padding: 14px 22px; border-radius: 8px; box-shadow: var(--shadow-sm);
  font-size: 0.92rem; color: #3a3f4d;
}
.rera-badge { margin-left: auto; margin-right: auto; }
.overview .rera-badge { display: flex; width: fit-content; }
.rera-badge__tick { color: #4caf7d; display: inline-flex; align-items: center; }
.rera-badge__tick i { font-size: 1.25em; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card {
  background: var(--white); border: 1px solid #ece3d2; border-radius: var(--radius);
  padding: 34px 28px; position: relative; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.price-card--feature {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--ivory);
  border-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-md);
}
.price-card--feature:hover { transform: translateY(-14px); }
.price-card__ribbon {
  position: absolute; top: 20px; right: -54px; width: 180px;
  transform: rotate(45deg); text-align: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.price-card__tag {
  align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--line); border-radius: 30px; padding: 5px 14px; margin-bottom: 18px;
}
.price-card--feature .price-card__tag { color: var(--gold-2); border-color: var(--line); }
.price-card__type { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.price-card__area { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.price-card--feature .price-card__area { color: var(--muted-light); }
.price-card__area span { font-weight: 600; color: inherit; }
.price-card__price {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 22px;
}
.price-card--feature .price-card__price { color: var(--gold-2); }
.price-card__price small { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 400; color: var(--muted); letter-spacing: 0.05em; }
.price-card__feats { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-card__feats li { position: relative; padding-left: 24px; font-size: 0.9rem; color: #555b69; }
.price-card--feature .price-card__feats li { color: var(--muted-light); }
.price-card__feats li::before { content: "◆"; position: absolute; left: 0; color: var(--gold-deep); font-size: 0.7rem; top: 3px; }
.price-card--feature .price-card__feats li::before { color: var(--gold-2); }
.price-card > .btn { margin-top: auto; }
.pricing__offer {
  width: fit-content; max-width: 100%; margin: 34px auto 0; text-align: center;
  font-size: 0.9rem; font-weight: 500; color: var(--gold-deep);
  background: rgba(190,47,57,0.12); border: 1px solid var(--line);
  padding: 11px 24px; border-radius: 40px;
}
.pricing__disclaimer { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* ---------- Amenities ---------- */
.amenities { background: var(--navy); color: var(--ivory); position: relative; }
.amenities .eyebrow { color: var(--gold-2); }
.amenities .section__title { color: var(--ivory); }
.amenities .section__lead { color: var(--muted-light); }
.amenities__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1;
}
.amenity {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(190,47,57,0.18);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.amenity:hover { transform: translateY(-6px); background: rgba(190,47,57,0.1); border-color: var(--gold); }
.amenity__ico {
  display: inline-grid; place-items: center; width: 62px; height: 62px;
  border-radius: 50%; background: rgba(190,47,57,0.12); border: 1px solid var(--line);
  margin-bottom: 16px;
}
.amenity__ico i { font-size: 27px; color: var(--gold-2); }
.amenity h3 { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; color: var(--ivory); }
.amenity p { font-size: 0.82rem; color: var(--muted-light); }

/* ---------- Location ---------- */
.location { background: var(--cream); }
.location__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.timeline { position: relative; padding-left: 8px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.timeline::before { content: ""; position: absolute; left: 70px; top: 14px; bottom: 14px; width: 1px; background: var(--line); }
.timeline li { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 28px; padding: 14px 0; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: 66px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 9px; height: 9px; background: var(--gold); box-shadow: 0 0 0 4px var(--cream);
}
.timeline__time {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--gold-deep); text-align: right;
}
.timeline__place { font-size: 0.98rem; color: #3a3f4d; }

.location__map { display: flex; flex-direction: column; gap: 16px; }
.location__map-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.location__map-card h3 { font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: 6px; }
.location__map-card p { color: #5a606e; margin-bottom: 14px; }
.location__map-frame {
  position: relative; flex: 1; min-height: 280px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.location__iframe {
  width: 100%; height: 100%; min-height: 300px; border: 0; display: block;
  object-fit: cover; filter: saturate(1.05);
}
/* Transparent overlay: clicking the map opens the enquiry popup */
.location__map-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: 0; transition: background .25s ease;
}
.location__map-overlay span {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff;
  padding: 11px 22px; border-radius: 40px; font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 10px 24px rgba(140,26,36,0.4);
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.location__map-overlay:hover, .location__map-overlay:focus-visible {
  background: rgba(42,13,18,0.28); outline: none;
}
.location__map-overlay:hover span, .location__map-overlay:focus-visible span {
  opacity: 1; transform: translateY(0);
}

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--cream), #fff); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px;
}
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm); transition: transform .4s ease, box-shadow .4s ease;
}
.gallery__item::after {
  content: "\f002"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; z-index: 3;
  display: grid; place-items: center; font-size: 1.7rem; color: var(--ivory);
  background: rgba(42,13,18,0.5);
  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%; }
/* gradient scrim so captions stay legible over photos */
.gallery__item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,8,11,0.6) 0%, transparent 45%);
}
.gallery__caption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--ff-display); color: var(--ivory); font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none; place-items: center;
  background: rgba(26,8,11,0.9); backdrop-filter: blur(6px); padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox__figure { max-width: 880px; width: 100%; text-align: center; }
.lightbox__img {
  width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius);
  border: 2px solid var(--gold); box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.lightbox__figure figcaption { color: var(--gold-2); font-family: var(--ff-display); font-size: 1.2rem; margin-top: 16px; }
.lightbox__close {
  position: absolute; top: 20px; right: 28px; font-size: 2.4rem; color: var(--ivory); line-height: 1;
  width: 48px; height: 48px; border-radius: 50%; transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.12); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.accordion { display: grid; gap: 14px; }
.acc {
  background: var(--white); border: 1px solid #ece3d2; border-radius: 10px; overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.acc.is-open { border-color: var(--gold); 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); font-family: var(--ff-body);
}
.acc__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s ease;
}
.acc__icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.acc__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.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: #555b69; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info .eyebrow { color: var(--gold-2); }
.contact__info .section__title { color: var(--ivory); text-align: left; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.contact__info > p { color: var(--muted-light); margin: 16px 0 26px; max-width: 460px; }
.contact__points { display: grid; gap: 14px; margin-bottom: 34px; }
.contact__points li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--ivory); }
.contact__points a { color: var(--gold-2); border-bottom: 1px solid transparent; }
.contact__points a:hover { border-color: var(--gold-2); }

.qr { display: flex; gap: 20px; align-items: center; padding: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: var(--radius); }
.qr__box {
  width: 104px; flex-shrink: 0; background: var(--white); border-radius: 8px;
  padding: 7px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.qr__box img { width: 100%; height: auto; display: block; border-radius: 4px; }
.qr__meta { display: flex; flex-direction: column; gap: 3px; }
.qr__meta strong { color: var(--ivory); font-size: 0.95rem; }
.qr__num { color: var(--gold-2); font-weight: 600; letter-spacing: 0.05em; }
.qr__meta small { color: var(--muted); font-size: 0.78rem; }
.qr__meta a { color: var(--gold-2); font-size: 0.82rem; }

/* Form */
.form-card {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); position: relative;
}
.form-card__badge {
  position: absolute; top: -13px; left: 34px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff;
  font-size: 0.7rem; 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.7rem; margin: 8px 0 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 500; color: #4a4f5c; margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field select {
  width: 100%; padding: 13px 16px; font-family: var(--ff-body); font-size: 0.95rem; color: var(--ink);
  background: var(--white); border: 1.5px solid #e3dac8; border-radius: 8px; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(190,47,57,0.18); }
.field.is-invalid input, .field.is-invalid select { border-color: #d9534f; }
.field__err { display: block; min-height: 0; font-size: 0.76rem; color: #d9534f; margin-top: 5px; }
.form-card .btn { margin-top: 6px; }
.form-card__legal { font-size: 0.72rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-card__legal a { color: var(--gold-deep); text-decoration: underline; }
.form-card__success {
  margin-top: 16px; padding: 14px; background: rgba(76,175,125,0.12); border: 1px solid #4caf7d;
  border-radius: 8px; color: #2f7a55; font-size: 0.9rem; text-align: center; font-weight: 500;
}

/* ---------- Footer (simple, single-project) ---------- */
.footer { background: #1a0709; color: var(--muted-light); font-size: 0.9rem; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 52px 24px 40px;
}
.footer__brand { max-width: 420px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand .brand__text small { color: var(--gold); }
.footer__brand p { margin-bottom: 16px; color: var(--muted); font-size: 0.9rem; }
.footer__tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); border: 1px solid var(--line); padding: 6px 16px; border-radius: 30px; }
.footer__by { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.footer__by span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.footer__by img { height: 34px; width: auto; background: #fff; padding: 6px 10px; border-radius: 6px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }

.footer__rera { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; }
.footer__rera-label { color: var(--gold-2); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.74rem; font-weight: 600; margin-bottom: 14px; }
.footer__fine { color: var(--muted); font-size: 0.78rem; line-height: 1.75; }
.footer__fine + .footer__fine { margin-top: 14px; }

.footer__bar { background: #120406; padding: 18px 0; }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bar p { font-size: 0.78rem; color: var(--muted); }
.footer__links a:hover { color: var(--gold-2); }

/* ---------- 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(26,8,11,0.86); backdrop-filter: blur(6px);
  animation: popFade .3s ease;
}
.popup__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px; max-height: calc(100vh - 40px); overflow: hidden;
  background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold);
  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: 12px; right: 14px; z-index: 3;
  width: 38px; height: 38px; 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); }

/* Body */
.popup__body { position: relative; padding: 32px 28px; overflow-y: auto; }
.popup__title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--ink); line-height: 1.15; }
.popup__sub { color: #5a606e; 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: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45); transition: transform .25s ease;
  animation: floaty 2.6s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.mobile-cta { display: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); z-index: 200; transition: width .1s linear;
}

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

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Fixed mobile action bar — shown on phones & small tablets */
@media (max-width: 768px) {
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--navy); border-top: 1px solid var(--line); padding: 8px;
    gap: 8px; box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-cta__btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    text-align: center; padding: 13px 6px; border-radius: 8px;
    font-size: 0.86rem; font-weight: 500; color: var(--ivory); border: 1px solid var(--line);
  }
  .mobile-cta__btn--call { background: rgba(255,255,255,0.05); }
  .mobile-cta__btn--wa { background: #25d366; color: #fff; border-color: #25d366; }
  .mobile-cta__btn--enquire { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff; border: none; }
  .fab-wa { bottom: 84px; }
  body { padding-bottom: 70px; }
}

@media (max-width: 900px) {
  .header__phone { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-2); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__link::after { display: none; }
  .nav__link--cta { margin: 12px 0 0; text-align: center; }

  .overview__grid { grid-template-columns: 1fr; gap: 36px; }
  .price-card--feature { transform: none; }
  .price-card--feature:hover { transform: translateY(-8px); }
  .location__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery__grid { grid-auto-rows: 160px; }
}

@media (max-width: 680px) {
  .section { padding: clamp(54px, 13vw, 72px) 0; }
  .section__head { margin-bottom: 34px; }
  .section__lead { font-size: 0.96rem; }

  .offers {
    position: static; width: 100%; max-width: 100%; margin-top: 40px; bottom: auto; right: auto;
  }
  .hero { padding-bottom: 64px; }
  .hero__eyebrow { font-size: 0.92rem; letter-spacing: 0.26em; margin-bottom: 14px; }
  .hero__logo { width: min(340px, 86%); }
  .hero__title { margin-bottom: 16px; }
  .hero__sub { font-size: 1.08rem; margin-bottom: 24px; }
  .hero__chips { gap: 9px; margin-bottom: 26px; }

  .highlights { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .amenities__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .amenity { padding: 24px 16px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 12px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
  .timeline li { grid-template-columns: 60px 1fr; gap: 20px; }
  .timeline::before { left: 60px; }
  .timeline li::before { left: 56px; }

  .qr { flex-wrap: wrap; gap: 16px; }
  .form-card { padding: 30px 22px; }
  .form-card__title { font-size: 1.45rem; }

  .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__contact { flex-direction: row; width: 100%; }
  .footer__contact .btn { flex: 1; }
  .footer__bar-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* Popup — compact card on phones */
  .popup { padding: 16px; }
  .popup__body { padding: 30px 22px 26px; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .brand__logo { height: 40px; }
  .nav { padding: 10px 20px 22px; }
  .nav__link { padding: 15px 6px; font-size: 0.95rem; }
  .section__title { font-size: clamp(1.6rem, 7vw, 2rem); }
  .price-card { padding: 28px 24px; }
  .acc__q { padding: 18px 18px; font-size: 0.95rem; }
  .acc__a p { padding: 0 18px 18px; }
  .contact__info .section__title { font-size: 1.7rem; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .brand__logo { height: 36px; }
  .hero__chips { width: 100%; }
  .hero__chips li { font-size: 0.78rem; padding: 8px 12px; width: 100%; }
  .hero__cta { width: 100%; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .btn { padding: 13px 22px; }
  .amenities__grid { gap: 12px; }
  .amenity h3 { font-size: 1rem; }
  .footer__contact { flex-direction: column; }
}

/* =========================================================
   Standalone pages (Privacy / Terms / Thank You)
   ========================================================= */
.subhead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(42, 13, 18, 0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(190,47,57,0.18);
}
.subhead__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.subhead .back-link { color: var(--muted-light); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 7px; }
.subhead .back-link:hover { color: var(--gold-2); }

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--ivory); padding: clamp(56px, 9vw, 96px) 0 clamp(40px, 7vw, 70px); text-align: center;
}
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero h1 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); margin-top: 8px; }
.page-hero .updated { color: var(--muted); font-size: 0.85rem; margin-top: 12px; }

.legal { padding: clamp(48px, 8vw, 88px) 0; background: var(--cream); }
.legal__doc { background: var(--white); border: 1px solid #ece3d2; border-radius: var(--radius); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow-sm); }
.legal__doc h2 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--ink); margin: 34px 0 12px; padding-top: 6px; }
.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: #4a4f5c; 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(--gold-deep); text-decoration: underline; }
.legal__doc .lead { font-size: 1.02rem; color: #3a3f4d; border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 26px; }

.subfoot { background: #1a0709; color: var(--muted); padding: 26px 0; }
.subfoot__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }
.subfoot a { color: var(--muted-light); }
.subfoot a:hover { color: var(--gold-2); }

/* Thank You page */
.thankyou {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--ivory); padding: 40px 24px;
}
.thankyou__card {
  max-width: 560px; width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: clamp(36px, 6vw, 60px) clamp(26px, 5vw, 50px);
  box-shadow: var(--shadow-lg);
}
.thankyou__check {
  width: 88px; height: 88px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2.6rem; color: #fff;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  box-shadow: 0 12px 30px rgba(140,26,36,0.45); animation: popIn .5s cubic-bezier(.2,.8,.25,1);
}
.thankyou__card h1 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 14px; }
.thankyou__card h1 span { color: var(--gold-2); }
.thankyou__card p { color: var(--muted-light); font-size: 1.02rem; margin-bottom: 10px; }
.thankyou__meta { color: var(--gold-2); font-weight: 500; margin-bottom: 30px !important; }
.thankyou__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.thankyou__brand { margin-top: 32px; font-family: var(--ff-display); letter-spacing: 0.26em; font-size: 0.72rem; color: var(--gold); }

@media (max-width: 600px) {
  .subhead .brand__text { display: none; }
  .legal__doc { padding: 26px 20px; }
}

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