:root {
  --ink: #20241d;
  --muted: #68705f;
  --soft: #f8f2e6;
  --paper: #fffdf7;
  --mist: #eef1e7;
  --sage: #758864;
  --sage-deep: #344432;
  --gold: #bd8e3b;
  --clay: #a96b49;
  --line: rgba(45, 54, 39, 0.13);
  --shadow: 0 28px 80px rgba(43, 39, 28, 0.13);
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(189, 142, 59, 0.13), transparent 34rem),
    linear-gradient(180deg, var(--soft), #fbf8ef 45%, #f4ecdE);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.on-light,
.site-header.scrolled,
.site-header.nav-active {
  background: rgba(255, 253, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(32, 35, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.site-header.on-light .brand-mark,
.site-header.scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  border-color: rgba(189, 142, 59, 0.42);
  background: rgba(189, 142, 59, 0.1);
  color: var(--gold);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.73rem;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.91rem;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 12px 18px;
}

.site-header.on-light .nav-cta,
.site-header.scrolled .nav-cta,
.site-header.nav-active .nav-cta {
  border-color: rgba(189, 142, 59, 0.5);
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero.compact {
  min-height: 62vh;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 24, 17, 0.86), rgba(31, 36, 22, 0.62) 43%, rgba(31, 36, 22, 0.18) 76%),
    linear-gradient(0deg, rgba(18, 24, 17, 0.62), rgba(18, 24, 17, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: min(820px, 100%);
  padding: 138px clamp(18px, 6vw, 86px) 74px;
}

.hero.compact .hero-content {
  min-height: 62vh;
  padding-bottom: 62px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.15rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  line-height: 1.75;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions,
.contact-methods,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 16px 36px rgba(189, 142, 59, 0.28);
}

.btn.secondary {
  border-color: rgba(52, 68, 50, 0.18);
  background: var(--paper);
  color: var(--sage-deep);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-stats span {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-stats span:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.26rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.8);
}

.trust-strip span {
  display: grid;
  min-height: 84px;
  place-items: center;
  border-right: 1px solid var(--line);
  padding: 18px;
  color: var(--sage-deep);
  font-weight: 900;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section.narrow {
  padding-top: clamp(44px, 7vw, 86px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.split.top {
  align-items: start;
}

.lead,
.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 18px 48px rgba(48, 44, 31, 0.07);
}

.panel.dark {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.panel.dark .muted,
.panel.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(48, 44, 31, 0.06);
}

.card-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.card p,
.timeline p,
.faq p,
.form-note,
.list-check li,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.feature-card {
  min-height: 260px;
}

.feature-card.highlight {
  background: var(--sage-deep);
  color: #fff;
}

.feature-card.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.soft-band {
  background: rgba(238, 241, 231, 0.72);
}

.gold-band {
  background: #f3eadb;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(63, 81, 55, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.timeline div {
  min-height: 250px;
  border-right: 1px solid rgba(63, 81, 55, 0.16);
  padding: 30px;
}

.timeline div:last-child {
  border-right: 0;
}

.timeline strong {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--clay);
}

.list-check {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(189, 142, 59, 0.13);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.35;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1040px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--sage-deep);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: #fbf7ed;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(63, 81, 55, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.contact-methods {
  margin-top: 30px;
}

.contact-methods a {
  border-bottom: 2px solid rgba(189, 142, 59, 0.42);
  color: var(--sage-deep);
  font-weight: 900;
}

.map-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 68, 50, 0.92), rgba(117, 136, 100, 0.78)),
    url("assets/vastu-grace-hero.png") center/cover;
  color: #fff;
  text-align: center;
}

.page-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(189, 142, 59, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--sage-deep);
  font-size: 0.85rem;
  font-weight: 900;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--paper);
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  background: #1f261d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(140px, 0.7fr));
  gap: 34px;
  padding: 58px clamp(18px, 5vw, 72px);
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  color: #fff;
  font-size: 0.95rem;
}

.footer-links a {
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px clamp(18px, 5vw, 72px);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  border-radius: 999px;
  padding: 14px 18px;
  background: #25d366;
  color: #102416;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(25, 80, 43, 0.26);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 88px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    border-color: rgba(189, 142, 59, 0.45);
  }

  .trust-strip,
  .grid-3,
  .timeline,
  .split,
  .quote-grid,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    align-items: start;
  }

  .timeline div {
    border-bottom: 1px solid rgba(63, 81, 55, 0.16);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 88vh;
  }

  .hero-content,
  .hero.compact .hero-content {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 24, 17, 0.92), rgba(18, 24, 17, 0.56)),
      linear-gradient(0deg, rgba(18, 24, 17, 0.64), rgba(18, 24, 17, 0.08));
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    gap: 12px;
  }

  .hero-stats span {
    border-right: 0;
    padding-right: 0;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .split,
  .quote-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .timeline div {
    border-right: 0;
  }

  .card {
    padding: 24px;
  }

  .card-number,
  .timeline strong {
    margin-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .has-lead-form .floating-whatsapp {
    display: none;
  }
}
/* ===============================
   VASTU GRACE V2.0 HERO UPGRADE
================================= */

.hero h1 span{
    display:block;
    color:var(--gold);
}

.hero-copy{
    max-width:720px;
    font-size:1.08rem;
}

.hero-actions{
    margin-top:30px;
}

.hero-actions .btn{
    min-width:220px;
}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:45px;

}

.hero-stats span{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:16px;

    padding:22px;

    text-align:center;

}

.hero-stats strong{

    display:block;

    color:#fff;

    font-size:34px;

    margin-bottom:6px;

}

.hero-stats span:hover{

    transform:translateY(-6px);

    transition:.35s;

    background:rgba(255,255,255,.18);

}

@media(max-width:900px){

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.hero-stats{

grid-template-columns:1fr;

}

}/* Founder Section */

.founder-image{

width:100%;

border-radius:18px;

box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.founder-section{

background:#fffdf8;

}

.founder-section h2{

margin-bottom:20px;

}

.founder-section .lead{

font-size:1.1rem;

margin-bottom:25px;

}.grid-4 .card{

transition:.35s;

}

.grid-4 .card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.10);

border-color:var(--gold);

}
