/* ============================================================
   NESTORA HOMES — Pune's friendly home builder
   Palette: deep blue #12355B / teal #1F6F8B / yellow #FFB703
            cream #FFF4E0 / soft white #F7F7F5
   ============================================================ */

:root {
  --deep: #12355B;
  --deep-2: #0E2A4A;
  --teal: #1F6F8B;
  --teal-soft: #DFEEF2;
  --accent: #FFB703;
  --accent-soft: #FFE9B8;
  --cream: #FFF4E0;
  --soft: #F7F7F5;
  --white: #FFFFFF;
  --ink: #1B2B3A;
  --muted: #5A6B7C;
  --line: #E4E9EE;
  --green: #2E8B57;
  --red: #C2452E;

  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 14px rgba(18, 53, 91, 0.08);
  --shadow-md: 0 14px 34px rgba(18, 53, 91, 0.12);
  --shadow-lg: 0 26px 60px rgba(18, 53, 91, 0.18);

  --header-h: 72px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--deep);
  line-height: 1.12;
  margin: 0 0 0.55em;
  font-weight: 700;
}

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.2em; }

button { font-family: inherit; cursor: pointer; }

svg { display: block; }

.icon {
  width: 24px; height: 24px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}

.sprite { display: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px; height: 3px; border-radius: 3px;
  background: var(--accent);
}

.section-title { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.02em; }
.section-sub { max-width: 640px; color: var(--muted); font-size: 1.06rem; }
.section-head { margin-bottom: 44px; }
.section-head.split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.big-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(18, 53, 91, 0.22);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.btn .icon { width: 20px; height: 20px; }

.btn-primary { background: var(--deep); color: var(--white); }
.btn-primary:hover { background: var(--deep-2); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent); color: var(--deep); }
.btn-accent:hover { background: #FFC93D; color: var(--deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 183, 3, 0.4); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #17576E; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--deep); border-color: rgba(18, 53, 91, 0.35); }
.btn-ghost:hover { border-color: var(--deep); background: rgba(18, 53, 91, 0.05); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--deep); }
.btn-white:hover { background: var(--cream); color: var(--deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1DBE5A; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35); }

.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--white);
  color: var(--deep);
  border: 1px solid var(--line);
}
.chip .icon { width: 15px; height: 15px; }
.chip.teal { background: var(--teal-soft); color: var(--teal); border-color: transparent; }
.chip.accent { background: var(--accent-soft); color: #7a5400; border-color: transparent; }
.chip.cream { background: var(--cream); color: var(--deep); border-color: transparent; }
.chip.green { background: #E2F3E8; color: var(--green); border-color: transparent; }
.chip.deep { background: var(--deep); color: var(--white); border-color: transparent; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-badge.ready { background: #E2F3E8; color: var(--green); }
.status-badge.build { background: var(--accent-soft); color: #7a5400; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.topbar {
  background: var(--deep);
  color: var(--cream);
  font-size: 0.82rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.topbar a { color: var(--cream); }
.topbar .t-left, .topbar .t-right { display: flex; align-items: center; gap: 18px; }
.topbar .icon { width: 14px; height: 14px; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--deep);
  display: grid;
  place-items: center;
  flex: none;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-name { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--deep); line-height: 1; letter-spacing: -0.02em; }
.logo-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

.main-nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.main-nav a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--deep);
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: var(--cream); color: var(--teal); }
.main-nav a[aria-current="page"] { background: var(--deep); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-wa {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  transition: transform 0.2s ease;
}
.header-wa:hover { transform: translateY(-2px); color: #fff; }
.header-wa .icon { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  place-items: center;
  color: var(--deep);
}
.nav-toggle .icon { width: 24px; height: 24px; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 28px;
  z-index: 59;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mobile-nav a {
  display: block;
  padding: 13px 6px;
  font-weight: 600;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current="page"] { color: var(--teal); }
.mobile-nav .btn { width: 100%; margin-top: 6px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--soft) 100%);
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-bg-shape { position: absolute; pointer-events: none; }
.hero-bg-shape.one {
  top: -160px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(31, 111, 139, 0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg-shape.two {
  bottom: -120px; left: -90px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content .eyebrow { color: var(--deep); }
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-title .hl {
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 12"><path d="M2 9 Q 60 2 120 6 T 198 5" fill="none" stroke="%23FFB703" stroke-width="5" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.9;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero-sub strong { color: var(--deep); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-trust .rating-badge {
  background: var(--accent);
  color: var(--deep);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.hero-trust strong { color: var(--deep); display: block; font-size: 1rem; }

/* Hero media frame */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  aspect-ratio: 4 / 4.7;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--deep);
  animation: floaty 6s ease-in-out infinite;
}
.hero-card .icon-wrap {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: none;
}
.hero-card .icon-wrap.accent { background: var(--accent-soft); color: #7a5400; }
.hero-card .icon-wrap.teal { background: var(--teal-soft); color: var(--teal); }
.hero-card .icon-wrap.deep { background: var(--deep); color: var(--white); }
.hero-card .icon { width: 20px; height: 20px; }
.hero-card small { display: block; color: var(--muted); font-weight: 500; }

.hero-card.c1 { top: 34px; left: -30px; }
.hero-card.c2 { bottom: 26%; right: -34px; animation-delay: 1.6s; }
.hero-card.c3 { bottom: -26px; left: 8%; animation-delay: 3s; }

.hero-doodle { position: absolute; top: -34px; right: -22px; width: 130px; opacity: 0.9; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Discovery bar ---------- */
.discovery {
  position: relative;
  margin-top: -58px;
  z-index: 5;
}
.discovery-card {
  background: linear-gradient(135deg, var(--accent) 0%, #FFC93D 60%, #FFD463 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}
.discovery-fields {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 53, 91, 0.75);
  margin-bottom: 7px;
}
.field select, .field input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%231F6F8B" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.discovery-card .btn { background: var(--deep); color: var(--white); padding: 13px 24px; white-space: nowrap; }
.discovery-card .btn:hover { background: var(--deep-2); color: var(--white); }
.discovery-note {
  margin-top: 13px;
  font-size: 0.82rem;
  color: rgba(18, 53, 91, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.discovery-note .icon { width: 15px; height: 15px; }

/* ---------- Section spacing ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--white); }
.section.cream-bg { background: var(--cream); }
.section.deep-bg { background: var(--deep); color: var(--cream); }
.section.deep-bg .section-title { color: var(--white); }
.section.deep-bg .section-sub { color: rgba(255, 244, 224, 0.82); }
.section.deep-bg .eyebrow { color: var(--accent); }

/* ---------- Editorial blocks ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.editorial-card { position: relative; }
.editorial-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.editorial-card:hover .editorial-media img { transform: scale(1.05); }

.editorial-media.shape-a { aspect-ratio: 3 / 3.9; }
.editorial-media.shape-b { aspect-ratio: 3 / 3.3; border-radius: var(--radius-lg); }
.editorial-media.shape-c { aspect-ratio: 1 / 1; border-radius: 50%; margin-top: 22px; }

.editorial-media .stamp {
  position: absolute;
  background: var(--accent);
  color: var(--deep);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.editorial-media .stamp.tl { top: 16px; left: 16px; }
.editorial-media .stamp .icon { width: 16px; height: 16px; }

.editorial-body { padding-top: 22px; }
.editorial-body h3 { font-size: 1.55rem; margin-bottom: 10px; }
.editorial-body p { color: var(--muted); font-size: 0.98rem; }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 6px;
}
.editorial-link .icon { width: 18px; height: 18px; transition: transform 0.25s ease; }
.editorial-link:hover .icon { transform: translateX(5px); }
.editorial-card .index {
  position: absolute;
  top: -14px; right: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 183, 3, 0.9);
  z-index: 2;
}

/* ---------- Projects scroller ---------- */
.scroller-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.scroller-nav { display: flex; gap: 10px; }
.scroller-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--deep);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.scroller-btn:hover { background: var(--deep); border-color: var(--deep); color: var(--white); }
.scroller-btn .icon { width: 20px; height: 20px; }

.projects-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 340px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 26px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--line);
}
.projects-scroller::-webkit-scrollbar { height: 8px; }
.projects-scroller::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 8px; }
.projects-scroller::-webkit-scrollbar-track { background: var(--line); border-radius: 8px; }

.project-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.project-media { position: relative; aspect-ratio: 3 / 3.6; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-media .status-badge { position: absolute; top: 14px; left: 14px; box-shadow: var(--shadow-sm); }

.project-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.project-name { font-size: 1.3rem; margin: 0; }
.project-loc { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.project-loc .icon { width: 16px; height: 16px; color: var(--teal); }
.project-config { display: flex; flex-wrap: wrap; gap: 7px; }
.project-price { font-size: 0.95rem; color: var(--muted); }
.project-price strong { color: var(--deep); font-family: var(--font-display); font-size: 1.25rem; }
.project-cta { margin-top: auto; display: flex; gap: 10px; }
.project-cta .btn { flex: 1; padding: 12px 10px; font-size: 0.92rem; }

/* ---------- EMI calculator ---------- */
.emi-section { background: linear-gradient(150deg, var(--deep) 0%, var(--deep-2) 70%); }
.emi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.emi-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.emi-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.emi-label span { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.emi-label output {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--deep);
}
.emi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 7px;
  background: var(--line);
  outline: none;
  margin: 0 0 24px;
}
.emi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(18, 53, 91, 0.3);
  cursor: pointer;
}
.emi-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(18, 53, 91, 0.3);
  cursor: pointer;
}
.emi-result {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.emi-result small { text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; font-size: 0.74rem; color: var(--teal); }
.emi-result .emi-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--deep);
  line-height: 1.1;
  margin: 6px 0 4px;
}
.emi-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.emi-breakdown div {
  background: var(--white);
  border-radius: 14px;
  padding: 13px 10px;
  box-shadow: var(--shadow-sm);
}
.emi-breakdown small { display: block; font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.emi-breakdown strong { font-family: var(--font-display); color: var(--deep); font-size: 1.02rem; }
.emi-note { margin-top: 16px; font-size: 0.8rem; color: var(--muted); }

.emi-side { color: var(--cream); }
.emi-side .section-title { color: var(--white); }
.emi-side .section-sub { color: rgba(255, 244, 224, 0.85); }
.emi-side ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.emi-side li { display: flex; gap: 12px; align-items: flex-start; }
.emi-side .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 183, 3, 0.16);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.emi-side .icon { width: 22px; height: 22px; }
.emi-side strong { color: var(--white); display: block; }
.emi-side p { margin: 0; font-size: 0.92rem; color: rgba(255, 244, 224, 0.82); }

/* ---------- Neighborhood map ---------- */
.map-wrap { position: relative; }
.map-illustration {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
}
.map-svg { width: 100%; height: auto; border-radius: 16px; background: var(--cream); }
.map-svg text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  fill: var(--deep);
}
.map-chip {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--deep);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.map-chip .icon { width: 15px; height: 15px; color: var(--teal); }
.map-chip.d1 { top: 6%; left: 8%; }
.map-chip.d2 { top: 14%; right: 9%; }
.map-chip.d3 { bottom: 30%; left: 3%; }
.map-chip.d4 { bottom: 10%; left: 38%; }
.map-chip.d5 { top: 42%; right: 5%; }
.map-chip.d6 { bottom: 4%; right: 30%; }

.map-legend { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 20px; }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--deep); }
.map-legend .dot { width: 10px; height: 10px; border-radius: 50%; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 12px 0; }
.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, var(--accent) 0 10px, transparent 10px 20px);
  opacity: 0.55;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 44px 44px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  top: 2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -17px; }
.timeline-item:nth-child(even) .timeline-dot { left: -17px; }
.timeline-dot .icon { width: 16px; height: 16px; }
.timeline-card {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  max-width: 400px;
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.timeline-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.timeline-card .step-no { font-family: var(--font-display); font-weight: 900; color: var(--accent); font-size: 0.95rem; letter-spacing: 0.08em; }

/* ---------- Support grid ---------- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.support-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.support-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.support-card .icon { width: 28px; height: 28px; }
.support-card:nth-child(3n+1) .icon-wrap { background: var(--teal-soft); color: var(--teal); }
.support-card:nth-child(3n+2) .icon-wrap { background: var(--accent-soft); color: #7a5400; }
.support-card:nth-child(3n+3) .icon-wrap { background: #E2EDF4; color: var(--deep); }
.support-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 0; }
.support-card a.link { font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.9rem; }
.support-card a.link .icon { width: 16px; height: 16px; }

/* ---------- Lifestyle collage ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 22px;
  align-items: stretch;
}
.collage-item { position: relative; overflow: hidden; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collage-item:hover img { transform: scale(1.06); }
.collage-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(18, 53, 91, 0.75));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.collage-item .cap .icon { width: 16px; height: 16px; color: var(--accent); }
.collage-item.r1c1 { grid-column: 1 / 3; grid-row: 1; border-radius: var(--radius); }
.collage-item.r2c1 { grid-column: 1; grid-row: 2; border-radius: 50%; }
.collage-item.r2c2 { grid-column: 2; grid-row: 2; border-radius: var(--radius); }
.collage-item.r1c3 { grid-column: 3; grid-row: 1 / 3; border-radius: var(--radius-lg); }
.collage-item.r2c4 { grid-column: 4; grid-row: 1 / 3; border-radius: var(--radius); }
.collage-item.r1c4 { grid-column: 4; grid-row: 1; border-radius: var(--radius); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 12px; right: 22px;
}
.testi-card p { color: var(--ink); font-size: 0.98rem; }
.testi-person { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.testi-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-person .initials {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream);
  color: var(--deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.testi-person strong { color: var(--deep); display: block; font-size: 0.98rem; }
.testi-person span { color: var(--muted); font-size: 0.82rem; }
.testi-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--accent) 0%, #FFD463 100%);
  border-radius: var(--radius-lg);
  padding: 54px 46px;
  box-shadow: var(--shadow-lg);
}
.cta-band .wrap { max-width: none; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band h2 { color: var(--deep); font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 8px; }
.cta-band p { color: rgba(18, 53, 91, 0.85); max-width: 560px; margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--deep); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--deep-2); color: var(--white); }
.cta-band .btn-ghost { border-color: var(--deep); color: var(--deep); }
.cta-band .btn-ghost:hover { background: var(--deep); color: var(--white); }
.cta-deco { position: absolute; font-family: var(--font-display); font-weight: 900; color: rgba(18, 53, 91, 0.08); font-size: 12rem; line-height: 1; right: -20px; bottom: -60px; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-2); color: rgba(255, 244, 224, 0.82); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer-grid h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid ul a { color: rgba(255, 244, 224, 0.82); font-size: 0.94rem; }
.footer-grid ul a:hover { color: var(--accent); }
.footer-about p { font-size: 0.94rem; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact .icon { width: 19px; height: 19px; color: var(--accent); margin-top: 2px; }
.footer-contact a { color: rgba(255, 244, 224, 0.82); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--deep); transform: translateY(-3px); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 244, 224, 0.16);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 244, 224, 0.6);
}
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255, 244, 224, 0.82); }
.footer-bottom a:hover { color: var(--accent); }
.footer-seo { padding: 18px 0 30px; font-size: 0.78rem; line-height: 1.7; color: rgba(255, 244, 224, 0.5); max-width: 1100px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  animation: pulse 2.6s infinite;
}
.wa-float .icon { width: 28px; height: 28px; }
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--soft) 100%);
  padding: 64px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-title { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 16px; }
.page-hero-sub { max-width: 640px; color: var(--muted); font-size: 1.08rem; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; color: var(--teal); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .icon { width: 14px; height: 14px; }
.breadcrumb .cur { color: var(--deep); }
.page-hero-deco { position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 183, 3, 0.25), transparent 70%); border-radius: 50%; }
.page-hero-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 28px; }
.stat-pill { display: flex; flex-direction: column; }
.stat-pill strong { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--deep); line-height: 1.1; }
.stat-pill span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* ---------- Filters (projects) ---------- */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(247, 247, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.filter-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.filter-bar .field select {
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%231F6F8B" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 13px center;
  border: 1px solid var(--line);
}
.filter-bar .btn { padding: 12px 22px; }
.filter-reset {
  background: none; border: none;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}
.filter-reset .icon { width: 15px; height: 15px; }

/* ---------- Project grid ---------- */
.results-info { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.results-info strong { color: var(--deep); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.project-card.lg { border-radius: var(--radius-lg); }
.project-card.lg .project-media { aspect-ratio: 3 / 2.4; }
.project-card .details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.project-card .details div { text-align: center; }
.project-card .details .icon { width: 17px; height: 17px; margin: 0 auto 4px; color: var(--teal); }
.project-card .details small { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.project-card .details strong { font-size: 0.82rem; color: var(--deep); }
.project-rera { font-size: 0.76rem; color: var(--muted); margin: 0; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.project-tags .chip { font-size: 0.74rem; padding: 5px 11px; }
.empty-state { text-align: center; padding: 60px 20px; display: none; }
.empty-state.show { display: block; }
.empty-state .icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.empty-state .icon { width: 34px; height: 34px; }

/* ---------- Project spotlight ---------- */
.spotlight {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.spotlight-hero { display: grid; grid-template-columns: 1fr 1fr; }
.spotlight-hero .sp-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-hero .sp-info { padding: 38px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.spotlight-hero .sp-info h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0; }
.spotlight-body { padding: 36px 38px 42px; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 2px solid var(--line); margin-bottom: 28px; padding-bottom: 0; }
.tab-btn {
  background: none;
  border: none;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  transition: color 0.2s ease;
}
.tab-btn:hover { color: var(--deep); }
.tab-btn.active { color: var(--deep); border-bottom-color: var(--accent); }
.tab-panel { display: none; animation: fadeIn 0.35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.spec-list li span:first-child { color: var(--muted); }
.spec-list li span:last-child { font-weight: 700; color: var(--deep); text-align: right; }

.floor-plan { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--soft); }
.floor-plan svg { width: 100%; height: auto; }
.floor-tag { text-align: center; font-weight: 700; color: var(--deep); padding: 12px; font-size: 0.9rem; }

.advantage-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.advantage-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: var(--ink); }
.advantage-list .icon-wrap {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex: none;
}
.advantage-list .icon { width: 18px; height: 18px; }

.progress-wrap { margin-bottom: 16px; }
.progress-head { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 700; color: var(--deep); margin-bottom: 7px; }
.progress-track { height: 10px; border-radius: 10px; background: var(--line); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--teal), var(--accent)); transition: width 1.2s ease; }

/* ---------- FAQ / accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--teal); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--deep);
}
.faq-q .icon { width: 22px; height: 22px; transition: transform 0.3s ease; color: var(--teal); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label { font-size: 0.86rem; font-weight: 700; color: var(--deep); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 111, 139, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none;
  background: #E2F3E8;
  border: 1px solid #B7E3C6;
  color: #1E6B3C;
  border-radius: 14px;
  padding: 18px 20px;
  font-weight: 600;
  margin-top: 18px;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
.form-success .icon { width: 22px; height: 22px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-info-list .icon { width: 24px; height: 24px; }
.contact-info-list h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-info-list p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.contact-info-list a { font-weight: 700; color: var(--deep); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; }

.wa-card {
  background: linear-gradient(135deg, #25D366, #1DBE5A);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wa-card .icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex: none;
}
.wa-card .icon { width: 36px; height: 36px; }
.wa-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.wa-card p { color: rgba(255, 255, 255, 0.92); margin: 0 0 14px; }
.wa-card .btn { background: #fff; color: #075E2B; }
.wa-card .btn:hover { color: #075E2B; }

.contact-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-hours div {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
}
.contact-hours strong { display: block; color: var(--deep); font-size: 0.94rem; }

/* ---------- About page ---------- */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs .main-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.3; }
.about-imgs .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-imgs .small-img {
  position: absolute;
  bottom: -30px; right: -24px;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.about-imgs .small-img img { width: 100%; height: 100%; object-fit: cover; }
.about-imgs .exp-badge {
  position: absolute;
  top: -24px; left: -20px;
  background: var(--accent);
  color: var(--deep);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.2;
  text-align: center;
}
.about-imgs .exp-badge small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}
.value-card .icon { width: 27px; height: 27px; }
.value-card:nth-child(1) .icon-wrap { background: var(--teal-soft); color: var(--teal); }
.value-card:nth-child(2) .icon-wrap { background: var(--accent-soft); color: #7a5400; }
.value-card:nth-child(3) .icon-wrap { background: #E2EDF4; color: var(--deep); }
.value-card:nth-child(4) .icon-wrap { background: #FFE4D6; color: #B4551E; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.milestones { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.milestone-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--accent);
  position: relative;
}
.milestone-card .year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--teal);
}
.milestone-card p { margin: 8px 0 0; font-size: 0.86rem; color: var(--muted); }

.quality-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.quality-list li { display: flex; gap: 14px; align-items: flex-start; }
.quality-list .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: #7a5400;
  display: grid;
  place-items: center;
  flex: none;
}
.quality-list .icon { width: 22px; height: 22px; }
.quality-list h4 { margin-bottom: 3px; font-size: 1.02rem; }
.quality-list p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-card .avatar {
  width: 150px; height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .avatar .initials {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
}
.team-card h3 { font-size: 1.12rem; margin-bottom: 2px; }
.team-card span { color: var(--teal); font-weight: 700; font-size: 0.86rem; }
.team-card p { color: var(--muted); font-size: 0.86rem; margin: 8px 0 0; }

/* ---------- Amenities page ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.amenity-card .am-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.amenity-card .am-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.amenity-card:hover .am-media img { transform: scale(1.06); }
.amenity-card .am-media .icon-wrap {
  position: absolute;
  bottom: -24px; left: 24px;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--deep);
  color: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.amenity-card .icon { width: 26px; height: 26px; }
.amenity-card .am-body { padding: 38px 24px 26px; }
.amenity-card h3 { font-size: 1.22rem; margin-bottom: 7px; }
.amenity-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

.include-check { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.include-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 15px 17px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--deep);
  font-size: 0.95rem;
}
.include-check .icon-wrap {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #E2F3E8;
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
}
.include-check .icon { width: 16px; height: 16px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .editorial-grid, .support-grid, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px; }
  .discovery-fields { grid-template-columns: repeat(3, 1fr); }
  .filter-fields { grid-template-columns: repeat(3, 1fr); }
  .collage { grid-template-rows: 220px 220px; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .btn-header { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-card.c1 { left: -8px; }
  .hero-card.c2 { right: -8px; }
  .emi-grid, .about-story-grid, .spotlight-hero, .contact-grid, .tab-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-line { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 0 0 30px 58px; }
  .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 3px; right: auto; }
  .discovery { margin-top: -40px; }
  .collage { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .collage-item.r1c1 { grid-column: 1 / 3; grid-row: auto; }
  .collage-item.r2c1 { grid-column: 1; grid-row: auto; border-radius: var(--radius); }
  .collage-item.r2c2 { grid-column: 2; grid-row: auto; }
  .collage-item.r1c3 { grid-column: 1 / 3; grid-row: auto; }
  .collage-item.r1c4 { grid-column: 1; grid-row: auto; }
  .collage-item.r2c4 { grid-column: 2; grid-row: auto; }
  .collage-item { min-height: 220px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 66px 0; }
  .topbar .t-right { display: none; }
  .topbar .wrap { justify-content: center; }
  .editorial-grid, .support-grid, .amenity-grid, .project-grid, .testi-grid { grid-template-columns: 1fr; }
  .values-grid, .milestones, .team-grid { grid-template-columns: 1fr; }
  .include-check { grid-template-columns: 1fr; }
  .discovery-fields { grid-template-columns: 1fr 1fr; }
  .filter-fields { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .emi-panel { padding: 24px 20px; }
  .spotlight-hero .sp-info, .spotlight-body { padding: 26px 20px; }
  .cta-band { padding: 40px 24px; }
  .hero-card.c1 { top: 14px; left: -4px; }
  .hero-card.c2 { right: -4px; }
  .hero-card.c3 { display: none; }
  .about-imgs .small-img { right: 0; bottom: -24px; }
  .about-imgs .exp-badge { left: 0; }
  .emi-breakdown { grid-template-columns: 1fr; }
  .map-chip { padding: 6px 10px; font-size: 0.68rem; }
  .map-svg text { font-size: 10px; }
}
