/* ===== Guruved Healthcare — shared styles ===== */
:root{
  --ink:#233327;
  --paper:#F5F7F0;
  --sage:#E6F0DF;
  --herb:#5D9068;
  --herb-dark:#3E6B4C;
  --turmeric:#C08A2E;
  --line: rgba(35,51,39,0.13);
  --radius: 2px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Manrope', sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Fraunces', serif;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--ink);
}
a{color:inherit; text-decoration:none;}
img,svg{display:block;max-width:100%;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:'Manrope',sans-serif;
  font-size:12.5px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--herb-dark);
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--turmeric);
  display:inline-block;
}
::selection{ background:var(--turmeric); color:var(--paper); }

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------- Header ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(241,238,226,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav{
  max-width:1180px; margin:0 auto; padding:4px 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:nowrap;
}
.logo{
  display:flex; align-items:center; gap:10px;
  flex-shrink:0;
}
.logo img{ height:74px; width:auto; }
.nav-links{
  display:flex; gap:22px;
  font-size:13.5px; font-weight:600;
  flex-wrap:nowrap;
  flex-shrink:0;
}
.nav-links a{
  position:relative;
  padding:4px 0;
  white-space:nowrap;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1.5px;
  background:var(--herb);
  transition:width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--herb-dark); }
.nav-right{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.lang-switch{ position:relative; flex-shrink:0; }
.lang-current{
  display:flex; align-items:center; gap:6px;
  background:none; border:1px solid var(--line); border-radius:20px;
  padding:8px 14px; font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:700;
  color:var(--herb-dark); cursor:pointer; transition:border-color 0.2s ease;
}
.lang-current:hover{ border-color:var(--herb); }
.lang-current svg{ width:9px; height:9px; transition:transform 0.2s ease; flex-shrink:0; }
.lang-switch.open .lang-current svg{ transform:rotate(180deg); }
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0;
  background:var(--paper); border:1px solid var(--line);
  border-radius:10px; overflow:hidden; min-width:140px;
  box-shadow:0 14px 30px rgba(22,36,27,0.16);
  display:none; z-index:150;
}
.lang-switch.open .lang-menu{ display:block; }
.lang-menu button{
  display:block; width:100%; text-align:left;
  background:none; border:none; padding:11px 16px;
  font-family:'Manrope',sans-serif; font-size:13.5px; font-weight:600; color:var(--ink);
  cursor:pointer; transition:background 0.15s ease;
}
.lang-menu button:hover{ background:var(--sage); }
.lang-menu button.active{ color:var(--herb); font-weight:800; }
.mobile-drawer .lang-menu{ position:static; display:block; box-shadow:none; border:none; margin-top:6px; }
.mobile-drawer .lang-current{ display:none; }
.nav-cta{
  background:var(--herb);
  color:var(--paper);
  padding:10px 20px;
  border-radius:var(--radius);
  font-size:13.5px; font-weight:700;
  border:1px solid var(--herb);
  transition:background 0.25s ease, color 0.25s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:transparent; color:var(--herb); }
.menu-btn{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.menu-btn svg{ width:24px; height:24px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--herb);
  outline-offset:3px;
}

/* ---------- Page header (non-home hero) ---------- */
.page-head{
  padding:120px 0 64px;
  border-bottom:1px solid var(--line);
}
.page-head h1{
  font-size:clamp(34px,4.4vw,54px);
  margin-top:16px;
  line-height:1.08;
}
.page-head p{
  margin-top:18px; font-size:16.5px; max-width:560px; color:#3c473d;
}
.breadcrumb{ font-size:13px; color:#5b665c; margin-top:6px; }
.breadcrumb a{ color:var(--herb-dark); font-weight:700; }

/* ---------- Buttons ---------- */
.btn-primary{
  background:var(--ink);
  color:var(--paper);
  padding:15px 30px;
  font-weight:700; font-size:14.5px;
  border-radius:var(--radius);
  display:inline-block;
  transition:transform 0.25s ease, background 0.25s ease;
  border:1px solid var(--ink);
  cursor:pointer;
}
.btn-primary:hover{ background:var(--herb-dark); transform:translateY(-2px); border-color:var(--herb-dark);}
.btn-ghost{
  font-weight:700; font-size:14.5px;
  padding:15px 6px;
  border-bottom:1.5px solid var(--ink);
  transition:border-color 0.25s ease, color 0.25s ease;
  display:inline-block;
}
.btn-ghost:hover{ color:var(--herb); border-color:var(--herb); }

/* ---------- Hero (home) ---------- */
.hero{ padding:132px 0 100px; position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:60px; align-items:center; }
.hero h1{ font-size:clamp(40px, 5.2vw, 68px); line-height:1.04; letter-spacing:-0.02em; }
.hero h1 em{ font-style:italic; color:var(--herb); }
.hero p.lede{ margin-top:26px; font-size:18px; max-width:460px; color:#3c473d; }
.hero-cta{ margin-top:38px; display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.hero-art{ position:relative; aspect-ratio:1/1.05; }
.hero-art svg{ width:100%; height:100%; }
.hero-stats{ margin-top:52px; display:flex; gap:44px; padding-top:28px; border-top:1px solid var(--line); max-width:520px; flex-wrap:wrap; }
.hero-stats div strong{ font-family:'Fraunces',serif; font-size:28px; font-weight:600; display:block; }
.hero-stats div span{ font-size:13px; color:#5b665c; }

.leaf-path{ fill:none; stroke:var(--herb); stroke-width:1.4; stroke-linecap:round; stroke-dasharray:900; stroke-dashoffset:900; animation:draw 2.6s ease forwards 0.3s; }
.leaf-path.alt{ stroke:var(--turmeric); animation-delay:0.9s; }
.leaf-vein{ fill:none; stroke:var(--herb); stroke-width:0.8; opacity:0.55; stroke-dasharray:400; stroke-dashoffset:400; animation:draw 2s ease forwards 1.4s; }
@keyframes draw{ to{ stroke-dashoffset:0; } }

.ayur-icon .ayur-circle{ fill:none; stroke:var(--turmeric); stroke-width:1; opacity:0.35; }
.ayur-icon .ayur-main{ fill:none; stroke:var(--herb); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; opacity:0; animation:ayurFade 0.8s ease forwards; }
.ayur-icon .ayur-pestle{ fill:none; stroke:var(--herb); stroke-width:12; stroke-linecap:round; opacity:0; animation:ayurFade 0.8s ease forwards 0.25s; }
.ayur-icon .ayur-pestlehead{ fill:var(--paper); stroke:var(--herb); stroke-width:2; opacity:0; animation:ayurFade 0.8s ease forwards 0.4s; }
.ayur-icon .ayur-dot{ fill:var(--turmeric); stroke:none; opacity:0; animation:ayurFade 0.6s ease forwards 1.1s; }
@keyframes ayurFade{ to{ opacity:1; } }

/* ---------- Section shared ---------- */
section{ padding:104px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(30px,3.4vw,42px); margin-top:16px; line-height:1.12; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

/* ---------- Dark section variant ---------- */
.dark-section{ background:var(--herb-dark); color:var(--paper); }
.dark-section .eyebrow{ color:var(--turmeric); }
.dark-section .eyebrow::before{ background:var(--turmeric); }
.dark-section h2{ color:var(--paper); }
.dark-section p{ color:#D9E2D5; }

/* ---------- About / story blocks ---------- */
.about-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap:64px; align-items:start; }
.about-grid p{ max-width:520px; font-size:16.5px; }
.about-quote{ font-family:'Fraunces',serif; font-style:italic; font-size:24px; line-height:1.4; }
.about-quote span{ display:block; margin-top:18px; font-family:'Manrope',sans-serif; font-style:normal; font-size:13px; letter-spacing:0.06em; color:var(--turmeric); text-transform:uppercase; font-weight:700; }

.founder-card{
  display:grid; grid-template-columns:180px 1fr; gap:28px; align-items:center;
  background:var(--sage); border:1px solid var(--line); padding:32px;
  margin-top:48px;
}
.founder-avatar{
  width:180px; height:180px; border-radius:50%;
  background:var(--paper); border:2px solid var(--herb);
  display:flex; align-items:center; justify-content:center;
}
.founder-avatar svg{ width:78px; height:78px; }
.founder-card h3{ font-size:22px; }
.founder-card .role{ font-size:13.5px; font-weight:700; color:var(--herb-dark); letter-spacing:0.03em; margin-top:4px; text-transform:uppercase; }
.founder-card p{ margin-top:14px; font-size:15px; color:#3c473d; max-width:460px; }

/* ---------- Doshas ---------- */
.dosha-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:8px; }
.dosha-card{ background:var(--paper); padding:40px 32px; transition:background 0.3s ease; }
.dosha-card:hover{ background:var(--sage); }
.dosha-mark{ font-family:'Fraunces',serif; font-style:italic; font-size:15px; color:var(--turmeric); margin-bottom:22px; }
.dosha-card h3{ font-size:23px; margin-bottom:12px; }
.dosha-card p{ font-size:15px; color:#454f46; }
.dosha-tags{ margin-top:20px; display:flex; gap:8px; flex-wrap:wrap; }
.dosha-tags span{ font-size:11.5px; font-weight:700; letter-spacing:0.04em; padding:5px 10px; border:1px solid var(--herb); color:var(--herb-dark); border-radius:20px; }

/* ---------- Products ---------- */
.products-bg{ background:var(--sage); }
.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }
.product-card{
  background:var(--paper); border:1px solid var(--line);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:flex; flex-direction:column; overflow:hidden;
}
.product-card:hover{ transform:translateY(-5px); box-shadow:0 14px 30px rgba(30,43,31,0.12); }
.product-media{
  aspect-ratio:4/3; background:var(--sage);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.product-media svg{ width:56%; height:56%; }
.product-badge{
  position:absolute; top:14px; left:14px;
  background:var(--turmeric); color:var(--paper);
  font-size:11px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase;
  padding:5px 10px; border-radius:20px;
}
.product-body{ padding:24px 22px 26px; flex:1; display:flex; flex-direction:column; }
.product-card h3{ font-size:19px; margin-bottom:8px; }
.product-card p{ font-size:14px; color:#4b554c; flex:1; }
.product-price{ margin-top:18px; padding-top:16px; border-top:1px solid var(--line); font-weight:800; font-size:14px; color:var(--herb-dark); display:flex; justify-content:space-between; align-items:center; }
.product-price .btn-primary{ padding:9px 16px; font-size:12.5px; }
.ai-note{
  margin-top:18px; font-size:12.5px; color:#5b665c;
  background:rgba(60,90,66,0.06); border:1px dashed var(--line);
  padding:10px 14px;
}

/* ---------- Process ---------- */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:8px; position:relative; }
.process-step{ padding:0 24px 0 0; position:relative; }
.process-step:not(:last-child)::after{ content:""; position:absolute; top:11px; right:-2px; width:calc(100% - 20px); height:1px; background:repeating-linear-gradient(to right, var(--herb) 0 6px, transparent 6px 12px); }
.process-dot{ width:9px;height:9px;border-radius:50%; background:var(--turmeric); margin-bottom:22px; }
.process-step h3{ font-size:17px; margin-bottom:10px; }
.process-step p{ font-size:14px; color:#4b554c; }

/* ---------- Testimonials ---------- */
.t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:8px; }
.t-card{ background:rgba(241,238,226,0.06); border:1px solid rgba(241,238,226,0.15); padding:30px 26px; }
.t-card p{ font-size:15.5px; color:#E4EAE0; }
.t-card .stars{ color:var(--turmeric); font-size:14px; margin-bottom:16px; letter-spacing:2px; }
.t-name{ margin-top:22px; padding-top:18px; border-top:1px solid rgba(241,238,226,0.15); font-weight:700; font-size:14px; }
.t-name span{ display:block; font-weight:400; color:#B7C4B2; font-size:12.5px; margin-top:2px; }

/* ---------- Blog ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:8px; }
.blog-card{ background:var(--paper); border:1px solid var(--line); transition:transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover{ transform:translateY(-5px); box-shadow:0 14px 30px rgba(30,43,31,0.10); }
.blog-media{ aspect-ratio:16/10; background:var(--sage); display:flex; align-items:center; justify-content:center; }
.blog-media svg{ width:44%; height:44%; }
.blog-body{ padding:22px 22px 26px; }
.blog-tag{ font-size:11.5px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase; color:var(--turmeric); }
.blog-card h3{ font-size:18px; margin-top:10px; line-height:1.3; }
.blog-card p{ font-size:14px; color:#4b554c; margin-top:10px; }
.blog-meta{ font-size:12.5px; color:#6b746c; margin-top:16px; padding-top:14px; border-top:1px solid var(--line); }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:700; font-size:16px; gap:20px; }
.faq-q .plus{ font-size:20px; color:var(--herb); flex-shrink:0; transition:transform 0.3s ease; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ font-size:14.5px; color:#4b554c; max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding-top 0.35s ease; }
.faq-item.open .faq-a{ max-height:240px; padding-top:14px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; }
.contact-info p{ margin-top:18px; font-size:16px; color:#3c473d; max-width:420px; }
.contact-list{ margin-top:36px; display:flex; flex-direction:column; gap:20px; }
.contact-list div{ display:flex; gap:16px; align-items:flex-start; }
.contact-list svg{ width:20px; height:20px; margin-top:2px; flex-shrink:0; color:var(--herb); }
.contact-list strong{ display:block; font-size:14.5px; }
.contact-list span, .contact-list a{ font-size:14px; color:#4b554c; }

form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
label{ font-size:12.5px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; color:var(--herb-dark); margin-bottom:7px; display:block; }
input, textarea, select{
  width:100%; background:transparent; border:none; border-bottom:1.5px solid var(--line);
  padding:11px 2px; font-family:'Manrope',sans-serif; font-size:15px; color:var(--ink);
  transition:border-color 0.25s ease;
}
input:focus, textarea:focus, select:focus{ border-color:var(--herb); outline:none; }
textarea{ resize:vertical; min-height:90px; }
.form-submit{ margin-top:8px; align-self:flex-start; background:var(--herb); color:var(--paper); padding:15px 34px; font-weight:700; font-size:14.5px; border:none; border-radius:var(--radius); cursor:pointer; transition:background 0.25s ease, transform 0.25s ease; }
.form-submit:hover{ background:var(--herb-dark); transform:translateY(-2px); }
.form-note{ font-size:12.5px; color:#5b665c; margin-top:-4px; }
.form-success{ display:none; background:var(--sage); border:1px solid var(--herb); padding:14px 18px; font-size:14px; color:var(--herb-dark); font-weight:600; }
.form-success.show{ display:block; }
.map-frame{ margin-top:40px; border:1px solid var(--line); aspect-ratio:16/9; overflow:hidden; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ---------- Footer ---------- */
footer{ background:var(--ink); color:var(--paper); padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(241,238,226,0.14); }
.footer-logo{ display:flex; gap:10px; align-items:center; }
.footer-logo img{ height:88px; width:auto; filter:brightness(0) invert(1) opacity(0.92); }
.footer-grid > div > p{ margin-top:16px; font-size:14px; color:#B7C4B2; max-width:280px; }
.footer-col h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--turmeric); margin-bottom:18px; }
.footer-col a{ display:block; font-size:14.5px; color:#D9E2D5; margin-bottom:12px; transition:color 0.2s ease; }
.footer-col a:hover{ color:var(--turmeric); }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(241,238,226,0.25);
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover{ background:var(--turmeric); border-color:var(--turmeric); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{ padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:12.5px; color:#8CA087; flex-wrap:wrap; gap:12px; }
.footer-bottom .legal-links{ display:flex; gap:18px; }
.footer-bottom .legal-links a:hover{ color:var(--turmeric); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:90;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,0.22);
  transition:transform 0.25s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer{
  position:fixed; inset:0; background:var(--paper); z-index:99;
  display:none; flex-direction:column; padding:100px 32px 40px;
  gap:8px;
}
.mobile-drawer.open{ display:flex; }
.mobile-drawer a{ font-size:22px; font-family:'Fraunces',serif; padding:14px 0; border-bottom:1px solid var(--line); }
.mobile-drawer .lang-switch{ margin-top:24px; align-self:flex-start; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .logo img{ height:60px; }
  .nav-links{ display:none; }
  .menu-btn{ display:block; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:320px; margin:0 auto; }
  .hero{ padding-top:140px; }
  .about-grid{ grid-template-columns:1fr; }
  .dosha-grid{ grid-template-columns:1fr; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-grid{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
  .process-step::after{ display:none; }
  .t-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; gap:44px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:32px; }
  .founder-card{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .page-head{ padding-top:128px; }
}
@media (max-width:560px){
  .wrap{ padding:0 20px; }
  section{ padding:72px 0; }
  .hero{ padding:118px 0 56px; }
  .hero-stats{ gap:26px; flex-wrap:wrap; }
  .product-grid{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  nav{ padding:6px 20px; }
  nav .lang-switch, nav .nav-cta{ display:none; }
  .logo img{ height:48px; }
  .nav-right{ gap:8px; }
}
