﻿/* ================================================================
   AYURMARMAYOGA — MASTER DESIGN SYSTEM
   Premium wellness brand · All pages · Single source of truth
   Fonts loaded by HTML: Cormorant Garamond · Inter · Source Serif 4
   ================================================================ */

/* ──────────────────────────────────────────────────────────────
   1. RESET
   ────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ──────────────────────────────────────────────────────────────
   2. DESIGN TOKENS
   ────────────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --primary:        #1A4D36;
  --primary-light:  #2E7A58;
  --primary-dark:   #1A4D36;
  --accent-gold:    #B8882E;
  --accent-warm:    #C05C1A;
  --bg-base:        #FDFBF7;
  --bg-alt:         #F6F1E9;
  --bg-white:       #FFFFFF;
  --text-primary:   #1A1A18;
  --text-body:      #3A3A38;
  --text-muted:     #6B6860;
  --border:         #E4DDD3;
  --border-light:   #EDE8E0;

  /* Legacy aliases used inline in HTML files */
  --tulsi-green:    #1A4D36;
  --saffron-royal:  #C05C1A;
  --stone-mist:     #6B6860;
  --midnight-sky:   #1A1A18;
  --soft-gold:      #B8882E;
  --pure-white:     #FFFFFF;
  --bg-light:       #FDFBF7;
  --cream-lotus:    #F6F1E9;
  --sandalwood:     #C4A882;

  /* Shadows */
  --shadow-soft:      0 2px 14px rgba(26,26,24,0.07);
  --shadow-sm:        0 2px 14px rgba(26,26,24,0.07);
  --shadow-md:        0 6px 28px rgba(26,26,24,0.10);
  --shadow-lg:        0 16px 48px rgba(26,26,24,0.13);
  --shadow-hover:     0 10px 36px rgba(26,26,24,0.13);
  --shadow-elevation: 0 14px 42px rgba(26,26,24,0.14);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  /* Layout */
  --container: 1140px;
  --pad-x:     clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(3.5rem, 6vw, 5rem);
  --nav-h:     68px;
  --r-sm:      6px;
  --r-md:      12px;
  --r-lg:      20px;
}

/* ──────────────────────────────────────────────────────────────
   3. BASE TYPOGRAPHY
   ────────────────────────────────────────────────────────────── */
body {
  background: var(--bg-base);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
h4 { font-size: 0.85rem; }

p { color: var(--text-body); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-warm); }

strong { font-weight: 600; }
em { font-style: italic; }
h1 em, h2 em, .section-title em { color: var(--accent-warm); font-style: italic; }

/* ──────────────────────────────────────────────────────────────
   4. NAVIGATION  — identical across ALL pages
   ────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(253,251,247,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, height 0.3s ease;
}
nav.scrolled {
  height: 56px;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent-gold); }
.nav-logo sup {
  font-family: var(--font-heading);
  font-size: 0.38em;
  vertical-align: super;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.55rem 0.9rem;
  position: relative;
  transition: color 0.2s ease;
  background-color:white;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle span:nth-child(3) { width: 22px; }
.nav-toggle.open span:nth-child(1) { width: 22px; transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    background: var(--bg-base);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    padding: 2rem 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    padding: 1rem 2rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    display: block;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a::after {
    bottom: 4px;
    left: 50%; right: 50%;
    transform: none;
    transition: left 0.25s ease, right 0.25s ease;
  }
  .nav-links a:hover::after,
  .nav-links a.active::after { left: calc(50% - 16px); right: calc(50% - 16px); }
}

/* ──────────────────────────────────────────────────────────────
   5. SECTIONS — uniform padding
   ────────────────────────────────────────────────────────────── */
section {
  padding: var(--section-y) var(--pad-x);
}
.section-sm { padding: 2.5rem var(--pad-x); }

/* All direct section children centre themselves up to --container */
section > p,
section > h2,
section > .section-label,
section > .section-title,
section > .divider,
section > .btn-group,
section > .disclaimer,
section > .note-box,
section > .workshop-meta,
section > .global-notice-wrapper {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
/* Layout grids stretch full container naturally */
section > .two-col,
section > .cards-grid,
section > .quals-two-col,
section > .fees-cards-container,
section > .contact-grid,
section > .clinical-grid,
section > .journey-flow,
section > .timeline,
section > .stream-item {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-inner {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.14;
  margin-bottom: 1rem;
}
.divider {
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.divider-diamond { display: none; }

/* ──────────────────────────────────────────────────────────────
   6. HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 88vh;
  align-items: center;
  gap: 3rem;
  padding: calc(var(--nav-h) + 4.5rem) var(--pad-x) 5rem;
  background: linear-gradient(160deg, #FDFBF7 0%, #F3EDE1 100%);
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 55fr 45fr;
    min-height: 84vh;
    gap: 5rem;
    padding-top: calc(var(--nav-h) + 5rem);
    padding-bottom: 5rem;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 3.5rem;
    gap: 2rem;
  }
}
.hero-bg-left, .hero-bg-right { display: none; }

.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--accent-warm); font-style: italic; }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--primary-light);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.hero-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 0.75rem;
  max-width: 540px;
}
/* Neutralise negative top margins used inline */
.hero-body[style*="margin-top: -20px"],
.hero-body[style*="margin-top:-20px"] { margin-top: 0.6rem !important; }

@media (max-width: 899px) {
  .hero-image-panel { display: flex; justify-content: center; width: 100%; margin-top: 1rem; }
  .hero-image-panel .photo-placeholder { 
    min-height: auto !important; 
    max-width: 280px; 
    margin: 0 auto; 
    padding: 0.5rem;
    background: transparent;
  }
  .hero-image-panel .photo-placeholder img { 
    max-width: 100% !important; 
    width: 100% !important; 
    height: auto !important;
    border-radius: 2px;
  }
  .hero-frame .photo-placeholder img {
    max-width: 100% !important;
  }
}
.hero-frame,
.hero-frame .photo-placeholder {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.hero-frame .photo-placeholder img { width: 100%; height: auto; border-radius: 0; }

/* ──────────────────────────────────────────────────────────────
   7. BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease,
              color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: #fff;
  box-shadow: 0 6px 20px rgba(192,92,26,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.bg-forest .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.bg-forest .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ──────────────────────────────────────────────────────────────
   8. TWO-COLUMN LAYOUT
   ────────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

/* ──────────────────────────────────────────────────────────────
   9. CARDS GRID
   ────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}
.card-icon { font-size: 1.75rem; display: block; margin-bottom: 1rem; line-height: 1; }
.card h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--primary); }
.card p  { color: var(--text-muted); font-size: 0.93rem; line-height: 1.68; margin-bottom: 0; }

/* ──────────────────────────────────────────────────────────────
   10. STATS BAR
   ────────────────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 900px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────────
   11. PROFESSIONAL JOURNEY (facilitator.html)
   ────────────────────────────────────────────────────────────── */
.journey-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
/* Override inline style that sets width:100% / flex */
.journey-flow,
.journey-flow[style] {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  border-left: 2px solid var(--border-light);
  padding-left: 2.25rem;
}
@media (max-width: 640px) { .journey-flow, .journey-flow[style] { padding-left: 1.25rem; } }

.journey-entry {
  position: relative;
  padding: 2.25rem 0 2.25rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.journey-entry:last-child { border-bottom: none; padding-bottom: 0.5rem; }
.journey-entry::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 2.8rem;
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 0 2px var(--accent-gold);
}
.gold-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent-warm);
  margin-bottom: 1rem;
  border-radius: 2px;
}
.journey-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.journey-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-bottom: 0.6rem;
  max-width: 100%;
}
.journey-body:last-child { margin-bottom: 0; }
.journey-body strong { color: var(--primary); }
.journey-body em     { color: var(--primary-light); font-style: italic; }

/* Override inline section style wrapping journey */
section[style*="max-width: 1280px"],
section[style*="max-width:1280px"] {
  max-width: 100% !important;
  padding-left: var(--pad-x) !important;
  padding-right: var(--pad-x) !important;
}

/* ──────────────────────────────────────────────────────────────
   12. QUALIFICATION BLOCKS
   ────────────────────────────────────────────────────────────── */
.quals-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) { .quals-two-col { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

.qual-block {
  background: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}
.qual-block h3 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-gold);
  color: var(--primary);
  line-height: 1.4;
}
.qual-block ul,
.qual-block ul.auto-style1 { padding: 0; margin: 0; }
.qual-block li {
  position: relative;
  padding: 0 0 0.65rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-indent: 0;
}
.qual-block li::before {
  content: "•";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent-warm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}
.qual-block li::after  { display: none !important; }
.qual-block li strong  { color: var(--primary); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   13. WORKSHOP META BAR
   ────────────────────────────────────────────────────────────── */
.workshop-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 640px) { .workshop-meta { grid-template-columns: 1fr; } }

.meta-item {
  background: var(--bg-white);
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.meta-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.meta-unit {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
}

/* ──────────────────────────────────────────────────────────────
   14. STREAM ITEMS
   ────────────────────────────────────────────────────────────── */
.stream-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
  transition: transform 0.2s ease;
}
.stream-item:hover { transform: translateX(6px); }
.stream-item:last-child { border-bottom: none; }

.stream-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.stream-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stream-content span { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; display: block; }

@media (max-width: 480px) {
  .stream-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .stream-num  { font-size: 1.6rem; }
}

/* ──────────────────────────────────────────────────────────────
   15. NOTE BOX
   ────────────────────────────────────────────────────────────── */
.note-box {
  position: relative;
  background: linear-gradient(135deg,
    rgba(192,92,26,0.04), rgba(26,77,54,0.04));
  border-left: 3px solid var(--accent-warm);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}
.note-box::before {
  content: '॥';
  position: absolute;
  top: 0.75rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(192,92,26,0.08);
  line-height: 1;
  pointer-events: none;
}
.note-box p      { color: var(--text-muted); font-size: 0.95rem; }
.note-box strong { color: var(--primary); }

/* ──────────────────────────────────────────────────────────────
   16. HOST LIST
   ────────────────────────────────────────────────────────────── */
.host-list { padding: 0; margin: 1rem 0; }
.host-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px dashed rgba(184,136,46,0.25);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: color 0.2s, padding-left 0.2s;
}
.host-list li:last-child { border-bottom: none; }
.host-list li:hover { color: var(--primary); padding-left: 2.4rem; }
.host-list li::before {
  content: '🌿';
  position: absolute;
  left: 0; top: 0.7rem;
  opacity: 0.55;
  font-size: 0.85rem;
  transition: opacity 0.2s, transform 0.2s;
}
.host-list li:hover::before { opacity: 1; transform: rotate(10deg); }
.host-list li::after  { display: none !important; }
.host-list li strong  { color: var(--primary); font-weight: 600; }

/* Proposal box list variant */
.proposal-box .host-list li {
  border-bottom-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
}
.proposal-box .host-list li:hover { color: #fff; }

.proposal-box ul { padding: 0; margin: 1rem 0; }
.proposal-box ul li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}
.proposal-box ul li:last-child { border-bottom: none; }
.proposal-box ul li::before {
  content: "•";
  position: absolute;
  left: 0; top: 0.6rem;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.proposal-box ul li::after { display: none; }

/* ──────────────────────────────────────────────────────────────
   17. PROPOSAL BOX
   ────────────────────────────────────────────────────────────── */
.proposal-box {
  background: linear-gradient(145deg, #1A4D36 0%, #0F3023 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--r-lg);
  margin: 2.5rem 0;
}
.proposal-box .section-label { color: var(--accent-gold); }
.proposal-box h2,
.proposal-box h3              { color: #fff; }
.proposal-box > p,
.proposal-box p               { color: rgba(255,255,255,0.82); }
.proposal-box .divider        { background: var(--accent-gold); }
.proposal-box .btn-primary {
  background: var(--accent-gold);
  color: var(--primary);
  border-color: var(--accent-gold);
}
.proposal-box .btn-primary:hover {
  background: var(--accent-warm);
  color: #fff;
  border-color: var(--accent-warm);
}

/* ──────────────────────────────────────────────────────────────
   18. FEES CARDS
   ────────────────────────────────────────────────────────────── */
.fees-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (min-width: 600px)  { .fees-cards-container { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .fees-cards-container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .fees-cards-container { grid-template-columns: repeat(4, 1fr); } }

.fees-cards-container .card {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.fees-cards-container .card p { flex-grow: 1; }
.fees-cards-container .card .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-warm);
  border-top: 1.5px dashed rgba(192,92,26,0.25);
  padding-top: 1rem;
  margin-top: auto;
}

/* ──────────────────────────────────────────────────────────────
   19. CLINICAL GRID (services.html)
   ────────────────────────────────────────────────────────────── */
.clinical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
@media (min-width: 640px) { .clinical-grid { grid-template-columns: repeat(2, 1fr); } }

.clinical-grid .card { display: flex; flex-direction: column; height: 100%; }
.clinical-grid .card .card-icon { font-size: 2.2rem; }
.clinical-grid .card h3 { font-size: 1.1rem; }
.clinical-grid .card p  { flex-grow: 1; margin-bottom: 0; }

.card-full { grid-column: span 2; }
@media (max-width: 639px) { .card-full { grid-column: span 1; } }

/* ──────────────────────────────────────────────────────────────
   20. DISCOUNT BOX (services.html)
   ────────────────────────────────────────────────────────────── */
.discount-box {
  background: var(--bg-white);
  border-radius: var(--r-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-warm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.discount-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.discount-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.discount-icon {
  font-size: 2rem;
  background: rgba(192,92,26,0.08);
  width: 62px; height: 62px; min-width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.discount-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.discount-text p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 480px) {
  .discount-content { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────────────────────────
   21. GLOBAL NOTICE (services.html)
   ────────────────────────────────────────────────────────────── */
.global-notice-wrapper { max-width: 900px; margin: 0 auto; }
.global-notice-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent-warm);
  padding: 1.5rem 2rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.global-notice-text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.84; margin: 0; }

/* ──────────────────────────────────────────────────────────────
   22. CONTACT SECTION
   ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-item {
  background: var(--bg-white);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }

.contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}
.contact-value a { color: inherit; border-bottom: 1px dotted var(--sandalwood); }
.contact-value a:hover { color: var(--accent-warm); border-bottom-color: var(--accent-warm); }

/* ──────────────────────────────────────────────────────────────
   23. FORM
   ────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184,136,46,0.14);
}

/* ──────────────────────────────────────────────────────────────
   24. PHOTO PLACEHOLDER
   ────────────────────────────────────────────────────────────── */
.photo-placeholder {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-placeholder:hover img { transform: scale(1.02); }

/* ──────────────────────────────────────────────────────────────
   25. DISCLAIMER
   ────────────────────────────────────────────────────────────── */
.disclaimer {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent-warm);
  padding: 1.1rem 1.5rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 900px;
  margin: 0 auto 1rem;
}
.disclaimer strong { color: var(--primary); margin-right: 0.3rem; }

.compact-disclaimer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) 4rem;
}
.compact-disclaimer section,
.compact-disclaimer .section-sm { padding: 0.4rem 0 !important; }

/* ──────────────────────────────────────────────────────────────
   26. BACKGROUND VARIANTS
   ────────────────────────────────────────────────────────────── */
.bg-cream { background-color: var(--bg-alt); }

.bg-forest {
  background: linear-gradient(150deg, #1A4D36 0%, #0F3023 100%);
  color: rgba(255,255,255,0.88);
}
.bg-forest .section-label  { color: var(--accent-gold); }
.bg-forest .section-title,
.bg-forest h2               { color: #fff; }
.bg-forest p                { color: rgba(255,255,255,0.78); }
.bg-forest .divider         { background: var(--accent-gold); }

/* ──────────────────────────────────────────────────────────────
   27. INDEX — description columns
   ────────────────────────────────────────────────────────────── */
.description-columns {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.description-column { flex: 1 1 280px; }
.description-column p { color: var(--text-body); max-width: 100%; }

.desktop-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
  align-self: stretch;
  flex-shrink: 0;
}
.mobile-divider { display: none; }

@media (max-width: 768px) {
  .description-columns { flex-direction: column; gap: 0; }
  .desktop-divider { display: none; }
  .mobile-divider {
    display: block;
    width: 48px;
    height: 1.5px;
    background: var(--accent-gold);
    margin: 1.5rem 0;
  }
}

/* ──────────────────────────────────────────────────────────────
   28. TIMELINE (older pages)
   ────────────────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem; top: 0.45rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-warm);
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 0 2px var(--accent-gold);
}
.timeline-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.timeline-body { color: var(--text-muted); font-size: 0.93rem; line-height: 1.68; }
.timeline-body strong { color: var(--primary); }

/* ──────────────────────────────────────────────────────────────
   29. SOCIAL LINKS
   ────────────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.social-icon svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; fill: none; }
.social-icon:hover { background: var(--accent-warm); transform: translateY(-3px); }

/* ──────────────────────────────────────────────────────────────
   30. FOOTER
   ────────────────────────────────────────────────────────────── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 4rem var(--pad-x) 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-content { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; } }

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.footer-logo span { color: var(--accent-gold); }
.footer-logo sup {
  font-family: var(--font-heading);
  font-size: 0.36em;
  vertical-align: super;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.footer-desc { font-size: 0.85rem; line-height: 1.74; color: rgba(255,255,255,0.55); }

footer h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-gold); }
.footer-links span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 0;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a { color: var(--accent-gold); }

/* ──────────────────────────────────────────────────────────────
   31. REVEAL ANIMATIONS
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
body:not(.js-ready) .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ──────────────────────────────────────────────────────────────
   32. MISC FIXES
   ────────────────────────────────────────────────────────────── */
/* auto-style1 is a MS Word artefact — reset it */
.auto-style1 { font-family: inherit !important; }

/* vision image */
.vision-image .photo-placeholder { height: 420px; overflow: hidden; }

/* ──────────────────────────────────────────────────────────────
   33. RESPONSIVE FINE-TUNING
   ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-y: 3rem; --pad-x: 1.25rem; }
  .card, .qual-block      { padding: 1.25rem; }
  .proposal-box           { padding: 1.5rem; }
  .two-col                { gap: 2rem; }
  .cards-grid, .quals-two-col { gap: 0.9rem; }
  .journey-entry          { padding: 1.5rem 0 1.5rem 1rem; }
  .note-box::before       { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   34. PRINT
   ────────────────────────────────────────────────────────────── */
@media print {
  nav, footer               { display: none !important; }
  .hero                     { padding-top: 2rem; min-height: auto; }
  .reveal                   { opacity: 1 !important; transform: none !important; }
}


@media (max-width: 640px) { nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(253,251,247,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, height 0.3s ease;
  
}
nav.scrolled {
  height: 56px;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent-gold); }
.nav-logo sup {
  font-family: var(--font-heading);
  font-size: 0.38em;
  vertical-align: super;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top:130px ;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.55rem 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
 
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle span:nth-child(3) { width: 22px; }
.nav-toggle.open span:nth-child(1) { width: 22px; transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }
}