/* ============================================================
   Varchasva Infraproject · La Residentia
   Luxury real-estate landing page
   ============================================================ */

:root {
  /* Luxury palette — navy + warm gold + cream */
  --ink: #0a1628;
  --ink-2: #1c2942;
  --ink-3: #2d3a52;
  --muted: #6b7689;
  --line: #ece6da;
  --line-2: #d9d2c2;
  --paper: #ffffff;
  --cream: #faf7f0;
  --cream-2: #f3eddf;

  --gold: #b89a5e;
  --gold-2: #d4af37;
  --gold-3: #8b7142;
  --gold-soft: #f6efdc;

  --brand: #0a1628;
  --brand-accent: #b89a5e;

  --good: #16a34a;
  --wa: #25d366;
  --wa-dark: #128c7e;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-xs: 0 1px 2px rgba(10,22,40,.05);
  --shadow-sm: 0 4px 14px rgba(10,22,40,.06);
  --shadow: 0 10px 30px rgba(10,22,40,.10);
  --shadow-lg: 0 28px 70px rgba(10,22,40,.20);
  --shadow-gold: 0 14px 40px rgba(184,154,94,.35);

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-3); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); margin: 0 0 .4em; line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(38px, 5.4vw, 68px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 19px; font-weight: 700; }
h4 { font-size: 14px; font-weight: 700; }
p  { color: var(--ink-3); margin: 0 0 .8em; }
.muted { color: var(--muted); font-size: 13px; }
hr.gold { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 36px 0; }

.container { width: min(1220px, 92%); margin: 0 auto; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--ink);
  color: #f0e7cf;
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid rgba(184,154,94,.25);
}
.announce strong { color: var(--gold-2); letter-spacing: .04em; }
.announce .dot { margin: 0 12px; color: var(--gold); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, #f6e2a6, var(--gold) 60%, var(--gold-3));
  color: var(--ink); display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 800; font-size: 22px;
  box-shadow: 0 6px 16px rgba(184,154,94,.40);
  border: 1px solid rgba(255,255,255,.4);
}
.logo-mark.logo-img { background: #fff; padding: 4px; object-fit: contain; }
.logo-text strong {
  display: block; font-family: var(--serif); font-size: 19px; letter-spacing: .3px;
  font-weight: 700;
}
.logo-text small {
  display: block; font-size: 10.5px; color: var(--muted);
  letter-spacing: .18em; text-transform: uppercase; margin-top: 2px;
}
.primary-nav { display: flex; gap: 30px; }
.primary-nav a {
  color: var(--ink-2); font-weight: 500; font-size: 14.5px;
  position: relative; padding-bottom: 2px;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; left: 0; }
@media (max-width: 920px) { .primary-nav { display: none; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  border: 0; cursor: pointer;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-3) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(184,154,94,.5); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--gold); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,.86) 0%, rgba(10,22,40,.55) 55%, rgba(10,22,40,.20) 100%),
    linear-gradient(180deg, rgba(10,22,40,.30) 0%, rgba(10,22,40,.65) 100%),
    url('/images/hero.jpg') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 85% 80%, rgba(184,154,94,.35), transparent 65%);
  z-index: -1;
}

.hero-inner { padding: 70px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .9fr; gap: 50px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.left-only::after { display: none; }
.eyebrow.left-only::before { display: none; }

.hero h1 { color: #fff; font-size: clamp(40px, 5.8vw, 76px); margin-bottom: 14px; }
.hero h1 .accent { color: var(--gold-2); font-style: italic; }
.hero .lead { color: rgba(255,255,255,.85); font-size: 17.5px; max-width: 56ch; margin-bottom: 26px; }
.hindi-line {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--gold-2);
  margin: 0 0 16px;
  letter-spacing: .01em;
}
.hindi-line em { color: #fff; font-style: italic; }
.hero .lead strong { color: var(--gold-2); font-weight: 600; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 600px;
}
.hero-stats > div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 14px 12px;
  border-radius: 10px;
}
.hero-stats strong {
  display: block; font-family: var(--serif); font-size: 22px; color: var(--gold-2);
  font-weight: 700;
}
.hero-stats span { display: block; font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .05em; margin-top: 4px; }

/* Hero side card — Quick property finder */
.finder-card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.finder-card h3 {
  font-family: var(--serif); font-size: 22px; margin-bottom: 4px;
}
.finder-card .finder-sub { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.finder-card .finder-grid { display: grid; gap: 12px; }
.finder-card label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.finder-card input, .finder-card select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-2);
  border-radius: 10px; font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: #fff;
}
.finder-card input:focus, .finder-card select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,154,94,.15); }
.finder-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.finder-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.finder-card .tiny { font-size: 11px; color: var(--muted); text-align: center; margin-top: 6px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-2); font-size: 13.5px; font-weight: 500;
}
.trust-item .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 16px;
}

/* ============================================================
   Highlights bar
   ============================================================ */
.highlights {
  padding: 60px 0;
  background: var(--paper);
}
.highlights-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hl {
  background: #fff; padding: 28px 18px; text-align: center;
  transition: background .2s ease;
}
.hl:hover { background: var(--cream); }
.hl .ic {
  width: 48px; height: 48px; margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-3);
  display: grid; place-items: center; font-size: 22px;
}
.hl strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
.hl span { display: block; font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 880px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.section-head h2 { margin-top: 6px; }
.section-head .section-sub { color: var(--muted); font-size: 15.5px; }
.section-dark .section-head .section-sub { color: rgba(255,255,255,.7); }

/* About */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.about-photo {
  position: relative;
}
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about-photo::before {
  content: ''; position: absolute;
  inset: -16px -16px auto auto;
  width: 70%; height: 70%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-photo .badge-card {
  position: absolute; left: -20px; bottom: 30px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.about-photo .badge-card strong {
  display: block; font-family: var(--serif); color: var(--gold-3); font-size: 28px; font-weight: 700;
}
.about-photo .badge-card span { font-size: 12px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

.brand-quote {
  margin: 18px 0 20px;
  padding: 18px 22px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.5;
}
.brand-quote em { color: var(--gold-3); font-weight: 600; }
.brand-quote cite { display: block; font-style: normal; font-size: 12px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; font-family: var(--sans); }
.bullets { padding: 0; margin: 18px 0 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.bullets li { padding-left: 26px; position: relative; color: var(--ink-2); font-size: 14.5px; }
.bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--gold);
  color: #fff; font-size: 11px; font-weight: 800;
  border-radius: 50%; display: grid; place-items: center;
  top: 3px;
}
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .bullets { grid-template-columns: 1fr; }
  .about-photo::before { display: none; }
  .about-photo .badge-card { position: static; margin-top: -40px; max-width: 280px; }
}

/* ============================================================
   Unit configurations
   ============================================================ */
.units {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}
.unit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.unit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.unit::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.unit:hover::before { transform: scaleX(1); }
.unit .tag-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.unit .unit-name { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); }
.unit .unit-price { color: var(--gold-3); font-size: 13px; font-weight: 600; }
.unit .unit-sizes { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.unit ul { padding: 0; margin: 0; list-style: none; font-size: 13.5px; color: var(--ink-2); }
.unit ul li { padding: 6px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; }
.unit ul li:last-child { border-bottom: 0; }
.unit ul li span { color: var(--muted); }
.unit-cta { margin-top: 16px; display: block; text-align: center; font-size: 13px; color: var(--gold-3); font-weight: 600; padding-top: 12px; border-top: 1px solid var(--line); }

/* ============================================================
   Amenities grid (icons)
   ============================================================ */
.amenities-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.amenity {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.amenity:hover { transform: translateY(-3px); border-color: var(--gold); background: var(--cream); }
.amenity .ic { font-size: 32px; margin-bottom: 8px; line-height: 1; }
.amenity .nm { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* ============================================================
   Gallery with hover zoom
   ============================================================ */
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.gallery .proj {
  display: block; background: #fff;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: zoom-in;
}
.gallery .proj:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.gallery .proj .img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.gallery .proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery .proj:hover img { transform: scale(1.07); }
.gallery .proj .proj-body { padding: 18px; }
.badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-3);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px;
}
.gallery .proj h3 { margin: 4px 0; font-family: var(--serif); font-size: 18px; }
.gallery .proj p { color: var(--muted); font-size: 13px; margin: 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,22,40,.94);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  border: 0; cursor: pointer; font-size: 22px;
  display: grid; place-items: center;
}
.lightbox .close:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   Connectivity
   ============================================================ */
.conn-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start;
}
.conn-list { display: grid; gap: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.conn-list .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
}
.conn-list .row:last-child { border-bottom: 0; }
.conn-list .row .place { display: flex; align-items: center; gap: 12px; }
.conn-list .row .place .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gold-soft); color: var(--gold-3);
  display: grid; place-items: center; font-size: 16px;
}
.conn-list .row .place strong { font-weight: 600; color: var(--ink); font-size: 14px; }
.conn-list .row .place span { display: block; color: var(--muted); font-size: 12px; }
.conn-list .row .distance { font-family: var(--serif); color: var(--gold-3); font-size: 16px; font-weight: 700; }
.map-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 380px;
  position: relative;
  background:
    radial-gradient(circle at 30% 40%, var(--gold-soft) 0%, transparent 50%),
    linear-gradient(135deg, #f5f1e6 0%, #e9e1cc 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 30px;
}
.map-card .map-pin { font-size: 64px; line-height: 1; margin-bottom: 14px; }
.map-card h3 { font-family: var(--serif); font-size: 22px; }
.map-card .addr { color: var(--muted); margin: 6px 0 18px; font-size: 14px; }
@media (max-width: 940px) { .conn-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   EMI calculator
   ============================================================ */
.emi-wrap {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center;
  position: relative; overflow: hidden;
}
.emi-wrap::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,154,94,.4), transparent 60%);
}
.emi-wrap h2 { color: #fff; }
.emi-wrap p { color: rgba(255,255,255,.75); }
.emi-controls { display: grid; gap: 18px; }
.emi-row label { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.emi-row label b { color: var(--gold-2); font-family: var(--serif); font-size: 16px; }
.emi-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 6px; background: rgba(255,255,255,.15); border-radius: 4px; outline: none;
}
.emi-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-2); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(184,154,94,.25);
  border: 2px solid #fff;
}
.emi-output {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,154,94,.3);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  position: relative; z-index: 1;
}
.emi-output .lbl { font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .15em; text-transform: uppercase; }
.emi-output .val {
  font-family: var(--serif); font-size: 48px; color: var(--gold-2); font-weight: 700;
  margin: 10px 0; letter-spacing: -.01em;
}
.emi-output .sub { font-size: 13px; color: rgba(255,255,255,.65); }
.emi-output .btn { margin-top: 18px; }
@media (max-width: 940px) {
  .emi-wrap { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ============================================================
   Why this location
   ============================================================ */
.why-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card .icn {
  width: 52px; height: 52px;
  background: var(--gold-soft); border-radius: 12px;
  display: grid; place-items: center; font-size: 24px;
  margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 19px; }
.why-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================================================
   Service areas (NCR map)
   ============================================================ */
.cities {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 24px;
}
.city {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.city:hover { background: rgba(184,154,94,.12); border-color: var(--gold); transform: translateY(-3px); }
.city .ic { font-size: 28px; margin-bottom: 8px; line-height: 1; }
.city .nm { font-family: var(--serif); color: #fff; font-size: 17px; font-weight: 700; }
.city .sub { color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   Instagram reels strip
   ============================================================ */
.reels-strip {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
@media (min-width: 1100px) {
  .reels-strip { grid-template-columns: repeat(5, 1fr); }
}
.reel {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  background: #000;
}
.reel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .25s ease;
}
.reel:hover img { transform: scale(1.06); filter: brightness(.7); }
.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink); font-size: 18px;
  display: grid; place-items: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.4);
  transition: transform .25s ease, background .25s ease;
}
.reel:hover .reel-play { background: var(--gold-2); transform: translate(-50%, -50%) scale(1.1); }
.reel-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff; font-size: 12px; font-weight: 500;
  text-align: center;
}

/* ============================================================
   Instagram feed grid
   ============================================================ */
.ig-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.ig-tile {
  position: relative; aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .25s ease;
}
.ig-tile:hover img { transform: scale(1.08); filter: brightness(.85); }
.ig-tile .ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,.8) 0%, rgba(10,22,40,0) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px;
  opacity: 0; transition: opacity .2s ease;
  color: #fff;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile .ig-overlay span { font-size: 18px; line-height: 1; margin-bottom: 4px; }
.ig-tile .ig-overlay p { font-size: 12.5px; font-weight: 500; color: #fff; margin: 0; line-height: 1.3; }
@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Testimonials / reviews
   ============================================================ */
.testimonials {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: -18px; left: 24px;
  font-family: var(--serif); font-size: 80px; color: var(--gold);
  line-height: 1;
}
.testimonial .stars { color: var(--gold-2); letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.testimonial .quote { color: var(--ink-2); font-size: 14.5px; margin-bottom: 18px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px; font-weight: 700;
}
.testimonial .author strong { display: block; color: var(--ink); font-size: 14px; }
.testimonial .author span { color: var(--muted); font-size: 12px; }

/* ============================================================
   Site visit / contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 22px; }
.contact-list > div { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gold-soft); color: var(--gold-3);
  display: grid; place-items: center;
  font-size: 18px; flex: 0 0 42px;
}
.contact-list strong { font-size: 14px; color: var(--ink); }
.contact-list a { color: var(--ink-2); font-size: 14px; }
.contact-list a:hover { color: var(--gold-3); }

.book-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
}
.book-card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 4px; }
.book-card .fineprint { color: var(--muted); font-size: 13px; margin: 4px 0 18px; }
.lead-form { display: grid; gap: 12px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-2);
  border-radius: 10px; font: inherit; color: var(--ink); background: #fff;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,154,94,.15);
}
.lead-form textarea { min-height: 80px; resize: vertical; }
.lead-form button { margin-top: 4px; justify-content: center; padding: 14px; font-size: 15px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; color: var(--ink); font-size: 15px;
  list-style: none; position: relative;
  padding-right: 50px;
}
.faq summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 22px; color: var(--gold);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details > div { padding: 0 22px 18px; color: var(--ink-3); font-size: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 60px 0 22px; }
.site-footer .logo-text strong { color: #fff; }
.site-footer .logo-text small { color: var(--gold-2); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid h4 {
  color: #fff; font-family: var(--sans); font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.footer-grid a { display: block; color: #cbd5e1; font-size: 14px; padding: 5px 0; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-grid .muted { color: #9bb0d6; font-size: 13.5px; }
.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff; padding: 0; font-size: 15px;
  transition: background .2s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--ink); }
.copyright {
  padding-top: 22px; font-size: 13px; color: #9bb0d6;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.copyright a { color: #9bb0d6; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* ============================================================
   Floating WhatsApp + sticky mobile bar
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  z-index: 80;
  animation: waPulse 2.2s infinite;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(10,22,40,.08);
  z-index: 70;
  padding: 10px 12px;
  gap: 8px;
}
.mobile-bar a {
  flex: 1; padding: 11px 0;
  border-radius: 10px; text-align: center;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  color: #fff;
}
.mobile-bar .call { background: var(--ink); }
.mobile-bar .wa   { background: var(--wa); }
.mobile-bar .book { background: linear-gradient(135deg, var(--gold), var(--gold-3)); }

@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .wa-float { bottom: 82px; }
}

/* ============================================================
   Utility
   ============================================================ */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.tag-pill {
  display: inline-block; background: var(--gold-soft); color: var(--gold-3);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
