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

:root {
  --clay:    #C17F5A;
  --clay-lt: #D9A882;
  --clay-pale: #F5EDE4;
  --forest:  #3B5C45;
  --forest-lt: #5A7D66;
  --forest-pale: #E8F0EA;
  --ink:     #1E1E1E;
  --ink-soft:#4A4A4A;
  --mist:    #F9F6F1;
  --white:   #FFFEFB;
  --border:  #E8DDD3;
  --r: 14px;
  --rs: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--mist);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 6%;
  transition: all .35s;
}
nav.solid {
  background: rgba(249,246,241,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 6%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.logo-leaf {
  width: 36px; height: 36px; border-radius: 50% 50% 50% 0;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: white;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
  line-height: 1;
}
.logo-sub {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-top: 2px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }
.btn-book-nav {
  background: var(--forest); color: #fff !important;
  padding: .55rem 1.5rem; border-radius: 50px;
  transition: background .2s, transform .2s !important;
}
.btn-book-nav:hover { background: var(--forest-lt) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; text-decoration: none; color: var(--ink);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--forest); }
.mob-close {
  position: absolute; top: 1.5rem; right: 6%;
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 6% 4rem;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  background: var(--clay-pale);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--forest-pale); color: var(--forest);
  border-radius: 50px; padding: .38rem 1rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--forest); border-radius: 50%;
}
h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.12;
  color: var(--ink); margin-bottom: 1.6rem;
  letter-spacing: -.01em;
}
h1.hero-title strong { font-weight: 700; }
h1.hero-title em { font-style: italic; color: var(--clay); }
.hero-desc {
  font-size: 1.05rem; color: var(--ink-soft);
  line-height: 1.8; max-width: 460px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--forest); line-height: 1;
}
.trust-label { font-size: .78rem; color: var(--ink-soft); margin-top: .2rem; }

/* Profile card in hero */
.profile-card {
  background: var(--white);
  border-radius: 24px 24px 24px 4px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(59,92,69,0.14), 0 4px 16px rgba(0,0,0,0.06);
  width: 320px;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clay-lt), var(--clay));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: white;
  margin-bottom: 1rem;
}
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: .15rem;
}
.profile-title { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.profile-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.chip {
  font-size: .7rem; padding: .25rem .7rem;
  background: var(--clay-pale); color: var(--clay);
  border-radius: 50px; font-weight: 500;
}
.chip.green { background: var(--forest-pale); color: var(--forest); }
.profile-meta { display: flex; justify-content: space-between; font-size: .78rem; color: var(--ink-soft); }
.profile-meta strong { color: var(--ink); font-weight: 600; }
.avail-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #4CAF50; border-radius: 50%; margin-right: .4rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: white; border-radius: var(--r);
  padding: .7rem 1rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: .5rem;
  z-index: 3;
}
.float-badge:nth-of-type(1) { top: 8%; left: -12%; animation: floatY 5s 1s ease-in-out infinite; }
.float-badge:nth-of-type(2) { bottom: 12%; right: -10%; animation: floatY 7s .5s ease-in-out infinite; }
.badge-icon { font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  padding: .9rem 2.2rem; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-size: .92rem;
  font-weight: 600; letter-spacing: .03em;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-primary {
  background: var(--forest); color: white;
  box-shadow: 0 4px 18px rgba(59,92,69,.3);
}
.btn-primary:hover { background: var(--forest-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,92,69,.35); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest-pale); transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: white; box-shadow: 0 4px 18px rgba(193,127,90,.3); }
.btn-clay:hover { background: var(--clay-lt); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 6rem 6%; }
.sec-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--clay); margin-bottom: .8rem;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600;
  line-height: 1.2; color: var(--ink); margin-bottom: 1.2rem;
}
.sec-sub {
  font-size: 1rem; color: var(--ink-soft);
  line-height: 1.75; max-width: 540px;
}
.center { text-align: center; }
.center .sec-sub { margin: 0 auto; }

/* ── ABOUT ── */
.about { background: var(--mist); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1140px; margin: 0 auto; }
.about-visual {
  position: relative;
}
.about-photo-frame {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--clay-pale) 0%, var(--forest-pale) 100%);
  border-radius: 120px 24px 120px 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(59,92,69,0.12);
}
.credential-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: white; border-radius: var(--r);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  min-width: 180px;
}
.cred-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--clay); line-height: 1;
}
.cred-text { font-size: .78rem; color: var(--ink-soft); margin-top: .2rem; }
.about-text { }
.about-text .sec-title { margin-bottom: 1.5rem; }
.about-para { font-size: .95rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.2rem; }
.approach-list { list-style: none; margin: 1.8rem 0; display: flex; flex-direction: column; gap: .9rem; }
.approach-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .9rem; color: var(--ink-soft); line-height: 1.6;
}
.approach-icon {
  width: 32px; height: 32px; border-radius: var(--rs);
  background: var(--forest-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; margin-top: .1rem;
}

/* ── SPECIALISATIONS ── */
.specialisations { background: white; }
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-top: 3.5rem; max-width: 1140px; margin-left: auto; margin-right: auto;
}
.spec-card {
  padding: 2rem;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--mist);
  transition: all .3s;
  position: relative; overflow: hidden;
}
.spec-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  background: linear-gradient(135deg, var(--forest-pale), var(--clay-pale));
  transition: opacity .35s;
}
.spec-card:hover { border-color: var(--forest-lt); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(59,92,69,.1); }
.spec-card:hover::before { opacity: 1; }
.spec-card > * { position: relative; z-index: 1; }
.spec-icon { font-size: 2rem; margin-bottom: 1rem; }
.spec-title { font-weight: 600; font-size: 1rem; margin-bottom: .5rem; }
.spec-desc { font-size: .86rem; color: var(--ink-soft); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.hiw { background: var(--forest); color: white; }
.hiw .sec-label { color: rgba(255,255,255,.6); }
.hiw .sec-title { color: white; }
.hiw .sec-sub { color: rgba(255,255,255,.75); }
.hiw-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 4rem; max-width: 1140px; margin-left: auto; margin-right: auto;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,.2);
}
.hiw-step { text-align: center; position: relative; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
  transition: all .3s;
}
.hiw-step:hover .step-circle { background: var(--clay); border-color: var(--clay); }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--clay); color: white;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-weight: 600; font-size: .95rem; color: white; margin-bottom: .5rem; }
.step-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── BOOKING SECTION ── */
.booking-section { background: var(--clay-pale); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; max-width: 1140px; margin: 0 auto; }
.booking-info .sec-title { margin-bottom: 1.5rem; }
.session-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: .9rem;
}
.detail-icon { font-size: 1.2rem; width: 28px; text-align: center; }
.detail-text { flex: 1; color: var(--ink-soft); }
.detail-val { font-weight: 600; color: var(--ink); }
.notice-box {
  background: white; border-radius: var(--r);
  padding: 1.3rem 1.5rem; margin-top: 2rem;
  border-left: 3px solid var(--forest);
  font-size: .85rem; color: var(--ink-soft); line-height: 1.7;
}
.notice-box strong { color: var(--forest); }

/* Booking card */
.booking-card {
  background: white; border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(59,92,69,.12);
}
.booking-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; margin-bottom: .4rem;
}
.booking-card p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 2rem; }
.ms-btn {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; padding: 1.1rem 1.5rem;
  background: var(--forest); color: white;
  border: none; border-radius: var(--r);
  font-family: 'Jost', sans-serif; font-size: .95rem;
  font-weight: 600; cursor: pointer;
  transition: all .25s; text-decoration: none;
  margin-bottom: 1rem;
}
.ms-btn:hover { background: var(--forest-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,92,69,.3); }
.ms-btn-icon {
  width: 38px; height: 38px; border-radius: var(--rs);
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ms-btn-text { flex: 1; text-align: left; }
.ms-btn-text small { display: block; font-size: .72rem; opacity: .75; font-weight: 400; }
.ms-btn-arrow { opacity: .7; }
.divider {
  display: flex; align-items: center; gap: 1rem;
  font-size: .78rem; color: var(--ink-soft);
  margin: 1.2rem 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.razorpay-btn {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; padding: 1.1rem 1.5rem;
  background: var(--mist); color: var(--ink);
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Jost', sans-serif; font-size: .95rem;
  font-weight: 600; cursor: pointer;
  transition: all .25s; text-decoration: none;
}
.razorpay-btn:hover { border-color: var(--clay); background: var(--clay-pale); }
.payment-badges {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.pay-badge {
  font-size: .7rem; padding: .25rem .7rem;
  background: var(--forest-pale); color: var(--forest);
  border-radius: 50px; font-weight: 500;
}
.booking-note {
  font-size: .78rem; color: var(--ink-soft);
  margin-top: 1.5rem; line-height: 1.6; text-align: center;
  padding-top: 1.2rem; border-top: 1px solid var(--border);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--mist); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.5rem; max-width: 1140px; margin-left: auto; margin-right: auto; }
.testi-card {
  background: white; border-radius: var(--r);
  padding: 2rem; border: 1px solid var(--border);
  transition: all .3s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(59,92,69,.1); transform: translateY(-3px); }
.testi-stars { color: var(--clay); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.65; color: var(--ink);
  font-style: italic; margin-bottom: 1.5rem;
}
.testi-person { display: flex; align-items: center; gap: .8rem; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clay-pale); color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.testi-name { font-weight: 600; font-size: .88rem; }
.testi-meta { font-size: .75rem; color: var(--ink-soft); }

/* ── FAQ ── */
.faq { background: white; }
.faq-inner { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; cursor: pointer;
  font-weight: 500; font-size: .95rem; gap: 1rem;
  list-style: none;
}
.faq-q::after {
  content: '+'; font-size: 1.4rem; color: var(--clay);
  transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: .88rem; color: var(--ink-soft);
  line-height: 1.75; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1a10 100%);
  color: white; text-align: center; padding: 6rem 6%;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--clay); opacity: .07;
  top: -150px; right: -100px;
}
.cta-band::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--forest); opacity: .07;
  bottom: -100px; left: -50px;
}
.cta-band .sec-label { color: rgba(255,255,255,.5); }
.cta-band .sec-title { color: white; max-width: 580px; margin: 0 auto 1rem; }
.cta-band .sec-sub { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: white; color: var(--forest); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.65);
  padding: 3.5rem 6% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: white; font-size: 1.4rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: .83rem; margin: 1rem 0 1.5rem; line-height: 1.7; }
.crisis-strip {
  background: rgba(193,127,90,.2); border: 1px solid rgba(193,127,90,.4);
  border-radius: var(--rs); padding: .9rem 1.2rem;
  font-size: .8rem; display: flex; align-items: center; gap: .7rem;
  line-height: 1.55;
}
.footer-col h4 { color: white; font-weight: 600; font-size: .88rem; margin-bottom: 1.2rem; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.55); font-size: .84rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero::before { display: none; }
  .hero-right { margin-top: 3rem; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .float-badge { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  nav { padding: 1rem 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 5%; }
  .spec-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
