/* ── Variables & Reset ─────────────────────────────────────────── */
:root {
  --saffron: #E8650A;
  --saffron-light: #FF8C38;
  --gold: #C8960C;
  --gold-light: #E8B830;
  --gold-pale: #F5D78E;
  --maroon: #6B1515;
  --maroon-dark: #3D0A0A;
  --cream: #FFF8F0;
  --cream-dark: #EDE0C8;
  --brown-text: #3D1C02;
  --text-muted: #7A5A38;
  --white: #FFFFFF;
  --font-heading: 'Noto Serif Bengali', 'SolaimanLipi', Georgia, serif;
  --font-body: 'Hind Siliguri', 'SolaimanLipi', Arial, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(61, 28, 2, 0.14);
  --shadow-gold: 0 4px 24px rgba(200, 150, 12, 0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--brown-text);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.3; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Shared Utilities ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--saffron);
  opacity: 0.6;
}
.section-label-light { color: var(--gold-pale); }
.section-label-light::before, .section-label-light::after { background: var(--gold-pale); opacity: 0.4; }

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--maroon-dark);
  margin-bottom: 0.5rem;
}
.section-title-light { color: var(--gold-pale); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; text-align: center; margin-left: auto; margin-right: auto; }
.section-subtitle-light { color: rgba(245, 215, 142, 0.8); }

.title-divider {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin-bottom: 1rem;
}
.title-divider-center { margin-left: auto; margin-right: auto; }

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--saffron), #C8400A);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232, 101, 10, 0.5); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(200, 150, 12, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(200, 150, 12, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.lotus-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.lotus-divider::before, .lotus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.lotus-divider .lotus-icon { color: var(--gold); font-size: 1.4rem; }

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

/* Fade in (hero) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.35s; }
.fade-in-d4 { animation-delay: 0.5s; }

/* ── Header ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(61, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 12, 0.25);
  transition: background 0.3s;
}
.header.scrolled { background: rgba(30, 5, 5, 0.97); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-symbol {
  font-size: 1.4rem;
  color: var(--gold-light);
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-pale);
  white-space: nowrap;
}
.nav { display: none; gap: 0.25rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 215, 142, 0.85);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold-light); background: rgba(200, 150, 12, 0.12); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-pale);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.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); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: rgba(30, 5, 5, 0.98);
  border-top: 1px solid rgba(200, 150, 12, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-nav.open { max-height: 400px; padding: 0.75rem 0; }
.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 215, 142, 0.9);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(200, 150, 12, 0.1);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: rgba(200, 150, 12, 0.1); color: var(--gold-light); }

@media (min-width: 768px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1A0400 0%, #3D0A0A 40%, #4A0E08 70%, #2A0600 100%);
  overflow: hidden;
  padding: 6rem 1.25rem 5rem;
}
.mandala-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mandala-svg {
  width: min(85vw, 700px);
  height: min(85vw, 700px);
  animation: rotate-mandala 60s linear infinite;
}
@keyframes rotate-mandala { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.om-watermark {
  position: absolute;
  font-size: clamp(10rem, 30vw, 20rem);
  color: rgba(200, 150, 12, 0.04);
  font-family: serif;
  user-select: none;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 150, 12, 0.12);
  border: 1px solid rgba(200, 150, 12, 0.3);
  color: var(--gold-pale);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #F5D78E 0%, #E8B830 40%, #C8960C 70%, #F0C030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: rgba(245, 215, 142, 0.85);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 248, 240, 0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-text { font-size: 0.72rem; color: rgba(245, 215, 142, 0.45); letter-spacing: 0.06em; }
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(200, 150, 12, 0.4);
  border-bottom: 2px solid rgba(200, 150, 12, 0.4);
  transform: rotate(45deg);
  margin-top: -8px;
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ── About ─────────────────────────────────────────────────────── */
.about { padding: 5rem 1.25rem; background: var(--cream); }
.about-header { text-align: center; margin-bottom: 3.5rem; }
.about-header .title-divider { margin: 0.75rem auto 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.lead-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1.8;
}
.about-text p { color: var(--brown-text); font-size: 1rem; line-height: 1.85; }
.about-quote {
  background: linear-gradient(135deg, rgba(107, 21, 21, 0.06), rgba(200, 150, 12, 0.08));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}
.about-quote p { font-family: var(--font-heading); font-size: 1.1rem; color: var(--maroon); font-style: italic; margin-bottom: 0.5rem; }
.about-quote footer { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.about-visual { display: flex; align-items: center; justify-content: center; }
.ornate-box {
  position: relative;
  width: min(320px, 90vw);
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #fff8f0, #ede0c8);
  border: 2px solid rgba(200, 150, 12, 0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold), inset 0 0 40px rgba(200, 150, 12, 0.06);
}
.ornate-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.ornate-corner.tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.ornate-corner.tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.ornate-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.ornate-corner.br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }
.ornate-inner { text-align: center; padding: 2rem; }
.om-display {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 30px rgba(200, 150, 12, 0.3);
}
.ornate-text p { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.ornate-text h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--maroon-dark); margin: 0.25rem 0; }
.ornate-dots { color: var(--gold); margin-top: 0.75rem; letter-spacing: 0.5rem; font-size: 0.7rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(200, 150, 12, 0.15);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.feature-icon { font-size: 2.2rem; color: var(--saffron); margin-bottom: 0.75rem; }
.feature-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* ── Lineage ───────────────────────────────────────────────────── */
.lineage {
  position: relative;
  padding: 5rem 1.25rem;
  background: linear-gradient(160deg, #3D0A0A 0%, #5A1010 50%, #3D0A0A 100%);
  overflow: hidden;
}
.lineage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 101, 10, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200, 150, 12, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.lineage-header { text-align: center; margin-bottom: 4rem; position: relative; }
.lineage-header .title-divider {
  margin: 0.75rem auto 1rem;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
}
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 480px) {
  .timeline-item { grid-template-columns: 70px 1fr; }
}
.timeline-connector { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 101, 10, 0.3), rgba(200, 150, 12, 0.3));
  border: 2px solid rgba(200, 150, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-pale);
  flex-shrink: 0;
  z-index: 1;
}
@media (min-width: 480px) { .timeline-dot { width: 54px; height: 54px; } }
.timeline-item.highlight .timeline-dot {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(200, 150, 12, 0.5);
  color: var(--maroon-dark);
  font-size: 1rem;
}
.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(200, 150, 12, 0.4), rgba(200, 150, 12, 0.15));
  margin: 4px 0;
}
.timeline-card {
  background: rgba(255, 248, 240, 0.06);
  border: 1px solid rgba(200, 150, 12, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  transition: border-color 0.3s, background 0.3s;
}
.timeline-card:hover { border-color: rgba(200, 150, 12, 0.35); background: rgba(255, 248, 240, 0.09); }
.timeline-item.highlight .timeline-card {
  background: rgba(200, 150, 12, 0.1);
  border-color: rgba(200, 150, 12, 0.4);
  box-shadow: 0 4px 24px rgba(200, 150, 12, 0.15);
}
.card-gen { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.timeline-item.highlight .card-gen { color: var(--gold-light); }
.card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 0.6rem; }
.timeline-item.highlight .card-title { font-size: 1.35rem; color: var(--gold-light); }
.card-desc { font-size: 0.9rem; color: rgba(245, 215, 142, 0.65); line-height: 1.75; margin-bottom: 0.85rem; }
.card-disciples { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--saffron-light); font-weight: 500; }
.disciple-dot { font-size: 0.7rem; color: var(--gold); }

/* ── Acharya ───────────────────────────────────────────────────── */
.acharya { padding: 5rem 1.25rem; background: linear-gradient(180deg, #fff8f0 0%, #f5ead8 100%); }
.acharya-header { text-align: center; margin-bottom: 3.5rem; }
.acharya-header .title-divider { margin: 0.75rem auto 0; }
.acharya-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .acharya-grid { grid-template-columns: 360px 1fr; gap: 4rem; } }
.acharya-image-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.image-frame {
  position: relative;
  width: min(300px, 85vw);
  padding: 12px;
  background: linear-gradient(135deg, #f5d78e, #c8960c, #e8b830, #c8960c);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-gold), 0 8px 40px rgba(61, 10, 10, 0.2);
}
.image-ornament {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.image-ornament.top { top: 6px; }
.image-ornament.bottom { bottom: 6px; }
.image-inner {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #ede0c8, #d4c0a0);
  aspect-ratio: 3/4;
  position: relative;
}
.acharya-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  /* position: absolute; */
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f0e4cc, #e0caa8);
}
.placeholder-om { font-size: 4rem; color: var(--gold); opacity: 0.7; margin-bottom: 1rem; }
.photo-placeholder p { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--maroon); line-height: 1.4; }
.placeholder-note { font-family: var(--font-body) !important; font-size: 0.8rem !important; color: var(--text-muted) !important; font-weight: 400 !important; margin-top: 0.75rem; }
.image-caption { font-family: var(--font-heading); font-size: 1rem; color: var(--maroon); font-weight: 600; text-align: center; letter-spacing: 0.05em; }
.acharya-info { display: flex; flex-direction: column; gap: 1rem; }
.acharya-lead { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--maroon); line-height: 1.85; }
.acharya-body { font-size: 0.975rem; color: var(--brown-text); line-height: 1.85; }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.highlight-item { background: var(--white); border: 1px solid rgba(200, 150, 12, 0.2); border-radius: var(--radius); padding: 0.9rem 1.1rem; box-shadow: var(--shadow); }
.highlight-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.highlight-value { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--maroon-dark); }
.acharya-cta { margin-top: 0.5rem; }

/* ── Teachings ─────────────────────────────────────────────────── */
.teachings {
  position: relative;
  padding: 5rem 1.25rem;
  background: linear-gradient(145deg, #3D0A0A 0%, #500E0E 50%, #3D0A0A 100%);
  overflow: hidden;
}
.teachings::before {
  content: '✿';
  position: absolute;
  left: -3rem; top: 50%; transform: translateY(-50%);
  font-size: 20rem;
  opacity: 0.03;
  color: var(--gold);
  pointer-events: none;
}
.teachings::after {
  content: '✿';
  position: absolute;
  right: -3rem; top: 50%; transform: translateY(-50%) scaleX(-1);
  font-size: 20rem;
  opacity: 0.03;
  color: var(--gold);
  pointer-events: none;
}
.teachings-header { text-align: center; margin-bottom: 3.5rem; position: relative; }
.teachings-header .title-divider {
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 0.75rem auto 1rem;
}
.teachings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}
@media (min-width: 480px)  { .teachings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .teachings-grid { grid-template-columns: repeat(4, 1fr); } }
.teaching-card {
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(200, 150, 12, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.teaching-card:hover { transform: translateY(-4px); background: rgba(200, 150, 12, 0.08); border-color: rgba(200, 150, 12, 0.4); }
.teaching-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; text-shadow: 0 0 20px rgba(200, 150, 12, 0.4); }
.teaching-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 0.75rem; }
.teaching-desc { font-size: 0.9rem; color: rgba(245, 215, 142, 0.65); line-height: 1.75; margin-bottom: 1rem; }
.teaching-verse { font-family: var(--font-heading); font-size: 0.82rem; color: var(--saffron-light); font-style: italic; line-height: 1.5; }
.verse-mark { color: var(--gold); font-size: 1.1rem; font-style: normal; }
.central-quote { max-width: 600px; margin: 0 auto; text-align: center; position: relative; }
.cq-inner {
  background: rgba(200, 150, 12, 0.08);
  border: 1px solid rgba(200, 150, 12, 0.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.cq-om { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.cq-inner blockquote p { font-family: var(--font-heading); font-size: clamp(1.1rem, 3vw, 1.4rem); color: var(--gold-pale); font-weight: 600; line-height: 1.75; font-style: italic; }

/* ── Contact ───────────────────────────────────────────────────── */
.contact { padding: 5rem 1.25rem; background: var(--cream); }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
.contact-header .title-divider { margin: 0.75rem auto 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(200, 150, 12, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(200, 150, 12, 0.4); }
.info-icon { font-size: 1.5rem; color: var(--saffron); flex-shrink: 0; margin-top: 0.1rem; }
.info-content h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.2rem; }
.info-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.25rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
  color: white;
}
.social-link:hover { transform: translateY(-2px); opacity: 0.9; }
.social-link.fb { background: #1877F2; }
.social-link.yt { background: #FF0000; }
.contact-verse {
  background: linear-gradient(135deg, rgba(107, 21, 21, 0.06), rgba(200, 150, 12, 0.08));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}
.contact-verse p { font-family: var(--font-heading); font-size: 0.95rem; color: var(--maroon); font-style: italic; line-height: 1.75; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 150, 12, 0.12);
}
.form-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.6; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--brown-text); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(200, 150, 12, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer;
  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='%23C8960C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.submit-btn { width: 100%; font-size: 1.05rem; padding: 1rem; margin-top: 0.5rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 128, 0, 0.08);
  border: 1px solid rgba(0, 128, 0, 0.2);
  border-radius: 8px;
  color: #2d6a2d;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer-wave { height: 60px; overflow: hidden; line-height: 0; }
.footer-wave svg { width: 100%; height: 100%; display: block; }
.footer-body { background: #3D0A0A; padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-logo-symbol { font-size: 1.3rem; color: var(--gold-light); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--gold-pale); }
.footer-tagline { font-size: 0.9rem; color: rgba(245, 215, 142, 0.6); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-mantra {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(232, 184, 48, 0.55);
  line-height: 1.9;
  background: rgba(200, 150, 12, 0.06);
  border-left: 2px solid rgba(200, 150, 12, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
}
.footer-nav h4, .footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 150, 12, 0.2);
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul li a { font-size: 0.9rem; color: rgba(245, 215, 142, 0.65); transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--gold-light); }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.88rem; color: rgba(245, 215, 142, 0.65); align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200, 150, 12, 0.12);
  border: 1px solid rgba(200, 150, 12, 0.25);
  color: var(--gold-pale);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-socials a:hover { background: rgba(200, 150, 12, 0.25); border-color: var(--gold); transform: translateY(-2px); }
.footer-divider {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  color: rgba(200, 150, 12, 0.3);
  font-size: 0.6rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 150, 12, 0.12);
}
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(245, 215, 142, 0.4); }
.footer-credit { color: rgba(200, 150, 12, 0.45) !important; font-family: var(--font-heading); }

/* ── Scroll-to-top ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), #C8400A);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 101, 10, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: linear-gradient(135deg, var(--saffron-light), var(--saffron)); transform: translateY(-2px); }
