:root {
  --sage:#7a9e7e; --sage-light:#a8c5a0; --sage-pale:#e8f0e5;
  --beige:#f5efe6; --beige-mid:#e8ddd0; --beige-dark:#c9b99a;
  --offwhite:#fdfaf6; --earth:#8b6f52; --earth-deep:#5c4433;
  --warm-dark:#2c2416; --text-body:#4a3f34; --text-muted:#7a6e64;
  --shadow-warm:rgba(139,111,82,0.12);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--offwhite);color:var(--text-body);overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:18px 48px;display:flex;align-items:center;justify-content:space-between;background:rgba(253,250,246,0.94);backdrop-filter:blur(12px);border-bottom:1px solid rgba(201,185,154,0.2)}
.nav-logo{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:500;letter-spacing:0.04em;color:var(--earth-deep)}
.nav-logo span{color:var(--sage);font-style:italic}
.nav-links{display:flex;gap:32px;list-style:none}
.nav-links a{font-size:0.82rem;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-muted);text-decoration:none;transition:color 0.3s}
.nav-links a:hover{color:var(--sage)}
.nav-cta{background:var(--sage);color:white;padding:10px 24px;border-radius:30px;font-size:0.82rem;letter-spacing:0.06em;text-transform:uppercase;text-decoration:none;transition:all 0.3s;box-shadow:0 4px 16px rgba(122,158,126,0.35)}
.nav-cta:hover{background:var(--earth);transform:translateY(-1px)}

/* HERO */
.hero{min-height:100vh;background:linear-gradient(155deg,var(--beige) 0%,var(--offwhite) 40%,var(--sage-pale) 100%);display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:120px 80px 80px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-100px;right:-100px;width:600px;height:600px;background:radial-gradient(circle,rgba(168,197,160,0.18) 0%,transparent 70%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-80px;left:-80px;width:400px;height:400px;background:radial-gradient(circle,rgba(232,196,184,0.2) 0%,transparent 70%);border-radius:50%}
.hero-content{position:relative;z-index:2}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:white;border:1px solid var(--beige-mid);padding:8px 18px;border-radius:30px;font-size:0.78rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--sage);margin-bottom:32px;box-shadow:0 2px 12px var(--shadow-warm)}
.hero-badge::before{content:'✦';font-size:0.6rem}
.hero-headline{font-family:'Cormorant Garamond',serif;font-size:clamp(2.8rem,4.5vw,4.2rem);font-weight:400;line-height:1.15;color:var(--warm-dark);margin-bottom:12px}
.hero-headline em{font-style:italic;color:var(--sage)}
.hero-sub-headline{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:300;font-style:italic;color:var(--earth);margin-bottom:28px;line-height:1.5}
.hero-body{font-size:1rem;line-height:1.75;color:var(--text-muted);max-width:500px;margin-bottom:40px}
.hero-body strong{color:var(--text-body);font-weight:500}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}
.btn-primary{background:linear-gradient(135deg,var(--sage),#5d8a63);color:white;padding:16px 36px;border-radius:50px;font-size:0.9rem;letter-spacing:0.04em;text-decoration:none;box-shadow:0 8px 28px rgba(122,158,126,0.4);transition:all 0.35s;display:inline-block}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(122,158,126,0.5)}
.btn-secondary{background:transparent;color:var(--earth-deep);padding:16px 36px;border-radius:50px;border:1.5px solid var(--beige-dark);font-size:0.9rem;letter-spacing:0.04em;text-decoration:none;transition:all 0.35s;display:inline-block}
.btn-secondary:hover{border-color:var(--sage);color:var(--sage)}
.hero-stats{margin-top:48px;display:flex;gap:40px}
.stat-item{text-align:left}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:500;color:var(--earth-deep);line-height:1}
.stat-label{font-size:0.78rem;color:var(--text-muted);margin-top:4px;letter-spacing:0.04em}
.hero-image{position:relative;z-index:2;display:flex;justify-content:center;align-items:center}
.hero-image-frame{position:relative;width:420px;height:520px}
.hero-photo-wrap{width:380px;height:480px;border-radius:60% 40% 55% 45%/50% 45% 55% 50%;overflow:hidden;box-shadow:0 32px 80px rgba(139,111,82,0.25),0 8px 24px rgba(122,158,126,0.2);border:3px solid rgba(255,255,255,0.8)}
.hero-photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:top center}
.hero-float-card{position:absolute;background:white;border-radius:16px;padding:14px 20px;box-shadow:0 8px 32px var(--shadow-warm);font-size:0.82rem}
.hero-float-card.card-1{bottom:60px;left:-20px}
.hero-float-card.card-2{top:80px;right:-10px}
.float-card-number{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:600;color:var(--sage);line-height:1}
.float-card-label{color:var(--text-muted);font-size:0.75rem;margin-top:2px}

/* SECTION COMMONS */
section{padding:100px 80px}
.section-tag{display:inline-block;font-size:0.72rem;letter-spacing:0.16em;text-transform:uppercase;color:var(--sage);font-weight:500;margin-bottom:16px}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,3.5vw,3rem);font-weight:400;line-height:1.2;color:var(--warm-dark)}
.section-title em{font-style:italic;color:var(--sage)}
.section-subtitle{font-size:1.05rem;color:var(--text-muted);line-height:1.7;max-width:580px;margin-top:16px}

/* EMPATHY BANNER */
.empathy-banner{background:linear-gradient(135deg,#3d6b42 0%,#2d5235 50%,#1e3d28 100%);padding:80px;text-align:center;position:relative;overflow:hidden}
.empathy-banner h2{font-family:'Cormorant Garamond',serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:300;color:white;line-height:1.4;max-width:800px;margin:0 auto 20px}
.empathy-banner h2 em{font-style:italic;color:#c8e6c9}
.empathy-banner p{font-size:1.05rem;color:rgba(255,255,255,0.72);max-width:580px;margin:0 auto;line-height:1.7}

/* SYMPTOMS */
.symptoms-section{background:var(--beige)}
.symptoms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:56px}
.symptom-card{background:white;border-radius:20px;padding:28px;border:1px solid var(--beige-mid);transition:all 0.3s;cursor:default}
.symptom-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px var(--shadow-warm);border-color:var(--sage-light)}
.symptom-icon{width:44px;height:44px;border-radius:12px;background:var(--sage-pale);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.symptom-card h4{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:500;color:var(--warm-dark);margin-bottom:8px}
.symptom-card p{font-size:0.88rem;color:var(--text-muted);line-height:1.6}

/* ABOUT */
.about-section{background:var(--offwhite);display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;padding:100px 80px}
.about-image-wrap{position:relative;display:block}
.about-photo{width:100%;border-radius:30px;object-fit:cover;aspect-ratio:3/4;box-shadow:0 24px 64px rgba(139,111,82,0.2)}
.about-accent-box{position:absolute;bottom:-24px;right:-24px;background:var(--sage);color:white;padding:28px 32px;border-radius:20px;font-family:'Cormorant Garamond',serif;font-size:1rem;max-width:220px;line-height:1.5;box-shadow:0 12px 32px rgba(122,158,126,0.4)}
.about-accent-box strong{display:block;font-size:1.6rem;margin-bottom:4px}
.about-credentials{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0}
.credential-tag{background:var(--sage-pale);color:var(--earth-deep);padding:8px 16px;border-radius:20px;font-size:0.8rem;letter-spacing:0.04em;border:1px solid rgba(122,158,126,0.25)}
.about-body{font-size:1rem;line-height:1.85;color:var(--text-muted);margin-top:16px}
.about-body strong{color:var(--text-body);font-weight:500}

/* ROOT CAUSE */
.rootcause-section{background:var(--sage-pale)}
.rootcause-intro{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;margin-bottom:64px}
.causes-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.cause-card{background:white;border-radius:20px;padding:28px;border-left:4px solid var(--sage);transition:all 0.3s}
.cause-card:hover{box-shadow:0 12px 36px var(--shadow-warm)}
.cause-number{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;color:var(--sage-light);line-height:1;margin-bottom:12px}
.cause-card h4{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:500;color:var(--warm-dark);margin-bottom:8px}
.cause-card p{font-size:0.87rem;color:var(--text-muted);line-height:1.65}

/* PILLARS */
.pillars-section{background:white}
.pillars-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:56px}
.pillar-card{background:var(--beige);border-radius:24px;padding:36px 28px;text-align:center;border:1px solid var(--beige-mid);transition:all 0.35s;position:relative;overflow:hidden}
.pillar-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,var(--sage),#5d8a63);opacity:0;transition:opacity 0.35s}
.pillar-card:hover::before{opacity:1}
.pillar-card:hover .pillar-card-title,.pillar-card:hover .pillar-card-text{color:white}
.pillar-card:hover .pillar-icon svg{stroke:white}
.pillar-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;position:relative;z-index:1;color:var(--sage)}
.pillar-card-title{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:500;color:var(--warm-dark);margin-bottom:10px;transition:color 0.35s;position:relative;z-index:1}
.pillar-card-text{font-size:0.84rem;color:var(--text-muted);line-height:1.65;transition:color 0.35s;position:relative;z-index:1}

/* JOURNEY */
.journey-section{background:var(--beige)}
.journey-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:60px;position:relative}
.journey-timeline::before{content:'';position:absolute;top:40px;left:12.5%;right:12.5%;height:2px;background:linear-gradient(90deg,var(--sage-light),var(--beige-dark))}
.journey-step{text-align:center;padding:0 16px}
.journey-dot{width:80px;height:80px;border-radius:50%;background:white;border:3px solid var(--sage);display:flex;align-items:center;justify-content:center;margin:0 auto 24px;box-shadow:0 8px 24px var(--shadow-warm);position:relative;z-index:1;transition:all 0.3s}
.journey-step:hover .journey-dot{background:var(--sage);transform:scale(1.1)}
.journey-step:hover .journey-dot svg{stroke:white}
.journey-step h4{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:500;color:var(--warm-dark);margin-bottom:10px}
.journey-step p{font-size:0.84rem;color:var(--text-muted);line-height:1.65}

/* TESTIMONIALS */
.testimonials-section{background:linear-gradient(150deg,#2e5c34 0%,#1e3d28 60%,#162c1e 100%);padding:100px 80px}
.testimonials-section .section-tag{color:var(--sage-light)}
.testimonials-section .section-title{color:white}
.testimonials-section .section-subtitle{color:rgba(255,255,255,0.55)}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px}
.testimonial-card{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.1);border-radius:24px;padding:36px 30px;backdrop-filter:blur(8px);transition:all 0.35s}
.testimonial-card:hover{background:rgba(255,255,255,0.12);transform:translateY(-4px)}
.testimonial-quote{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-style:italic;line-height:1.7;color:rgba(255,255,255,0.9);margin-bottom:28px}
.testimonial-quote::before{content:'\201C';font-size:2rem;color:var(--sage-light);line-height:0;vertical-align:-0.5em;margin-right:4px}
.testimonial-result{background:rgba(122,158,126,0.2);border-left:3px solid var(--sage-light);padding:12px 16px;border-radius:8px;font-size:0.82rem;color:var(--sage-light);line-height:1.6;margin-bottom:24px}
.testimonial-author{display:flex;align-items:center;gap:14px}
.author-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--sage),var(--earth));display:flex;align-items:center;justify-content:center;color:white;font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:500;flex-shrink:0}
.author-name{font-size:0.9rem;font-weight:500;color:white}
.author-detail{font-size:0.77rem;color:rgba(255,255,255,0.45);margin-top:2px}
.condition-tag{display:inline-block;margin-top:8px;background:rgba(122,158,126,0.2);color:var(--sage-light);padding:4px 10px;border-radius:10px;font-size:0.72rem}

/* FAQ */
.faq-section{background:var(--offwhite)}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:56px}
.faq-item{background:white;border-radius:16px;padding:28px;border:1px solid var(--beige-mid);cursor:pointer;transition:all 0.3s}
.faq-item:hover{border-color:var(--sage-light);box-shadow:0 8px 24px var(--shadow-warm)}
.faq-item.open{border-color:var(--sage)}
.faq-q{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:500;color:var(--warm-dark);display:flex;justify-content:space-between;align-items:start;gap:16px}
.faq-q span{color:var(--sage);font-size:1.2rem;flex-shrink:0}
.faq-a{font-size:0.88rem;color:var(--text-muted);line-height:1.7;margin-top:14px;display:none}
.faq-item.open .faq-a{display:block}

/* INSTAGRAM */
.instagram-section{background:var(--offwhite);padding:80px}
.insta-header{text-align:center;margin-bottom:48px}
.insta-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:8px}
.insta-card{aspect-ratio:1;background:var(--beige-mid);border-radius:12px;overflow:hidden;display:flex;align-items:center;justify-content:center;position:relative;cursor:pointer;transition:all 0.3s}
.insta-card:hover{transform:scale(1.04)}
.insta-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,var(--beige),var(--sage-pale))}
.insta-placeholder svg{color:var(--sage)}
.insta-placeholder span{font-size:0.62rem;color:var(--text-muted);text-align:center;padding:0 8px}
.insta-overlay{position:absolute;inset:0;background:rgba(122,158,126,0.85);display:flex;align-items:center;justify-content:center;color:white;font-size:1.4rem;opacity:0;transition:opacity 0.3s}
.insta-card:hover .insta-overlay{opacity:1}

.insta-link{
  color:var(--sage);
  text-decoration:none;
  font-weight:500;
  transition:opacity 0.3s;
}
.insta-link:hover{
  opacity:0.8;
}


/* BOOKING */
.booking-section{background:linear-gradient(135deg,var(--sage-pale),var(--beige));text-align:center;padding:100px 80px}
.booking-card{background:white;border-radius:32px;padding:72px 64px;max-width:800px;margin:0 auto;box-shadow:0 32px 80px var(--shadow-warm)}
.booking-form{display:flex;flex-direction:column;gap:16px;max-width:480px;margin:0 auto}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-field{display:flex;flex-direction:column;gap:6px}
.form-field label{font-size:0.78rem;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-muted)}
.form-field input,.form-field select,.form-field textarea{padding:14px 18px;border-radius:12px;border:1.5px solid var(--beige-mid);background:var(--beige);font-family:'DM Sans',sans-serif;font-size:0.92rem;color:var(--text-body);outline:none;transition:border 0.3s;width:100%}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--sage)}
.form-field textarea{resize:vertical;min-height:100px}
.form-submit{background:linear-gradient(135deg,var(--sage),#5d8a63);color:white;padding:18px 48px;border-radius:50px;border:none;cursor:pointer;font-family:'DM Sans',sans-serif;font-size:1rem;letter-spacing:0.04em;box-shadow:0 8px 28px rgba(122,158,126,0.4);transition:all 0.35s;width:100%;margin-top:8px}
.form-submit:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(122,158,126,0.5)}
.booking-trust{display:flex;justify-content:center;gap:32px;margin-top:32px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:8px;font-size:0.82rem;color:var(--text-muted)}
.trust-item span:first-child{color:var(--sage)}

/* FOOTER */
footer{background:var(--warm-dark);padding:64px 80px 32px;color:rgba(255,255,255,0.55)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:64px;margin-bottom:48px}
.footer-brand .nav-logo{color:white;font-size:1.4rem;margin-bottom:16px;display:block}
.footer-brand p{font-size:0.88rem;line-height:1.7;max-width:280px}
.footer-col h5{font-size:0.78rem;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.7);margin-bottom:20px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col ul a{color:rgba(255,255,255,0.45);font-size:0.88rem;text-decoration:none;transition:color 0.3s}
.footer-col ul a:hover{color:var(--sage-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding-top:28px;display:flex;justify-content:space-between;align-items:center;font-size:0.8rem}
.footer-social{display:flex;gap:16px}
.social-btn{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.5);font-size:0.9rem;text-decoration:none;transition:all 0.3s}
.social-btn:hover{background:var(--sage);color:white}

/* FLOATING BUTTON */
.whatsapp-float{position:fixed;bottom:32px;right:32px;z-index:999;width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--sage),#5d8a63);color:white;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(122,158,126,0.5);text-decoration:none;transition:all 0.3s;animation:pulse-sage 2.5s infinite}
.whatsapp-float:hover{transform:scale(1.1)}
@keyframes pulse-sage{0%,100%{box-shadow:0 8px 24px rgba(122,158,126,0.45)}50%{box-shadow:0 8px 40px rgba(122,158,126,0.75)}}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.hero-content>*{animation:fadeUp 0.8s ease both}
.hero-content>*:nth-child(1){animation-delay:0.1s}
.hero-content>*:nth-child(2){animation-delay:0.25s}
.hero-content>*:nth-child(3){animation-delay:0.4s}
.hero-content>*:nth-child(4){animation-delay:0.5s}
.hero-content>*:nth-child(5){animation-delay:0.65s}
.hero-image{animation:fadeUp 1s ease 0.3s both}
.reveal{opacity:0;transform:translateY(28px);transition:opacity 0.7s ease,transform 0.7s ease}
.reveal.visible{opacity:1;transform:none}

/* RESPONSIVE */
@media(max-width:1024px){
  nav{padding:16px 24px}
  .nav-links{display:none}
  section{padding:64px 24px}
  .hero{grid-template-columns:1fr;padding:110px 24px 64px;text-align:center}
  .hero-image{display:none}
  .hero-body{max-width:100%}
  .hero-buttons{justify-content:center}
  .hero-stats{justify-content:center}
  .symptoms-grid{grid-template-columns:1fr 1fr}
  .about-section{grid-template-columns:1fr;padding:64px 24px}
  .about-image-wrap{display:none}
  .rootcause-intro{grid-template-columns:1fr}
  .causes-grid{grid-template-columns:1fr}
  .pillars-grid{grid-template-columns:1fr 1fr}
  .journey-timeline{grid-template-columns:1fr 1fr}
  .journey-timeline::before{display:none}
  .testimonials-section{padding:64px 24px}
  .testimonials-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .booking-section{padding:64px 24px}
  .booking-card{padding:40px 24px}
  .form-row{grid-template-columns:1fr}
  .insta-grid{grid-template-columns:repeat(3,1fr)}
  .instagram-section{padding:64px 24px}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  footer{padding:48px 24px 24px}
  .empathy-banner{padding:56px 24px}
  .booking-trust{flex-direction:column;align-items:center;gap:12px}
}
@media(max-width:600px){
  .symptoms-grid{grid-template-columns:1fr}
  .pillars-grid{grid-template-columns:1fr}
  .journey-timeline{grid-template-columns:1fr}
  .insta-grid{grid-template-columns:repeat(2,1fr)}
}