/* ═══════════════════════════════════════════════════════
   RAJDHARMA 3.0 — Main Stylesheet
   Design: Premium Editorial · Indian Civilizational Depth
   ═══════════════════════════════════════════════════════ */

:root {
  --ivory:        #FAF7F2;
  --ivory-deep:   #F2EBE0;
  --ivory-card:   #FFFDF9;
  --saffron-pale: #FEF5E8;
  --saffron-lt:   #F5D08A;
  --saffron:      #E89820;
  --saffron-dk:   #C07010;
  --gold:         #B8880C;
  --gold-warm:    #D4A030;
  --charcoal:     #1A1814;
  --charcoal-s:   #2A2620;
  --charcoal-m:   #3C3830;
  --stone-dk:     #6A6560;
  --stone:        #8C877E;
  --stone-lt:     #B8B2A8;
  --border:       #E4DDD4;
  --border-lt:    #EDE8E2;
  --white:        #FFFFFF;
  --green-wa:     #25D366;
  --nav-h:        70px;
  --max-w:        1180px;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Fonts ── */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-devanagari { font-family: 'Noto Serif Devanagari', serif; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-lt);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--saffron-pale);
}
.nav-logo-text {}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600;
  color: var(--charcoal); line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav-logo-tag {
  font-size: 9.5px; color: var(--stone);
  letter-spacing: 0.13em; text-transform: uppercase;
  font-weight: 500; display: block; margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 7px 13px;
  font-size: 13px; font-weight: 500; color: var(--stone-dk);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); background: var(--ivory-deep); }
.nav-cta-btn {
  background: var(--charcoal) !important;
  color: var(--ivory) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta-btn:hover { background: var(--charcoal-m) !important; color: #fff !important; }

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px; transition: all .3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav-panel {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 28px;
  border-bottom: 1px solid var(--border);
  z-index: 199;
  flex-direction: column; gap: 4px;
}
.nav-panel.open { display: flex; }
.nav-panel a {
  display: block; padding: 10px 12px;
  font-size: 15px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; border-radius: var(--radius-sm);
}
.nav-panel a:hover { background: var(--ivory-deep); }
.nav-panel .cta-mob {
  margin-top: 12px; background: var(--charcoal); color: var(--ivory) !important;
  text-align: center; border-radius: var(--radius-sm); font-weight: 600 !important;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  gap: 40px;
}
.hero-content { padding: 60px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron-dk); margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: currentColor; border-radius: 1px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7.5vw, 88px);
  font-weight: 500; line-height: 0.95;
  color: var(--charcoal); letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-title-ver {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--saffron);
  font-weight: 300; display: block;
  margin-top: 6px; letter-spacing: 0.04em;
}
.hero-hindi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(19px, 2.5vw, 26px);
  color: var(--charcoal-m); margin: 18px 0 18px;
  font-weight: 400; opacity: 0.65;
}
.hero-desc {
  font-size: 15.5px; line-height: 1.75;
  color: var(--stone-dk); max-width: 460px; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 44px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.025em;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .18s, color .18s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }
.btn-dark:hover { background: var(--charcoal-m); box-shadow: 0 6px 20px rgba(26,24,20,.25); }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { background: #1cb855; box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--stone-lt); background: var(--ivory-deep); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-saffron { background: var(--saffron); color: #fff; }
.btn-saffron:hover { background: var(--saffron-dk); }

.hero-stats {
  display: flex; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500; color: var(--charcoal); line-height: 1;
}
.stat-lbl {
  font-size: 10px; color: var(--stone);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px;
}

/* Hero visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 100%;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 380px;
}
.hero-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse at 50% 60%, rgba(232,152,32,.18) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero-book-img {
  width: 100%; max-width: 300px;
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 20px 30px 60px rgba(26,24,20,.3), 4px 8px 20px rgba(26,24,20,.15);
  transform: perspective(900px) rotateY(-10deg) rotateX(3deg);
  transition: transform .5s ease;
  position: relative; z-index: 1;
}
.hero-book-img:hover { transform: perspective(900px) rotateY(-4deg) rotateX(1deg); }

.hero-badge {
  position: absolute; bottom: 24px; right: -16px; z-index: 2;
  background: var(--ivory-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 200px;
  box-shadow: 0 8px 28px rgba(26,24,20,.1);
}
.hero-badge-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; line-height: 1.5;
  color: var(--charcoal-m);
}
.hero-badge-attr {
  font-size: 9.5px; color: var(--saffron-dk);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; margin-top: 8px;
}

/* ════════════════════════════════════════
   JOURNEY STRIP
   ════════════════════════════════════════ */
.journey {
  background: var(--charcoal);
  padding: 28px 40px;
}
.journey-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.j-step { display: flex; align-items: center; }
.j-text { text-align: center; padding: 8px 20px; }
.j-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 17px; color: var(--saffron); display: block; font-weight: 500;
}
.j-en {
  font-size: 9.5px; color: var(--stone-lt);
  letter-spacing: 0.12em; text-transform: uppercase;
  display: block; margin-top: 2px;
}
.j-arrow { color: var(--gold-warm); font-size: 22px; opacity: 0.4; padding: 0 6px; }

/* ════════════════════════════════════════
   SECTION SHARED
   ════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500; line-height: 1.08;
  color: var(--charcoal); letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15.5px; color: var(--stone-dk);
  line-height: 1.7; max-width: 520px;
}

/* ════════════════════════════════════════
   ABOUT / THINKER
   ════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 42% 1fr;
  gap: 72px; align-items: start;
  margin-top: 56px;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 3/4;
  display: block;
}
.about-img-frame {
  position: absolute; inset: -10px;
  border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px);
  pointer-events: none; z-index: -1;
}
.about-badge {
  position: absolute; bottom: -16px; left: 16px;
  background: var(--saffron);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(232,152,32,.4);
}
.about-roles {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px;
}
.role-tag {
  padding: 5px 13px; border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 500; color: var(--stone-dk);
}
.about-text {
  font-size: 15.5px; line-height: 1.8; color: var(--charcoal-m);
  margin-bottom: 22px;
}
.pull-quote {
  border-left: 3px solid var(--saffron);
  padding: 14px 22px;
  background: var(--saffron-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; line-height: 1.55;
  color: var(--charcoal);
}
.pull-quote-en {
  font-size: 12px; color: var(--stone);
  margin-top: 8px; font-style: normal;
}

/* About gallery strip */
.about-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 40px;
}
.gallery-img {
  border-radius: var(--radius-sm);
  object-fit: cover; aspect-ratio: 4/3; width: 100%;
  transition: transform .3s;
}
.gallery-img:hover { transform: scale(1.03); }

/* ════════════════════════════════════════
   CONCEPTS GRID
   ════════════════════════════════════════ */
.concepts-bg {
  background: var(--ivory-deep);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.concept-card {
  background: var(--ivory-deep);
  padding: 28px 22px;
  text-decoration: none; display: block;
  transition: background .18s;
}
.concept-card:hover { background: var(--ivory-card); }
.c-icon {
  width: 38px; height: 38px;
  background: var(--saffron-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.c-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 16px; color: var(--charcoal);
  font-weight: 500; display: block; margin-bottom: 3px;
}
.c-en {
  font-size: 10px; color: var(--saffron-dk);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; display: block; margin-bottom: 10px;
}
.c-desc {
  font-size: 12.5px; color: var(--stone);
  line-height: 1.55;
}
.c-link {
  display: inline-block; margin-top: 14px;
  font-size: 10.5px; color: var(--saffron-dk);
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
}

/* ════════════════════════════════════════
   QUOTES DARK SECTION
   ════════════════════════════════════════ */
.quotes-bg { background: var(--charcoal); }
.quotes-eyebrow { color: var(--saffron) !important; }
.quotes-title { color: #fff !important; }
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.q-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; line-height: .4; display: block;
  color: var(--saffron); opacity: .4; margin-bottom: 18px;
}
.q-text-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 14.5px; line-height: 1.9;
  color: rgba(255,255,255,.82); margin-bottom: 12px;
}
.q-text-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,.45); line-height: 1.6;
  margin-bottom: 18px;
}
.q-attr {
  font-size: 10px; color: var(--saffron);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}

/* Quote image poster */
.q-poster-img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover;
}

/* ════════════════════════════════════════
   MEDIA HUB
   ════════════════════════════════════════ */
.media-tabs {
  display: flex; gap: 2px; margin: 36px 0 40px;
  border-bottom: 1px solid var(--border);
}
.m-tab {
  padding: 9px 18px; background: none; border: none;
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  font-size: 13px; font-weight: 500; color: var(--stone);
  cursor: pointer; transition: all .18s;
  font-family: 'Inter', sans-serif;
}
.m-tab.active { color: var(--charcoal); border-color: var(--saffron); }
.m-tab:hover { color: var(--charcoal-m); }

.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.m-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--ivory-card);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  cursor: pointer; text-decoration: none; display: block;
}
.m-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,24,20,.1); }
.m-thumb {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background: var(--ivory-deep);
}
.m-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.m-card:hover .m-img { transform: scale(1.04); }
.m-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,.28);
  display: flex; align-items: center; justify-content: center;
  transition: background .22s;
}
.m-card:hover .m-overlay { background: rgba(26,24,20,.42); }
.play-btn {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.m-card:hover .play-btn { transform: scale(1.1); }
.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.m-info { padding: 16px 18px 18px; }
.m-tag {
  font-size: 9.5px; color: var(--saffron-dk);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 5px;
}
.m-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 500; color: var(--charcoal);
  line-height: 1.3; margin-bottom: 6px;
}
.m-meta { font-size: 11.5px; color: var(--stone); }

/* ════════════════════════════════════════
   QUOTE POSTERS GALLERY
   ════════════════════════════════════════ */
.posters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.poster-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  position: relative;
}
.poster-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.poster-item:hover img { transform: scale(1.05); }

/* ════════════════════════════════════════
   BOOK SECTION
   ════════════════════════════════════════ */
.book-bg {
  background: linear-gradient(140deg, #1E1A10 0%, #2A2010 50%, #1A1408 100%);
}
.book-grid {
  display: grid; grid-template-columns: 42% 1fr;
  gap: 72px; align-items: center;
}
.book-cover-wrap {
  display: flex; justify-content: center; position: relative;
}
.book-glow-ring {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse, rgba(232,152,32,.2) 0%, transparent 70%);
  pointer-events: none;
}
.book-img {
  width: 100%; max-width: 280px;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 12px 32px rgba(0,0,0,.4);
  transform: perspective(700px) rotateY(6deg);
  transition: transform .4s;
  position: relative; z-index: 1;
}
.book-img:hover { transform: perspective(700px) rotateY(2deg); }
.book-eyebrow { color: var(--saffron) !important; }
.book-eyebrow::before { background: var(--saffron) !important; }
.book-title { color: #fff !important; }
.book-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
}
.book-desc {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.65); margin-bottom: 28px;
}
.book-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
.pillar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.pillar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0;
}

/* ════════════════════════════════════════
   TEACHINGS
   ════════════════════════════════════════ */
.teachings-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}
.t-card {
  background: var(--ivory-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex; gap: 18px;
  text-decoration: none;
  transition: background .18s, box-shadow .22s;
}
.t-card:hover { background: var(--white); box-shadow: 0 8px 24px rgba(26,24,20,.07); }
.t-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--stone-lt); line-height: 1;
  flex-shrink: 0; width: 46px;
}
.t-topic {
  font-size: 9.5px; color: var(--saffron-dk);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 5px;
}
.t-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; color: var(--charcoal);
  line-height: 1.3; margin-bottom: 7px;
}
.t-desc { font-size: 13px; color: var(--stone); line-height: 1.6; }

/* ════════════════════════════════════════
   COMMUNITY
   ════════════════════════════════════════ */
.community-bg {
  background: var(--saffron-pale);
  border-top: 1px solid rgba(232,152,32,.18);
  border-bottom: 1px solid rgba(232,152,32,.18);
}
.community-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.comm-cards { display: flex; flex-direction: column; gap: 14px; }
.comm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: box-shadow .22s, transform .15s;
}
.comm-card:hover { box-shadow: 0 8px 28px rgba(26,24,20,.09); transform: translateY(-1px); }
.comm-left { display: flex; align-items: center; gap: 14px; }
.comm-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.comm-icon.wa { background: #E8FAF0; }
.comm-icon.ch { background: #E8F2FE; }
.comm-title { font-size: 14.5px; font-weight: 600; color: var(--charcoal); display: block; }
.comm-sub { font-size: 11.5px; color: var(--stone); display: block; margin-top: 1px; }
.comm-arrow { font-size: 18px; color: var(--stone-lt); }

.social-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.soc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--white);
  font-size: 12.5px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; transition: border-color .18s, background .18s;
}
.soc-btn:hover { border-color: var(--stone-lt); background: var(--ivory-deep); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer { background: var(--charcoal); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.f-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 6px;
}
.f-brand-tag {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 13px; color: var(--saffron); margin-bottom: 14px; display: block;
}
.f-brand-desc {
  font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75;
  max-width: 260px;
}
.f-logo-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; margin-bottom: 14px;
  background: var(--saffron-pale);
}
.f-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-links a {
  font-size: 13px; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .18s;
}
.f-links a:hover { color: var(--saffron); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.f-copy { font-size: 11.5px; color: rgba(255,255,255,.25); }
.f-socials { display: flex; gap: 10px; }
.f-soc {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none; color: rgba(255,255,255,.45);
  transition: background .18s, color .18s;
}
.f-soc:hover { background: var(--saffron); color: #fff; }

/* Eco strip */
.eco-strip {
  background: var(--ivory-deep);
  border-top: 1px solid var(--border);
  padding: 14px 40px; text-align: center;
}
.eco-strip p { font-size: 11.5px; color: var(--stone); }
.eco-strip a { color: var(--saffron-dk); text-decoration: none; }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .concepts-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 40% 1fr; gap: 48px; }
  .book-grid { grid-template-columns: 38% 1fr; gap: 52px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 32px); gap: 32px; min-height: auto; }
  .hero-content { padding: 32px 0 0; order: 2; }
  .hero-visual { order: 1; }
  .hero-badge { right: 0; bottom: -10px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-gallery { grid-template-columns: repeat(3,1fr); }
  .concepts-grid { grid-template-columns: repeat(3, 1fr); }
  .quotes-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 36px; }
  .book-cover-wrap { max-width: 220px; margin: 0 auto; }
  .teachings-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; gap: 36px; }
  .posters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .journey { padding: 20px 20px; }
  .j-arrow { display: none; }
  .concepts-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .posters-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 52px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .eco-strip { padding: 12px 20px; }
  .section { padding: 64px 0; }
}

@media (max-width: 400px) {
  .concepts-grid { grid-template-columns: 1fr; }
  .posters-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}
