/* ═══════════════════════════════════════════════════════
   MAHENDRA SANGAWA — MAIN STYLESHEET
   Version: 1.0.0
═══════════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C57A;
  --gold-pale:   #F5EDD6;
  --deep:        #0D0B08;
  --deep-2:      #1A1610;
  --deep-3:      #262018;
  --mid:         #3D3426;
  --warm-gray:   #8A7E6C;
  --cream:       #F7F2E8;
  --cream-2:     #EDE5D4;
  --text-dark:   #D4C9B0;
  --text-muted:  #9A8F7A;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--deep);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; transition: color var(--transition); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
ul { list-style: none; }

/* ── TYPOGRAPHY HELPERS ── */
.ms-section-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 300;
}
.ms-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 300;
  color: var(--cream); line-height: 1.1; margin-bottom: 20px;
}
.ms-section-heading em { font-style: italic; color: var(--gold-light); }
.ms-section-sub {
  font-size: 15px; font-weight: 300; color: var(--text-muted);
  max-width: 560px; line-height: 1.85;
}

/* ── LAYOUT HELPERS ── */
.ms-section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.ms-section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 60px; }

/* ── BUTTONS ── */
.ms-btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 15px 36px; text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition);
}
.ms-btn-primary:hover { background: var(--gold-light); color: var(--deep); }

.ms-btn-outline {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4); color: var(--gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300;
  padding: 15px 36px; text-decoration: none; background: transparent; cursor: pointer;
  transition: all var(--transition);
}
.ms-btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.ms-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,11,8,0.98), transparent);
  transition: background 0.4s, padding 0.3s;
}
.ms-nav.scrolled {
  background: rgba(13,11,8,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 14px 60px;
}
.ms-nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gold-light); text-decoration: none;
}
.ms-nav__logo span {
  display: block; font-size: 10px; font-family: 'Jost', sans-serif;
  font-weight: 200; letter-spacing: 0.25em; color: var(--text-muted);
  text-transform: uppercase; margin-top: 2px;
}
.ms-nav__logo img { height: 44px; width: auto; }
.ms-nav__links { display: flex; gap: 36px; }
.ms-nav__links li a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 300; color: var(--text-muted); text-decoration: none;
}
.ms-nav__links li a:hover { color: var(--gold-light); }
.ms-nav__cta {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.5);
  padding: 9px 22px; text-decoration: none; transition: all var(--transition);
}
.ms-nav__cta:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.ms-nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.ms-nav__toggle span {
  display: block; width: 24px; height: 1px; background: var(--gold-light);
  transition: all var(--transition);
}
.ms-nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ms-nav__toggle.open span:nth-child(2) { opacity: 0; }
.ms-nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.ms-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 40px 80px;
}
.ms-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201,168,76,0.03) 0%, transparent 60%);
}
.ms-hero__mandala {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px; opacity: 0.04;
  animation: ms-rotate 120s linear infinite;
}
.ms-hero__content { position: relative; z-index: 1; }

.ms-hero__eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 300;
  color: var(--gold); margin-bottom: 28px;
  animation: ms-fade-in 1s ease 0.3s both;
}
.ms-hero__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 96px); font-weight: 300; line-height: 1.05;
  color: var(--cream); letter-spacing: -0.01em;
  animation: ms-fade-up 1s ease 0.5s both;
}
.ms-hero__name em { font-style: italic; color: var(--gold-light); }

.ms-hero__title-line {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 20px 0 32px;
  animation: ms-fade-up 1s ease 0.7s both;
}
.ms-hero__title-line span {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 300; color: var(--text-muted);
}
.ms-sep { width: 40px; height: 1px; background: rgba(201,168,76,0.4); }
.ms-diamond-sm { width: 5px; height: 5px; background: rgba(201,168,76,0.5); transform: rotate(45deg); }

.ms-hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px); font-weight: 300; font-style: italic;
  color: var(--text-dark); max-width: 640px; margin: 0 auto 48px;
  animation: ms-fade-up 1s ease 0.9s both;
}
.ms-hero__stats {
  display: flex; gap: 60px; justify-content: center; margin-bottom: 52px;
  animation: ms-fade-up 1s ease 1.1s both;
  flex-wrap: wrap;
}
.ms-hero__stat { text-align: center; }
.ms-hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--gold-light); line-height: 1;
}
.ms-hero__stat-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px;
}
.ms-hero__actions {
  display: flex; gap: 20px; justify-content: center;
  animation: ms-fade-up 1s ease 1.3s both;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════
   ORNAMENTAL DIVIDER
═══════════════════════════════════ */
.ms-ornamental-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 24px 0; max-width: 400px; margin: 0 auto;
}
.ms-div-line { flex: 1; height: 1px; background: rgba(201,168,76,0.2); }
.ms-div-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.ms-div-dot { width: 3px; height: 3px; background: rgba(201,168,76,0.5); border-radius: 50%; }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.ms-about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.ms-portrait-frame {
  width: 100%; aspect-ratio: 3/4; max-width: 400px;
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ms-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.ms-portrait-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-muted);
}
.ms-portrait-placeholder svg { opacity: 0.3; }
.ms-portrait-placeholder p {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
}
.ms-about__portrait { position: relative; }
.ms-portrait-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(201,168,76,0.3); transform: rotate(15deg);
}
.ms-portrait-accent-2 {
  position: absolute; top: -15px; left: -15px;
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.15); transform: rotate(-10deg);
}
.ms-about__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-style: italic; font-weight: 300;
  color: var(--gold-light); border-left: 2px solid var(--gold);
  padding-left: 20px; margin: 32px 0; line-height: 1.5;
}
.ms-about__body {
  font-size: 15px; font-weight: 300; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 14px;
}
.ms-about__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.ms-pill {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.25); color: var(--gold-light);
  padding: 7px 16px; font-weight: 300;
}

/* ═══════════════════════════════════
   TATTVA
═══════════════════════════════════ */
.ms-tattva-wrap { background: var(--deep-2); }
.ms-tattva__header { text-align: center; margin-bottom: 60px; }
.ms-tattva__header .ms-section-sub { margin: 0 auto; }

.ms-tattva__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 24px;
}
.ms-tattva-card {
  background: var(--deep-3); padding: 48px 36px;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden; transition: border-color var(--transition);
}
.ms-tattva-card:hover { border-color: rgba(201,168,76,0.35); }
.ms-tattva-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: rgba(201,168,76,0.1);
  position: absolute; top: 20px; right: 24px; line-height: 1;
}
.ms-tattva-icon { width: 36px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.ms-tattva-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; color: var(--cream); margin-bottom: 8px;
}
.ms-tattva-sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.ms-tattva-desc { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }
.ms-tattva-badge {
  display: inline-block; margin-top: 20px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(201,168,76,0.15); color: var(--gold-light); padding: 5px 12px;
}
.ms-ram-banner {
  text-align: center; padding: 48px;
  border: 1px solid rgba(201,168,76,0.25);
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
  position: relative; margin-top: 2px;
}
.ms-ram-banner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: var(--gold);
}
.ms-ram-banner h3 {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 400;
}
.ms-ram-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; font-style: italic; color: var(--cream);
}

/* ═══════════════════════════════════
   RESEARCH
═══════════════════════════════════ */
.ms-research {
  display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start;
}
.ms-finding {
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.15);
  padding: 40px; margin-bottom: 24px; position: relative; overflow: hidden;
}
.ms-finding::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; color: rgba(201,168,76,0.07); line-height: 1; pointer-events: none;
}
.ms-finding__label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.ms-finding__stat { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.ms-finding__pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--gold-light); line-height: 1;
}
.ms-finding__pct-label {
  font-size: 13px; font-weight: 300; color: var(--text-muted); max-width: 200px; line-height: 1.5;
}
.ms-finding__body { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

.ms-meta-item { padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.ms-meta-item:last-child { border-bottom: none; }
.ms-meta-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ms-meta-value {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--cream);
}
.ms-meta-sub { font-size: 12px; font-weight: 300; color: var(--text-muted); margin-top: 4px; }

/* ═══════════════════════════════════
   KNOWLEDGE
═══════════════════════════════════ */
.ms-knowledge-wrap { background: var(--deep-2); }
.ms-knowledge__header { margin-bottom: 52px; }

.ms-topics-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: rgba(201,168,76,0.08);
}
.ms-topic-item {
  background: var(--deep); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: background var(--transition);
}
.ms-topic-item:hover { background: var(--deep-3); }
.ms-topic-item--full { grid-column: 1 / -1; }
.ms-topic-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: rgba(201,168,76,0.4); font-weight: 300;
  flex-shrink: 0; margin-top: 3px;
}
.ms-topic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.ms-topic-excerpt { font-size: 12px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.ms-topic-tag {
  display: inline-block; margin-top: 12px;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.2); padding: 3px 10px;
}

/* ═══════════════════════════════════
   BLOGS
═══════════════════════════════════ */
.ms-blogs__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.ms-blog-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 24px; }
.ms-blog-featured {
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.15);
  padding: 48px; position: relative; overflow: hidden;
  transition: border-color var(--transition);
}
.ms-blog-featured:hover { border-color: rgba(201,168,76,0.3); }
.ms-blog-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.ms-blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: 16px;
}
.ms-blog-title a { text-decoration: none; color: var(--cream); }
.ms-blog-title a:hover { color: var(--gold-light); }
.ms-blog-excerpt { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.ms-blog-read-more {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 2px;
  transition: border-color var(--transition);
}
.ms-blog-read-more:hover { border-color: var(--gold-light); color: var(--gold-light); }
.ms-blog-list { display: flex; flex-direction: column; gap: 16px; }
.ms-blog-list-item {
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.1);
  padding: 24px; transition: border-color var(--transition);
}
.ms-blog-list-item:hover { border-color: rgba(201,168,76,0.25); }
.ms-blog-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.ms-blog-list-title a { text-decoration: none; color: var(--cream); }
.ms-blog-list-title a:hover { color: var(--gold-light); }
.ms-blog-list-meta { font-size: 11px; font-weight: 300; color: var(--text-muted); }

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.ms-services-wrap { background: var(--deep-3); }
.ms-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.ms-service-card {
  border: 1px solid rgba(201,168,76,0.15); padding: 40px 32px;
  background: var(--deep); transition: all var(--transition); position: relative;
}
.ms-service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.ms-service-card--featured {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(145deg, rgba(201,168,76,0.05), transparent);
}
.ms-service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: var(--cream); margin-bottom: 14px;
}
.ms-service-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.ms-service-includes li {
  font-size: 12px; font-weight: 300; color: var(--text-muted);
  padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.07);
  display: flex; align-items: center; gap: 10px;
}
.ms-service-includes li::before { content: '—'; color: rgba(201,168,76,0.4); }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.ms-testimonials__header { text-align: center; margin-bottom: 52px; }
.ms-testimonials__header .ms-section-sub { margin: 0 auto; }
.ms-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ms-testimonial-card {
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.1); padding: 36px;
}
.ms-testimonial-quote {
  font-size: 36px; color: var(--gold); font-family: 'Cormorant Garamond', serif;
  line-height: 1; margin-bottom: 14px;
}
.ms-testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 300;
  color: var(--text-dark); line-height: 1.7; margin-bottom: 24px;
}
.ms-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ms-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold-light);
  flex-shrink: 0;
}
.ms-author-name { font-size: 13px; font-weight: 400; color: var(--cream); }
.ms-author-place { font-size: 11px; font-weight: 300; color: var(--text-muted); }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.ms-contact-wrap { background: var(--deep-2); }
.ms-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.ms-form-group { margin-bottom: 24px; }
.ms-form-group label {
  display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.ms-form-group label span { color: var(--gold); }
.ms-form-group input,
.ms-form-group textarea,
.ms-form-group select {
  width: 100%; background: var(--deep); border: 1px solid rgba(201,168,76,0.2);
  color: var(--text-dark); font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  padding: 13px 16px; outline: none; transition: border-color var(--transition); appearance: none;
}
.ms-form-group input:focus,
.ms-form-group textarea:focus,
.ms-form-group select:focus { border-color: rgba(201,168,76,0.5); }
.ms-form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ms-form-group select option { background: var(--deep); }
.ms-form-group textarea { min-height: 120px; resize: vertical; }

.ms-contact-response { margin-bottom: 20px; font-size: 14px; font-weight: 300; }
.ms-contact-response.success { color: #6ec97a; }
.ms-contact-response.error { color: #e57373; }
.ms-btn-submit { width: 100%; text-align: center; }

.ms-ci-item { padding: 22px 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.ms-ci-item:first-child { padding-top: 0; }
.ms-ci-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ms-ci-value {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--cream);
}
.ms-ci-value a { text-decoration: none; color: var(--gold-light); }
.ms-ci-value a:hover { color: var(--gold); }
.ms-ci-sub { font-size: 12px; font-weight: 300; color: var(--text-muted); margin-top: 4px; }
.ms-contact__quote-box {
  margin-top: 32px; padding: 28px;
  border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.03);
}
.ms-contact__quote-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; color: var(--gold-light); line-height: 1.65;
}
.ms-contact__quote-box span { font-size: 12px; color: var(--text-muted); margin-top: 12px; display: block; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.ms-footer {
  background: var(--deep); border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 60px 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.ms-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--gold-light); margin-bottom: 6px;
}
.ms-footer__logo img { height: 40px; width: auto; }
.ms-footer__brand-sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.ms-footer__brand-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; max-width: 260px; }
.ms-footer__col h4 {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 400;
}
.ms-footer__col ul { padding: 0; }
.ms-footer__col ul li { margin-bottom: 12px; }
.ms-footer__col ul li a {
  font-size: 13px; font-weight: 300; color: var(--text-muted); text-decoration: none;
  transition: color var(--transition);
}
.ms-footer__col ul li a:hover { color: var(--gold-light); }
.ms-footer__col nav ul { padding: 0; }
.ms-footer__bottom {
  padding: 24px 60px;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 300; color: var(--text-muted); flex-wrap: wrap; gap: 8px;
}
.ms-footer__sanscrit {
  font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold);
}

/* ═══════════════════════════════════
   BLOG ARCHIVE
═══════════════════════════════════ */
.ms-blog-archive__header { margin-bottom: 52px; }
.ms-archive-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.ms-archive-card {
  background: var(--deep-2); border: 1px solid rgba(201,168,76,0.1);
  transition: border-color var(--transition);
  display: flex; flex-direction: column;
}
.ms-archive-card:hover { border-color: rgba(201,168,76,0.3); }
.ms-archive-card__thumb { overflow: hidden; aspect-ratio: 16/9; }
.ms-archive-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ms-archive-card:hover .ms-archive-card__thumb img { transform: scale(1.04); }
.ms-archive-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ms-archive-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--cream); margin-bottom: 12px; line-height: 1.3;
}
.ms-archive-card__title a { text-decoration: none; color: var(--cream); }
.ms-archive-card__title a:hover { color: var(--gold-light); }
.ms-archive-card__excerpt {
  font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; flex: 1;
}
.ms-archive-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; font-size: 11px; color: var(--text-muted);
}
.ms-pagination { margin-top: 60px; display: flex; justify-content: center; }
.ms-pagination .nav-links { display: flex; gap: 8px; align-items: center; }
.ms-pagination .page-numbers {
  font-size: 12px; letter-spacing: 0.1em; color: var(--text-muted);
  padding: 8px 14px; border: 1px solid rgba(201,168,76,0.15); text-decoration: none;
  transition: all var(--transition);
}
.ms-pagination .page-numbers.current { border-color: var(--gold); color: var(--gold); }
.ms-pagination .page-numbers:hover { border-color: rgba(201,168,76,0.4); color: var(--gold-light); }

/* ═══════════════════════════════════
   SINGLE POST
═══════════════════════════════════ */
.ms-single__hero {
  background: var(--deep-2); padding: 160px 60px 80px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.ms-single__hero-inner { max-width: 800px; margin: 0 auto; }
.ms-single__meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.ms-single__date { font-size: 11px; font-weight: 300; color: var(--text-muted); }
.ms-single__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 300; color: var(--cream); line-height: 1.1;
}
.ms-single__excerpt {
  font-size: 18px; font-weight: 300; color: var(--text-muted);
  line-height: 1.7; margin-top: 20px;
}
.ms-single__thumbnail { max-height: 500px; overflow: hidden; }
.ms-single__thumbnail img { width: 100%; height: 500px; object-fit: cover; }

.ms-single__body-wrap {
  display: grid; grid-template-columns: 2fr 1fr; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding: 60px 60px 80px;
  align-items: start;
}
.ms-prose {
  font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.9;
}
.ms-prose h2, .ms-prose h3, .ms-prose h4 {
  font-family: 'Cormorant Garamond', serif; color: var(--cream);
  font-weight: 300; margin: 2rem 0 1rem;
}
.ms-prose h2 { font-size: 34px; }
.ms-prose h3 { font-size: 26px; }
.ms-prose p { margin-bottom: 1.2rem; }
.ms-prose a { color: var(--gold-light); text-decoration: underline; }
.ms-prose blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-style: italic; color: var(--gold-light);
  border-left: 2px solid var(--gold); padding-left: 20px; margin: 2rem 0;
}
.ms-prose ul, .ms-prose ol { padding-left: 20px; margin-bottom: 1.2rem; }
.ms-prose ul li { list-style: disc; margin-bottom: 6px; }
.ms-prose ol li { list-style: decimal; margin-bottom: 6px; }
.ms-prose img { border-radius: 2px; margin: 2rem 0; }
.ms-prose hr { border: none; border-top: 1px solid rgba(201,168,76,0.2); margin: 2rem 0; }

.ms-sidebar-widget { margin-bottom: 40px; }
.ms-sidebar-widget__title {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.ms-author-card { text-align: center; padding: 24px; background: var(--deep-2); border: 1px solid rgba(201,168,76,0.1); }
.ms-author-card img { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; object-fit: cover; }
.ms-author-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); margin-bottom: 8px; }
.ms-author-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.ms-sidebar-post { padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.ms-sidebar-post a { font-size: 13px; color: var(--text-dark); text-decoration: none; display: block; margin-bottom: 4px; }
.ms-sidebar-post a:hover { color: var(--gold-light); }
.ms-sidebar-post span { font-size: 11px; color: var(--text-muted); }

.ms-post-nav { padding: 48px 60px; border-top: 1px solid rgba(201,168,76,0.1); }
.ms-post-nav__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
.ms-post-nav__item { padding: 24px; background: var(--deep-2); border: 1px solid rgba(201,168,76,0.1); text-decoration: none; transition: border-color var(--transition); }
.ms-post-nav__item:hover { border-color: rgba(201,168,76,0.3); }
.ms-post-nav__item--next { text-align: right; }
.ms-post-nav__direction { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ms-post-nav__title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--cream); }

.ms-no-posts { text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 15px; }

/* ═══════════════════════════════════
   SIDEBAR (blog)
═══════════════════════════════════ */
.widget { margin-bottom: 40px; }
.widget-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 400; }

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.ms-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ms-reveal.ms-visible { opacity: 1; transform: none; }
.ms-reveal-delay-1 { transition-delay: 0.1s; }
.ms-reveal-delay-2 { transition-delay: 0.2s; }
.ms-reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes ms-rotate   { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ms-fade-up  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes ms-fade-in  { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════
   MOBILE — RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .ms-about { gap: 48px; }
  .ms-research { grid-template-columns: 1fr; }
  .ms-footer { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .ms-nav { padding: 18px 24px; }
  .ms-nav.scrolled { padding: 12px 24px; }
  .ms-nav__links, .ms-nav__cta { display: none; }
  .ms-nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(13,11,8,0.98); padding: 40px 24px;
    z-index: 99;
  }
  .ms-nav__links.open li a { font-size: 18px; letter-spacing: 0.1em; padding: 16px 0; display: block; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .ms-nav__toggle { display: flex; }

  .ms-section, .ms-section-inner { padding: 70px 24px; }
  .ms-about { grid-template-columns: 1fr; }
  .ms-tattva__grid { grid-template-columns: 1fr; }
  .ms-blog-grid { grid-template-columns: 1fr; }
  .ms-services-grid { grid-template-columns: 1fr; }
  .ms-testimonials-grid { grid-template-columns: 1fr; }
  .ms-contact-grid { grid-template-columns: 1fr; }
  .ms-footer { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 0; }
  .ms-footer__bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
  .ms-single__hero { padding: 120px 24px 60px; }
  .ms-single__body-wrap { grid-template-columns: 1fr; padding: 40px 24px; }
  .ms-post-nav { padding: 32px 24px; }
  .ms-post-nav__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ms-hero__stats { gap: 28px; }
  .ms-hero__actions { flex-direction: column; align-items: center; }
  .ms-blogs__header { flex-direction: column; }
  .ms-footer { grid-template-columns: 1fr; }
}
