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

:root {
  /* Calming · Spiritual palette */
  --saffron:   #5C4899;   /* deep amethyst violet   */
  --saffron-lt:#7262B8;   /* softer violet          */
  --navy:      #2A6868;   /* sandalwood teal        */
  --navy-dk:   #1A4545;   /* deep forest teal       */
  --gold:      #9E7B2E;   /* muted sacred gold      */
  --gold-lt:   #C9A44A;   /* warm turmeric gold     */
  --cream:     #F5F1EA;   /* warm parchment         */
  --cream-dk:  #EAE4D8;   /* aged ivory             */
  --white:     #FFFFFF;
  --text-dk:   #1E1A30;   /* deep indigo-black      */
  --text-md:   #4A4468;   /* muted violet-gray      */
  --text-lt:   #7A748A;   /* soft lavender-gray     */
  --border:    #D8D0E8;   /* gentle lavender border */
  --shadow:    0 4px 24px rgba(40,20,80,0.10);
  --shadow-lg: 0 8px 48px rgba(40,20,80,0.16);
  --radius:    12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  background: var(--cream);
  color: var(--text-dk);
  line-height: 1.7;
}

body.lang-mr { font-family: 'Noto Sans Devanagari', 'Inter', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  line-height: 1.25;
}

body.lang-mr h1,
body.lang-mr h2,
body.lang-mr h3,
body.lang-mr h4 {
  font-family: 'Noto Sans Devanagari', serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--navy-dk);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-md);
  max-width: 600px;
  margin-bottom: 48px;
}

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ── NAV ──────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,241,234,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex; flex-direction: column;
}

.nav-brand-name {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dk);
  line-height: 1.1;
}

.nav-brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--saffron);
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-md);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after { transform: scaleX(1); }

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

.lang-btn {
  display: flex; align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 5px 14px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(92,72,153,0.06);
}

.lang-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: #1A4545;
  display: flex; align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* ── Slideshow ───────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.06);
}

.hero-slide.active {
  opacity: 1;
  animation: kenburns 9s ease-in-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(20,45,45,0.92) 0%, rgba(35,25,80,0.72) 45%, rgba(60,45,110,0.18) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.30) 100%);
}

/* ── Slide dots indicator ────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 72px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}

.hero-dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}

.hero-dot-btn.active {
  background: var(--gold-lt);
  transform: scale(1.3);
}

.hero-ornament {
  position: absolute;
  top: 80px; right: -60px;
  width: 480px; height: 480px;
  border: 1px solid rgba(201,164,74,0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201,164,74,0.10);
  border-radius: 50%;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,164,74,0.15);
  border: 1px solid rgba(201,164,74,0.35);
  border-radius: 24px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); }

.hero-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-devanagari {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-titles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}

.hero-title-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 500;
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-lt);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 48px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid var(--saffron);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--saffron-lt);
  border-color: var(--saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,72,153,0.40);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 48px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.40);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ────────────────────────────────────────── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy-dk);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-photo-badge-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-photo-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.about-content { padding-top: 8px; }

.about-bio p {
  color: var(--text-md);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}

.highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}

.highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.highlight-title {
  font-weight: 600; font-size: 0.875rem;
  color: var(--navy-dk); margin-bottom: 3px;
}

.highlight-desc {
  font-size: 0.8rem; color: var(--text-lt);
  line-height: 1.5;
}

/* ── ORATOR ───────────────────────────────────────── */
#orator { background: var(--cream); }

.orator-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 64px; align-items: center;
}

.orator-achievement {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.orator-achievement-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  margin-bottom: 16px;
  color: var(--gold-lt);
}

.orator-achievement p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 16px;
}

.achievement-stat {
  display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px;
}

.achievement-stat-item { text-align: center; }

.achievement-stat-num {
  font-size: 1.75rem; font-weight: 700;
  color: var(--gold-lt);
  font-family: 'Playfair Display', serif;
}

.achievement-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
}

.topic-card:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.topic-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-color: transparent;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px;
}

.topic-card.featured .topic-name { color: var(--gold-lt); font-size: 1.15rem; }
.topic-card.featured .topic-desc { color: rgba(255,255,255,0.70); }
.topic-card.featured .topic-days { background: rgba(255,255,255,0.15); color: var(--gold-lt); }

.topic-subtopics {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 4px;
}

.topic-subtopics li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.topic-subtopics li::before {
  content: '›';
  color: var(--gold-lt);
  font-size: 1rem; line-height: 1.3;
  flex-shrink: 0;
}

.topic-icon { font-size: 1.5rem; margin-bottom: 10px; }

.topic-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dk);
  margin-bottom: 4px;
  line-height: 1.35;
}

.topic-desc {
  font-size: 0.78rem;
  color: var(--text-lt);
  line-height: 1.5;
}

.topic-days {
  position: absolute; top: 12px; right: 12px;
  background: var(--cream-dk);
  color: var(--saffron);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 12px;
}

.topics-note {
  margin-top: 28px;
  background: var(--cream-dk);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--text-md);
}

.topics-note strong { color: var(--navy-dk); }

/* ── WRITER ───────────────────────────────────────── */
#writer { background: var(--white); }

.book-list { display: flex; flex-direction: column; gap: 16px; }

.book-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.book-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow);
}

.book-spine {
  width: 56px; height: 76px; flex-shrink: 0;
  border-radius: 4px 6px 6px 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.book-spine-1 { background: linear-gradient(160deg, #5C4899, #3A2D6B); }
.book-spine-2 { background: linear-gradient(160deg, #2A6868, #1A4545); }
.book-spine-3 { background: linear-gradient(160deg, #8A6A20, #5A4410); }
.book-spine-4 { background: linear-gradient(160deg, #4A7A6A, #2E5248); }

.book-title {
  font-weight: 600; font-size: 0.95rem;
  color: var(--navy-dk); margin-bottom: 4px;
}

.book-genre {
  font-size: 0.75rem;
  color: var(--saffron);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.book-desc {
  font-size: 0.82rem;
  color: var(--text-lt);
  line-height: 1.5;
}

.writer-right { position: sticky; top: 100px; }

.writer-highlight {
  background: linear-gradient(145deg, var(--cream-dk), var(--cream));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.writer-highlight h3 {
  font-size: 1.35rem;
  color: var(--navy-dk);
  margin-bottom: 16px;
}

.writer-highlight p {
  font-size: 0.9rem;
  color: var(--text-md);
  margin-bottom: 20px;
  line-height: 1.7;
}

.coming-soon-list { list-style: none; margin-top: 16px; }

.coming-soon-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem;
  color: var(--text-md);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.coming-soon-list li:last-child { border-bottom: none; }
.cs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── AWARDS ───────────────────────────────────────── */
#awards { background: var(--cream); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.award-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.award-year {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.award-icon { font-size: 2rem; margin-bottom: 12px; }

.award-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy-dk);
  margin-bottom: 6px;
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
}

.award-org {
  font-size: 0.82rem;
  color: var(--text-lt);
}

/* ── MILESTONES ───────────────────────────────────── */
#milestones { background: var(--navy-dk); }

.milestones-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.milestone-item {
  padding: 40px 32px;
  background: var(--navy-dk);
  text-align: center;
  transition: background var(--transition);
}

.milestone-item:hover { background: rgba(255,255,255,0.04); }

.milestone-num {
  font-size: 3rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── CONTACT ──────────────────────────────────────── */
#contact { background: var(--white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
}

.contact-info h3 {
  font-size: 1.35rem; color: var(--navy-dk); margin-bottom: 24px;
}

.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.contact-detail-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-lt); margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9rem; color: var(--text-dk);
  line-height: 1.5;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-md);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-input,
.form-textarea,
.form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dk);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--saffron);
  background: var(--white);
}

.form-textarea { min-height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--saffron);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 48px;
  font-size: 0.9rem; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,72,153,0.35);
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  font-size: 1.2rem;
  color: var(--white); font-weight: 700; margin-bottom: 8px;
}

.footer-brand-tagline {
  font-size: 0.8rem; margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-lt); margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem;
}

/* ── WHATSAPP FLOAT ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 2000;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: var(--navy-dk);
  color: var(--white);
  font-size: 0.8rem; font-weight: 500;
  padding: 7px 14px;
  border-radius: 24px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.wa-float:hover .wa-tooltip,
.wa-float:focus-within .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.wa-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}

.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

.wa-pulse {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-ping 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── MOBILE NAV ───────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column; gap: 20px;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--text-dk);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ── HIDDEN LANG ELEMENTS ─────────────────────────── */
[data-lang] { display: none; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-mr [data-lang="mr"] { display: block; }
body.lang-en [data-lang="en"].inline { display: inline; }
body.lang-mr [data-lang="mr"].inline { display: inline; }
body.lang-en [data-lang="en"].flex { display: flex; }
body.lang-mr [data-lang="mr"].flex { display: flex; }
body.lang-en [data-lang="en"].grid { display: grid; }
body.lang-mr [data-lang="mr"].grid { display: grid; }
[data-lang="both"] { display: block; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .orator-intro { grid-template-columns: 1fr; }
  .writer-grid { grid-template-columns: 1fr; }
  .writer-right { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .hero-stats { gap: 24px; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .milestones-grid { grid-template-columns: 1fr 1fr; }
}
