/* =========================================
   LOKESH MUNI WEBSITE — MAIN STYLESHEET
   ========================================= */

/* --- CUSTOM PROPERTIES --- */
:root {
  --saffron: #E8751A;
  --saffron-light: #F59340;
  --gold: #C9A84C;
  --gold-light: #E2C87A;
  --deep-navy: #1A2340;
  --navy-mid: #253055;
  --ivory: #FAF6EF;
  --ivory-dark: #F0EAE0;
  --text-dark: #1E1E1E;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: rgba(201, 168, 76, 0.25);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(26, 35, 64, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 35, 64, 0.18);

  --nav-h: 76px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
svg { display: block; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--saffron); }

/* --- LAYOUT UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 820px; }
.section-pad { padding: 80px 0; }
.bg-ivory { background: var(--ivory-dark); }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-grid.align-start { align-items: start; }
.two-col-grid.align-center { align-items: center; }
.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.three-col { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cards-grid { display: grid; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep-navy);
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-header .section-title { margin-bottom: 0; text-align: left; }
.view-all-link { font-size: 0.9rem; font-weight: 500; color: var(--saffron); white-space: nowrap; }
.view-all-link:hover { color: var(--gold); }

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
}
.btn-primary:hover { background: var(--saffron-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232, 117, 26, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 35, 64, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26, 35, 64, 0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--gold);
  padding: 4px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active-lang { color: var(--gold-light); }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO SECTIONS
   ========================================= */

/* Home Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 64, 0.55) 0%,
    rgba(26, 35, 64, 0.70) 60%,
    rgba(26, 35, 64, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: none;
}
.page-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 35, 64, 0.88) 0%,
    rgba(26, 35, 64, 0.45) 60%,
    rgba(26, 35, 64, 0.25) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--nav-h);
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.page-hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 0;
}
.page-hero-content .hero-eyebrow { margin-bottom: 0.6rem; }

/* =========================================
   IMAGE PLACEHOLDERS
   ========================================= */
/* Section images */
.bio-portrait img,
.bio-image img,
.about-image img,
.teaching-image img,
.initiative-card-image img,
.initiative-sub-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}
.bio-portrait img { border-radius: var(--radius-lg); }
img.award-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 4 / 3;
}
.video-thumbnail img.video-thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}
/* Book cover placeholder (no image available) */
.book-cover-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3a5c 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
}
.book-cover-placeholder .book-title-overlay {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* =========================================
   HOME PAGE SECTIONS
   ========================================= */

/* Intro Strip */
.intro-strip { padding: 60px 0; background: var(--white); }
.intro-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.intro-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
}

/* Feature Cards */
.feature-cards { background: var(--white); }
.feature-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature-card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 56px;
  height: 56px;
  color: var(--saffron);
  margin: 0 auto 1.5rem;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--deep-navy);
}
.feature-card p { font-size: 0.92rem; color: var(--text-muted); }
.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron);
}
.card-link:hover { color: var(--gold); }

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-mid) 100%);
  padding: 80px 2rem;
}
.main-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.main-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.main-quote p::before { content: '\201C'; color: var(--gold); }
.main-quote p::after { content: '\201D'; color: var(--gold); }
.main-quote cite {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About Preview */
.about-preview { background: var(--ivory-dark); }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-text .btn { margin-top: 1rem; }

/* Impact Strip */
.impact-strip {
  background: var(--saffron);
  padding: 60px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-item { color: var(--white); }
.impact-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.impact-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,255,255,0.7);
}
.impact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* Events */
.latest-events { background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 64px;
  background: var(--deep-navy);
  border-radius: var(--radius);
  color: var(--white);
  flex-shrink: 0;
}
.event-day { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.event-year { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.event-info { flex: 1; }
.event-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.35rem;
}
.event-info h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--deep-navy); }
.event-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Media Logos */
.media-logos-strip { background: var(--white); padding: 40px 0; }
.media-logos-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.media-logos-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.media-logo-item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #C4B89A;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.media-logo-item:hover { color: var(--gold); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #0F1628 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.bio-intro, .bio-extended { background: var(--white); }
.bio-extended { padding-bottom: 60px; }
.bio-section { margin-bottom: 5rem; }
.bio-section:last-child { margin-bottom: 0; }
.bio-text h2 { margin-bottom: 1rem; }
.bio-text p { color: var(--text-muted); }
.bio-text .section-eyebrow { margin-bottom: 0.5rem; }

/* Timeline */
.timeline-section { background: var(--ivory-dark); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -7px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--ivory-dark);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* Awards */
.awards-section { background: var(--white); }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.award-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ivory);
}
.award-card h3 { font-size: 1rem; margin-top: 1rem; margin-bottom: 0.35rem; }
.award-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }
.award-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  margin: 0 auto;
}

/* =========================================
   MISSION PAGE
   ========================================= */
.mission-statement { background: var(--white); text-align: center; }
.large-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-style: italic;
  color: var(--text-dark);
}

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.pillar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-icon { width: 48px; height: 48px; color: var(--saffron); margin-bottom: 1rem; }
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.9rem; color: var(--text-muted); }

.philosophy-narrative { background: var(--white); }
.philosophy-narrative h2 { margin-bottom: 1rem; }
.philosophy-narrative p { color: var(--text-muted); }

.practice-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.practice-item { display: flex; gap: 2rem; align-items: flex-start; }
.practice-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  min-width: 36px;
  line-height: 1;
  padding-top: 0.2rem;
}
.practice-text h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.practice-text p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* =========================================
   INITIATIVES PAGE
   ========================================= */
.featured-initiative { background: var(--white); }
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.initiative-text h2 { margin-bottom: 1rem; }
.initiative-text p { color: var(--text-muted); margin-bottom: 1rem; }
.initiative-highlights {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.initiative-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.initiative-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
}

.initiatives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.initiative-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.initiative-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.initiative-card-image { overflow: hidden; }
.initiative-card-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.initiative-card-body { padding: 1.5rem; }
.initiative-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
}
.initiative-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.initiative-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* =========================================
   TEACHINGS PAGE
   ========================================= */
.featured-teaching { background: var(--white); }
.teaching-intro {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}
.teaching-text p { color: var(--text-muted); }

.teachings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaching-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.teaching-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.teaching-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.teaching-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.teaching-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Videos */
.videos-section { background: var(--white); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--ivory); border: 1px solid var(--border); }
.video-thumbnail {
  position: relative;
  overflow: hidden;
}
.video-thumbnail img { width: 100%; height: 100%; display: block; object-fit: cover; }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(232, 117, 26, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--saffron); }
.play-button svg { width: 22px; height: 22px; margin-left: 3px; }
.video-info { padding: 1.25rem; }
.video-outlet {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.4rem;
}
.video-info h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.video-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0; }

/* Books */
.books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.book-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.book-info { padding: 1.25rem; }
.book-info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.book-year { font-size: 0.78rem; color: var(--saffron); font-weight: 600; margin-bottom: 0.5rem; }
.book-info p { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   EVENTS PAGE
   ========================================= */
.events-section { background: var(--white); }
.events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.event-list-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.event-list-item:hover { box-shadow: var(--shadow); }
.event-list-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 70px;
  text-align: center;
  padding-top: 0.25rem;
}
.event-list-date .event-day {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
}
.event-list-date .event-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}
.event-list-date .event-year { font-size: 0.72rem; color: var(--text-muted); }
.event-list-body { flex: 1; }
.event-list-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.event-list-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.event-meta-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.event-location-full, .event-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Accordion */
.past-events-section { background: var(--ivory-dark); }
.past-events-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--ivory); }
.accordion-year {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--saffron);
  min-width: 44px;
  flex-shrink: 0;
}
.accordion-title { flex: 1; font-size: 0.95rem; font-weight: 500; color: var(--deep-navy); }
.accordion-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-header[aria-expanded="true"] .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.accordion-body.open { display: block; }
.accordion-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* =========================================
   MEDIA PAGE
   ========================================= */
.press-kit-strip {
  background: var(--ivory-dark);
  padding: 1.5rem 0;
}
.press-kit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.press-kit-inner h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.press-kit-inner p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.press-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.press-card:hover { box-shadow: var(--shadow); }
.press-outlet {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.2rem;
}
.press-headline {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--deep-navy);
}
.press-excerpt { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.press-meta { display: flex; align-items: center; justify-content: space-between; }
.press-date { font-size: 0.78rem; color: var(--text-muted); }
.press-read-link { font-size: 0.78rem; font-weight: 600; color: var(--saffron); }
.press-read-link:hover { color: var(--gold); }

.interviews-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.interview-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.interview-item:last-child { border-bottom: none; }
.interview-item:hover { background: var(--ivory); }
.interview-outlet {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 140px;
  flex-shrink: 0;
}
.interview-title { flex: 1; font-size: 0.92rem; color: var(--text-dark); }
.interview-date { font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0; }
.interview-link { color: var(--saffron); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-intro { text-align: center; max-width: 680px; margin: 0 auto 4rem; }

.contact-offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.contact-office-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.featured-office {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}
.featured-office .office-type { color: var(--gold-light); }
.featured-office h3 { color: var(--white); }
.featured-office address p { color: rgba(255,255,255,0.75); }
.featured-office address a { color: var(--gold-light); }
.featured-office .office-icon { color: var(--gold); }

.office-icon { width: 48px; height: 48px; color: var(--saffron); margin-bottom: 0.75rem; }
.office-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.contact-office-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.contact-office-card address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact-office-card address p svg { flex-shrink: 0; margin-top: 0.15rem; }
.contact-office-card address a { color: var(--saffron); }
.contact-office-card address a:hover { color: var(--gold); }

.inquiry-types-section { margin-bottom: 4rem; }
.inquiry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.inquiry-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.inquiry-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.inquiry-icon { width: 40px; height: 40px; color: var(--saffron); margin: 0 auto 1rem; }
.inquiry-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.inquiry-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.inquiry-email {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--saffron);
  word-break: break-all;
}
.inquiry-email:hover { color: var(--gold); }

.contact-social-section { margin-bottom: 2rem; }
.contact-social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.contact-social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-social-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-icon-large { width: 28px; height: 28px; color: var(--deep-navy); flex-shrink: 0; }
.social-platform { display: block; font-size: 0.85rem; font-weight: 600; color: var(--deep-navy); }
.social-handle { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 60px 2rem 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--gold);
  padding: 4px;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--saffron); border-color: var(--saffron); color: white; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-address p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: var(--gold-light); }
.footer-lang-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.footer-lang-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }
