/* ================================================================
   SANTANALAXMI AYURVEDIC CLINIC — SHARED STYLES
   Vedic Herbal Heritage Theme
   ================================================================ */

/* ============ 1. CSS VARIABLES & RESET ============ */
:root {
  --parchment:    #F6F0E5;
  --cream:        #FAF5ED;
  --gold:         #7E681B;
  --gold-hover:   #856D1E;
  --gold-light:   rgba(163,130,35,0.13);
  --terracotta:   #A26B4B;
  --primary-dark: #1E3A2E;
  --primary:      #2F4A3C;
  --primary-light:#3F6050;
  --text-dark:    #3A2A1D;
  --text-body:    #5C4F3D;
  --text-light:   #6A5E4D;
  --border:       #DDD3C3;
  --white:        #FFFFFF;
  --success:      #25d366;

  --sandalwood:       #D4B896;
  --sandalwood-light: rgba(212,184,150,0.15);
  --gold-deep:        #B8942A;
  --parchment-dark:   #EDE4D3;
  --bg-alt:           #f8f6f2;
  --success-hover:    #1ebe5d;
  --vedic-gold:       #F5C518;
  --star-gold:        #d4a017;
  --font-heading:     'Cormorant Garamond', serif;

  --fs-hero:  clamp(1.3rem, 2.5vw, 2rem);
  --fs-h2:    clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3:    clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:  clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.85rem, 1vw, 0.95rem);

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.10);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--parchment);
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body[data-lang="te"] { font-family: 'Noto Sans Telugu', 'Inter', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.3;
}

body[data-lang="te"] h1,
body[data-lang="te"] h2,
body[data-lang="te"] h3,
body[data-lang="te"] h4 {
  font-family: 'Noto Sans Telugu', serif;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* Content links: underline for clarity (not nav, buttons, or card titles) */
.section a:not(.btn-primary):not(.btn-secondary):not(.read-more-link):not(.guide-preview-card):not(.article-card):not(.guide-card):not(.guide-related-card):not(.area-card),
.guide-content a,
.article-body a,
.faq-answer a,
.callout-box a,
.page-disclaimer a,
.location-info a { text-decoration: underline; text-decoration-color: rgba(47,74,60,0.35); text-underline-offset: 3px; }
.section a:hover, .guide-content a:hover, .article-body a:hover,
.faq-answer a:hover, .callout-box a:hover { text-decoration-color: var(--gold); }

/* ============ SKIP LINK & FOCUS ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--gold-deep);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  transition: top var(--transition);
}
.skip-link:focus { top: var(--space-sm); }

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

img { max-width: 100%; height: auto; display: block; }
pre, code { overflow-x: auto; max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-sm); }

/* ============ UTILITY: SECTION EYEBROW ============ */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* ============ TEXTURE SYSTEM (CSS-only) ============ */
.has-botanical {
  position: relative;
}
.has-botanical::before,
.has-botanical::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M5 55C15 45 20 30 20 15c5 10 15 20 30 25-15 0-30 5-40 15z' fill='%238A6A3B' fill-opacity='0.04'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
.has-botanical::before { top: 10px; left: 10px; }
.has-botanical::after { bottom: 10px; right: 10px; transform: rotate(180deg); }
.has-botanical > * { position: relative; z-index: 1; }

/* ============ 2. REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ 3. NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(47, 74, 60, 0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  padding: 14px var(--space-sm);
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-emblem {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px rgba(200,169,81,0.5), 0 0 14px rgba(200,169,81,0.15), 0 2px 8px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-emblem {
  box-shadow: 0 0 0 2.5px rgba(200,169,81,0.7), 0 0 20px rgba(200,169,81,0.25), 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
  display: block;
}
.nav-logo-sub {
  font-size: 0.78rem;
  color: var(--star-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2px;
  word-spacing: 1px;
}
.vedic-hl {
  color: var(--vedic-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--star-gold); }
.nav-links a[aria-current="page"] {
  color: var(--star-gold);
  border-bottom: 2px solid var(--star-gold);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--gold-deep);
  color: var(--primary-dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition), transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-hover);
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
  min-height: 44px;
  min-width: 44px;
}
.lang-toggle:hover { background: rgba(255,255,255,0.2); }

.theme-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition);
  min-height: 44px;
  min-width: 44px;
}
.theme-toggle:hover { background: rgba(255,255,255,0.2); }

/* ============ SITE SEARCH ============ */
.search-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-toggle:hover { background: rgba(255,255,255,0.2); }
.search-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-modal {
  width: 100%;
  max-width: 580px;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
  max-height: 70vh;
  transform: scale(0.96) translateY(-8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  overflow: hidden;
}
.search-overlay.open .search-modal { transform: scale(1) translateY(0); opacity: 1; }
[data-theme="dark"] .search-modal { background: var(--primary-dark); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }

.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}
.search-input-wrap svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
}
[data-theme="dark"] .search-input { color: var(--parchment); }
.search-input::placeholder { color: var(--text-light); opacity: 0.6; }

.search-results {
  overflow-y: auto;
  padding: 6px 8px;
  flex: 1;
}
.search-result-group {
  padding: 8px 14px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  opacity: 0.7;
}
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
  border-radius: 10px;
  margin: 2px 0;
}
.search-result-item:hover,
.search-result-item.active {
  background: var(--gold-light);
}
.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.search-result-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
[data-theme="dark"] .search-result-icon { background: rgba(255,255,255,0.08); }
.search-result-body { flex: 1; min-width: 0; }
.search-result-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}
[data-theme="dark"] .search-result-title { color: var(--parchment); }
.search-result-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 4px;
  font-weight: 500;
}
[data-theme="dark"] .search-result-tag { background: rgba(176,154,62,0.3); color: var(--vedic-gold); }
.search-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}
.search-empty svg { width: 40px; height: 40px; stroke: var(--border); fill: none; stroke-width: 1.5; margin-bottom: 12px; display: block; margin-inline: auto; }
.search-hint {
  padding: 10px 22px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-kbd {
  display: inline-block;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.72rem;
  font-family: monospace;
}
[data-theme="dark"] .search-kbd { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  line-height: 1;
  font-size: 1.25rem;
  flex-shrink: 0;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.search-close:hover { background: rgba(0,0,0,0.06); }
[data-theme="dark"] .search-close:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
  .search-overlay { padding-top: 5vh; }
  .search-modal { max-width: calc(100% - 20px); max-height: 80vh; border-radius: 14px; }
  .search-kbd { display: none; }
}

/* — Nav Dropdown — */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-dropdown-toggle:hover { color: var(--star-gold); }
.nav-dropdown-toggle[aria-current="page"],
.nav-dropdown:has(a[aria-current="page"]) .nav-dropdown-toggle {
  color: var(--star-gold);
  border-bottom: 2px solid var(--star-gold) !important;
  padding-bottom: 2px;
}
.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 2px;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  list-style: none;
  min-width: 150px;
  padding: 6px 0;
  z-index: 100;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--star-gold);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ 4. HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: clamp(130px, 16vw, 200px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
  position: relative;
  border-top: 2px solid rgba(138,106,59,0.3);
  border-bottom: 2px solid rgba(138,106,59,0.3);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(138,106,59,0.06) 0%, transparent 70%),
              radial-gradient(ellipse at 30% 70%, rgba(162,107,75,0.04) 0%, transparent 60%),
              url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0zM10 10h1v1h-1zM20 0h1v1h-1zM30 10h1v1h-1zM0 20h1v1H0zM10 30h1v1h-1zM20 20h1v1h-1zM30 30h1v1h-1z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-size: var(--fs-small);
  color: var(--star-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.2px;
}
.hero-subtitle {
  font-size: var(--fs-hero);
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold-deep);
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-hover); color: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-call { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }
.btn-call:hover { background: rgba(255,255,255,0.25); border-color: var(--white); }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: clamp(130px, 16vw, 200px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
  position: relative;
  border-top: 2px solid rgba(138,106,59,0.3);
  border-bottom: 2px solid rgba(138,106,59,0.3);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0zM10 10h1v1h-1zM20 0h1v1h-1zM30 10h1v1h-1zM0 20h1v1H0zM10 30h1v1h-1zM20 20h1v1h-1zM30 30h1v1h-1z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: var(--fs-small);
  color: var(--star-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-subtitle {
  font-size: var(--fs-hero);
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

/* ============ 5. SECTION COMMON ============ */
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.3px;
}
.section-header p {
  color: var(--text-light);
  font-size: var(--fs-body);
  max-width: 600px;
  margin: 0 auto;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-sm) auto;
  border-radius: 2px;
  position: relative;
}
.gold-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-color: var(--parchment);
  background-image: url('favicon.svg?v=8');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.section-alt .gold-line::before { background-color: var(--cream); }

/* ============ CONTENT SECTION ============ */
.content-section { max-width: 740px; margin: 0 auto; }
.content-section h2 { font-size: var(--fs-h2); text-align: center; margin-bottom: var(--space-xs); }
.content-section .gold-line { margin-bottom: var(--space-md); }
.content-section p { text-align: center; line-height: 1.85; color: var(--text-body); }

/* ============ CONCERNS PANEL (bilingual Telugu support) ============ */
.concerns-panel {
  max-width: 820px;
  margin: var(--space-md) auto 0;
  padding: var(--space-md);
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
}
.concerns-panel__te {
  display: none;
  font-family: 'Noto Sans Telugu', sans-serif;
  color: var(--text-dark);
  line-height: 1.95;
  font-size: var(--fs-body);
}
body[data-lang="te"] .concerns-panel__te { display: block; }
.concerns-panel__te-heading {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}
.concerns-panel__en {
  color: var(--text-body);
  font-size: var(--fs-small);
  line-height: 1.85;
}
.concerns-panel__en-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}
body[data-lang="te"] .concerns-panel__en { display: none; }

/* ============ CHECKLIST ============ */
.checklist { max-width: 640px; margin: var(--space-md) auto 0; }
.checklist-item { display: flex; align-items: flex-start; gap: var(--space-sm); padding: var(--space-sm) 0; border-bottom: 1px solid var(--border); }
.checklist-item:last-child { border-bottom: none; }
.checklist-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-light); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; }

/* ============ HERITAGE QUOTE ============ */
.heritage-quote {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 4px);
  background: var(--sandalwood-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
}
.heritage-quote::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  opacity: 0.5;
}

/* ============ CALLOUT BOX ============ */
.callout-box {
  max-width: 700px;
  margin: var(--space-md) auto;
  padding: var(--space-md);
  background: var(--sandalwood-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.callout-box p {
  margin-bottom: var(--space-xs);
  color: var(--text-body);
}
.callout-box a {
  color: var(--gold);
  font-weight: 600;
}
.callout-box a:hover { color: var(--gold-hover); }

/* ============ TRADITION FLOW (timeline) ============ */
.tradition-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 500px;
  margin: var(--space-md) auto;
}
.tradition-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tradition-flow-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.tradition-flow-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  color: var(--text-dark);
  margin-top: var(--space-xs);
  font-weight: 600;
}
.tradition-flow-desc {
  font-size: var(--fs-small);
  color: var(--text-light);
  max-width: 320px;
  margin-top: 4px;
}
.tradition-flow-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

/* ============ VISIT TIMELINE ============ */
.visit-timeline {
  max-width: 720px;
  margin: 0 auto;
}
.visit-timeline-phase {
  margin-bottom: var(--space-xl);
}
.visit-timeline-phase-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}
.visit-timeline-steps {
  position: relative;
  padding-left: 44px;
  margin-left: 14px;
  border-left: 2px solid var(--gold-light);
}
.visit-timeline-step {
  position: relative;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
}
.visit-timeline-step:last-child {
  margin-bottom: 0;
}
.visit-timeline-num {
  position: absolute;
  left: -58px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--gold);
}
.visit-timeline-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px 0;
}
.visit-timeline-step p {
  font-size: var(--fs-body);
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .visit-timeline-steps {
    padding-left: 36px;
    margin-left: 10px;
  }
  .visit-timeline-num {
    left: -48px;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
}

/* ============ CARE CYCLE FLOW ============ */
.care-cycle {
  max-width: 720px;
  margin: var(--space-md) auto var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.care-cycle-step {
  display: flex;
  align-items: center;
  gap: 0;
}
.care-cycle-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
  max-width: 130px;
}
.care-cycle-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.care-cycle-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.care-cycle-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 4px;
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 600px) {
  .care-cycle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .care-cycle-step {
    flex-direction: column;
    align-items: flex-start;
  }
  .care-cycle-step-inner {
    flex-direction: row;
    text-align: left;
    max-width: none;
    gap: 10px;
  }
  .care-cycle-arrow {
    transform: rotate(90deg);
    margin: 4px 0 4px 10px;
  }
}

/* ============ GLOSSARY ============ */
.glossary-list {
  margin: 0 0 var(--space-md) 0;
  padding: 0;
}
.glossary-entry {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gold-light);
}
.glossary-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.glossary-entry dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.glossary-entry dd {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

/* ============ STORY GRID EDITORIAL ============ */
.story-grid-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}
.story-card-editorial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card-editorial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.story-card-editorial::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  opacity: 0.25;
}
.story-card-editorial .story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  padding-top: var(--space-sm);
}
.story-card-editorial .story-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: var(--fs-small);
}
/* ============ LEGAL CONTENT ============ */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
  border-left: 3px solid var(--terracotta);
}
.legal-content h2 {
  font-size: var(--fs-h3);
  margin: var(--space-md) 0 var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border);
}
.legal-content p { margin-bottom: var(--space-sm); line-height: 1.85; }
.legal-content ul { margin: 0 0 var(--space-sm) var(--space-md); line-height: 1.85; }
.legal-content li { margin-bottom: 6px; }
.legal-meta {
  font-size: var(--fs-small);
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* ============ FIGCAPTION ============ */
.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
  background: rgba(0,0,0,.45);
  padding: 12px var(--space-sm);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

/* ============ FORM HELPERS ============ */
.form-alt {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-top: var(--space-sm);
}
.form-success {
  text-align: center;
  padding: var(--space-md);
}
.form-success h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.form-success p {
  margin-bottom: var(--space-xs);
}

/* ============ READ MORE LINK ============ */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: var(--fs-small);
  margin-top: var(--space-sm);
  transition: color var(--transition), gap var(--transition);
}
.read-more-link:hover { color: var(--gold-hover); gap: 10px; }
.read-more-link::after { content: '\2192'; }

/* ============ CONTENT-VISIBILITY (INP optimisation) ============ */
/* Let the browser skip layout/paint for off-screen sections until scrolled into view */
.section, .guide-content, .article-body, .faq-list {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ============ 6. FOOTER ============ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-brand-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-xs);
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-block .footer-heading { margin-bottom: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.footer-grid > div:first-child { text-align: center; }
.footer .footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.footer .footer-heading .vedic-hl {
  color: var(--vedic-gold);
  font-weight: 700;
}
.footer p, .footer li { font-size: var(--fs-small); line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul a { color: rgba(255,255,255,0.7); display: inline-block; padding: 4px 0; }
.footer ul a:hover { color: var(--star-gold); }
.footer-tagline {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-top: var(--space-xs);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  line-height: 1.7;
}
.page-disclaimer {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md) 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-disclaimer p {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}
.footer-bottom {
  text-align: center;
  font-size: var(--fs-small);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-sm);
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,0.7); font-size: var(--fs-small); }
.footer-legal a:hover { color: var(--star-gold); }
.footer-legal span { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }

.footer p a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.footer p a:hover { color: var(--star-gold); }
.footer-tel { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-tel:hover { color: var(--star-gold); }
.footer-contact-label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ============ 7. WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--success);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  color: var(--white);
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }

/* ============ 8. RESPONSIVE ============ */
@media (max-width: 1200px) {
  .nav-inner { gap: 16px; }
  .nav-links a, .nav-dropdown-toggle { font-size: 0.82rem; }
  .nav-links { gap: 14px; }
  .nav-cta { padding: 8px 16px; font-size: 0.8rem; }
  .nav-right { gap: 6px; }
  .search-toggle, .lang-toggle, .theme-toggle { min-width: 38px; min-height: 38px; padding: 5px 8px; }
  .lang-toggle { font-size: 0.8rem; padding: 5px 10px; }
}
@media (max-width: 1100px) {
  .nav-links a, .nav-dropdown-toggle { font-size: 0.78rem; }
  .nav-links { gap: 10px; }
  .nav-cta { padding: 7px 14px; font-size: 0.78rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  .nav-logo { flex-shrink: 1; min-width: 0; }
  .nav-right { flex-shrink: 0; }
  .nav-logo-main { font-size: 1.6rem; }
  .nav-logo-emblem { width: 60px; height: 60px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: var(--space-sm);
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-links.open .nav-cta { width: 100%; text-align: center; }
  /* Dropdown inline in mobile menu */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }
  .nav-dropdown-menu li a { padding-left: 28px; font-size: 0.82rem; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; bottom: 16px; right: 16px; }
  .legal-content { border-left: 3px solid var(--terracotta); padding-left: var(--space-sm); }
  .story-grid-editorial { grid-template-columns: 1fr; }
  .tradition-flow-circle { width: 60px; height: 60px; font-size: 0.8rem; }
  .tradition-flow-connector { height: 28px; }
}

@media (max-width: 480px) {
  .nav-logo-main { font-size: 1.25rem; }
  .nav-logo-sub { font-size: 0.6rem; letter-spacing: 1.5px; }
  .nav-logo-emblem { width: 48px; height: 48px; }
  .nav-logo { gap: 8px; }
  .nav-inner { gap: 8px; padding: 10px 10px; }
  .nav-right { gap: 5px; }
  .search-toggle, .lang-toggle { min-width: 38px; min-height: 38px; padding: 5px 7px; }
  .lang-toggle { font-size: 0.75rem; padding: 5px 7px; }
  .hamburger { padding: 7px; min-width: 38px; min-height: 38px; }
  .legal-content { padding: var(--space-lg) var(--space-xs); }
}

@media (max-width: 380px) {
  .nav-logo-main { font-size: 1.1rem; }
  .nav-logo-sub { display: none; }
  .nav-logo-emblem { width: 40px; height: 40px; }
  .nav-logo { gap: 6px; }
  .nav-inner { gap: 6px; padding: 8px 8px; }
  .nav-right { gap: 4px; }
  .search-toggle, .lang-toggle, .hamburger { min-width: 36px; min-height: 36px; padding: 5px; }
  .lang-toggle { font-size: 0.72rem; }
}

@media (max-width: 320px) {
  :root {
    --fs-body:  1rem;
    --fs-small: 0.9rem;
  }
  .guides-preview-grid { grid-template-columns: 1fr; }
}

/* ============ PATIENT GUIDES (shared) ============ */
.guides-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-sm);
}
.guide-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}
.guide-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-preview-card .guide-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.guide-preview-card h3 {
  font-size: var(--fs-body);
  margin-bottom: 6px;
  color: var(--text-dark);
}
.guide-preview-card p {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.6;
}

/* Guide page shared styles */
.guide-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: clamp(130px, 16vw, 200px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
  position: relative;
  border-top: 2px solid rgba(138,106,59,0.3);
  border-bottom: 2px solid rgba(138,106,59,0.3);
}
.guide-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0zM10 10h1v1h-1zM20 0h1v1h-1zM30 10h1v1h-1zM0 20h1v1H0zM10 30h1v1h-1zM20 20h1v1h-1zM30 30h1v1h-1z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}
.guide-hero > * { position: relative; z-index: 1; }
.guide-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.guide-hero-subtitle {
  font-size: var(--fs-hero);
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.guide-content {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
}
.guide-content h3 {
  font-size: var(--fs-h3);
  margin: var(--space-md) 0 var(--space-xs);
}
.guide-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.85;
}
.guide-content ul {
  margin: 0 0 var(--space-sm) var(--space-md);
  line-height: 1.85;
}
.guide-content li { margin-bottom: 6px; }
.guide-related {
  background: var(--cream);
  padding: var(--space-lg) 0;
}
.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}
.guide-related-card {
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}
.guide-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-related-card h4 {
  font-size: var(--fs-body);
  margin-bottom: 4px;
  color: var(--text-dark);
  text-decoration: none;
}
.guide-related-card p {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.5;
}
.guide-related-card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Guides index grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}
.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.guide-card .guide-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-xs);
}
.guide-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
  color: var(--text-dark);
  text-decoration: none;
}
.guide-card p {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.6;
}
.guide-card .read-more-link {
  margin-top: var(--space-xs);
}

/* ============ ANNOUNCEMENT BANNER ============ */
.announcement-banner {
  background: linear-gradient(135deg, #C49520 0%, #D4A017 50%, #C8851A 100%);
  color: #fff;
  text-align: center;
  padding: 10px var(--space-md);
  padding-right: 40px;
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-sizing: border-box;
}
.announcement-banner .banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
}
.announcement-banner .banner-close:hover { opacity: 1; }
.announcement-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.announcement-banner a:hover { opacity: 0.85; }
.banner-article-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.82em;
  font-weight: 500;
  opacity: 0.92;
}

/* ============ ARTICLES ============ */
/* Listing page grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

/* Article card on listing page */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.article-card-meta {
  display: flex;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.article-card-date,
.article-card-reading {
  white-space: nowrap;
}
.article-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
  color: var(--text-dark);
  text-decoration: none;
}
.article-card p {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.6;
}
.article-card-link {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--primary);
}

/* Start Here — featured articles section */
.articles-start-here {
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, rgba(47,74,60,0.06) 0%, rgba(176,154,62,0.08) 100%);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(176,154,62,0.15);
  position: relative;
  overflow: hidden;
}
.articles-start-here::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}
.articles-start-here-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  background: rgba(176,154,62,0.12);
  padding: 4px 12px;
  border-radius: 20px;
}
.articles-start-here h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--text-dark);
  margin-bottom: 6px;
}
.articles-start-here-sub {
  color: var(--text-light);
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  max-width: 600px;
}
.articles-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}
.article-card--featured {
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.article-card--featured::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-body);
}
.article-card--featured:hover {
  box-shadow: 0 6px 24px rgba(47,74,60,0.15);
  border-left-color: var(--primary);
}
.articles-start-here .articles-step-path {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
}
.articles-step-path .step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(47,74,60,0.25);
}
.articles-step-path .step-arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.articles-step-path .step-label {
  font-weight: 500;
  color: var(--text-dark);
}

/* Article category headings */
.articles-category-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: var(--space-xl) auto var(--space-sm);
  max-width: 900px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-bottom: 2px solid var(--border);
  border-left: 3px solid var(--gold);
  position: relative;
}

/* Dark mode: Start Here + Categories */
[data-theme="dark"] .articles-start-here {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(176,154,62,0.06) 100%);
  border-color: rgba(176,154,62,0.2);
}
[data-theme="dark"] .articles-start-here::before {
  background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary-light));
}
[data-theme="dark"] .articles-start-here-label {
  background: rgba(176,154,62,0.15);
}
[data-theme="dark"] .article-card--featured {
  background: rgba(255,255,255,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
[data-theme="dark"] .article-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .article-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
[data-theme="dark"] .articles-category-heading {
  border-bottom-color: rgba(255,255,255,0.08);
  border-left-color: var(--gold);
}

/* Article hero (individual article pages) */
.article-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3a5f4a 100%);
  color: #fff;
  padding: calc(var(--space-xl) + 20px) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.article-hero > * { position: relative; z-index: 1; }
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F5ECD7;
  margin-bottom: 16px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212,180,98,0.4);
}
.article-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(212,180,98,0.75);
}
.article-meta span { white-space: nowrap; }

/* Seasonal calendar visual grid */
.seasonal-calendar {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: rgba(47,74,60,0.03);
  border-radius: 12px;
  border: 1px solid rgba(47,74,60,0.1);
}
.seasonal-calendar-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-md);
}
.seasonal-calendar-half-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
  display: inline-block;
  width: 100%;
}
.seasonal-calendar-half { text-align: center; margin-bottom: 4px; }
.seasonal-calendar-half--adana { background: rgba(200,100,50,0.1); color: #8B4513; }
.seasonal-calendar-half--visarga { background: rgba(47,120,80,0.1); color: #2F6A3C; }
.seasonal-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: var(--space-md);
}
.seasonal-cal-card {
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.seasonal-cal-card:hover { transform: translateY(-2px); }
.seasonal-cal-month {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.seasonal-cal-ritu {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 6px;
}
.seasonal-cal-dosha {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.seasonal-cal-focus {
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0.85;
}
/* Dosha color coding */
.seasonal-cal--kapha { background: rgba(100,160,120,0.12); border-color: rgba(100,160,120,0.25); }
.seasonal-cal--kapha-agg { background: rgba(100,160,120,0.22); border-color: rgba(100,160,120,0.4); }
.seasonal-cal--pitta { background: rgba(210,140,50,0.12); border-color: rgba(210,140,50,0.25); }
.seasonal-cal--pitta-agg { background: rgba(210,100,50,0.18); border-color: rgba(210,100,50,0.35); }
.seasonal-cal--vata { background: rgba(100,130,200,0.12); border-color: rgba(100,130,200,0.25); }
.seasonal-calendar-note {
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.7;
  font-style: italic;
  margin: 0;
}
/* Dark mode */
[data-theme="dark"] .seasonal-calendar {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .seasonal-calendar-heading { color: var(--gold); }
[data-theme="dark"] .seasonal-calendar-half--adana { background: rgba(200,100,50,0.15); color: #D4A060; }
[data-theme="dark"] .seasonal-calendar-half--visarga { background: rgba(47,120,80,0.15); color: #6DB88A; }
[data-theme="dark"] .seasonal-cal-card { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .seasonal-cal--kapha { background: rgba(100,160,120,0.15); }
[data-theme="dark"] .seasonal-cal--kapha-agg { background: rgba(100,160,120,0.25); }
[data-theme="dark"] .seasonal-cal--pitta { background: rgba(210,140,50,0.15); }
[data-theme="dark"] .seasonal-cal--pitta-agg { background: rgba(210,100,50,0.2); }
[data-theme="dark"] .seasonal-cal--vata { background: rgba(100,130,200,0.15); }
/* Responsive: 3 cols default, 2 on mobile */
@media (max-width: 480px) {
  .seasonal-calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .seasonal-cal-card { padding: 10px 8px; }
  .seasonal-cal-month { font-size: 0.82rem; }
  .seasonal-cal-focus { font-size: 0.7rem; }
}

/* Agni states grid */
.agni-states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.agni-state-card {
  border-radius: 10px;
  padding: var(--space-md);
  border: 1.5px solid transparent;
  text-align: center;
}
.agni-state-card--sama {
  background: rgba(176, 154, 62, 0.1);
  border-color: var(--gold);
}
.agni-state-card--vishama {
  background: rgba(70, 130, 180, 0.1);
  border-color: #4682B4;
}
.agni-state-card--tikshna {
  background: rgba(210, 140, 40, 0.1);
  border-color: #D28C28;
}
.agni-state-card--manda {
  background: rgba(76, 140, 100, 0.1);
  border-color: #4C8C64;
}
.agni-state-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--text-primary);
}
.agni-state-english {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0 0 var(--space-sm);
}
.agni-state-signs {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.agni-state-signs li::before {
  content: "\2022";
  margin-right: 6px;
  opacity: 0.5;
}
.agni-state-card--sama .agni-state-name { color: var(--gold); }
.agni-state-card--vishama .agni-state-name { color: #4682B4; }
.agni-state-card--tikshna .agni-state-name { color: #D28C28; }
.agni-state-card--manda .agni-state-name { color: #4C8C64; }

[data-theme="dark"] .agni-state-card--sama { background: rgba(176, 154, 62, 0.15); }
[data-theme="dark"] .agni-state-card--vishama { background: rgba(70, 130, 180, 0.15); }
[data-theme="dark"] .agni-state-card--tikshna { background: rgba(210, 140, 40, 0.15); }
[data-theme="dark"] .agni-state-card--manda { background: rgba(76, 140, 100, 0.15); }

@media (max-width: 480px) {
  .agni-states-grid { gap: var(--space-sm); }
  .agni-state-card { padding: var(--space-sm); }
  .agni-state-name { font-size: 1.1rem; }
}

/* Dosha Clock visual grid */
.dosha-clock {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: rgba(0,0,0,0.02);
  border-radius: 12px;
}
.dosha-clock-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.dosha-clock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dosha-clock-card {
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.dosha-clock-card:hover { transform: translateY(-2px); }
.dosha-clock-time {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.dosha-clock-dosha {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.dosha-clock-desc {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.4;
}
/* Dosha clock color coding */
.dosha-clock--kapha { background: rgba(100,160,120,0.12); border-color: rgba(100,160,120,0.25); }
.dosha-clock--pitta { background: rgba(210,140,50,0.12); border-color: rgba(210,140,50,0.25); }
.dosha-clock--vata { background: rgba(100,130,200,0.12); border-color: rgba(100,130,200,0.25); }
/* Dark mode */
[data-theme="dark"] .dosha-clock {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
[data-theme="dark"] .dosha-clock-heading { color: var(--gold); }
[data-theme="dark"] .dosha-clock-card { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .dosha-clock--kapha { background: rgba(100,160,120,0.15); }
[data-theme="dark"] .dosha-clock--pitta { background: rgba(210,140,50,0.15); }
[data-theme="dark"] .dosha-clock--vata { background: rgba(100,130,200,0.15); }
/* Responsive: 3-col → 2-col on mobile */
@media (max-width: 480px) {
  .dosha-clock-grid { grid-template-columns: repeat(2, 1fr); }
  .dosha-clock-card { padding: 10px 8px; }
  .dosha-clock-dosha { font-size: 1rem; }
  .dosha-clock-desc { font-size: 0.7rem; }
}

/* Panchakarma 3-Phase Flow */
.panchakarma-flow {
  max-width: 100%;
  margin: var(--space-md) auto;
  padding: 0;
}
.panchakarma-flow-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.panchakarma-flow-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}
.panchakarma-flow-card {
  flex: 1;
  max-width: 230px;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-sm);
  position: relative;
  border: 1px solid var(--border);
  text-align: center;
}
.panchakarma-flow-card:not(:last-child) {
  margin-right: 40px;
}
/* Arrow connectors between cards */
.panchakarma-flow-card:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}
.panchakarma-flow-phase {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 600;
}
.panchakarma-flow-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.panchakarma-flow-sub {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 10px;
}
.panchakarma-flow-items {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--text-body);
}
/* Phase 1 — Preparation (light amber) */
.panchakarma-flow-card--prep {
  background: linear-gradient(135deg, #fdf5e6 0%, #faecd2 100%);
  border-color: #e0c98a;
}
.panchakarma-flow-card--prep .panchakarma-flow-phase { color: #9a7b2e; }
.panchakarma-flow-card--prep .panchakarma-flow-name { color: #7a5f1a; }
/* Phase 2 — Main Actions (deep green / primary) */
.panchakarma-flow-card--main {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary-dark);
  color: var(--parchment);
}
.panchakarma-flow-card--main .panchakarma-flow-phase { color: rgba(246,240,229,0.75); }
.panchakarma-flow-card--main .panchakarma-flow-name { color: var(--parchment); }
.panchakarma-flow-card--main .panchakarma-flow-sub { color: rgba(246,240,229,0.7); }
.panchakarma-flow-card--main .panchakarma-flow-items { color: rgba(246,240,229,0.9); }
/* Phase 3 — Recovery (soft gold) */
.panchakarma-flow-card--post {
  background: linear-gradient(135deg, #fdf8ef 0%, #f5edda 100%);
  border-color: #d4ba6a;
}
.panchakarma-flow-card--post .panchakarma-flow-phase { color: #8a6d1f; }
.panchakarma-flow-card--post .panchakarma-flow-name { color: #6e5416; }
/* Dark mode */
[data-theme="dark"] .panchakarma-flow-heading { color: var(--parchment); }
[data-theme="dark"] .panchakarma-flow-card--prep {
  background: linear-gradient(135deg, #2a2416 0%, #302818 100%);
  border-color: #5a4a2a;
}
[data-theme="dark"] .panchakarma-flow-card--prep .panchakarma-flow-phase { color: #d4b462; }
[data-theme="dark"] .panchakarma-flow-card--prep .panchakarma-flow-name { color: #e8d090; }
[data-theme="dark"] .panchakarma-flow-card--prep .panchakarma-flow-sub { color: #b0a080; }
[data-theme="dark"] .panchakarma-flow-card--prep .panchakarma-flow-items { color: #c8b888; }
[data-theme="dark"] .panchakarma-flow-card--main {
  background: linear-gradient(135deg, #1a2e22 0%, #142018 100%);
  border-color: #2a4a36;
}
[data-theme="dark"] .panchakarma-flow-card--post {
  background: linear-gradient(135deg, #28241a 0%, #2e2818 100%);
  border-color: #5a4e2a;
}
[data-theme="dark"] .panchakarma-flow-card--post .panchakarma-flow-phase { color: #d4b462; }
[data-theme="dark"] .panchakarma-flow-card--post .panchakarma-flow-name { color: #e8d090; }
[data-theme="dark"] .panchakarma-flow-card--post .panchakarma-flow-sub { color: #b0a080; }
[data-theme="dark"] .panchakarma-flow-card--post .panchakarma-flow-items { color: #c8b888; }
[data-theme="dark"] .panchakarma-flow-card:not(:last-child)::after { color: var(--parchment); }
/* Responsive: vertical stack on mobile */
@media (max-width: 700px) {
  .panchakarma-flow-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .panchakarma-flow-card {
    max-width: 340px;
    width: 100%;
  }
  .panchakarma-flow-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 36px;
  }
  .panchakarma-flow-card:not(:last-child)::after {
    content: '\2193';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(-50%);
  }
}

/* Kitchen staples ingredient grid */
.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.kitchen-grid-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.kitchen-grid-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.kitchen-grid-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.kitchen-grid-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.kitchen-grid-sanskrit {
  font-size: var(--fs-small);
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.kitchen-grid-details {
  list-style: none;
  font-size: var(--fs-small);
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kitchen-grid-details li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.kitchen-grid-label {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.kitchen-grid-effect {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.kitchen-grid-effect--heating {
  background: rgba(180, 80, 40, 0.12);
  color: #A04828;
}
.kitchen-grid-effect--cooling {
  background: rgba(47, 74, 60, 0.12);
  color: var(--primary);
}
.kitchen-grid-caution {
  font-size: 0.82rem;
  color: var(--terracotta);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
@media (max-width: 900px) {
  .kitchen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .kitchen-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .kitchen-grid-card { padding: var(--space-sm); }
}
[data-theme="dark"] .kitchen-grid-card {
  background: var(--primary-dark);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .kitchen-grid-name { color: var(--gold); }
[data-theme="dark"] .kitchen-grid-sanskrit { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .kitchen-grid-label { color: var(--parchment); }
[data-theme="dark"] .kitchen-grid-details { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .kitchen-grid-heading { color: var(--gold); }
[data-theme="dark"] .kitchen-grid-effect--heating {
  background: rgba(200, 100, 50, 0.2);
  color: #E8A070;
}
[data-theme="dark"] .kitchen-grid-effect--cooling {
  background: rgba(100, 180, 140, 0.15);
  color: #6DB88A;
}
[data-theme="dark"] .kitchen-grid-caution { color: #D4A060; }

/* Prakriti 3-dosha comparison grid */
.prakriti-grid-wrap {
  max-width: 100%;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
}
.prakriti-grid-title {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: var(--fs-h3);
  color: var(--text-dark);
}
.prakriti-grid-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.prakriti-grid-table th,
.prakriti-grid-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: var(--fs-small);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.prakriti-grid-table thead th {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.prakriti-grid-table thead th:first-child {
  background: transparent;
  color: var(--text-dark);
  font-size: var(--fs-small);
  font-weight: 500;
}
.prakriti-grid-th-vata { background: #3B6FA0; }
.prakriti-grid-th-pitta { background: #B8860B; }
.prakriti-grid-th-kapha { background: #3A7D44; }
.prakriti-grid-table tbody tr:last-child td { border-bottom: none; }
.prakriti-grid-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.prakriti-grid-table tbody td:not(:first-child) {
  color: var(--text-body);
}
.prakriti-grid-table tbody tr:nth-child(even) {
  background: var(--cream);
}

/* Prakriti grid — mobile stacked cards */
.prakriti-grid-cards { display: none; }

@media (max-width: 700px) {
  .prakriti-grid-table { display: none; }
  .prakriti-grid-cards { display: flex; flex-direction: column; gap: var(--space-sm); }
  .prakriti-grid-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
  }
  .prakriti-grid-card-header {
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
  }
  .prakriti-grid-card--vata .prakriti-grid-card-header { background: #3B6FA0; }
  .prakriti-grid-card--pitta .prakriti-grid-card-header { background: #B8860B; }
  .prakriti-grid-card--kapha .prakriti-grid-card-header { background: #3A7D44; }
  .prakriti-grid-card-body { padding: 4px 0; }
  .prakriti-grid-card-row {
    display: flex;
    padding: 10px 16px;
    gap: 8px;
  }
  .prakriti-grid-card-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .prakriti-grid-card-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 90px;
    flex-shrink: 0;
    font-size: var(--fs-small);
  }
  .prakriti-grid-card-value {
    color: var(--text-body);
    font-size: var(--fs-small);
    line-height: 1.5;
  }
}

/* Prakriti grid — dark mode */
[data-theme="dark"] .prakriti-grid-table {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
[data-theme="dark"] .prakriti-grid-table th:first-child {
  color: var(--parchment);
}
[data-theme="dark"] .prakriti-grid-table td {
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .prakriti-grid-table tbody td:first-child {
  color: var(--parchment);
}
[data-theme="dark"] .prakriti-grid-table tbody td:not(:first-child) {
  color: rgba(246,240,229,0.8);
}
[data-theme="dark"] .prakriti-grid-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}
[data-theme="dark"] .prakriti-grid-title {
  color: var(--parchment);
}
[data-theme="dark"] .prakriti-grid-card {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
[data-theme="dark"] .prakriti-grid-card-row {
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .prakriti-grid-card-label {
  color: var(--parchment);
}
[data-theme="dark"] .prakriti-grid-card-value {
  color: rgba(246,240,229,0.8);
}

/* Care treatment timeline */
.care-timeline {
  max-width: 100%;
  margin: var(--space-lg) auto;
  padding: var(--space-md) var(--space-sm);
}
.care-timeline-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.care-timeline-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
.care-timeline-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 3px;
  background: linear-gradient(90deg, #A8C5A0, #6B9E6B, #3F7A4A, var(--primary));
  z-index: 0;
}
.care-timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}
.care-timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px currentColor, var(--shadow-sm);
  flex-shrink: 0;
  margin-bottom: var(--space-sm);
}
.care-timeline-step:nth-child(1) .care-timeline-dot { background: #A8C5A0; color: #A8C5A0; }
.care-timeline-step:nth-child(2) .care-timeline-dot { background: #6B9E6B; color: #6B9E6B; }
.care-timeline-step:nth-child(3) .care-timeline-dot { background: #3F7A4A; color: #3F7A4A; }
.care-timeline-step:nth-child(4) .care-timeline-dot { background: var(--primary); color: var(--primary); }
.care-timeline-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
  text-align: center;
}
.care-timeline-phase {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.care-timeline-step:nth-child(1) .care-timeline-phase { color: #6B8F62; }
.care-timeline-step:nth-child(2) .care-timeline-phase { color: #4A7E4A; }
.care-timeline-step:nth-child(3) .care-timeline-phase { color: #2E6638; }
.care-timeline-step:nth-child(4) .care-timeline-phase { color: var(--primary); }
.care-timeline-duration {
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.care-timeline-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.care-timeline-bullets li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.care-timeline-bullets li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.care-timeline-step:nth-child(1) .care-timeline-bullets li::before { color: #A8C5A0; }
.care-timeline-step:nth-child(2) .care-timeline-bullets li::before { color: #6B9E6B; }
.care-timeline-step:nth-child(3) .care-timeline-bullets li::before { color: #3F7A4A; }
.care-timeline-step:nth-child(4) .care-timeline-bullets li::before { color: var(--primary); }
.care-timeline-step:nth-child(1) .care-timeline-card { border-top: 3px solid #A8C5A0; }
.care-timeline-step:nth-child(2) .care-timeline-card { border-top: 3px solid #6B9E6B; }
.care-timeline-step:nth-child(3) .care-timeline-card { border-top: 3px solid #3F7A4A; }
.care-timeline-step:nth-child(4) .care-timeline-card { border-top: 3px solid var(--primary); }
[data-theme="dark"] .care-timeline-heading { color: var(--gold); }
[data-theme="dark"] .care-timeline-card {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
[data-theme="dark"] .care-timeline-dot { border-color: var(--primary-dark); }
[data-theme="dark"] .care-timeline-duration { color: #b5bfb5; }
[data-theme="dark"] .care-timeline-bullets { color: #d0d8d0; }
[data-theme="dark"] .care-timeline-step:nth-child(1) .care-timeline-phase { color: #A8C5A0 !important; }
[data-theme="dark"] .care-timeline-step:nth-child(2) .care-timeline-phase { color: #8FBB8F !important; }
[data-theme="dark"] .care-timeline-step:nth-child(3) .care-timeline-phase { color: #7AAF7A !important; }
[data-theme="dark"] .care-timeline-step:nth-child(4) .care-timeline-phase { color: #9FD49F !important; }
[data-theme="dark"] .care-timeline-track::before {
  background: linear-gradient(90deg, #5A8A5A, #4A7E4A, #3A6E3A, #2A5E2A);
}
@media (max-width: 768px) {
  .care-timeline-track {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    padding-left: 28px;
  }
  .care-timeline-track::before {
    top: 18px;
    bottom: 18px;
    left: 8px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #A8C5A0, #6B9E6B, #3F7A4A, var(--primary));
  }
  .care-timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0;
  }
  .care-timeline-dot {
    position: absolute;
    left: -28px;
    top: 14px;
    margin-bottom: 0;
  }
  .care-timeline-card {
    text-align: left;
  }
}

/* Sleep dosha pattern cards */
.sleep-dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 740px;
  margin: var(--space-lg) auto;
}
.sleep-dosha-card {
  border-radius: 12px;
  padding: var(--space-md);
  border-top: 4px solid;
  background: rgba(255,255,255,0.6);
}
.sleep-dosha-card--vata { border-top-color: rgba(100,130,200,1); }
.sleep-dosha-card--pitta { border-top-color: rgba(210,140,50,1); }
.sleep-dosha-card--kapha { border-top-color: rgba(100,160,120,1); }
.sleep-dosha-name {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.sleep-dosha-card--vata .sleep-dosha-name { color: rgba(100,130,200,1); }
.sleep-dosha-card--pitta .sleep-dosha-name { color: rgba(210,140,50,1); }
.sleep-dosha-card--kapha .sleep-dosha-name { color: rgba(100,160,120,1); }
.sleep-dosha-pattern {
  font-size: 0.95rem;
  color: var(--text-secondary, #5a5a5a);
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.sleep-dosha-signs {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-primary, #2a2a2a);
}
.sleep-dosha-signs li {
  margin-bottom: 0.3em;
}
[data-theme="dark"] .sleep-dosha-card {
  background: rgba(255,255,255,0.05);
}
[data-theme="dark"] .sleep-dosha-pattern {
  color: rgba(255,255,255,0.6);
}
[data-theme="dark"] .sleep-dosha-signs {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 900px) {
  .sleep-dosha-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sleep-dosha-grid {
    grid-template-columns: 1fr;
  }
}

/* Shadrasa (Six Taste) Grid */
.taste-grid-container {
  max-width: 740px;
  margin: var(--space-lg) auto;
  padding: 0;
}
.taste-grid-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-md);
}
.taste-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.taste-grid-card {
  border-radius: 10px;
  padding: var(--space-md);
  background: var(--parchment);
  border-left: 4px solid var(--taste-color, var(--primary));
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.taste-grid-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.taste-grid-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--taste-color, var(--primary));
  margin: 0 0 2px;
}
.taste-grid-sanskrit {
  font-size: 0.82rem;
  color: var(--text-secondary, #6b6b6b);
  margin: 0 0 var(--space-sm);
  font-style: italic;
}
.taste-grid-elements {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.taste-grid-dosha {
  font-size: 0.82rem;
  color: var(--text-secondary, #6b6b6b);
  margin: 0 0 6px;
  line-height: 1.5;
}
.taste-grid-effect {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-secondary, #6b6b6b);
  margin: 0;
}
.taste-grid-card[data-taste="sweet"]     { --taste-color: #C4A43C; }
.taste-grid-card[data-taste="sour"]      { --taste-color: #D4843C; }
.taste-grid-card[data-taste="salty"]     { --taste-color: #8B6B4A; }
.taste-grid-card[data-taste="pungent"]   { --taste-color: #C45040; }
.taste-grid-card[data-taste="bitter"]    { --taste-color: #3A7D44; }
.taste-grid-card[data-taste="astringent"]{ --taste-color: #7B5EA7; }

[data-theme="dark"] .taste-grid-title {
  color: var(--parchment);
}
[data-theme="dark"] .taste-grid-card {
  background: var(--primary-dark, #1a2e22);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
[data-theme="dark"] .taste-grid-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
[data-theme="dark"] .taste-grid-elements {
  color: var(--parchment);
}
[data-theme="dark"] .taste-grid-sanskrit,
[data-theme="dark"] .taste-grid-dosha,
[data-theme="dark"] .taste-grid-effect {
  color: rgba(246,240,229,0.7);
}

@media (max-width: 600px) {
  .taste-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .taste-grid-wrap {
    grid-template-columns: 1fr;
  }
}

/* Kriyakala — 6-stage disease progression flow */
.kriyakala-flow {
  max-width: 740px;
  margin: var(--space-md) auto;
  padding: 0;
}
.kriyakala-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-xs);
}
.kriyakala-subtitle {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.kriyakala-timeline {
  position: relative;
  padding-left: 48px;
}
.kriyakala-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #a8c5b0, #6a9b7a, #4a8060, #3a6a4c, #2d5540, #1E3A2E);
  border-radius: 3px;
}
.kriyakala-stage {
  position: relative;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.kriyakala-stage:last-child {
  margin-bottom: 0;
}
.kriyakala-stage:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.kriyakala-stage--1 { border-left: 4px solid #a8c5b0; }
.kriyakala-stage--2 { border-left: 4px solid #85b396; }
.kriyakala-stage--3 { border-left: 4px solid #6a9b7a; }
.kriyakala-stage--4 { border-left: 4px solid #4a8060; }
.kriyakala-stage--5 { border-left: 4px solid #2d5540; }
.kriyakala-stage--6 { border-left: 4px solid #1E3A2E; }
.kriyakala-number {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
}
.kriyakala-stage--1 .kriyakala-number { background: #a8c5b0; }
.kriyakala-stage--2 .kriyakala-number { background: #85b396; }
.kriyakala-stage--3 .kriyakala-number { background: #6a9b7a; }
.kriyakala-stage--4 .kriyakala-number { background: #4a8060; }
.kriyakala-stage--5 .kriyakala-number { background: #2d5540; }
.kriyakala-stage--6 .kriyakala-number { background: #1E3A2E; }
.kriyakala-name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.kriyakala-sanskrit {
  font-size: var(--fs-small);
  color: var(--primary);
  font-style: italic;
  margin-bottom: var(--space-xs);
}
.kriyakala-desc {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Kriyakala dark mode */
[data-theme="dark"] .kriyakala-heading { color: var(--parchment); }
[data-theme="dark"] .kriyakala-subtitle { color: #a8a090; }
[data-theme="dark"] .kriyakala-stage {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .kriyakala-stage:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
[data-theme="dark"] .kriyakala-stage--1 { border-left-color: #a8c5b0; }
[data-theme="dark"] .kriyakala-stage--2 { border-left-color: #85b396; }
[data-theme="dark"] .kriyakala-stage--3 { border-left-color: #6a9b7a; }
[data-theme="dark"] .kriyakala-stage--4 { border-left-color: #4a8060; }
[data-theme="dark"] .kriyakala-stage--5 { border-left-color: #2d5540; }
[data-theme="dark"] .kriyakala-stage--6 { border-left-color: #1E3A2E; }
[data-theme="dark"] .kriyakala-name { color: var(--parchment); }
[data-theme="dark"] .kriyakala-sanskrit { color: #8ab896; }
[data-theme="dark"] .kriyakala-desc { color: #c0b8a8; }
[data-theme="dark"] .kriyakala-timeline::before {
  background: linear-gradient(to bottom, #6a9b7a, #4a8060, #3a6a4c, #2d5540, #1E3A2E, #142820);
}

/* Kriyakala mobile */
@media (max-width: 600px) {
  .kriyakala-timeline { padding-left: 40px; }
  .kriyakala-timeline::before { left: 15px; }
  .kriyakala-number {
    left: -33px;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .kriyakala-stage {
    padding: var(--space-sm);
  }
  .kriyakala-name { font-size: 1rem; }
  .kriyakala-desc { font-size: 0.85rem; }
}

/* Dosha-based skin pattern cards */
.skin-dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  max-width: 740px;
}
.skin-dosha-card {
  border-radius: 12px;
  padding: var(--space-md);
  background: var(--parchment);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.skin-dosha-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.skin-dosha-card--vata {
  border-top: 4px solid rgba(100,130,200,1);
}
.skin-dosha-card--pitta {
  border-top: 4px solid rgba(210,140,50,1);
}
.skin-dosha-card--kapha {
  border-top: 4px solid rgba(100,160,120,1);
}
.skin-dosha-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--primary);
}
.skin-dosha-card--vata .skin-dosha-name { color: rgba(70,100,170,1); }
.skin-dosha-card--pitta .skin-dosha-name { color: rgba(180,110,30,1); }
.skin-dosha-card--kapha .skin-dosha-name { color: rgba(70,130,90,1); }
.skin-dosha-type {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-sm) 0;
  font-style: italic;
}
.skin-dosha-signs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skin-dosha-signs li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}
.skin-dosha-signs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.skin-dosha-card--vata .skin-dosha-signs li::before { background: rgba(100,130,200,1); }
.skin-dosha-card--pitta .skin-dosha-signs li::before { background: rgba(210,140,50,1); }
.skin-dosha-card--kapha .skin-dosha-signs li::before { background: rgba(100,160,120,1); }

/* Dosha skin cards — dark mode */
[data-theme="dark"] .skin-dosha-card {
  background: var(--card-bg, #1E3A2E);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
[data-theme="dark"] .skin-dosha-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
[data-theme="dark"] .skin-dosha-card--vata .skin-dosha-name { color: rgba(140,170,230,1); }
[data-theme="dark"] .skin-dosha-card--pitta .skin-dosha-name { color: rgba(240,170,80,1); }
[data-theme="dark"] .skin-dosha-card--kapha .skin-dosha-name { color: rgba(130,190,150,1); }
[data-theme="dark"] .skin-dosha-type { color: #a0998a; }
[data-theme="dark"] .skin-dosha-signs li { color: #c0b8a8; }

/* Dosha skin cards — responsive */
@media (max-width: 900px) {
  .skin-dosha-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .skin-dosha-grid {
    grid-template-columns: 1fr;
  }
}

/* Joint compare grid — Vata vs Kapha */
.joint-compare-grid {
  max-width: 740px;
  margin: var(--space-lg) auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(100, 130, 200, 0.2);
  font-family: var(--font-body, 'Inter', sans-serif);
}
.joint-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
.joint-compare-header-vata,
.joint-compare-header-kapha {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.joint-compare-header-vata {
  background: rgba(100, 130, 200, 0.85);
}
.joint-compare-header-kapha {
  background: rgba(100, 160, 120, 0.85);
}
.joint-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(47, 74, 60, 0.1);
}
.joint-compare-row:nth-child(even) {
  background: rgba(246, 240, 229, 0.5);
}
.joint-compare-label {
  grid-column: 1 / -1;
  padding: var(--space-xs) var(--space-md) 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary, #2F4A3C);
  opacity: 0.7;
}
.joint-compare-cell {
  padding: var(--space-xs) var(--space-md) var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text, #333);
}
.joint-compare-cell-vata {
  border-right: 1px solid rgba(100, 130, 200, 0.15);
}
.joint-compare-cell-kapha {
  border-left: 1px solid rgba(100, 160, 120, 0.15);
}
.joint-compare-cell-vata::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100, 130, 200, 0.7);
  margin-right: 6px;
  vertical-align: middle;
}
.joint-compare-cell-kapha::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100, 160, 120, 0.7);
  margin-right: 6px;
  vertical-align: middle;
}

/* Joint compare — dark mode */
[data-theme="dark"] .joint-compare-grid {
  border-color: rgba(100, 130, 200, 0.3);
  background: rgba(30, 30, 30, 0.6);
}
[data-theme="dark"] .joint-compare-header-vata {
  background: rgba(100, 130, 200, 0.65);
}
[data-theme="dark"] .joint-compare-header-kapha {
  background: rgba(100, 160, 120, 0.65);
}
[data-theme="dark"] .joint-compare-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .joint-compare-label {
  color: var(--parchment, #F6F0E5);
}
[data-theme="dark"] .joint-compare-cell {
  color: var(--parchment, #ddd);
}
[data-theme="dark"] .joint-compare-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .joint-compare-cell-vata {
  border-right-color: rgba(100, 130, 200, 0.2);
}
[data-theme="dark"] .joint-compare-cell-kapha {
  border-left-color: rgba(100, 160, 120, 0.2);
}

/* Joint compare — mobile stack */
@media (max-width: 600px) {
  .joint-compare-header {
    grid-template-columns: 1fr;
  }
  .joint-compare-row {
    grid-template-columns: 1fr;
  }
  .joint-compare-cell-vata {
    border-right: none;
    border-left: 3px solid rgba(100, 130, 200, 0.5);
  }
  .joint-compare-cell-kapha {
    border-left: 3px solid rgba(100, 160, 120, 0.5);
    border-top: 1px dashed rgba(47, 74, 60, 0.1);
  }
}

/* History timeline (article-origins-history-ayurveda) */
.history-timeline-section {
  max-width: 740px;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-sm);
}
.history-timeline-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-xs);
}
.history-timeline-subtitle {
  font-size: var(--fs-body);
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
.history-timeline-track {
  position: relative;
  padding: 0;
}
.history-timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--vedic-gold), var(--gold), #8a7a2a, var(--primary-light), var(--primary), var(--primary-dark));
  border-radius: 4px;
}
.history-timeline-item {
  position: relative;
  width: 50%;
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  box-sizing: border-box;
}
.history-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: calc(var(--space-md) + 20px);
  padding-left: var(--space-sm);
}
.history-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: calc(var(--space-md) + 20px);
  padding-right: var(--space-sm);
}
.history-timeline-item:last-child {
  padding-bottom: 0;
}
.history-timeline-dot {
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--parchment);
  z-index: 2;
}
.history-timeline-item:nth-child(odd) .history-timeline-dot {
  right: -9px;
}
.history-timeline-item:nth-child(even) .history-timeline-dot {
  left: -9px;
}
.history-timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.history-timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.history-timeline-year {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.history-timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.history-timeline-desc {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* History timeline — dark mode */
[data-theme="dark"] .history-timeline-heading { color: var(--parchment); }
[data-theme="dark"] .history-timeline-subtitle { color: #a8a090; }
[data-theme="dark"] .history-timeline-track::before {
  background: linear-gradient(to bottom, var(--vedic-gold), #a89030, #6a6020, #4a7050, #3a5a40, #1E3A2E);
}
[data-theme="dark"] .history-timeline-dot {
  background: #2a2520;
  border-color: var(--vedic-gold);
}
[data-theme="dark"] .history-timeline-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .history-timeline-card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
[data-theme="dark"] .history-timeline-year { color: var(--vedic-gold); }
[data-theme="dark"] .history-timeline-title { color: var(--parchment); }
[data-theme="dark"] .history-timeline-desc { color: #c0b8a8; }

/* History timeline — mobile */
@media (max-width: 600px) {
  .history-timeline-track::before {
    left: 15px;
    transform: none;
  }
  .history-timeline-item,
  .history-timeline-item:nth-child(odd),
  .history-timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 44px;
    padding-right: var(--space-sm);
  }
  .history-timeline-item:nth-child(odd) .history-timeline-dot,
  .history-timeline-item:nth-child(even) .history-timeline-dot {
    left: 6px;
    right: auto;
  }
}

/* PCOS dosha pattern cards */
.pcos-pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 740px;
  margin: var(--space-lg) auto;
}
.pcos-pattern-card {
  border-radius: 12px;
  padding: var(--space-md);
  border-top: 4px solid;
  background: var(--parchment);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.pcos-pattern-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.pcos-pattern-card--kapha { border-top-color: rgba(100,160,120,1); }
.pcos-pattern-card--pitta { border-top-color: rgba(210,140,50,1); }
.pcos-pattern-card--vata  { border-top-color: rgba(100,130,200,1); }
.pcos-pattern-dosha {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-xs);
}
.pcos-pattern-card--kapha .pcos-pattern-dosha {
  background: rgba(100,160,120,0.15);
  color: rgba(60,110,70,1);
}
.pcos-pattern-card--pitta .pcos-pattern-dosha {
  background: rgba(210,140,50,0.15);
  color: rgba(160,100,20,1);
}
.pcos-pattern-card--vata .pcos-pattern-dosha {
  background: rgba(100,130,200,0.15);
  color: rgba(60,80,160,1);
}
.pcos-pattern-name {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  margin: var(--space-xs) 0 4px;
  color: var(--text);
}
.pcos-pattern-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.pcos-pattern-signs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pcos-pattern-signs li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.pcos-pattern-signs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pcos-pattern-card--kapha .pcos-pattern-signs li::before {
  background: rgba(100,160,120,0.5);
}
.pcos-pattern-card--pitta .pcos-pattern-signs li::before {
  background: rgba(210,140,50,0.5);
}
.pcos-pattern-card--vata .pcos-pattern-signs li::before {
  background: rgba(100,130,200,0.5);
}

/* PCOS pattern cards dark mode */
[data-theme="dark"] .pcos-pattern-card {
  background: var(--card-bg, #1e2a22);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
[data-theme="dark"] .pcos-pattern-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
[data-theme="dark"] .pcos-pattern-card--kapha .pcos-pattern-dosha {
  background: rgba(100,160,120,0.2);
  color: rgba(140,200,160,1);
}
[data-theme="dark"] .pcos-pattern-card--pitta .pcos-pattern-dosha {
  background: rgba(210,140,50,0.2);
  color: rgba(240,180,90,1);
}
[data-theme="dark"] .pcos-pattern-card--vata .pcos-pattern-dosha {
  background: rgba(100,130,200,0.2);
  color: rgba(140,170,240,1);
}
[data-theme="dark"] .pcos-pattern-name {
  color: var(--text);
}
[data-theme="dark"] .pcos-pattern-desc {
  color: var(--text-secondary);
}
[data-theme="dark"] .pcos-pattern-signs li {
  color: var(--text);
}
[data-theme="dark"] .pcos-pattern-card--kapha .pcos-pattern-signs li::before {
  background: rgba(100,160,120,0.7);
}
[data-theme="dark"] .pcos-pattern-card--pitta .pcos-pattern-signs li::before {
  background: rgba(210,140,50,0.7);
}
[data-theme="dark"] .pcos-pattern-card--vata .pcos-pattern-signs li::before {
  background: rgba(100,130,200,0.7);
}

/* PCOS pattern cards responsive */
@media (max-width: 900px) {
  .pcos-pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pcos-pattern-grid {
    grid-template-columns: 1fr;
  }
}

/* Five Pranas diagram grid */
.prana-grid-wrap {
  max-width: 740px;
  margin: var(--space-md) auto;
  padding: 0;
}
.prana-grid-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-sm);
}
.prana-grid-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}
.prana-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}
.prana-grid-card {
  flex: 0 0 calc(33.333% - 12px);
  background: linear-gradient(135deg, #e8f4f8 0%, #d4eef5 50%, #c8e8e0 100%);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-sm) 14px;
  text-align: center;
  border: 1px solid rgba(100, 180, 200, 0.25);
  box-shadow: 0 2px 12px rgba(60, 140, 170, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.prana-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5ba3b5, #3d8b8b);
}
.prana-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(60, 140, 170, 0.15);
}
.prana-grid-card:nth-child(4),
.prana-grid-card:nth-child(5) {
  flex: 0 0 calc(33.333% - 12px);
}
.prana-grid-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a6e7a;
  margin-bottom: 6px;
}
.prana-grid-direction {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #4a9aaa, #3d8b8b);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.prana-grid-seat {
  font-size: var(--fs-small);
  color: #3a7a7a;
  font-weight: 500;
  margin-bottom: 6px;
}
.prana-grid-role {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

[data-theme="dark"] .prana-grid-title {
  color: var(--parchment);
}
[data-theme="dark"] .prana-grid-subtitle {
  color: rgba(246, 240, 229, 0.6);
}
[data-theme="dark"] .prana-grid-card {
  background: linear-gradient(135deg, #1a3a42 0%, #1e3e3e 50%, #1a3a36 100%);
  border-color: rgba(80, 160, 180, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .prana-grid-card::before {
  background: linear-gradient(90deg, #5ba3b5, #4d9a8a);
}
[data-theme="dark"] .prana-grid-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .prana-grid-name {
  color: #7fc8d8;
}
[data-theme="dark"] .prana-grid-direction {
  background: linear-gradient(135deg, #3a8090, #2e7070);
}
[data-theme="dark"] .prana-grid-seat {
  color: #6ab8b0;
}
[data-theme="dark"] .prana-grid-role {
  color: rgba(246, 240, 229, 0.75);
}

@media (max-width: 600px) {
  .prana-grid-card {
    flex: 0 0 calc(50% - 8px);
  }
  .prana-grid-card:nth-child(4),
  .prana-grid-card:nth-child(5) {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 480px) {
  .prana-grid-card,
  .prana-grid-card:nth-child(4),
  .prana-grid-card:nth-child(5) {
    flex: 0 0 100%;
  }
}

/* Women's life-stage timeline */
.womens-timeline-section {
  max-width: 740px;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-sm);
}
.womens-timeline-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}
.womens-timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}
.womens-timeline-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8a0b4 0%, #c06080 35%, #8b2050 70%, #5c1035 100%);
  border-radius: 2px;
  z-index: 0;
}
.womens-timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.womens-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  flex-shrink: 0;
  margin-bottom: 10px;
  box-shadow: 0 0 0 2px #c06080;
}
.womens-timeline-item:nth-child(1) .womens-timeline-dot { background: #e8a0b4; }
.womens-timeline-item:nth-child(2) .womens-timeline-dot { background: #d4788e; }
.womens-timeline-item:nth-child(3) .womens-timeline-dot { background: #c06080; }
.womens-timeline-item:nth-child(4) .womens-timeline-dot { background: #8b2050; }
.womens-timeline-item:nth-child(5) .womens-timeline-dot { background: #5c1035; }
.womens-timeline-card {
  background: linear-gradient(135deg, #fdf2f5 0%, #f8e4eb 100%);
  border: 1px solid rgba(192, 96, 128, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.womens-timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.womens-timeline-stage {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 600;
  color: #8b2050;
  margin-bottom: 2px;
  line-height: 1.3;
}
.womens-timeline-age {
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-bottom: 6px;
  font-style: italic;
}
.womens-timeline-desc {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 6px;
}
.womens-timeline-key {
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  color: #8b2050;
  font-weight: 500;
  line-height: 1.35;
  padding-top: 6px;
  border-top: 1px solid rgba(192, 96, 128, 0.15);
}

/* Women's timeline dark mode */
[data-theme="dark"] .womens-timeline-heading {
  color: var(--parchment);
}
[data-theme="dark"] .womens-timeline-card {
  background: linear-gradient(135deg, rgba(140, 50, 80, 0.2) 0%, rgba(92, 16, 53, 0.25) 100%);
  border-color: rgba(200, 120, 150, 0.25);
}
[data-theme="dark"] .womens-timeline-stage {
  color: #e8a0b4;
}
[data-theme="dark"] .womens-timeline-age {
  color: rgba(246, 240, 229, 0.6);
}
[data-theme="dark"] .womens-timeline-desc {
  color: rgba(246, 240, 229, 0.8);
}
[data-theme="dark"] .womens-timeline-key {
  color: #d4788e;
  border-top-color: rgba(200, 120, 150, 0.2);
}
[data-theme="dark"] .womens-timeline-dot {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 2px #d4788e;
}

/* Women's timeline mobile */
@media (max-width: 600px) {
  .womens-timeline-track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 28px;
  }
  .womens-timeline-track::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, #e8a0b4 0%, #c06080 35%, #8b2050 70%, #5c1035 100%);
  }
  .womens-timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .womens-timeline-dot {
    margin-bottom: 0;
    margin-top: 14px;
    margin-left: -28px;
    flex-shrink: 0;
  }
  .womens-timeline-card {
    text-align: left;
  }
}

/* Article feature image */
.article-feature-image {
  max-width: 820px;
  margin: calc(var(--space-lg) * -0.5) auto var(--space-lg);
  padding: 0 var(--space-md);
}
.article-feature-image picture {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.article-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
[data-theme="dark"] .article-feature-image picture {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Article share bar */
.article-share {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(212,180,98,0.35);
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(245,236,215,0.88);
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  -webkit-appearance: none;
  font-family: inherit;
  line-height: 1.4;
}
.article-share-btn:hover,
.article-share-btn:focus-visible {
  background: rgba(255,255,255,0.18);
  border-color: rgba(212,180,98,0.6);
}
.article-share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.article-share-btn .share-label { pointer-events: none; }
.article-share-copied {
  color: var(--vedic-gold, #D4B462);
  font-weight: 600;
}

/* Article content container */
.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}

/* Article body prose */
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h2);
  color: var(--text-dark);
  margin: var(--space-lg) 0 var(--space-sm);
  line-height: 1.25;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: var(--space-sm);
}
.article-body ul,
.article-body ol {
  padding-left: 1.4em;
  margin-bottom: var(--space-sm);
}
.article-body li {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
}
.eight-branches-list li {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.eight-branches-list li:last-child { border-bottom: none; }
[data-theme="dark"] .eight-branches-list li {
  border-bottom-color: rgba(255,255,255,0.08);
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-sm);
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--text-light);
}

/* Evidence callout box */
.article-evidence-box {
  background: #fdf8ef;
  border: 1px solid #e8dcc8;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
.article-evidence-box h2 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0 0 var(--space-xs);
}
.article-evidence-box p {
  font-size: var(--fs-small);
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 8px;
}
.article-evidence-box p:last-child { margin-bottom: 0; }

/* In This Article — Table of Contents */
.article-toc {
  background: var(--cream, #fdf8ef);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md, 8px);
  padding: 0;
  margin: 0 0 var(--space-md, 1.5rem);
}
.article-toc details {
  padding: var(--space-sm, 1rem) var(--space-md, 1.5rem);
}
.article-toc summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xs, 0.5rem) 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.article-toc summary::-webkit-details-marker { display: none; }
.article-toc summary::after {
  content: '\25BC';
  font-size: 0.65rem;
  color: var(--text-light, #8a7e6b);
  transition: transform 0.25s ease;
}
.article-toc details[open] summary::after {
  transform: rotate(180deg);
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: var(--space-xs, 0.5rem) 0 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  border-top: 1px solid rgba(221,211,195,0.5);
}
.article-toc li:first-child { border-top: none; }
.article-toc a {
  display: block;
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: var(--fs-small, 0.92rem);
  color: var(--text-body, #3d3526);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s ease;
}
.article-toc a::before {
  content: counter(toc);
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
}
.article-toc a:hover { color: var(--primary); }
@media (max-width: 600px) {
  .article-toc details { padding: 0.75rem 1rem; }
  .article-toc a { padding: 8px 0 8px 24px; }
}

/* Did You Know callout */
.article-dyk {
  background: linear-gradient(135deg, #fdf8ef 0%, #f9f3e6 100%);
  border: 1px solid #e0d4b8;
  border-left: 4px solid var(--vedic-gold);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  position: relative;
}
.article-dyk-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vedic-gold);
  margin: 0 0 6px;
}
.article-dyk p {
  font-size: var(--fs-small);
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

/* Safety paragraph */
.article-safety {
  background: var(--sandalwood-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.8;
}

/* Seasonal highlight (homepage, removable after festival) */
.seasonal-highlight {
  padding: var(--space-lg) 0;
  text-align: center;
}
.seasonal-highlight-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  background: #fdf8ef;
}
.seasonal-highlight h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--text-dark);
  margin: var(--space-xs) 0 var(--space-sm);
  line-height: 1.3;
}
.seasonal-highlight-body {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.seasonal-highlight-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

/* ============ DARK MODE (opt-in via toggle) ============ */
[data-theme="dark"] {
    /* Backgrounds — deep forest greens, not pure black */
    --parchment:        #0f1a14;
    --cream:            #142019;
    --parchment-dark:   #1a2a1f;
    --white:            #1e2e23;

    /* Text — warm off-whites, not pure white */
    --text-dark:        #e8e0d4;
    --text-body:        #d4cbbf;
    --text-light:       #a89e8f;

    /* Primary greens — lighter for contrast on dark bg */
    --primary:          #7fa893;
    --primary-dark:     #0d1610;
    --primary-light:    #9abfad;

    /* Accents — slightly brighter to pop on dark */
    --gold:             #d4b85c;
    --gold-hover:       #e0c76a;
    --gold-light:       rgba(212, 184, 92, 0.16);
    --gold-deep:        #D4B245;
    --terracotta:       #c4845e;

    /* Borders & surfaces */
    --border:           #2e3e33;
    --sandalwood:       #8a7458;
    --sandalwood-light: rgba(138, 116, 88, 0.12);

    /* Shadows — subtler in dark mode */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.20);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Dark mode element overrides (flat selectors for broad browser support) */
[data-theme="dark"] .navbar {
  background: rgba(13, 22, 16, 0.97);
}
[data-theme="dark"] .gold-line::before {
  background-color: var(--parchment);
}
[data-theme="dark"] .section-alt .gold-line::before {
  background-color: var(--cream);
}
[data-theme="dark"] .story-card-editorial {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .concerns-panel {
  background: var(--cream);
  border-color: var(--border);
}
[data-theme="dark"] ::-webkit-scrollbar { width: 10px; }
[data-theme="dark"] ::-webkit-scrollbar-track { background: var(--parchment); }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #3e5043; }
[data-theme="dark"] .guide-section-card { background: var(--primary-dark); border-left-color: var(--gold); }
[data-theme="dark"] .faq-question::after { border-color: var(--gold); }
[data-theme="dark"] .guide-cta-section { background: var(--primary-dark); }
[data-theme="dark"] .next-page-link { background: var(--primary); border-color: var(--border); }
[data-theme="dark"] .next-page-title { color: var(--gold); }
[data-theme="dark"] .next-page-label { color: var(--text-light); }
[data-theme="dark"] iframe[src*="google.com/maps"] { filter: invert(90%) hue-rotate(180deg); }
[data-theme="dark"] .form-group select option { background: var(--cream); color: var(--text-dark); }
[data-theme="dark"] .announcement-banner { background: linear-gradient(135deg, #8A6A10 0%, #A88518 50%, #96681A 100%); }
[data-theme="dark"] .seasonal-highlight-inner { background: rgba(255,255,255,0.04); border-color: var(--gold); }
[data-theme="dark"] .article-toc { background: rgba(255,255,255,0.03); border-color: var(--border); border-left-color: var(--primary-light, #5a8a6a); }
[data-theme="dark"] .article-toc summary { color: var(--gold); }
[data-theme="dark"] .article-toc li { border-top-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .article-toc a { color: var(--text-body); }
[data-theme="dark"] .article-dyk { background: linear-gradient(135deg, #1a2a1f 0%, #152218 100%); border-color: var(--border); border-left-color: var(--vedic-gold); }
[data-theme="dark"] .article-evidence-box { background: #1a2a1f; border-color: var(--border); border-left-color: var(--gold); }
[data-theme="dark"] .article-safety { background: rgba(138, 116, 88, 0.15); }
[data-theme="dark"] .article-hero { background: linear-gradient(135deg, #1a3326 0%, #0f1a14 100%); }

/* ============ DOSHA PLATE CARDS ============ */
.dosha-plate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.dosha-plate-card {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1.5px solid transparent;
  text-align: left;
}
.dosha-plate-card--vata {
  background: rgba(100, 130, 200, 0.08);
  border-color: rgba(100, 130, 200, 0.5);
}
.dosha-plate-card--pitta {
  background: rgba(210, 140, 50, 0.08);
  border-color: rgba(210, 140, 50, 0.5);
}
.dosha-plate-card--kapha {
  background: rgba(100, 160, 120, 0.08);
  border-color: rgba(100, 160, 120, 0.5);
}
.dosha-plate-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.dosha-plate-card--vata .dosha-plate-name { color: rgb(100, 130, 200); }
.dosha-plate-card--pitta .dosha-plate-name { color: rgb(210, 140, 50); }
.dosha-plate-card--kapha .dosha-plate-name { color: rgb(100, 160, 120); }
.dosha-plate-principle {
  font-size: var(--fs-small);
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 var(--space-sm);
  line-height: 1.4;
}
.dosha-plate-list {
  margin-bottom: var(--space-sm);
}
.dosha-plate-list:last-child {
  margin-bottom: 0;
}
.dosha-plate-label {
  display: block;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.dosha-plate-list--reduce .dosha-plate-label {
  opacity: 0.7;
}
.dosha-plate-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dosha-plate-list li {
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
}
.dosha-plate-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  opacity: 0.4;
}
.dosha-plate-list--reduce li {
  opacity: 0.75;
}

/* Dosha Plates — dark mode */
[data-theme="dark"] .dosha-plate-card--vata { background: rgba(100, 130, 200, 0.15); }
[data-theme="dark"] .dosha-plate-card--pitta { background: rgba(210, 140, 50, 0.15); }
[data-theme="dark"] .dosha-plate-card--kapha { background: rgba(100, 160, 120, 0.15); }
[data-theme="dark"] .dosha-plate-label { color: var(--text-light); }

/* Dosha Plates — responsive */
@media (max-width: 680px) {
  .dosha-plate-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}
@media (min-width: 481px) and (max-width: 680px) {
  .dosha-plate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dosha-plate-card { padding: var(--space-sm); }
  .dosha-plate-name { font-size: 1.1rem; }
}

/* ============ CONSULTATION AREA — DECORATIVE BADGES ============ */
.area-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.area-card:hover .area-icon-badge { opacity: 1; }
.area-icon-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-icon-badge--filled svg {
  fill: var(--gold);
  stroke: none;
}
[data-theme="dark"] .area-icon-badge {
  background: rgba(212, 184, 92, 0.1);
}
[data-theme="dark"] .area-icon-badge svg {
  stroke: var(--vedic-gold);
}
[data-theme="dark"] .area-icon-badge--filled svg {
  fill: var(--vedic-gold);
  stroke: none;
}

/* ============ RASAYANA CATEGORIES GRID ============ */
.rasayana-cat-section {
  margin: var(--space-lg) 0;
}
.rasayana-cat-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 var(--space-md);
}
.rasayana-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.rasayana-cat-card {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--gold);
}
.rasayana-cat-card--medhya  { border-top-color: #C4A24E; }
.rasayana-cat-card--hridya  { border-top-color: #D4A052; }
.rasayana-cat-card--chakshushya { border-top-color: #B09A3E; }
.rasayana-cat-card--twachya { border-top-color: #C89448; }
.rasayana-cat-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.rasayana-cat-desc {
  font-size: var(--fs-body);
  color: var(--text-body);
  margin: 0 0 var(--space-sm);
  line-height: 1.55;
}
.rasayana-cat-dhatu {
  font-size: var(--fs-small);
  color: var(--gold);
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

[data-theme="dark"] .rasayana-cat-heading { color: var(--text-light); }
[data-theme="dark"] .rasayana-cat-card {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
}
[data-theme="dark"] .rasayana-cat-card--medhya  { border-top-color: #C4A24E; }
[data-theme="dark"] .rasayana-cat-card--hridya  { border-top-color: #D4A052; }
[data-theme="dark"] .rasayana-cat-card--chakshushya { border-top-color: #B09A3E; }
[data-theme="dark"] .rasayana-cat-card--twachya { border-top-color: #C89448; }
[data-theme="dark"] .rasayana-cat-name { color: var(--text-light); }
[data-theme="dark"] .rasayana-cat-desc { color: var(--text-body); }
[data-theme="dark"] .rasayana-cat-dhatu { color: var(--vedic-gold); }

@media (max-width: 600px) {
  .rasayana-cat-grid { grid-template-columns: 1fr; }
  .rasayana-cat-card { padding: var(--space-sm); }
  .rasayana-cat-name { font-size: 1rem; }
}

/* ============ THREE PILLARS OF AYURVEDA — VISUAL DIAGRAM ============ */
.ayur-pillars-wrap {
  margin: 0 0 var(--space-md);
  padding: var(--space-md) 0;
}
.ayur-pillars-heading {
  text-align: center;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  color: var(--text-dark);
}
.ayur-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  align-items: stretch;
}
.ayur-pillars-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ayur-pillars-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}
.ayur-pillars-icon--agni { color: var(--terracotta); }
.ayur-pillars-icon--dhatu { color: var(--gold); }
.ayur-pillars-name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ayur-pillars-subtitle {
  font-size: var(--fs-small);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}
.ayur-pillars-desc {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}
.ayur-pillars-harmony {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  text-align: center;
}
.ayur-pillars-harmony-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ayur-pillars-harmony-text {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  color: var(--text-dark);
  font-style: italic;
  white-space: nowrap;
}
/* Dark mode */
[data-theme="dark"] .ayur-pillars-card {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  border-top-color: var(--gold);
}
[data-theme="dark"] .ayur-pillars-heading,
[data-theme="dark"] .ayur-pillars-name { color: var(--cream); }
[data-theme="dark"] .ayur-pillars-harmony-text { color: var(--cream); }
[data-theme="dark"] .ayur-pillars-icon { color: var(--primary-light); }
[data-theme="dark"] .ayur-pillars-icon--agni { color: var(--terracotta); }
[data-theme="dark"] .ayur-pillars-icon--dhatu { color: var(--gold); }
/* Mobile: stack vertically */
@media (max-width: 680px) {
  .ayur-pillars-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .ayur-pillars-harmony-text { white-space: normal; font-size: var(--fs-small); }
}

/* ============ LIVER-DIGESTIVE PATHWAY FLOW ============ */
.liver-path-wrap {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: linear-gradient(180deg, rgba(176,154,62,0.06) 0%, rgba(162,107,75,0.06) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
}
.liver-path-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 var(--space-xs);
}
.liver-path-subtitle {
  font-size: var(--fs-small);
  color: var(--text-light);
  text-align: center;
  margin: 0 0 var(--space-md);
}
.liver-path-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.liver-path-step {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid transparent;
  text-align: center;
  position: relative;
}
.liver-path-step--1 {
  background: rgba(210, 170, 50, 0.10);
  border-color: rgba(210, 170, 50, 0.35);
}
.liver-path-step--2 {
  background: rgba(200, 155, 55, 0.10);
  border-color: rgba(200, 155, 55, 0.35);
}
.liver-path-step--3 {
  background: rgba(185, 130, 60, 0.10);
  border-color: rgba(185, 130, 60, 0.35);
}
.liver-path-step--4 {
  background: rgba(170, 105, 65, 0.10);
  border-color: rgba(170, 105, 65, 0.35);
}
.liver-path-step--5 {
  background: rgba(155, 75, 55, 0.10);
  border-color: rgba(155, 75, 55, 0.35);
}
.liver-path-sanskrit {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 2px;
}
.liver-path-step--1 .liver-path-sanskrit { color: #B8942A; }
.liver-path-step--2 .liver-path-sanskrit { color: #A88028; }
.liver-path-step--3 .liver-path-sanskrit { color: #9A6E30; }
.liver-path-step--4 .liver-path-sanskrit { color: #8C5C35; }
.liver-path-step--5 .liver-path-sanskrit { color: #7E4535; }
.liver-path-english {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0 0 4px;
}
.liver-path-desc {
  font-size: var(--fs-small);
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}
.liver-path-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  color: var(--text-light);
  opacity: 0.5;
  font-size: 1.2rem;
  line-height: 1;
}

/* Dark mode */
[data-theme="dark"] .liver-path-wrap {
  background: linear-gradient(180deg, rgba(176,154,62,0.08) 0%, rgba(162,107,75,0.08) 100%);
  border-color: var(--border);
}
[data-theme="dark"] .liver-path-title { color: var(--gold); }
[data-theme="dark"] .liver-path-subtitle { color: var(--text-light); }
[data-theme="dark"] .liver-path-step--1 { background: rgba(210,170,50,0.12); border-color: rgba(210,170,50,0.3); }
[data-theme="dark"] .liver-path-step--2 { background: rgba(200,155,55,0.12); border-color: rgba(200,155,55,0.3); }
[data-theme="dark"] .liver-path-step--3 { background: rgba(185,130,60,0.12); border-color: rgba(185,130,60,0.3); }
[data-theme="dark"] .liver-path-step--4 { background: rgba(170,105,65,0.12); border-color: rgba(170,105,65,0.3); }
[data-theme="dark"] .liver-path-step--5 { background: rgba(155,75,55,0.12); border-color: rgba(155,75,55,0.3); }
[data-theme="dark"] .liver-path-desc { color: var(--text-body); }
[data-theme="dark"] .liver-path-english { color: var(--text-light); }
[data-theme="dark"] .liver-path-arrow { color: var(--text-light); }

@media (max-width: 480px) {
  .liver-path-wrap { padding: var(--space-sm); }
  .liver-path-step { padding: var(--space-sm); }
  .liver-path-sanskrit { font-size: 1.05rem; }
  .liver-path-arrow { height: 24px; font-size: 1rem; }
}
/* ============ THYROID DOSHA CONNECTION ============ */
.thyroid-dosha-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 740px;
  margin: var(--space-lg) auto;
}
.thyroid-dosha-card {
  border-radius: var(--radius-md, 12px);
  padding: var(--space-md);
  border-top: 4px solid;
  background: rgba(255,255,255,0.6);
}
.thyroid-dosha-card--kapha { border-top-color: rgba(100,160,120,1); }
.thyroid-dosha-card--pitta { border-top-color: rgba(210,140,50,1); }
.thyroid-dosha-heading {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.thyroid-dosha-card--kapha .thyroid-dosha-heading { color: rgba(100,160,120,1); }
.thyroid-dosha-card--pitta .thyroid-dosha-heading { color: rgba(210,140,50,1); }
.thyroid-dosha-agni {
  font-size: var(--fs-small, 0.9rem);
  margin-bottom: var(--space-sm);
  color: var(--text-body);
}
.thyroid-dosha-agni-label {
  font-weight: 600;
  margin-right: 0.3em;
}
.thyroid-dosha-traits {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--fs-small, 0.9rem);
  line-height: 1.6;
  color: var(--text-body);
}
.thyroid-dosha-traits li {
  margin-bottom: 0.3em;
}
.thyroid-dosha-dhatu {
  font-size: var(--fs-small, 0.9rem);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  color: var(--text-body);
}
.thyroid-dosha-dhatu-label {
  font-weight: 600;
  margin-right: 0.3em;
}
[data-theme="dark"] .thyroid-dosha-card {
  background: rgba(255,255,255,0.05);
}
[data-theme="dark"] .thyroid-dosha-dhatu {
  border-top-color: rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
  .thyroid-dosha-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FERTILITY CYCLE DOSHA MAP ============ */
.fertility-cycle-wrapper {
  margin: var(--space-lg) 0;
  max-width: 740px;
}
.fertility-cycle-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--space-sm);
}
.fertility-cycle-intro {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}
.fertility-cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.fertility-cycle-card {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1.5px solid transparent;
  text-align: left;
}
.fertility-cycle-card--kapha {
  background: rgba(100, 160, 120, 0.08);
  border-color: rgba(100, 160, 120, 0.5);
}
.fertility-cycle-card--pitta {
  background: rgba(210, 140, 50, 0.08);
  border-color: rgba(210, 140, 50, 0.5);
}
.fertility-cycle-card--vata {
  background: rgba(100, 130, 200, 0.08);
  border-color: rgba(100, 130, 200, 0.5);
}
.fertility-cycle-phase {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 2px;
}
.fertility-cycle-card--kapha .fertility-cycle-phase { color: rgb(100, 160, 120); }
.fertility-cycle-card--pitta .fertility-cycle-phase { color: rgb(210, 140, 50); }
.fertility-cycle-card--vata .fertility-cycle-phase { color: rgb(100, 130, 200); }
.fertility-cycle-days {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-body);
  margin: 0 0 var(--space-sm);
  opacity: 0.85;
}
.fertility-cycle-action {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.55;
  margin: 0 0 6px;
}
.fertility-cycle-body {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
  opacity: 0.85;
}

/* Fertility Cycle — dark mode */
[data-theme="dark"] .fertility-cycle-card--kapha { background: rgba(100, 160, 120, 0.15); }
[data-theme="dark"] .fertility-cycle-card--pitta { background: rgba(210, 140, 50, 0.15); }
[data-theme="dark"] .fertility-cycle-card--vata { background: rgba(100, 130, 200, 0.15); }
[data-theme="dark"] .fertility-cycle-title { color: var(--text-light); }

/* Fertility Cycle — responsive */
@media (max-width: 680px) {
  .fertility-cycle-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}
@media (min-width: 481px) and (max-width: 680px) {
  .fertility-cycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fertility-cycle-card { padding: var(--space-sm); }
  .fertility-cycle-phase { font-size: 1.05rem; }
}

/* ============ PRESCRIPTION GUIDE — QUICK REFERENCE CARD ============ */
.rx-quick-ref {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm) 0;
}
.rx-quick-ref h2 {
  font-size: var(--fs-h3);
  text-align: center;
  margin-bottom: var(--space-xs);
}
.rx-quick-ref-intro {
  text-align: center;
  color: var(--text-light);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}
.rx-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.rx-qr-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  border-top: 3px solid var(--primary);
}
.rx-qr-card h4 {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.rx-qr-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rx-qr-card li {
  font-size: var(--fs-small);
  line-height: 1.6;
  padding: 3px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.rx-qr-card li:last-child { border-bottom: none; }
.rx-qr-card--contact { border-top-color: var(--gold); }
.rx-qr-card--contact h4 { color: var(--gold); }
[data-theme="dark"] .rx-qr-card {
  background: var(--primary-dark);
  border-color: var(--border);
}
[data-theme="dark"] .rx-qr-card li {
  border-bottom-color: rgba(255,255,255,0.05);
}
@media (max-width: 700px) {
  .rx-qr-grid { grid-template-columns: 1fr; }
}

/* ============ PRINT STYLES ============ */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  body { font-size: 12pt; line-height: 1.5; }
  .navbar, .hamburger, .wa-float, .lang-toggle, .nav-cta, .btn-primary, .theme-toggle { display: none !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555 !important; }
  a[href^="#"]::after, a[href^="tel:"]::after, a[href^="javascript:"]::after { content: ""; }
  .hero, .page-hero { padding: 20px 0; min-height: auto; }
  .footer { border-top: 1px solid #ccc; padding: 15px 0; font-size: 10pt; }
  .footer-grid { display: block; }
  img { max-width: 100% !important; }
  .container { max-width: 100%; padding: 0; }
  h1, h2, h3 { page-break-after: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }

  /* Footer prints clinic details cleanly */
  .footer-legal, .footer-feedback, .footer-tagline { display: none !important; }
}

/* ============ PAGE: INDEX ============ */
/* ============ 6. ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-grid figure {
  margin: 0;
  order: 2;
}
.about-grid .about-text {
  order: 1;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.about-text p { margin-bottom: var(--space-sm); }
.about-badge-line { font-size: var(--fs-small); font-weight: 600; color: var(--text-dark); margin-top: var(--space-sm); line-height: 1.6; }
.about-badge-line--photo { margin-top: var(--space-xs); text-align: center; }
.about-badge-line a { color: var(--gold); font-weight: 600; }
.about-badge-line a:hover { color: var(--gold-hover); }
.about-highlight {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* Practice Highlights (About section) */
.practice-highlights {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  padding: var(--space-sm) 0;
}
.practice-highlight-item {
  text-align: center;
}
.practice-highlight-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.practice-highlight-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* ============ 7. APPROACH ============ */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}
.approach-step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.section-alt .approach-step { background: var(--white); }
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.step-content h3 { margin-bottom: 6px; }

/* ============ 8. CONSULTATION AREAS ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}
.area-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.area-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
  color: var(--gold);
  flex-shrink: 0;
}
.area-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--text-dark);
  line-height: 1.3;
}
.area-card p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
}
.area-card-tags {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted, #7a7a6e);
  margin-top: auto;
  padding-top: var(--space-xs, 0.5rem);
}
.area-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.25s ease;
}
.area-card:hover .area-card-arrow { gap: 10px; }
.area-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
/* Hide old elements if still in DOM */
.area-concerns { display: none; }
.area-card-detail { display: none; }
.area-card-number { display: none; }
.area-card-link { display: none; }
.areas-cta { text-align: center; margin-top: var(--space-lg); }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--primary);
  padding: var(--space-md) 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.trust-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}
.trust-icon-svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ============ 9. PATIENT STORIES ============ */
.stories-slider {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.stories-track {
  position: relative;
}
.story-slide {
  display: none;
  padding: var(--space-md);
  text-align: center;
}
.story-slide.active {
  display: block;
  animation: fadeSlide 0.8s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; }
  to { opacity: 1; }
}
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  position: relative;
  padding: 0 var(--space-sm);
}
.story-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -15px;
  left: -5px;
  font-family: 'Cormorant Garamond', serif;
}
.story-author {
  font-weight: 700;
  color: var(--text-dark);
}
.story-location {
  font-size: var(--fs-small);
  color: var(--text-light);
}
.story-tag { display: inline-block; font-size: 0.75rem; font-style: italic; color: var(--text-light); margin-bottom: 8px; }
.stories-permission-note { font-size: 0.75rem; font-style: italic; color: var(--text-light); margin-bottom: var(--space-sm); }
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-dot::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
/* 44px touch target for WCAG compliance */
.slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}
.slider-dot.active::after { background: var(--gold); }

/* ============ 10. LOCATIONS ============ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.location-card h3 {
  padding: var(--space-sm) var(--space-sm) 0;
  font-size: var(--fs-h3);
}
.location-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition);
}
.location-card h3 a:hover {
  color: var(--gold);
}
.location-card--compact { padding: var(--space-sm) var(--space-md); }
.location-card--compact h3 a { color: var(--primary-dark); }
.location-card--compact .read-more-link { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.location-card--compact .read-more-link:hover { color: var(--gold); }
.location-info {
  padding: var(--space-sm);
}
.location-info p {
  font-size: var(--fs-small);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.location-map {
  width: 100%;
  height: 220px;
  border: none;
  border-top: 1px solid var(--border);
}
.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-top: 6px;
  transition: background var(--transition);
}
.location-directions:hover { background: var(--primary-light); color: var(--white); }
/* ============ 12. CONTACT FORM ============ */
.contact-form-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: var(--fs-small);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  font-family: inherit;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #c0392b; }
.form-group .error-msg { display: none; color: #c0392b; font-size: 0.85rem; margin-top: 4px; }
.form-group.invalid .error-msg { display: block; }
.form-row { display: flex; gap: var(--space-sm); }
.form-row .form-group { flex: 1; min-width: 0; }
@media (max-width: 480px) { .form-row { flex-direction: column; } }
.form-success-overlay {
  position: absolute; inset: 0; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; z-index: 2;
  border-radius: var(--radius-md); padding: var(--space-md);
}
.form-success-overlay h3 { color: var(--primary); margin-bottom: var(--space-sm); }
.form-success-overlay p { margin-bottom: var(--space-xs); }
.form-success-overlay .btn-dismiss {
  margin-top: var(--space-sm); padding: 10px 24px;
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: var(--fs-small); font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.form-success-overlay .btn-dismiss:hover { background: var(--gold); color: var(--primary-dark); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold-deep);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--gold-hover); }
.form-actions {
  display: flex;
  gap: 12px;
}
.form-actions .form-submit { flex: 1; }
.form-submit-email {
  background: transparent;
  border: 2px solid var(--gold-deep) !important;
  color: var(--gold-deep);
}
.form-submit-email:hover {
  background: var(--gold-deep);
  color: var(--primary-dark);
}
@media (max-width: 480px) {
  .form-actions { flex-direction: column; }
}

/* ============ HERO REASSURANCE ============ */
.hero-reassurance {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-sm);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ============ RELEVANCE BLOCK ============ */
.relevance-block {
  background: var(--cream);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.relevance-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.relevance-text {
  max-width: 720px;
  margin: 0 auto var(--space-sm);
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.85;
}
.relevance-support {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
}

/* ============ PAGE-SPECIFIC RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-grid figure { max-width: 350px; margin: 0 auto; order: 1; }
  .about-grid .about-text { order: 2; }
  .about-text { text-align: left; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; max-width: 420px; }
  .location-map { height: 180px; }
}

/* ============ PAGE: VISIT ============ */
/* ================================================================
   SANTANALAXMI — VISIT / CONTACT PAGE (page-specific styles)
   ================================================================ */

/* ============ CONTACT METHODS GRID ============ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 740px;
  margin: var(--space-md) auto 0;
}
.contact-method-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-method-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-xs);
}
.contact-method-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
  color: var(--text-dark);
}
.contact-method-card .contact-number {
  font-size: var(--fs-body);
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}
.contact-method-card .btn-primary,
.contact-method-card .btn-secondary {
  display: inline-block;
  margin-top: var(--space-xs);
}

/* ============ VISIT LOCATIONS GRID ============ */
.visit-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.visit-loc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.visit-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.visit-loc-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}
.visit-loc-card .visit-loc-detail {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 4px;
}
.visit-loc-card .visit-loc-detail strong {
  color: var(--text-dark);
}
.visit-loc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.visit-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.visit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.visit-btn-call {
  background: var(--primary);
  color: var(--white);
}
.visit-btn-wa {
  background: var(--success);
  color: var(--white);
}
.visit-btn-dir {
  background: var(--gold-light);
  color: var(--text-dark);
  border: 1px solid var(--gold);
}
.visit-loc-card iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: var(--radius-sm);
  margin-top: var(--space-xs);
}

/* ============ VISIT CHECKLIST ============ */
.visit-checklist {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  list-style: none;
  padding: 0;
}
.visit-checklist li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  border-bottom: 1px solid var(--border);
}
.visit-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}
.visit-checklist li:last-child {
  border-bottom: none;
}

/* ============ VISIT GUIDANCE ============ */
.visit-guidance {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  list-style: none;
  padding: 0;
}
.visit-guidance li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  border-bottom: 1px solid var(--border);
}
.visit-guidance li::before {
  content: '\2794';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-size: 1rem;
}
.visit-guidance li:last-child {
  border-bottom: none;
}

/* ============ VISIT FAQ ============ */
.visit-faq-list {
  max-width: 740px;
  margin: var(--space-md) auto 0;
}
.visit-faq-item {
  border-bottom: 1px solid var(--border);
}
.visit-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  color: var(--text-dark);
  font-weight: 600;
}
.visit-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: var(--space-sm);
}
.visit-faq-item.open .visit-faq-question::after {
  content: '\2212';
}
.visit-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.visit-faq-item.open .visit-faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-sm);
}

/* ============ VISIT RESPONSIVE ============ */
@media (max-width: 900px) {
  .contact-methods-grid { grid-template-columns: 1fr; }
  .visit-locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .visit-loc-btns { flex-direction: column; }
  .visit-btn { width: 100%; text-align: center; }
}

/* ============ PAGE: GUIDE-LONG-STANDING-CONCERNS ============ */
/* ================================================================
   SANTANALAXMI — GUIDE: LONG-STANDING CONCERNS (page-specific styles)
   ================================================================ */

/* ============ GUIDE CONTENT SECTIONS ============ */
.guide-section-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto var(--space-md);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.guide-section-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.guide-section-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.guide-section-card p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.85;
}

/* ============ RELATED GUIDES ============ */
.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 960px;
  margin: var(--space-md) auto 0;
}
.related-guide-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.related-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.related-guide-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.related-guide-card p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.7;
}

/* ============ CTA SECTION ============ */
.guide-cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
  background: var(--primary);
  color: var(--white);
}
.guide-cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.guide-cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  font-size: var(--fs-body);
  line-height: 1.8;
}
.guide-cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.guide-cta-buttons .btn-primary {
  background: var(--gold-deep);
  color: var(--text-dark);
  border-color: var(--gold);
}
.guide-cta-buttons .btn-primary:hover {
  background: var(--gold-dark, #c9972e);
  border-color: var(--gold-dark, #c9972e);
}
.guide-cta-buttons .btn-secondary {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.guide-cta-buttons .btn-secondary:hover {
  background: var(--success-hover);
  border-color: var(--success-hover);
}

/* ============ GUIDE RESPONSIVE ============ */
@media (max-width: 900px) {
  .related-guides-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .guide-cta-buttons { flex-direction: column; align-items: center; }
  .guide-section-card { padding: var(--space-md) var(--space-sm); }
}

/* ============ PAGE: PATIENT-STORIES ============ */
/* ================================================================
   SANTANALAXMI — VOICES OF TRUST PAGE (page-specific styles)
   ================================================================ */

/* ============ INTRO ============ */
.intro-text {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.85;
}

/* ============ STORY GROUP HEADING ============ */
.story-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h3);
  color: var(--primary);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
}
.story-group-title:first-of-type { margin-top: 0; }

/* ============ PATIENT-STORIES: STORY GRID (EDITORIAL) ============ */
.story-card-editorial blockquote {
  font-style: italic;
  line-height: 1.85;
  margin: 0 0 var(--space-sm);
  color: var(--text-body);
  font-size: var(--fs-body);
}
.story-card-editorial blockquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

/* ============ CTA SECTION ============ */
.page-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}
.page-cta h2 {
  color: var(--white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
}
.page-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto var(--space-md);
  font-size: var(--fs-body);
}
.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ PAGE: FAQ ============ */
/* ================================================================
   SANTANALAXMI — FAQ PAGE (page-specific styles)
   ================================================================ */

/* ============ FAQ GROUPED ============ */
.faq-grouped {
  max-width: 800px;
  margin: 0 auto;
}
.faq-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h2);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.faq-group + .faq-group {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--gold);
}

/* ============ FAQ ITEMS (ACCORDION) ============ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.5;
  gap: var(--space-sm);
}
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.active .faq-question,
details.faq-item[open] > .faq-question {
  color: var(--primary);
  font-weight: 700;
}
.faq-item.active .faq-question::after,
details.faq-item[open] > .faq-question::after {
  content: '\2212';
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-md);
}
.faq-item.active .faq-answer,
details.faq-item[open] .faq-answer {
  max-height: 2000px;
  padding: 0 var(--space-md) var(--space-md);
}
.faq-answer p {
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: 1.85;
}

/* ============ FAQ RESPONSIVE (page-specific) ============ */
@media (max-width: 600px) {
  .faq-question {
    padding: var(--space-sm);
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 var(--space-sm);
  }
  .faq-item.active .faq-answer {
    padding: 0 var(--space-sm) var(--space-sm);
  }
}

/* ============ PAGE: ABOUT-SRI-RAMULU ============ */
/* ================================================================
   SANTANALAXMI — ABOUT SRI RAMULU PAGE (page-specific styles)
   ================================================================ */

/* ============ BIO SECTION ============ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.bio-grid .bio-photo-wrap {
  order: 2;
}
.bio-grid .bio-text {
  order: 1;
}
.bio-photo-wrap {
  position: relative;
  text-align: center;
  margin-top: 0;
  padding: 10px;
}
.bio-photo-wrap figure {
  margin: 0;
  position: relative;
}
.bio-photo-wrap::before,
.bio-photo-wrap::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(138,106,59,0.4);
  border-style: solid;
  pointer-events: none;
}
.bio-photo-wrap::before {
  top: 2px;
  left: 2px;
  border-width: 2px 0 0 2px;
}
.bio-photo-wrap::after {
  bottom: 2px;
  right: 2px;
  border-width: 0 2px 2px 0;
}
.bio-photo {
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: auto;
}
.bio-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
}
.bio-text p {
  margin-bottom: var(--space-sm);
  line-height: 1.85;
}
.gold-line-left {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-sm) 0;
  border-radius: 2px;
}

/* ============ ABOUT-SRI-RAMULU RESPONSIVE (page-specific) ============ */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; text-align: center; }
  .bio-grid .bio-photo-wrap { order: 1; }
  .bio-grid .bio-text { order: 2; }
  .bio-photo-wrap figure { max-width: 350px; margin: 0 auto; }
  .bio-text { text-align: left; }
}

/* ============ PAGE: CONSULTATION-AREAS ============ */
/* ================================================================
   SANTANALAXMI — CONSULTATION AREAS PAGE (page-specific styles)
   ================================================================ */

/* ============ CONSULTATION AREA CARDS ============ */
.area-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* ============ INDIVIDUALIZED NOTE ============ */
.note-box {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--terracotta);
  text-align: left;
}
.note-box h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}
.note-box p {
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ PAGE: PATIENT-GUIDES ============ */
/* ================================================================
   SANTANALAXMI — PATIENT GUIDES INDEX PAGE (page-specific styles)
   ================================================================ */

/* ============ PATIENT-GUIDES: GUIDE CARD ============ */
.guide-card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-xs);
}
.guide-card .guide-card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.guide-card .guide-card-link::after {
  content: ' \2192';
}

/* ============ PG CTA SECTION ============ */
.pg-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pg-cta h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}
.pg-cta p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.pg-cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.pg-cta-buttons .btn-secondary {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.pg-cta-buttons .btn-secondary:hover {
  background: var(--success-hover);
  border-color: var(--success-hover);
}

/* ============ PATIENT-GUIDES RESPONSIVE ============ */
@media (max-width: 900px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .guides-grid { grid-template-columns: 1fr; }
  .pg-cta-buttons { flex-direction: column; align-items: center; }
}

/* ============ ARTICLES RESPONSIVE ============ */
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .articles-featured-grid { grid-template-columns: 1fr; }
  .articles-start-here { padding: var(--space-md) var(--space-sm); }
  .article-meta { flex-direction: column; gap: 4px; }
  .article-share { gap: 8px; }
  .article-share-btn { padding: 5px 10px; font-size: 0.78rem; }
}

/* ============ PAGE: HYDERABAD-CONSULTATION ============ */
/* ============ PAGE-SPECIFIC: LOC DETAILS ============ */
.loc-details { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); align-items: start; }
.loc-card { background: var(--white); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-md); }
.loc-card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
.loc-card p { margin-bottom: var(--space-xs); }
.loc-map iframe { width: 100%; height: 350px; border: 0; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

/* ============ PAGE-SPECIFIC: STEPS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-top: var(--space-md); }
.step-card { text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold-deep); color: var(--primary-dark); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: var(--space-sm); }
.step-card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }

/* ============ PAGE-SPECIFIC: TRUST STRIP (LOCATION) ============ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); text-align: center; }
.trust-item h3 { color: var(--white); font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.trust-item p { color: rgba(255,255,255,0.7); font-size: var(--fs-small); }

/* ============ PAGE-SPECIFIC: STORY GRID ============ */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-md); }
.story-card { background: var(--white); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }
.story-card p { font-style: italic; line-height: 1.85; margin-bottom: var(--space-sm); }
.story-card cite { font-size: var(--fs-small); color: var(--text-light); font-style: normal; }
.story-stars { color: var(--star-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; display: block; }
.story-card .story-stars { margin-bottom: 8px; }
.story-card-editorial .story-stars { margin-bottom: 8px; }
.story-slide .story-stars { margin-bottom: 8px; }

/* ============ PAGE-SPECIFIC: FAQ (LOCATION) ============ */
.faq-list { max-width: 740px; margin: var(--space-md) auto 0; }


/* ============ PAGE-SPECIFIC: AREAS COMPACT GRID ============ */
.areas-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: var(--space-md) 0;
}
.area-compact-item {
  background: var(--parchment-dark, #EDE4D3);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(139,109,71,0.15);
  transition: all 0.3s ease;
}
.area-compact-item:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ LOCATION PAGES RESPONSIVE ============ */
@media (max-width: 900px) {
  .loc-details { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .wa-float { display: none; }
  body { padding-bottom: 70px; }
}
@media (max-width: 768px) {
  .areas-compact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .areas-compact-grid { grid-template-columns: 1fr; }
}

/* ============ PAGE: TRADITION ============ */
/* ================================================================
   SANTANALAXMI — TRADITION PAGE (page-specific styles)
   ================================================================ */

/* (tradition uses shared .page-cta, .cta-buttons, .page-disclaimer — already defined above) */

/* ============ PAGE: 404 ============ */
.not-found {
  text-align: center;
  padding: clamp(160px, 20vw, 240px) var(--space-sm) var(--space-xl);
  min-height: 60vh;
}
.not-found h1 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}
.not-found p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
}

/* ============ NEXT PAGE NAV ============ */
.next-page-nav { padding: var(--space-md) 0; background: var(--bg-alt, #f8f6f2); }
.next-page-link { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-md); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: box-shadow var(--transition), transform var(--transition); }
.next-page-link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.next-page-label { font-size: var(--fs-small); color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.next-page-title { font-family: var(--font-heading); font-size: var(--fs-h3); color: var(--primary-dark); font-weight: 600; }
.next-page-arrow { font-size: 2rem; color: var(--gold); transition: transform 0.3s; }
.next-page-link:hover .next-page-arrow { transform: translateX(6px); }
/* Read Next chain link */
.next-page-nav .container { display: flex; flex-direction: column; gap: var(--space-sm, 1rem); }
.read-next-link { border-left: 4px solid var(--gold); }
.read-next-label { color: var(--gold); font-weight: 600; }
@media (max-width: 600px) {
  .next-page-link { flex-direction: column; text-align: center; gap: 8px; }
  .next-page-title { font-size: var(--fs-body); }
}
