/* ==========================================================================
   Shree Vijayalakshmi Buildtech — style.css  ·  Heritage-modern, trust-first
   Dawn-over-a-home hero · kumkum/haldi/brass palette · jaali & kolam motifs
   Mobile-first. Respects prefers-reduced-motion.
   ========================================================================== */

:root {
  /* ---- Palette ---- */
  --bg:        #F8F1E2;
  --bg-alt:    #F1E5CD;
  --ink:       #2B1F14;
  --ink-soft:  #6C5844;
  --line:      #DECDAE;
  --accent:    #A93E26;   /* kumkum */
  --accent-deep:#8E3B2B;  /* red oxide */
  --accent-soft:#E8C0A8;
  --haldi:     #D0912B;
  --brass:     #C9962E;
  --dark:      #241407;
  --dark-2:    #2E1B0C;
  --light-on-dark: #F3E8D2;
  --muted-on-dark: #B79F82;

  /* dawn sky */
  --dawn-top:   #2C2340;
  --dawn-mid:   #7A4A3A;
  --dawn-glow:  #E8A34E;
  --dawn-horizon: #F6C877;

  /* ---- Type ---- */
  --font-heritage: "Rozha One", "Fraunces", Georgia, serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-kn: "Noto Sans Kannada", "Nirmala UI", "Tunga", sans-serif;

  /* ---- Motifs ---- */
  --jaali: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cpath d='M32 3l29 29-29 29L3 32z' fill='none' stroke='%23C9962E' stroke-opacity='0.13'/%3E%3Ccircle cx='32' cy='32' r='10' fill='none' stroke='%23C9962E' stroke-opacity='0.10'/%3E%3C/svg%3E");
  --jaali-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cpath d='M32 3l29 29-29 29L3 32z' fill='none' stroke='%23A93E26' stroke-opacity='0.07'/%3E%3Ccircle cx='32' cy='32' r='10' fill='none' stroke='%23A93E26' stroke-opacity='0.055'/%3E%3C/svg%3E");
  --kolam: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='20' viewBox='0 0 150 20'%3E%3Cg fill='%23A93E26'%3E%3Ccircle cx='15' cy='10' r='2'/%3E%3Ccircle cx='40' cy='10' r='2.5'/%3E%3Ccircle cx='110' cy='10' r='2.5'/%3E%3Ccircle cx='135' cy='10' r='2'/%3E%3Cpath d='M75 2l7 8-7 8-7-8z'/%3E%3C/g%3E%3Cg fill='none' stroke='%23C9962E' stroke-width='1.2'%3E%3Cpath d='M47 10c6-7 15-7 21 0M82 10c6-7 15-7 21 0' stroke-opacity='.8'/%3E%3C/g%3E%3C/svg%3E");

  /* ---- Rhythm ---- */
  --radius: 14px;
  --arch: 170px 170px 14px 14px;
  --container: 1180px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(.22,.9,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
[lang="kn"] { font-family: var(--font-kn); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn--accent { background: var(--accent); color: #FFF7EA; box-shadow: inset 0 0 0 1px rgba(201,150,46,.35); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(169,62,38,.35), inset 0 0 0 1px rgba(201,150,46,.5); }
.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(169,62,38,.07); }
.btn--full { width: 100%; }
.hero .btn--ghost { color: var(--light-on-dark); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 1.1rem 0;
}
.nav.is-scrolled {
  padding: .45rem 0;
  background: rgba(248,241,226,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .01em;
  color: var(--light-on-dark); transition: color .3s;
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__brand em { color: var(--haldi); font-style: normal; }
.nav.is-scrolled .nav__brand em { color: var(--accent); }
.nav__mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--dark); position: relative; flex: none;
  box-shadow: inset 0 0 0 1px rgba(201,150,46,.5);
}
.nav__mark::after {
  content: ""; position: absolute; inset: 6px 8px 5px 8px;
  clip-path: polygon(50% 0, 100% 42%, 88% 42%, 88% 100%, 62% 100%, 62% 62%, 38% 62%, 38% 100%, 12% 100%, 12% 42%, 0 42%);
  background: var(--haldi);
}
.nav__links { display: none; gap: 1.3rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-size: .88rem; font-weight: 500; color: rgba(243,232,210,.85);
  transition: color .2s;
}
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--haldi); }
.nav.is-scrolled .nav__links a:hover { color: var(--accent); }
.nav__cta { display: none; margin-left: .5rem; padding: .6rem 1.25rem; font-size: .85rem; }
.nav__burger {
  margin-left: auto; background: none; border: 0; cursor: pointer; padding: .5rem;
  display: flex; flex-direction: column; gap: 5px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--light-on-dark); transition: transform .3s, opacity .3s, background .3s; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}
@media (max-width: 899px) {
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 1.2rem clamp(1.1rem,4vw,2rem) 1.6rem;
    box-shadow: 0 18px 30px rgba(43,31,20,.16); gap: 1rem;
    border-bottom: 2px solid var(--brass);
  }
  .nav__links.is-open a { font-size: 1.05rem; color: var(--ink-soft) !important; }
}

/* ==========================================================================
   HERO — dawn over a home
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  padding: 7rem 0 4rem;
  color: var(--light-on-dark);
  overflow: hidden;
  background: var(--dawn-top);
}
.hero__scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
  animation: heroDrift 14s var(--ease) both;
}
@keyframes heroDrift { from { transform: scale(1.07); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__photo { animation: none; } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,12,4,.55) 0%, transparent 32%),
    linear-gradient(100deg, rgba(24,12,4,.74) 0%, rgba(24,12,4,.38) 48%, rgba(24,12,4,.12) 78%);
}
.hero__sky {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      var(--dawn-top) 0%,
      #4A3247 34%,
      var(--dawn-mid) 58%,
      var(--dawn-glow) 82%,
      var(--dawn-horizon) 100%);
}
.hero__sun {
  position: absolute; left: 50%; bottom: 6%; width: 46vmin; height: 46vmin;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 62%,
    rgba(255,220,150,.95) 0%, rgba(246,200,119,.55) 22%,
    rgba(232,163,78,.28) 45%, transparent 70%);
  filter: blur(2px);
  animation: sunrise 3.2s var(--ease) both;
}
@keyframes sunrise { from { transform: translate(-50%, 12%) scale(.92); opacity: .4; } to { transform: translate(-50%, 0) scale(1); opacity: 1; } }
.hero__home {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(1100px, 130vw); height: auto;
}
.hero__home .win { fill: #FFD98A; opacity: .95; }
.hero__home .win.w2 { opacity: .8; }
.hero__home .win { animation: winGlow 5s ease-in-out infinite alternate; }
@keyframes winGlow { from { opacity: .72; } to { opacity: 1; } }
.hero__mist {
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, transparent, rgba(248,241,226,.35));
}
/* drifting birds */
.hero__birds { position: absolute; top: 16%; left: 0; width: 100%; height: 20%; overflow: visible; }
.hero__birds .bird { fill: none; stroke: rgba(36,20,7,.75); stroke-width: 1.6; stroke-linecap: round; }
.hero__birds .b1 { animation: fly 34s linear infinite; }
.hero__birds .b2 { animation: fly 42s linear infinite 6s; transform: translateY(9px) scale(.8); }
.hero__birds .b3 { animation: fly 50s linear infinite 14s; transform: translateY(18px) scale(.65); }
.hero__birds .b4 { animation: fly 58s linear infinite 22s; transform: translateY(4px) scale(.5); }
@keyframes fly {
  0%   { transform: translateX(-30px) translateY(0); }
  25%  { transform: translateX(60px) translateY(-6px); }
  50%  { transform: translateX(120px) translateY(2px); }
  75%  { transform: translateX(170px) translateY(-5px); }
  100% { transform: translateX(240px) translateY(0); }
}

.hero__content {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 0 clamp(1.1rem, 4vw, 2rem);
}
.hero__eyebrow {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dawn-horizon); font-weight: 600; margin: 0 0 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero__eyebrow::before { content: "❖"; color: var(--haldi); font-size: .9em; }
.hero__eyebrow [lang="kn"] { text-transform: none; letter-spacing: .04em; font-size: 1.05em; }
.hero__title {
  font-family: var(--font-heritage); font-weight: 400;
  font-size: clamp(2.5rem, 7.4vw, 5rem); line-height: 1.1;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 30px rgba(36,20,7,.35);
}
.hero__title span { color: var(--dawn-horizon); }
.hero__sub {
  max-width: 34rem; color: rgba(243,232,210,.92);
  font-size: clamp(1rem, 1.6vw, 1.15rem); margin: 0 0 2rem;
  text-shadow: 0 1px 18px rgba(36,20,7,.4);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__foot { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__signature {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem; color: var(--light-on-dark); margin: 0;
  border: 1px solid rgba(201,150,46,.55); border-radius: 999px; padding: .55rem 1.1rem;
  background: rgba(36,20,7,.35); backdrop-filter: blur(3px);
}
.hero__signature svg { color: var(--haldi); flex: none; }
.hero__sound {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-size: .88rem; font-weight: 600; color: var(--light-on-dark);
  border: 1px solid rgba(201,150,46,.55); border-radius: 999px; padding: .55rem 1.1rem;
  background: rgba(36,20,7,.35); cursor: pointer; backdrop-filter: blur(3px);
  transition: background .25s, color .25s;
}
.hero__sound svg { width: 17px; height: 17px; }
.hero__sound:hover { background: rgba(201,150,46,.25); }
.hero__sound[aria-pressed="true"] { background: var(--haldi); color: var(--dark); border-color: var(--haldi); }
.hero__scrollcue {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,232,210,.85);
  text-shadow: 0 1px 10px rgba(24,12,4,.6);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 1;
}
.hero__scrollcue span { width: 1px; height: 34px; background: rgba(243,232,210,.7); animation: cue 2s infinite var(--ease); transform-origin: top; }
@keyframes cue { 0% {transform: scaleY(0);} 50% {transform: scaleY(1);} 100% {transform: scaleY(0); transform-origin: bottom;} }

@media (max-width: 700px) {
  .hero__home { width: 180vw; }
  .hero__sun { width: 70vmin; height: 70vmin; }
}

/* ==========================================================================
   Section scaffolding + kolam dividers
   ========================================================================== */
.section { padding: var(--section-pad) 0; position: relative; }
.about::before, .services::before, .estimator::before, .packages::before,
.process::before, .projects::before, .testimonials::before, .promises::before, .faq::before {
  content: ""; position: absolute; top: 2.1rem; left: 50%; transform: translateX(-50%);
  width: 150px; height: 20px; background: var(--kolam) center / contain no-repeat;
  opacity: .8;
}
.section__eyebrow {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--accent); margin: 0 0 1rem;
  display: flex; align-items: center; gap: .55rem;
}
.section__eyebrow::before { content: "❖"; color: var(--haldi); font-size: .95em; letter-spacing: 0; }
.section__eyebrow--light { color: var(--haldi); }
.section__title {
  font-family: var(--font-heritage); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem); line-height: 1.14;
  margin: 0 0 1.2rem;
}
.section__title em { color: var(--accent); font-style: normal; }
.section__title--light { color: var(--light-on-dark); }
.section__title--light em { color: var(--haldi); }
.section__lead { max-width: 44rem; color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 3rem; }
.section__lead--light { color: var(--muted-on-dark); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.media-slot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--jaali-light), linear-gradient(150deg, #F3E7CE, #EADBBB);
  border: 1.5px dashed var(--brass);
  min-height: 210px; display: grid; place-items: center;
}
.media-slot::after {
  content: attr(data-label);
  position: absolute; inset: auto .8rem .8rem .8rem;
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft); text-align: center;
}
.media-slot svg { width: 64px; height: 64px; color: var(--accent-deep); opacity: .45; }

/* filled slots — real photography */
.media-slot--filled { border: none; background: none; margin: 0; }
.media-slot--filled::after { content: none; }
.media-slot--filled img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .7s var(--ease);
}
.pcard:hover .media-slot--filled img,
.icard:hover .media-slot--filled img,
.handover__slots .media-slot--filled:hover img { transform: scale(1.045); }

.model__credit { font-size: .72rem; color: var(--muted-on-dark); opacity: .8; margin-top: .6rem; }
.model__credit a { color: inherit; }

/* ==========================================================================
   Promises
   ========================================================================== */
.promises { background: var(--bg); }
.promises__grid { display: grid; gap: 1.2rem; }
.promise {
  background: #FFFBF0; border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.promise:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(74,46,26,.13); }
.promise__icon {
  width: 48px; height: 48px; color: var(--accent); margin-bottom: 1rem;
  background: var(--bg-alt); border-radius: 24px 24px 6px 6px; padding: 11px;
  border: 1px solid var(--line);
}
.promise h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin: 0 0 .6rem; }
.promise p { margin: 0 0 .5rem; color: var(--ink-soft); font-size: .96rem; }
.promise p strong { color: var(--accent-deep); }
.promise__note { font-size: .74rem; font-style: italic; color: var(--haldi); }

.paystrip {
  margin-top: 2.4rem; background: #FFFBF0; border: 1px solid var(--brass);
  border-radius: var(--radius); padding: 1.6rem clamp(1.2rem, 3vw, 2rem);
}
.paystrip__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 0 0 1.2rem; }
.paystrip__stages {
  list-style: none; margin: 0 0 1rem; padding: 0;
  display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  counter-reset: pay;
}
.paystrip__stages li {
  position: relative; text-align: center; padding: .9rem .5rem .7rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  counter-increment: pay;
}
.paystrip__stages li::before {
  content: counter(pay); position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--accent); color: #FFF7EA;
  font-size: .72rem; font-weight: 700; display: grid; place-items: center;
}
.paystrip__stages b { display: block; font-size: .82rem; margin-bottom: .15rem; }
.paystrip__stages span { font-size: .95rem; font-weight: 700; color: var(--accent-deep); }
.paystrip__note { margin: 0; font-size: .78rem; font-style: italic; color: var(--ink-soft); }

@media (min-width: 860px) { .promises__grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   About + founder
   ========================================================================== */
.about { background: var(--bg-alt); }
.about__grid { display: grid; gap: 2.6rem; margin-top: 1.5rem; }
.about__story p { color: var(--ink-soft); font-size: 1.02rem; max-width: 38rem; }
.about__story strong { color: var(--ink); }
.founder {
  margin: 1.6rem 0; padding: 0; display: grid; gap: 1.2rem;
  background: #FFFBF0; border: 1px solid var(--brass); border-radius: var(--radius);
  padding: 1.5rem; grid-template-columns: 110px 1fr; align-items: start;
}
.founder__photo { min-height: 110px; border-radius: 55px 55px 10px 10px; }
.founder__photo::after { font-size: .55rem; inset: auto .2rem .3rem .2rem; }
.founder__text p { font-family: var(--font-display); font-size: 1.02rem; font-style: italic; color: var(--ink) !important; margin: 0 0 .7rem; }
.founder__text cite { font-style: normal; font-weight: 600; font-size: .88rem; color: var(--accent-deep); }
@media (max-width: 560px) { .founder { grid-template-columns: 1fr; } .founder__photo { max-width: 110px; } }

.about__badge {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: .4rem;
  border: 1px solid var(--brass); border-radius: 999px; padding: .55rem 1.1rem; font-size: .9rem;
  background: #FFFBF0;
}
.about__stars { color: var(--haldi); letter-spacing: .12em; }

.about__side { display: grid; gap: 1.2rem; align-content: start; }
.counters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: var(--dark); border-radius: var(--radius); padding: 1.5rem;
}
.counter b {
  display: block; font-family: var(--font-heritage); font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: var(--haldi); line-height: 1.1;
}
.counter span { font-size: .8rem; color: var(--muted-on-dark); line-height: 1.35; display: block; margin-top: .2rem; }
.counter i { font-size: .68rem; color: rgba(208,145,43,.7); }
.creds {
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.creds__title { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 .7rem; }
.creds ul { margin: 0; padding: 0; list-style: none; }
.creds li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: var(--ink-soft); margin-bottom: .45rem; }
.creds li::before { content: "❖"; position: absolute; left: 0; color: var(--haldi); font-size: .8em; top: .2em; }
.about__cards { display: grid; gap: .9rem; }
.vcard {
  background: #FFFBF0; border: 1px solid var(--line); border-top: 3px solid var(--brass);
  border-radius: var(--radius); padding: 1.2rem 1.3rem;
}
.vcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 .4rem; }
.vcard p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

@media (min-width: 900px) { .about__grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

/* ==========================================================================
   Truth — what goes wrong
   ========================================================================== */
.truth {
  background: var(--jaali), linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--light-on-dark);
  border-top: 3px solid var(--brass);
}
.truth__grid { display: grid; gap: 1.2rem; }
.tcard {
  background: rgba(255,244,220,.05); border: 1px solid rgba(201,150,46,.28);
  border-radius: var(--radius); overflow: hidden;
}
.tcard__fear {
  margin: 0; padding: 1.2rem 1.4rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--accent-soft);
  background: rgba(169,62,38,.16); border-bottom: 1px solid rgba(201,150,46,.25);
}
.tcard__fear::before { content: "✕ "; color: var(--accent); font-style: normal; font-weight: 700; }
.tcard__answer { padding: 1.2rem 1.4rem 1.4rem; }
.tcard__answer h3 { margin: 0 0 .45rem; font-size: 1.02rem; color: var(--haldi); }
.tcard__answer h3::before { content: "✓ "; }
.tcard__answer p { margin: 0; font-size: .93rem; color: var(--muted-on-dark); }
.tcard__answer em { color: var(--light-on-dark); }

@media (min-width: 860px) { .truth__grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--bg); }
.process__layout { display: grid; gap: 3rem; align-items: center; }
.process__diagram { position: sticky; top: 90px; }
.process__diagram svg { width: min(88vw, 520px); margin: 0 auto; }
.process__ring { fill: none; stroke: var(--line); stroke-width: 2; }
.process__ring-progress {
  fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1351; stroke-dashoffset: 1351;
  transform: rotate(-90deg); transform-origin: 280px 280px;
  transition: stroke-dashoffset .8s var(--ease);
}
.process__loop-arrow { fill: none; stroke: var(--haldi); stroke-width: 2; stroke-dasharray: 5 6; opacity: .9; }
.pnode circle { fill: #FFFBF0; stroke: var(--brass); stroke-width: 1.6; transition: fill .4s, stroke .4s; }
.pnode text {
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  fill: var(--ink-soft); text-anchor: middle; dominant-baseline: central;
  transition: fill .4s;
}
.pnode.is-active circle { fill: var(--accent); stroke: var(--accent-deep); }
.pnode.is-active text { fill: #FFF7EA; }
.pnode.is-done circle { stroke: var(--accent); }
.pnode.is-done text { fill: var(--accent); }
.process__center-num { font-family: var(--font-heritage); font-size: 44px; fill: var(--accent); text-anchor: middle; }
.process__center-label { font-family: var(--font-body); font-size: 15.5px; font-weight: 600; fill: var(--ink); text-anchor: middle; }

.process__stages { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.pstage {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  transition: border-color .4s, box-shadow .4s, transform .4s var(--ease);
}
.pstage.is-active { border-color: var(--accent); box-shadow: 0 14px 30px rgba(169,62,38,.16); transform: translateX(6px); }
.pstage__icon {
  width: 42px; height: 42px; flex: none; border-radius: 21px 21px 6px 6px;
  display: grid; place-items: center; padding: 9px;
  background: var(--bg-alt); color: var(--accent-deep);
  border: 1px solid var(--line);
  transition: background .4s, color .4s;
}
.pstage.is-active .pstage__icon { background: var(--accent); color: #FFF7EA; border-color: var(--accent-deep); }
.pstage h3 { margin: 0 0 .25rem; font-size: 1.02rem; font-weight: 600; }
.pstage h3 span { color: var(--accent); font-family: var(--font-heritage); margin-right: .4rem; }
.pstage p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

@media (min-width: 980px) { .process__layout { grid-template-columns: 1fr 1fr; align-items: start; } }
@media (max-width: 979px) { .process__diagram { position: static; } }

/* ==========================================================================
   Immersive + 3D model demo
   ========================================================================== */
.immersive {
  background: var(--jaali), linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--light-on-dark);
  border-top: 3px solid var(--brass);
}
.immersive__grid { display: grid; gap: 1.4rem; }
.icard {
  background: rgba(255,244,220,.05); border: 1px solid rgba(201,150,46,.28);
  border-radius: var(--radius); padding: 1.7rem 1.6rem; position: relative;
}
.icard--signature { border-color: rgba(208,145,43,.65); background: rgba(169,62,38,.12); }
.icard__tag {
  position: absolute; top: -0.75rem; left: 1.4rem;
  background: var(--haldi); color: var(--dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px;
}
.icard__media {
  min-height: 200px; margin-bottom: 1.3rem;
  border-radius: var(--arch);
  background: var(--jaali), linear-gradient(150deg, #33200F, #241608);
  border-color: rgba(201,150,46,.45);
}
.icard__media::after { color: var(--muted-on-dark); }
.icard__media svg { color: var(--haldi); opacity: .6; }
.icard h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; margin: 0 0 .7rem; }
.icard p { color: var(--muted-on-dark); font-size: .97rem; }
.icard p strong { color: var(--light-on-dark); }
.icard__points { margin: .9rem 0 0; padding: 0; list-style: none; }
.icard__points li { padding-left: 1.4rem; position: relative; color: var(--muted-on-dark); font-size: .93rem; margin-bottom: .45rem; }
.icard__points li::before { content: "❖"; position: absolute; left: 0; color: var(--haldi); font-size: .8em; top: .18em; }
.icard__layers { margin-top: 1.1rem; border-top: 1px solid rgba(201,150,46,.3); padding-top: 1.1rem; }
.icard__layers-title { font-weight: 600; color: var(--light-on-dark) !important; margin: 0 0 .7rem; }
.icard__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .8rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--light-on-dark);
  border: 1px solid rgba(201,150,46,.5); border-radius: 999px; padding: .4rem .85rem;
}
.chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--haldi); }

.model {
  margin-top: 2.6rem; display: grid; gap: 1.6rem; align-items: center;
  background: rgba(255,244,220,.04); border: 1px solid rgba(201,150,46,.3);
  border-radius: var(--radius); padding: 1.4rem;
}
.model__canvas-wrap {
  border-radius: var(--radius); overflow: hidden; cursor: grab;
  background: radial-gradient(80% 90% at 50% 40%, #3A2410, #241608);
  min-height: 300px;
}
.model__canvas-wrap:active { cursor: grabbing; }
#homeModelCanvas { width: 100%; height: 320px; }
.model__caption h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin: 0 0 .6rem; }
.model__caption p { color: var(--muted-on-dark); font-size: .95rem; margin: 0; }
@media (min-width: 900px) { .model { grid-template-columns: 1.3fr 1fr; } .immersive__grid { grid-template-columns: 1fr 1.15fr; } }

.immersive__benefit { margin-top: 3rem; text-align: center; display: grid; gap: 1.4rem; justify-items: center; }
.immersive__benefit p { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.7rem); max-width: 38rem; margin: 0; }
.immersive__benefit em { color: var(--haldi); }

/* ==========================================================================
   Smart
   ========================================================================== */
.smart { background: #1B0F05; color: var(--light-on-dark); overflow: hidden; }
.smart__net { position: absolute; inset: 0; opacity: .5; }
.smart .container { position: relative; }
.smart__grid { display: grid; gap: 1.2rem; }
.scard {
  background: rgba(255,244,220,.045); border: 1px solid rgba(201,150,46,.22);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  transition: border-color .35s, transform .35s var(--ease);
}
.scard:hover { border-color: rgba(208,145,43,.75); transform: translateY(-4px); }
.scard__icon {
  width: 46px; height: 46px; color: var(--haldi); margin-bottom: 1rem;
  background: rgba(201,150,46,.1); border-radius: 23px 23px 6px 6px; padding: 10px;
  border: 1px solid rgba(201,150,46,.3);
}
.scard h3 { font-size: 1.08rem; margin: 0 0 .5rem; font-weight: 600; }
.scard p { margin: 0; font-size: .92rem; color: var(--muted-on-dark); }
.smart__cta { margin-top: 2.6rem; }

@media (min-width: 700px) { .smart__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .smart__grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid { display: grid; gap: 1.1rem; }
.svc {
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(74,46,26,.12); border-color: var(--brass); }
.svc__icon {
  width: 44px; height: 44px; color: var(--accent); margin-bottom: .9rem;
  background: var(--bg-alt); border-radius: 22px 22px 6px 6px; padding: 9px;
  border: 1px solid var(--line);
}
.svc h3 { font-size: 1.04rem; margin: 0 0 .4rem; font-weight: 600; }
.svc p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

@media (min-width: 640px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Projects + handover gallery
   ========================================================================== */
.projects { background: var(--bg-alt); }
.projects__filters { display: flex; gap: .6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.pfilter {
  border: 1.5px solid var(--brass); background: transparent; border-radius: 999px;
  padding: .55rem 1.3rem; font-weight: 600; font-size: .88rem; cursor: pointer; color: var(--ink-soft);
  transition: background .25s, color .25s, border-color .25s;
}
.pfilter.is-active { background: var(--accent-deep); border-color: var(--accent-deep); color: #FFF7EA; }
.projects__grid { display: grid; gap: 1.4rem; }
.pcard {
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(74,46,26,.14); }
.pcard.is-hidden { display: none; }
.pcard__media { border-radius: 0; border-width: 0 0 1.5px 0; min-height: 190px; }
.pcard__body { padding: 1.4rem 1.4rem 1.6rem; }
.pcard__status {
  display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; border-radius: 999px; padding: .28rem .8rem; margin-bottom: .8rem;
}
.pcard__status--completed { background: #E2ECD8; color: #3D6127; }
.pcard__status--ongoing { background: #F4D9A8; color: #7A4B10; }
.pcard h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin: 0 0 .9rem; }
.pcard__specs { margin: 0; display: grid; gap: .5rem; }
.pcard__specs div { display: grid; grid-template-columns: 5.4rem 1fr; gap: .6rem; font-size: .88rem; }
.pcard__specs dt { color: var(--ink-soft); font-weight: 600; }
.pcard__specs dd { margin: 0; }

@media (min-width: 900px) { .projects__grid { grid-template-columns: repeat(3, 1fr); } }

.handover {
  margin-top: 2.6rem; display: grid; gap: 1.6rem;
  background: #FFFBF0; border: 1px solid var(--brass); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.handover__text h3 { font-family: var(--font-heritage); font-weight: 400; font-size: 1.5rem; margin: 0 0 .6rem; }
.handover__text h3 [lang="kn"] { color: var(--accent); }
.handover__text p { color: var(--ink-soft); font-size: .98rem; margin: 0; max-width: 30rem; }
.handover__slots { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.handover__slots .media-slot { min-height: 150px; border-radius: var(--arch); }
.handover__slots .media-slot::after { font-size: .6rem; }
@media (min-width: 900px) { .handover { grid-template-columns: 1fr 1.4fr; align-items: center; } }

/* ==========================================================================
   Estimator + cost reference
   ========================================================================== */
.estimator { background: var(--bg); }
.estimator__panel {
  display: grid; gap: 0; background: #FFFBF0; border: 1px solid var(--brass);
  border-radius: calc(var(--radius) + 6px); overflow: hidden;
  box-shadow: 0 24px 60px rgba(74,46,26,.12);
}
.estimator__inputs { padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1.6rem; border: 0; margin: 0; }
.est-field { border: 0; margin: 0; padding: 0; }
.est-field legend {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--accent-deep); margin-bottom: .8rem; padding: 0;
}
.est-mode { display: inline-flex; border: 1.5px solid var(--brass); border-radius: 999px; padding: 3px; margin-bottom: 1rem; }
.est-mode__btn {
  border: 0; background: transparent; padding: .45rem 1.1rem; border-radius: 999px;
  font-weight: 600; font-size: .85rem; cursor: pointer; color: var(--ink-soft);
}
.est-mode__btn.is-active { background: var(--accent-deep); color: #FFF7EA; }
.est-row { display: flex; align-items: flex-end; gap: .8rem; flex-wrap: wrap; }
.est-row[hidden] { display: none; }
.est-row label { display: grid; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.est-row input {
  width: 7.5rem; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-weight: 600; font-size: 1.05rem; background: var(--bg);
}
#areaInputs input { width: 12rem; }
.est-row input:focus { border-color: var(--accent); outline: none; }
.est-x { font-size: 1.2rem; color: var(--ink-soft); padding-bottom: .8rem; }
.est-floors, .est-pkg { display: flex; gap: .55rem; flex-wrap: wrap; }
.est-floors button {
  min-width: 3.4rem; padding: .6rem .9rem; border-radius: 10px; border: 1.5px solid var(--line);
  background: transparent; font-weight: 700; font-size: .95rem; cursor: pointer; color: var(--ink-soft);
  transition: all .2s;
}
.est-floors button.is-active { background: var(--accent); border-color: var(--accent-deep); color: #FFF7EA; }
.est-pkg button {
  flex: 1; min-width: 7rem; padding: .8rem .9rem; border-radius: 12px; border: 1.5px solid var(--line);
  background: transparent; cursor: pointer; display: grid; gap: .15rem; text-align: center;
  transition: all .2s;
}
.est-pkg button strong { font-size: .98rem; }
.est-pkg button span { font-size: .78rem; color: var(--ink-soft); }
.est-pkg button.is-active { border-color: var(--accent); background: rgba(169,62,38,.08); }
.est-pkg button.is-active strong { color: var(--accent); }

.estimator__output {
  background: var(--jaali), var(--dark); color: var(--light-on-dark);
  padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1.4rem; align-content: start;
}
.est-out__row { display: grid; gap: 1.2rem; }
.est-out__label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); font-weight: 700; margin-bottom: .3rem; }
.est-out__value { font-family: var(--font-display); font-size: 1.5rem; }
.est-out__stat--big .est-out__value { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.est-out__value--accent { color: var(--haldi); }
.est-out__chart { display: grid; grid-template-columns: 150px 1fr; gap: 1.2rem; align-items: center; }
.est-donut { width: 150px; }
.est-donut circle.seg { fill: none; stroke-width: 22; transition: stroke-dasharray .8s var(--ease); }
.est-donut__num { font-family: var(--font-display); font-size: 23px; fill: var(--light-on-dark); text-anchor: middle; }
.est-donut__cap { font-size: 10.5px; fill: var(--muted-on-dark); text-anchor: middle; letter-spacing: .08em; text-transform: uppercase; }
.est-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.est-legend li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--muted-on-dark); }
.est-legend i { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.est-legend b { color: var(--light-on-dark); margin-left: auto; font-weight: 600; }
.est-out__disclaimer { font-size: .8rem; color: var(--muted-on-dark); font-style: italic; margin: 0; }

@media (min-width: 940px) { .estimator__panel { grid-template-columns: 1.15fr 1fr; } }
@media (max-width: 480px) { .est-out__chart { grid-template-columns: 1fr; justify-items: center; } }

.costref { margin-top: 2.6rem; }
.costref h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin: 0 0 1rem;
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: baseline;
}
.costref__date {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--haldi);
  background: rgba(208,145,43,.14); border-radius: 999px; padding: .3rem .8rem;
}
.costref__tablewrap, .spec__tablewrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.costref__table, .spec__table { width: 100%; border-collapse: collapse; background: #FFFBF0; font-size: .9rem; min-width: 560px; }
.costref__table th, .costref__table td, .spec__table th, .spec__table td {
  padding: .75rem .95rem; text-align: left; border-bottom: 1px solid var(--line);
}
.costref__table thead th, .spec__table thead th {
  background: var(--dark); color: var(--light-on-dark); font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.costref__table tbody th, .spec__table tbody th { color: var(--accent-deep); }
.costref__table tr:last-child td, .costref__table tr:last-child th,
.spec__table tr:last-child td, .spec__table tr:last-child th { border-bottom: 0; }
.costref__note { font-size: .8rem; color: var(--ink-soft); font-style: italic; margin-top: .8rem; }

/* ==========================================================================
   Packages + spec table
   ========================================================================== */
.packages { background: var(--bg-alt); }
.pkg__grid { display: grid; gap: 1.3rem; align-items: stretch; }
.pkg {
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; position: relative; display: grid; gap: .9rem; align-content: start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(74,46,26,.14); }
.pkg--featured { border: 1.5px solid var(--haldi); box-shadow: 0 20px 46px rgba(208,145,43,.22); }
.pkg__flag {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--haldi); color: var(--dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .32rem .9rem; border-radius: 999px; white-space: nowrap;
}
.pkg h3 { font-family: var(--font-heritage); font-size: 1.45rem; font-weight: 400; margin: 0; }
.pkg__rate { font-size: 1.05rem; font-weight: 700; color: var(--accent); margin: 0; }
.pkg p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.pkg .btn { justify-self: start; margin-top: .4rem; }

@media (min-width: 860px) { .pkg__grid { grid-template-columns: repeat(3, 1fr); } }

.spec { margin-top: 2.8rem; }
.spec h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: 0 0 .4rem; }
.spec__note { font-size: .8rem; font-style: italic; color: var(--ink-soft); margin: 0 0 1.2rem; }
.spec__table thead th.spec__hl, .spec__table td.spec__hl { background: rgba(208,145,43,.13); }
.spec__table thead th.spec__hl { background: var(--accent-deep); }
.spec__excl {
  margin-top: 1.2rem; background: #FFFBF0; border: 1px dashed var(--brass);
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
}
.spec__excl h4 { margin: 0 0 .4rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); }
.spec__excl p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--bg); }
.tst__badge {
  display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 2rem;
  background: #FFFBF0; border: 1px solid var(--brass); border-radius: 999px; padding: .55rem 1.2rem; font-size: .92rem;
}
.tst__stars { color: var(--haldi); letter-spacing: .12em; }
.tst__videos { display: grid; gap: 1rem; margin-bottom: 1.6rem; }
.tst__videos .media-slot { min-height: 190px; }
@media (min-width: 700px) { .tst__videos { grid-template-columns: 1fr 1fr; } }
.tst__carousel { overflow: hidden; }
.tst__track { display: flex; gap: 1.2rem; transition: transform .55s var(--ease); }
.tst__card {
  flex: 0 0 100%; margin: 0; background: #FFFBF0; border: 1px solid var(--line);
  border-top: 3px solid var(--haldi);
  border-radius: var(--radius); padding: 2.4rem 1.8rem 2rem; position: relative;
}
.tst__card::before {
  content: "\201C"; position: absolute; top: .4rem; left: 1.2rem;
  font-family: var(--font-heritage); font-size: 3.2rem; color: var(--accent); opacity: .35; line-height: 1;
}
.tst__card p { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5; margin: 0 0 1.2rem; }
.tst__card cite { font-style: normal; font-weight: 600; font-size: .92rem; color: var(--accent-deep); }
.tst__card cite::before { content: "— "; }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.tst__nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--brass);
  background: #FFFBF0; cursor: pointer; display: grid; place-items: center; padding: 10px;
  color: var(--ink); transition: all .2s;
}
.tst__nav button:hover { border-color: var(--accent); color: var(--accent); }
.tst__dots { display: flex; gap: .45rem; }
.tst__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .25s, transform .25s; }
.tst__dots button.is-active { background: var(--accent); transform: rotate(45deg) scale(1.3); border-radius: 2px; }
.tst__note { font-size: .78rem; color: var(--ink-soft); font-style: italic; margin-top: 1.4rem; }

@media (min-width: 860px) { .tst__card { flex-basis: calc(50% - .6rem); } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--bg-alt); }
.faq__list { display: grid; gap: .8rem; max-width: 860px; }
.faq__item {
  background: #FFFBF0; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
  transition: border-color .3s;
}
.faq__item[open] { border-color: var(--brass); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 600; font-size: 1rem; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-heritage); font-size: 1.4rem; color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0; padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .95rem; }
.faq__item p strong { color: var(--accent-deep); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: var(--jaali), var(--dark);
  color: var(--light-on-dark);
  border-top: 3px solid var(--brass);
}
.contact__grid { display: grid; gap: 2.5rem; margin-top: 1rem; }
.contact__info address { font-style: normal; display: grid; gap: 1.1rem; font-size: 1rem; }
.contact__info a { color: var(--light-on-dark); text-decoration: none; border-bottom: 1px solid rgba(201,150,46,.5); transition: border-color .2s, color .2s; }
.contact__info a:hover { color: var(--haldi); border-color: var(--haldi); }
.contact__wa {
  display: inline-block; margin-top: .3rem; font-weight: 700; color: var(--haldi) !important;
}
.contact__24x7 {
  display: inline-block; margin-top: .4rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(208,145,43,.2); color: var(--haldi);
  border-radius: 999px; padding: .3rem .85rem;
}
.contact__social { display: flex; gap: .7rem; margin: 1.6rem 0; }
.contact__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(201,150,46,.4);
  display: grid; place-items: center; padding: 10px; color: var(--muted-on-dark);
  transition: all .25s; border-bottom-width: 1px;
}
.contact__social a:hover { color: var(--haldi); border-color: var(--haldi); transform: translateY(-3px); }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,150,46,.35); }
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; }
.contact__form {
  background: rgba(255,244,220,.05); border: 1px solid rgba(201,150,46,.35);
  border-radius: calc(var(--radius) + 4px); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; gap: 1rem;
}
.contact__form h3 { font-family: var(--font-heritage); font-size: 1.45rem; font-weight: 400; margin: 0 0 .3rem; }
.contact__form label { display: grid; gap: .4rem; font-size: .84rem; font-weight: 600; color: var(--muted-on-dark); }
.contact__form input, .contact__form select, .contact__form textarea {
  font: inherit; padding: .75rem .95rem; border-radius: 10px;
  border: 1.5px solid rgba(201,150,46,.3); background: rgba(0,0,0,.28); color: var(--light-on-dark);
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--haldi); outline: none; }
.contact__form select option { color: var(--ink); }
.contact__form-note { margin: 0; font-size: .85re