/* ============================================================
   ANICCA HEALTH — styles.css
   Warmer, earthy palette — East Meets West Wellness
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #FAF8F2;
  --bg-alt:       #F0E8D6;
  --bg-dark:      #1E1A14;
  --bg-card:      #FFFFFF;

  /* Terracotta accent */
  --terra:        #B85C38;
  --terra-mid:    #C97550;
  --terra-light:  #E8C4A8;
  --terra-pale:   #F7EDE6;

  /* Olive/sage (secondary accent) */
  --olive:        #4E6642;
  --olive-mid:    #6B8A5E;
  --olive-light:  #B5C9A8;
  --olive-pale:   #EBF0E4;

  /* Sand/gold */
  --sand:         #C8965A;
  --sand-light:   #E8D4A4;
  --sand-pale:    #F5EDD8;

  /* Text */
  --text:         #1C1612;
  --text-muted:   #6B5E50;
  --text-light:   #9E8E78;
  --white:        #FFFFFF;
  --border:       #DFD4BF;

  /* Fonts */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:       4px;
  --radius-lg:    10px;
  --nav-h:        72px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── LAYOUT ──────────────────────────────────────────────── */
.container      { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container-sm   { max-width: 720px; }
.container-md   { max-width: 860px; }
.center         { text-align: center; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-sans); }

p { font-size: 1rem; line-height: 1.78; color: var(--text-muted); }
p + p { margin-top: 1rem; }
em { font-style: italic; }
strong { font-weight: 500; color: var(--text); }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.eyebrow-olive { color: var(--olive-mid); }

.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin-bottom: 48px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.03em; padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: all 0.2s var(--ease); text-decoration: none;
}
.btn-primary   { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-primary:hover { background: #9E4A2A; border-color: #9E4A2A; transform: translateY(-1px); }
.btn-olive     { background: var(--olive); color: var(--white); border-color: var(--olive); }
.btn-olive:hover { background: #3C5232; border-color: #3C5232; transform: translateY(-1px); }
.btn-ghost     { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px; z-index: 100;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(30,20,10,0.07); }

.nav-logo {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 400; letter-spacing: 0.01em; color: var(--text);
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span {
  font-size: 0.6rem; font-family: var(--font-sans);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.03em;
  color: var(--text-muted); position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--terra); transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 9px 22px; border-radius: var(--radius);
  border: 1.5px solid var(--terra); color: var(--terra);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--terra); color: var(--white); }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.25s; }

.nav-mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px; z-index: 99; flex-direction: column; gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  font-size: 1rem; color: var(--text-muted); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link.active { color: var(--terra); }
.nav-mobile-cta {
  display: inline-block; margin-top: 12px; font-size: 0.88rem;
  font-weight: 600; color: var(--terra); letter-spacing: 0.04em;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { display: block; }
.page-hero-heading { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; margin: 8px 0 18px; }
.page-hero-sub { font-size: 1.1rem; max-width: 520px; color: var(--text-muted); }

/* ── HOME HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg) 55%, var(--bg-alt) 100%);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: var(--nav-h) 36px 0;
  max-width: 1080px; margin: 0 auto;
  gap: 60px;
}
.hero-text { padding: 80px 0; }
.hero-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 18px;
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 12px;
}
.hero-headline em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300;
  font-style: italic; color: var(--olive-mid); margin-bottom: 24px;
}
.hero-body { font-size: 1rem; max-width: 460px; margin-bottom: 40px; line-height: 1.78; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex; justify-content: center; align-items: center; padding: 80px 0;
}
.hero-card-stack {
  position: relative; width: 300px; height: 380px;
}
.hero-card {
  position: absolute; width: 240px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(30,20,10,0.06);
}
.hero-card-1 { top: 0; left: 0; transform: rotate(-3deg); }
.hero-card-2 { top: 60px; left: 50px; transform: rotate(1.5deg); z-index: 1; }
.hero-card-3 { top: 120px; left: 30px; transform: rotate(-1deg); z-index: 2; }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.hero-card-title { font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.hero-card-sub { font-size: 0.8rem; color: var(--text-light); }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--terra); line-height: 1;
}
.trust-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* ── INTRO SECTION ───────────────────────────────────────── */
.intro-section { padding: 100px 0; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text .btn { margin-top: 28px; }
.intro-features { display: flex; flex-direction: column; gap: 20px; }
.intro-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}
.intro-feature:hover { border-color: var(--terra-light); transform: translateX(4px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--terra-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.feature-icon.olive { background: var(--olive-pale); }
.feature-icon.sand  { background: var(--sand-pale); }
.feature-body h4 { margin-bottom: 4px; color: var(--text); }
.feature-body p { font-size: 0.88rem; line-height: 1.6; }

/* ── EAST MEETS WEST ─────────────────────────────────────── */
.emw-section { background: var(--bg-dark); padding: 100px 0; }
.emw-section .eyebrow { color: var(--terra-light); }
.emw-section h2 { color: var(--white); margin-bottom: 16px; }
.emw-intro { color: rgba(255,255,255,0.6); max-width: 560px; margin-bottom: 60px; }
.emw-grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; align-items: start; }
.emw-col { padding: 40px; border-radius: var(--radius-lg); }
.emw-west { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.emw-east { background: rgba(184,92,56,0.12); border: 1px solid rgba(184,92,56,0.2); }
.emw-col-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 16px;
}
.emw-west .emw-col-label { color: rgba(255,255,255,0.4); }
.emw-east .emw-col-label { color: var(--terra-light); }
.emw-col h3 { color: var(--white); margin-bottom: 20px; font-size: 1.4rem; }
.emw-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.emw-row:last-child { border-bottom: none; }
.emw-row-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.emw-row-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.emw-center {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; padding-top: 80px;
}
.emw-plus {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--terra); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: white; flex-shrink: 0;
}
.emw-bridge-line { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ── DOSHA TEASER (home) ─────────────────────────────────── */
.dosha-teaser { padding: 80px 0; border-top: 1px solid var(--border); }
.dosha-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0;
}
.dosha-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); background: var(--bg-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.dosha-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(30,20,10,0.07); }
.dosha-card.vata:hover { border-color: #7AADCC; }
.dosha-card.pitta:hover { border-color: var(--terra-light); }
.dosha-card.kapha:hover { border-color: var(--olive-light); }
.dosha-symbol {
  width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 16px;
}
.vata .dosha-symbol { background: #EBF3F8; color: #2D6E8F; border: 1.5px solid #B8D8EA; }
.pitta .dosha-symbol { background: var(--terra-pale); color: var(--terra); border: 1.5px solid var(--terra-light); }
.kapha .dosha-symbol { background: var(--olive-pale); color: var(--olive); border: 1.5px solid var(--olive-light); }
.dosha-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.dosha-card .dosha-element { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 12px; font-weight: 500; }
.dosha-card p { font-size: 0.9rem; line-height: 1.65; }
.dosha-teaser-cta { text-align: center; }
.dosha-teaser-cta p { margin-bottom: 20px; }

/* ── ABOUT TEASER ────────────────────────────────────────── */
.about-teaser {
  background: var(--bg-alt); padding: 80px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo {
  aspect-ratio: 4/5; background: var(--terra-pale);
  border: 1px solid var(--terra-light); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
}
.about-text h2 { margin-bottom: 20px; }
.about-text .btn { margin-top: 28px; }

/* ── EMAIL SECTION ───────────────────────────────────────── */
.email-section { background: var(--bg-dark); padding: 96px 0; }
.email-inner { text-align: center; }
.email-inner .eyebrow { color: var(--terra-light); }
.email-inner h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.email-inner > p { color: rgba(255,255,255,0.5); max-width: 460px; margin: 0 auto; }
.email-form {
  display: flex; gap: 10px; justify-content: center;
  margin: 36px auto 14px; max-width: 480px; flex-wrap: wrap;
}
.email-input {
  flex: 1; min-width: 220px; padding: 13px 20px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07); color: var(--white);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300; outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(255,255,255,0.3); }
.email-input:focus { border-color: var(--terra-light); }
.email-fine { font-size: 0.75rem !important; color: rgba(255,255,255,0.25) !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #161210; padding: 56px 0 36px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 36px; margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06); gap: 40px; flex-wrap: wrap;
}
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 2px;
}
.footer-brand-slogan {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); font-weight: 500;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; letter-spacing: 0.02em; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-disclaimer p { font-size: 0.76rem; color: rgba(255,255,255,0.2); line-height: 1.7; max-width: 740px; }
.footer-copy { margin-top: 14px !important; color: rgba(255,255,255,0.15) !important; }

/* ── STORY (About) ───────────────────────────────────────── */
.story-section { padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 240px 1fr; gap: 72px; align-items: start; }
.story-photo-wrap { position: sticky; top: calc(var(--nav-h) + 28px); }
.story-photo {
  aspect-ratio: 3/4; background: var(--terra-pale);
  border: 1px solid var(--terra-light); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 20px;
}
.credentials { display: flex; flex-direction: column; gap: 10px; }
.credential {
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg-card);
}
.cred-title {
  display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 2px;
}
.cred-desc { font-size: 0.8rem; color: var(--text-muted); }

.story-chapter { margin-bottom: 56px; }
.chapter-eyebrow {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px;
}
.story-chapter h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 20px; }

.story-quote {
  border-left: 2px solid var(--terra-light); padding-left: 28px; margin-top: 8px;
  font-family: var(--font-serif); font-size: 1.3rem; font-style: italic;
  font-weight: 300; color: var(--text-muted); line-height: 1.65;
}

/* ── JOURNEY (About) ─────────────────────────────────────── */
.journey-section { background: var(--bg-alt); padding: 80px 0; border-top: 1px solid var(--border); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.journey-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.journey-card:hover { transform: translateY(-3px); border-color: var(--terra-light); }
.journey-flag { font-size: 2rem; display: block; margin-bottom: 14px; }
.journey-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* ── AYURVEDA PAGE ───────────────────────────────────────── */
.ayur-intro { padding: 80px 0; }
.ayur-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ayur-intro-text h2 { margin-bottom: 20px; }
.ayur-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ayur-stat {
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
}
.ayur-stat-num {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300;
  color: var(--terra); line-height: 1; margin-bottom: 6px;
}
.ayur-stat-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* EMW page version */
.emw-page { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.emw-table {
  width: 100%; border-collapse: collapse; margin-top: 48px; background: var(--bg-card);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
.emw-table th {
  padding: 16px 24px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: left;
}
.emw-table th:first-child { background: rgba(30,20,10,0.04); color: var(--text-muted); width: 22%; }
.emw-table th.west-head { background: #EEF4F8; color: #2D6E8F; }
.emw-table th.east-head { background: var(--terra-pale); color: var(--terra); }
.emw-table td {
  padding: 16px 24px; font-size: 0.9rem; color: var(--text-muted);
  border-top: 1px solid var(--border); line-height: 1.65; vertical-align: top;
}
.emw-table td:first-child { font-weight: 500; color: var(--text); font-size: 0.85rem; }
.emw-table tr:hover td { background: rgba(0,0,0,0.01); }

/* Agni section */
.agni-section { padding: 80px 0; }
.agni-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.agni-text h2 { margin-bottom: 20px; }
.agni-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.agni-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.agni-item-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--terra);
  flex-shrink: 0; margin-top: 7px;
}
.agni-item-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.agni-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.agni-rings {
  position: relative; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: pulse 4s ease-in-out infinite;
}
.ring-1 { width: 220px; height: 220px; border-color: var(--sand-light); animation-delay: 0s; }
.ring-2 { width: 162px; height: 162px; border-color: var(--terra-light); animation-delay: 0.6s; }
.ring-3 { width: 104px; height: 104px; border-color: var(--terra); animation-delay: 1.2s; }
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}
.agni-core { position: relative; z-index: 1; text-align: center; }
.agni-word { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: var(--terra); font-weight: 400; }
.agni-meaning { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.agni-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.agni-tag { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); padding: 5px 14px; border: 1px solid var(--border); border-radius: 20px; background: var(--bg-card); }

/* Doshas section */
.doshas-section { background: var(--bg-alt); padding: 80px 0; border-top: 1px solid var(--border); }
.doshas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.dosha-full {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dosha-full:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(30,20,10,0.07); }
.dosha-full.vata:hover  { border-color: #7AADCC; }
.dosha-full.pitta:hover { border-color: var(--terra-light); }
.dosha-full.kapha:hover { border-color: var(--olive-light); }
.dosha-badge {
  width: 52px; height: 52px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 18px;
}
.vata .dosha-badge  { background: #EBF3F8; color: #2D6E8F; border: 1.5px solid #B8D8EA; }
.pitta .dosha-badge { background: var(--terra-pale); color: var(--terra); border: 1.5px solid var(--terra-light); }
.kapha .dosha-badge { background: var(--olive-pale); color: var(--olive); border: 1.5px solid var(--olive-light); }
.dosha-full h3 { margin-bottom: 4px; }
.dosha-ele { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 14px; }
.dosha-full > p { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.dosha-traits { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.trait-tag {
  font-size: 0.72rem; font-weight: 500; padding: 4px 12px;
  border-radius: 12px; letter-spacing: 0.03em;
}
.vata  .trait-tag { background: #EBF3F8; color: #2D6E8F; }
.pitta .trait-tag { background: var(--terra-pale); color: var(--terra); }
.kapha .trait-tag { background: var(--olive-pale); color: var(--olive); }
.dosha-divider { height: 1px; background: var(--border); margin: 16px 0; }
.dosha-imbalance-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.dosha-imbalance p { font-size: 0.85rem; }

/* ── QUIZ (Ayurveda page) ────────────────────────────────── */
.quiz-section { padding: 80px 0; }
.quiz-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 52px; max-width: 700px; margin: 0 auto;
  box-shadow: 0 4px 48px rgba(30,20,10,0.05);
}
.quiz-progress-bar-wrap { height: 3px; background: var(--border); border-radius: 2px; margin-bottom: 10px; overflow: hidden; }
.quiz-bar { height: 100%; background: var(--terra); border-radius: 2px; transition: width 0.4s var(--ease); width: 10%; }
.quiz-step { font-size: 0.76rem; color: var(--text-light); text-align: right; margin-bottom: 40px; }
.quiz-q { display: none; }
.quiz-q.active { display: block; }
.quiz-q h3 { font-size: 1.65rem; font-weight: 400; color: var(--text); margin-bottom: 28px; line-height: 1.3; }
.quiz-opts { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 17px 22px; font-family: var(--font-sans); font-size: 0.93rem;
  font-weight: 300; color: var(--text-muted); text-align: left; cursor: pointer;
  transition: all 0.2s var(--ease); line-height: 1.5;
}
.quiz-opt:hover { border-color: var(--terra); color: var(--text); background: var(--terra-pale); transform: translateX(5px); }
.quiz-opt.picked { border-color: var(--terra); background: var(--terra-pale); color: var(--text); }

/* Result */
.quiz-result { display: none; text-align: center; padding: 10px 0; }
.res-badge {
  width: 90px; height: 90px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-family: var(--font-serif);
  font-size: 2rem; margin-bottom: 24px; border: 2px solid;
}
.res-badge-V  { background: #EBF3F8; color: #2D6E8F; border-color: #B8D8EA; }
.res-badge-P  { background: var(--terra-pale); color: var(--terra); border-color: var(--terra-light); }
.res-badge-K  { background: var(--olive-pale); color: var(--olive); border-color: var(--olive-light); }
.res-badge-D  { background: var(--sand-pale); color: var(--sand); border-color: var(--sand-light); }
#resTitle     { font-size: 2.4rem; margin-bottom: 6px; }
#resSubtitle  { font-size: 0.95rem; color: var(--terra); font-style: italic; margin-bottom: 22px; }
#resDesc      { max-width: 500px; margin: 0 auto 28px; font-size: 0.97rem; line-height: 1.78; }
.res-tags     { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 28px; }
.res-tag      { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.8rem; color: var(--text-muted); }
.res-note     { font-size: 0.8rem; font-style: italic; color: var(--text-light); max-width: 440px; margin: 0 auto 32px; }
.res-actions  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-section { padding: 80px 0; }
.blog-filter  { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.on { background: var(--terra); border-color: var(--terra); color: white; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 56px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--terra-light); }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.blog-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); background: var(--terra-pale); padding: 3px 10px; border-radius: 12px;
}
.blog-date { font-size: 0.78rem; color: var(--text-light); }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--text); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--terra); }
.blog-card p { font-size: 0.88rem; line-height: 1.68; margin-bottom: 18px; }
.blog-read { font-size: 0.82rem; font-weight: 500; color: var(--terra); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--terra-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid var(--terra-light);
}
.contact-item-body h4 { margin-bottom: 2px; }
.contact-item-body p { font-size: 0.88rem; }
.contact-item-body a { color: var(--terra); }

.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  font-family: var(--font-sans); font-size: 0.92rem; color: var(--text);
  transition: border-color 0.2s; outline: none; resize: vertical;
}
.form-input:focus, .form-textarea:focus { border-color: var(--terra); }
.form-textarea { min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.88rem; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; text-align: center; }

.calendly-wrap {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  margin-top: 28px;
}
.calendly-wrap .eyebrow { display: block; }
.calendly-wrap h3 { font-size: 1.4rem; margin: 8px 0 12px; }
.calendly-wrap p { font-size: 0.9rem; margin-bottom: 24px; }

/* ── CLARIFY ─────────────────────────────────────────────── */
.clarify-section { padding: 56px 0; border-top: 1px solid var(--border); }
.clarify-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.clarify-col   { padding: 32px 28px; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
.clarify-is    { background: var(--olive-pale); border-color: var(--olive-light); }
.clarify-not   { background: var(--terra-pale); border-color: var(--terra-light); }
.clarify-col h4 { margin-bottom: 16px; }
.clarify-col li {
  font-size: 0.88rem; color: var(--text-muted); padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05); position: relative;
}
.clarify-col li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}
.clarify-is  li::before { background: var(--olive-mid); }
.clarify-not li::before { background: var(--terra); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 820px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 40px) 20px 60px; gap: 0; }
  .hero-visual { display: none; }
  .hero-text { padding: 40px 0; }

  .trust-inner { gap: 28px; }
  .trust-divider { display: none; }

  .intro-grid, .agni-grid, .ayur-intro-grid,
  .about-teaser-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .emw-grid { grid-template-columns: 1fr; }
  .emw-center { display: none; }

  .dosha-teaser-grid, .doshas-grid, .journey-grid { grid-template-columns: 1fr; gap: 20px; }

  .blog-grid { grid-template-columns: 1fr; }

  .story-grid { grid-template-columns: 1fr; }
  .story-photo-wrap { position: static; }
  .story-photo { max-height: 280px; }

  .clarify-grid { grid-template-columns: 1fr; }
  .ayur-stat-grid { grid-template-columns: 1fr 1fr; }

  .quiz-wrap { padding: 32px 24px; }

  .email-form { flex-direction: column; }
  .email-input { min-width: unset; width: 100%; }

  .hero-actions, .res-actions { flex-direction: column; align-items: flex-start; }
}
