/* ============ Sumadhura East Bengaluru Home Finder ============
   Brand tokens taken from sumadhuragroup.com:
   gold gradient #c99f64 → #a37f48 · solid gold #c39a3e · light gold #d9be85
   ink #3c3c3a · dark #1f1f1d · muted #6b6b6b
   cream #faf6ef / #fbf8f2 · hairline #e5e0d6
   Headings: Cormorant Garamond 700 (gold gradient) · Body: Montserrat
=============================================================== */

:root {
  --gold-1: #c99f64;
  --gold-2: #a37f48;
  --gold: #c39a3e;
  --gold-light: #d9be85;
  --ink: #3c3c3a;
  --ink-dark: #1f1f1d;
  --muted: #6b6b6b;
  --cream: #faf6ef;
  --cream-2: #fbf8f2;
  --line: #e5e0d6;
  --grad: linear-gradient(90deg, #c99f64, #a37f48);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(31, 31, 29, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

.container { width: min(1240px, 92%); margin: 0 auto; }
.hidden { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.12; }

h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
}
h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);
}
h2.on-dark { -webkit-text-fill-color: initial; background: none; color: #fff; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-light); }

.section-lead {
  max-width: 640px;
  color: var(--muted);
  margin: 20px 0 56px;
  font-size: 17px;
}
.on-dark-lead { color: rgba(255, 255, 255, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-gold {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(163, 127, 72, 0.35);
}
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold-1); color: var(--gold-2); }
.btn-outline {
  background: #fff;
  color: var(--gold-2);
  border: 1.5px solid var(--gold-1);
}
.btn-outline:hover { background: var(--grad); color: #fff; border-color: transparent; }
.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 224, 214, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header-logo { height: 46px; width: auto; }
.header-ctas { display: flex; gap: 12px; align-items: center; }
@media (max-width: 720px) {
  .header-ctas .btn-ghost { display: none; }
  .header-logo { height: 38px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--ink-dark);
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 35s linear infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 21s; }
.hero-slide:nth-child(5) { animation-delay: 28s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  4%   { opacity: 1; }
  22%  { opacity: 1; }
  28%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(23, 21, 17, 0.86) 0%, rgba(23, 21, 17, 0.62) 45%, rgba(23, 21, 17, 0.35) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  width: min(1240px, 92%);
  margin: 0 auto;
}
@media (max-width: 940px) {
  .hero { padding-top: 110px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  margin-top: 22px;
  max-width: 500px;
}
.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.trust-chips li {
  font-size: 13px;
  font-weight: 500;
  color: #f4ead8;
  border: 1px solid rgba(217, 190, 133, 0.45);
  background: rgba(31, 31, 29, 0.35);
  border-radius: 999px;
  padding: 9px 18px;
  backdrop-filter: blur(4px);
}

/* ---------- Quiz card ---------- */
.quiz-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  padding: 44px 44px 30px;
  scroll-margin-top: 96px;
}
@media (max-width: 560px) { .quiz-card { padding: 30px 24px 22px; } }
.quiz-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  min-height: 22px;
}
.quiz-progress-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
}
.quiz-back {
  background: none;
  border: 0;
  padding: 4px 8px 4px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease;
}
.quiz-back:hover { color: var(--gold-2); }
.quiz-progress-bar {
  height: 4px;
  border-radius: 4px;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 22px;
}
.quiz-progress-bar span {
  display: block;
  height: 100%;
  background: var(--grad);
  transition: width 0.35s ease;
}
.step-title {
  font-size: 1.7rem;
  color: var(--ink-dark);
  margin-bottom: 22px;
}
.step-note { font-size: 14px; color: var(--muted); margin: -8px 0 16px; }

.options { display: grid; gap: 12px; }
.options-1col { grid-template-columns: 1fr; }
.options-2col { grid-template-columns: 1fr 1fr; }
.opt-wide { grid-column: 1 / -1; }
@media (max-width: 480px) { .options-2col { grid-template-columns: 1fr; } .opt-wide { grid-column: auto; } }

.opt {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: all 0.15s ease;
}
.opt:hover { border-color: var(--gold-1); background: var(--cream-2); }
.opt.selected {
  border-color: var(--gold-2);
  background: linear-gradient(90deg, rgba(201, 159, 100, 0.14), rgba(163, 127, 72, 0.14));
  color: var(--ink-dark);
}
.quiz-foot {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Lead form */
.field { display: block; margin-bottom: 14px; }
.field span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--ink-dark);
}
.field em { font-style: normal; font-weight: 400; color: var(--muted); }
.field input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus { border-color: var(--gold-1); }
.phone-row {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease;
}
.phone-row:focus-within { border-color: var(--gold-1); }
/* .field span also matches this element — out-specify it and zero its margin */
.field .phone-row .phone-prefix {
  display: flex; align-items: center;
  align-self: stretch;
  margin: 0;
  padding: 0 14px;
  border-right: 1.5px solid var(--line);
  background: var(--cream-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.phone-row input,
.phone-row input:focus {
  border: 0;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px 0 16px;
}
.consent input { margin-top: 3px; accent-color: var(--gold-2); }
.form-error { color: #b3402e; font-size: 13px; margin-bottom: 12px; }
.micro-trust {
  margin-top: 12px;
  font-size: 11.5px;
  text-align: center;
  color: var(--muted);
}

/* Result */
.result-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.result-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink-dark);
  margin-bottom: 4px;
}
.result-loc { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.result-img { border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.result-img img { width: 100%; height: 190px; object-fit: cover; }
.result-why {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.result-why h4 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.result-why ul { list-style: none; }
.result-why li { font-size: 14px; padding-left: 20px; position: relative; margin-bottom: 5px; }
.result-why li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }
.result-backup {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.result-backup strong { color: var(--ink-dark); }
.result-nurture {
  font-size: 13.5px;
  color: var(--ink);
  background: var(--cream);
  border-left: 3px solid var(--gold-1);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.result-ctas { display: grid; gap: 10px; }
.match-why-line { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.result-confirm {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  padding: 10px 0 4px;
}

/* ---------- Result: primary / backup match cards ---------- */
.result-headline {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink-dark);
  line-height: 1.15;
  margin-bottom: 6px;
}
.result-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

.match-card {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.match-primary {
  border-color: var(--gold-1);
  background: linear-gradient(180deg, rgba(201, 159, 100, 0.08), rgba(163, 127, 72, 0.05));
}
.match-backup { background: var(--cream-2); }
.match-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.match-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.match-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-dark);
  line-height: 1.15;
}
.match-price {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-2);
  background: #fff;
  border: 1px solid var(--gold-1);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.match-meta { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.match-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.match-why h4 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 7px;
}
.match-why ul { list-style: none; }
.match-why li {
  font-size: 13.5px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.5;
}
.match-why li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }

/* ---------- Callback confirmation page ---------- */
.ty-main { background: var(--cream-2); padding: 120px 0 90px; min-height: 70vh; }
.ty-inner { width: min(720px, 92%); margin: 0 auto; }

.ty-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(163, 127, 72, 0.35);
}

/* Confirmation beside the check mark */
.ty-confirm-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--gold-1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(163, 127, 72, 0.10);
  margin-bottom: 30px;
}
.ty-confirm-title {
  font-family: var(--serif); /* Cormorant Garamond — same family as the Sumadhura logo wordmark */
  font-size: 1.85rem; /* bumped so its 700 weight reads as heavy as the heading below */
  font-weight: 700;
  line-height: 1.15;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);
}
.ty-confirm-note { font-size: 14px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.ty-main h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.ty-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin-bottom: 32px; }

.ty-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 620px) { .ty-card { grid-template-columns: 1fr; } }
.ty-card-primary { border-color: var(--gold-1); box-shadow: 0 14px 34px rgba(163, 127, 72, 0.14); }
.ty-card-img { display: block; overflow: hidden; }
.ty-card-img img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; transition: transform 0.4s ease; }
.ty-card-img:hover img { transform: scale(1.05); }
.ty-card-body { padding: 22px 24px; }
.ty-card-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.ty-card-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.ty-card-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink-dark); line-height: 1.1; }
.ty-card-meta { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.ty-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.ty-card-link { font-size: 13.5px; font-weight: 600; color: var(--gold-2); text-decoration: none; }
.ty-card-link:hover { text-decoration: underline; }

.ty-ctas { margin: 24px 0 40px; display: grid; gap: 10px; }
.ty-confirmed {
  background: var(--ink-dark);
  color: #fff;
  cursor: default;
  opacity: 1;
}
.ty-next {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 30px;
}
.ty-next h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink-dark); margin-bottom: 18px; }
.ty-next ol { list-style: none; }
.ty-next li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.ty-next li:first-child { border-top: 0; padding-top: 0; }
.ty-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.ty-next li div { font-size: 14px; color: var(--muted); line-height: 1.6; }
.ty-next strong { color: var(--ink-dark); font-weight: 600; }
.ty-disclaimer { font-size: 11.5px; color: var(--muted); line-height: 1.7; }

/* ---------- Enquiry received (project enquiry confirmation) ---------- */
.enq-page {
  margin-top: 70px;
  background: var(--cream-2);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.enq-inner {
  width: min(560px, 92%);
  text-align: center;
}
.enq-inner .ty-check { margin-bottom: 22px; }
.enq-page h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.enq-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 30px;
}
.enq-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
@media (max-width: 520px) {
  .enq-ctas { flex-direction: column; }
  .enq-ctas .btn { width: 100%; }
}
.enq-disclaimer { font-size: 11.5px; color: var(--muted); line-height: 1.7; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
@media (max-width: 720px) { .section { padding: 72px 0; } }

/* Ladder */
.ladder { background: #fff; }
.ladder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
@media (max-width: 860px) { .ladder-grid { grid-template-columns: 1fr; } }

/* Wide card (Panorama — plotted development) */
.p-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream-2);
}
.p-card-wide .p-card-img { height: 100%; min-height: 320px; }
@media (max-width: 860px) {
  .p-card-wide { grid-template-columns: 1fr; }
  .p-card-wide .p-card-img { min-height: 0; height: 230px; }
}

.p-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
/* whole card is clickable via the View Project link */
.p-link::after { content: ""; position: absolute; inset: 0; }
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.p-card-img { position: relative; height: 230px; overflow: hidden; }
.p-price {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--grad);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 15px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(163, 127, 72, 0.45);
}
.p-offer {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-2);
  background: var(--cream);
  border: 1px dashed var(--gold-1);
  border-radius: 9px;
  padding: 7px 13px;
  margin-bottom: 16px;
}
.p-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.p-card:hover .p-card-img img { transform: scale(1.06); }
.p-card-body { padding: 32px 34px 34px; }
.p-loc {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.p-card h3 { font-size: 1.95rem; color: var(--ink-dark); margin-bottom: 6px; }
.p-config { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.p-proof { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.p-best {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-2);
  background: var(--cream-2);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.p-card-wide .p-best { background: #fff; }

/* Personas */
.personas { background: var(--cream-2); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 720px) { .persona-grid { grid-template-columns: 1fr; } }
.persona-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-1);
}
.persona-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 159, 100, 0.18), rgba(163, 127, 72, 0.18));
  font-size: 23px;
  margin-bottom: 20px;
}
.persona-card h3 { font-size: 1.6rem; color: var(--ink-dark); margin-bottom: 12px; }
.persona-card p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }
.persona-cta { font-size: 14px; font-weight: 600; color: var(--gold-2); }

/* Trust band */
.trust-band { background: var(--ink-dark); }
.trust-inner { text-align: center; }
.trust-inner .section-lead { margin-left: auto; margin-right: auto; }
.trust-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 34px;
}
.trust-pills li {
  font-size: 13px;
  font-weight: 500;
  color: #f4ead8;
  border: 1px solid rgba(217, 190, 133, 0.4);
  border-radius: 999px;
  padding: 9px 20px;
}

/* Legacy */
.legacy { background: var(--cream); text-align: center; }
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 720px) { .legacy-grid { grid-template-columns: repeat(2, 1fr); } }
.legacy-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legacy-stat span {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #14130f;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 110px;
  font-size: 13px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 720px) { .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; } }
.footer-logo { height: 46px; flex-shrink: 0; }
.footer-about { max-width: 560px; line-height: 1.7; }
.footer-rera { padding: 36px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-rera h4 {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.rera-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 32px;
}
@media (max-width: 940px) { .rera-grid { grid-template-columns: 1fr; gap: 14px; } }
.rera-grid p { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); word-break: break-word; line-height: 1.6; }
.rera-grid strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3px;
}
.footer-bottom { padding-top: 36px; }
.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-contact a { color: var(--gold-light); text-decoration: none; }

/* ---------- Project detail page ---------- */
.pd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--ink-dark);
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pd-hero .hero-veil {
  background: linear-gradient(100deg, rgba(23, 21, 17, 0.86) 0%, rgba(23, 21, 17, 0.6) 45%, rgba(23, 21, 17, 0.35) 100%);
}
.pd-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  width: min(1240px, 92%);
  margin: 0 auto;
}
@media (max-width: 940px) {
  .pd-hero { padding-top: 110px; min-height: 0; }
  .pd-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.pd-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  padding: 40px 40px 28px;
  scroll-margin-top: 96px;
}
@media (max-width: 560px) { .pd-form-card { padding: 28px 22px 20px; } }
.pd-form-title {
  font-size: 1.55rem;
  color: var(--ink-dark);
  margin-bottom: 10px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 940px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
.fact {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  background: var(--cream-2);
}
.fact span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.fact strong { font-size: 15.5px; font-weight: 600; color: var(--ink-dark); line-height: 1.45; }

.pd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .pd-about-grid { grid-template-columns: 1fr; gap: 36px; } }
.pd-about { background: var(--cream-2); }
.pd-about .section-lead { margin-bottom: 36px; }
.pd-about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pd-about-img img { width: 100%; height: 100%; object-fit: cover; }

.amen-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amen-grid { grid-template-columns: 1fr; } }
.amen-grid li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-left: 44px;
}
.amen-grid li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--gold-2);
  font-weight: 700;
}

.pd-gallery { background: var(--cream-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 16px;
}

.rera-single { font-size: 12px; color: rgba(255, 255, 255, 0.5); word-break: break-word; line-height: 1.7; }

/* ---------- Mobile typography & density scale ---------- */
@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.6; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .eyebrow { font-size: 11px; letter-spacing: 0.13em; margin-bottom: 10px; }
  .section-lead { font-size: 14.5px; margin: 14px 0 34px; }

  .btn { padding: 12px 22px; font-size: 13.5px; }
  .header-ctas .btn { padding: 9px 16px; font-size: 12.5px; }
  .header-logo { height: 32px; }

  /* Hero */
  .hero { padding: 96px 0 56px; }
  .hero-lead { font-size: 15px; margin-top: 14px; }
  .trust-chips { margin-top: 22px; gap: 8px; }
  .trust-chips li { font-size: 11.5px; padding: 7px 13px; }
  .hero-grid { gap: 30px; }

  /* Quiz */
  .quiz-card { scroll-margin-top: 76px; }
  .step-title { font-size: 1.3rem; margin-bottom: 16px; }
  .opt { padding: 13px 16px; font-size: 14px; border-radius: 12px; }
  .options { gap: 10px; }
  .field input { padding: 11px 12px; font-size: 14.5px; }
  .result-title, .result-headline { font-size: 1.4rem; }
  .result-img img { height: 160px; }
  .match-card { padding: 15px 16px; }
  .match-name { font-size: 1.15rem; }
  .match-desc, .match-why li { font-size: 13px; }

  /* Sections */
  .section { padding: 56px 0; }

  /* Project cards */
  .ladder-grid { gap: 22px; }
  .p-card-img { height: 190px; }
  .p-card-wide .p-card-img { height: 190px; }
  .p-card-body { padding: 22px 20px 24px; }
  .p-card h3 { font-size: 1.45rem; }
  .p-price { font-size: 12px; padding: 6px 12px; top: 12px; left: 12px; }
  .p-offer { font-size: 11.5px; padding: 6px 11px; margin-bottom: 12px; }
  .p-config { font-size: 13px; margin-bottom: 10px; }
  .p-proof { font-size: 13px; margin-bottom: 14px; }
  .p-best { font-size: 13px; padding: 11px 14px; margin-bottom: 18px; }
  .p-loc { font-size: 10.5px; }

  /* Personas */
  .persona-grid { gap: 18px; }
  .persona-card { padding: 24px 22px; }
  .persona-ico { width: 44px; height: 44px; font-size: 19px; margin-bottom: 14px; }
  .persona-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .persona-card p { font-size: 13.5px; margin-bottom: 12px; }
  .persona-cta { font-size: 13px; }

  /* Trust band + legacy */
  .trust-pills { gap: 8px; margin-bottom: 26px; }
  .trust-pills li { font-size: 11.5px; padding: 7px 14px; }
  .legacy-grid { gap: 16px; margin-top: 28px; }
  .legacy-stat strong { font-size: 1.9rem; }
  .legacy-stat span { font-size: 10.5px; }

  /* Footer */
  .site-footer { padding: 56px 0 96px; font-size: 12.5px; }
  .footer-logo { height: 36px; }

  /* Project detail */
  .pd-hero { padding: 96px 0 56px; }
  .pd-form-card { scroll-margin-top: 76px; }
  .pd-form-title { font-size: 1.3rem; }
  .facts-grid { gap: 12px; }
  .fact { padding: 15px 15px; }
  .fact strong { font-size: 13.5px; }
  .amen-grid { gap: 10px; }
  .amen-grid li { font-size: 13px; padding: 12px 14px 12px 38px; }
  .amen-grid li::before { left: 15px; }
  .gallery-grid { gap: 14px; }
  .gallery-grid img { height: 190px; }
  .gallery-grid figcaption { font-size: 11.5px; padding: 10px 13px; }

  /* Thank-you / enquiry */
  .ty-main { padding: 96px 0 60px; }
  .ty-main h1 { font-size: 1.6rem; }
  .ty-sub { font-size: 14.5px; margin-bottom: 24px; }
  .ty-confirm-row { padding: 14px 16px; gap: 13px; margin-bottom: 22px; }
  .ty-confirm-title { font-size: 1.4rem; }
  .ty-confirm-note { font-size: 13px; }
  .ty-check { width: 44px; height: 44px; }
  .ty-card-body { padding: 18px 18px; }
  .ty-card-name { font-size: 1.3rem; }
  .ty-next { padding: 22px 20px; }
  .ty-next h3 { font-size: 1.2rem; }
  .ty-next li div { font-size: 13.5px; }
  .enq-page h1 { font-size: 1.7rem; }
  .enq-sub { font-size: 14.5px; }
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 0.25s ease;
  display: none;
}
.sticky-cta.hide { transform: translateY(110%); }
@media (max-width: 940px) { .sticky-cta { display: block; } }
