/* ============================================
   SPARKLING AURA — VASTU CONSULTING
   Design: Warm luxury editorial
   Palette: Deep saffron, warm cream, terracotta, gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* === DESIGN TOKENS === */
:root {
  --cream:        #FAF6EF;
  --cream-dark:   #F2EAD8;
  --saffron:      #D4722A;
  --saffron-deep: #B85A18;
  --gold:         #C9973A;
  --gold-light:   #E8C97A;
  --terracotta:   #8B3A2A;
  --charcoal:     #1E1810;
  --warm-gray:    #6B5E52;
  --border:       rgba(201, 151, 58, 0.25);
  --shadow:       0 4px 32px rgba(30, 24, 16, 0.10);
  --shadow-lg:    0 12px 60px rgba(30, 24, 16, 0.16);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:       4px;
  --radius-lg:    12px;
  --max-w:        1120px;
  --nav-h:        72px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section--alt { background: var(--cream-dark); }
.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
  display: block;
}
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

em { font-style: italic; }
strong { font-weight: 500; }

/* === ORNAMENT DIVIDER === */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 1.5rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament-glyph {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--saffron);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212, 114, 42, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
}
.btn-outline:hover {
  background: var(--saffron);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-lg { padding: 18px 44px; font-size: 0.88rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--saffron); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--saffron); }
.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav__mobile a:hover { color: var(--saffron); }
.nav__mobile.open { display: flex; }
.nav__mobile .btn {
  font-size: 0.85rem;
  padding: 0.75rem 2rem;
  margin-top: 0.5rem;
  width: auto;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
}

/* === HERO === */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 80px);
  padding-left: clamp(20px, 6vw, 100px);
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--saffron);
  font-style: italic;
}
.hero__sub {
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.hero__mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 30% 40%, var(--gold) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--saffron) 0%, transparent 45%);
}

/* SVG Mandala */
.mandala-svg {
  width: min(420px, 90%);
  height: min(420px, 90%);
  animation: mandala-rotate 60s linear infinite;
  opacity: 0.85;
}
@keyframes mandala-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.mandala-inner {
  animation: mandala-rotate 30s linear infinite reverse;
  transform-origin: center;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 20px 0;
  border-top: 3px solid var(--gold);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(250,246,239,0.8);
}
.trust-item__icon {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* === SECTION INTRO === */
.section-intro {
  max-width: 680px;
  margin: 0 auto 4rem;
}

/* === SERVICES / CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--saffron); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--gold);
}
.service-card.featured::before { background: var(--gold); }
.service-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.service-card__tier {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.service-card.featured .service-card__tier { color: var(--gold-light); }
.service-card__title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.service-card.featured .service-card__price { color: var(--gold-light); }
.service-card__price sup {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: super;
}
.service-card__prop {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}
.service-card.featured .service-card__prop { color: rgba(250,246,239,0.6); }
.service-card__divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.service-card.featured .service-card__divider { background: rgba(255,255,255,0.12); }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.service-features li::before {
  content: '✦';
  color: var(--saffron);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.service-card.featured .service-features li::before { color: var(--gold-light); }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--saffron);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .process-step__num {
  background: var(--saffron);
  color: var(--cream);
  border-color: var(--saffron);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
}
.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--gold);
}

/* === LEAD MAGNET BANNER === */
.lead-magnet {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 60%, var(--terracotta) 100%);
  color: var(--cream);
  padding: clamp(48px, 7vw, 96px) 0;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.lead-magnet h2 { color: var(--cream); }
.lead-magnet h2 em { color: var(--gold-light); font-style: italic; }
.lead-magnet .lead { color: rgba(250,246,239,0.85); max-width: 520px; }
.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
}
.lead-magnet__form input {
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-magnet__form input::placeholder { color: rgba(250,246,239,0.6); }
.lead-magnet__form input:focus { border-color: rgba(255,255,255,0.7); }
.lead-magnet__form .btn { justify-content: center; background: var(--cream); color: var(--saffron-deep); }
.lead-magnet__form .btn:hover { background: var(--gold-light); }
.lead-magnet__note {
  font-size: 0.75rem;
  color: rgba(250,246,239,0.6);
  text-align: center;
}

/* === ABOUT PREVIEW === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
}
.about-image__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--warm-gray);
  font-size: 0.85rem;
  text-align: center;
  padding: 0;
}
.about-image__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-image__frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  pointer-events: none;
}
.about-image__gold-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 0 var(--radius-lg) 0 100%;
}
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--saffron);
}
.credential-item__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.credential-item__text {
  font-size: 0.88rem;
  color: var(--warm-gray);
}
.credential-item__text strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 2px;
  font-size: 0.92rem;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  gap: 16px;
}
.faq-question:hover { color: var(--saffron); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--saffron);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
}
.contact-item__value a { transition: color 0.2s; }
.contact-item__value a:hover { color: var(--saffron); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .form-group:last-child { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 8px;
}
.form-submit { margin-top: 8px; }

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.footer__brand h3 span { color: var(--saffron); }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(250,246,239,0.4);
}
.footer__bottom a {
  font-size: 0.78rem;
  color: rgba(250,246,239,0.4);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: rgba(250,246,239,0.8); }
.footer__legal { display: flex; gap: 24px; }

/* === PAGE HEADER (inner pages) === */
.page-hero {
  background: var(--cream-dark);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,151,58,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,114,42,0.06) 0%, transparent 50%);
}
.page-hero .container { position: relative; }

/* === DISCOVERY CALL CTA === */
.discovery-cta {
  text-align: center;
  padding: 48px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 3rem auto 0;
}
.discovery-cta .availability {
  display: inline-block;
  background: rgba(201, 151, 58, 0.12);
  color: var(--gold);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* === WHAT IS VASTU PAGE === */
.vastu-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.principle-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.principle-card__symbol {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.principle-card h4 { margin-bottom: 0.5rem; }
.principle-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.7; }

/* === UTILITY === */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .lead-magnet__inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 450px; aspect-ratio: 4/3; width: 100%; }
  .about-image__placeholder { position: absolute; inset: 0; padding: 0; }
  .about-image__placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; border-radius: var(--radius-lg); }
  .contact-grid { grid-template-columns: 1fr; }
  .practice-photo-grid { grid-template-columns: 1fr !important; }
  .practice-photo-grid img { max-height: 350px; width: 100%; object-fit: cover; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .vastu-principles { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }
  .trust-bar__inner { flex-direction: column; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group:last-child { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .discovery-cta { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .lead-magnet__form { min-width: unset; }
  .process-steps { grid-template-columns: 1fr; }
}

/* === NOTIFICATION / SUCCESS === */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(201,151,58,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}

/* === CONTACT / BOOKING HERO === */
.contact-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A1F12 100%);
  padding: 7rem 0 5rem;
  position: relative;
}

/* Tidio chat widget fix */
#tidio-chat { pointer-events: none !important; }
#tidio-chat iframe { pointer-events: auto !important; }

/* Button click fix */
.hero__actions { position: relative; z-index: 10; }
.hero__actions a { position: relative; z-index: 10; }
.lead-magnet .container { position: relative; z-index: 2; }
.lead-magnet a.btn { position: relative; z-index: 10; }
