/* ============================================================
   TARUN SAGAR JI — style.css
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --saffron:      #E8590C;
  --saffron-dark: #C44A08;
  --saffron-light:#FFF0E8;
  --amber:        #F9A825;
  --gold:         #C9972C;
  --gold-light:   #F0DFA0;
  --maroon:       #6A1010;
  --maroon-dark:  #3D0808;
  --cream:        #FDF6EC;
  --cream-dark:   #F5E8D4;
  --charcoal:     #1C1C1E;
  --charcoal-mid: #3A3A3C;
  --gray:         #8A8A8E;
  --white:        #FFFFFF;

  --font-serif:   'Crimson Pro', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-gu:      'Hind Vadodara', 'Noto Sans Gujarati', sans-serif;

  --nav-h:        72px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.11);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.15);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--maroon);
  font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: .04em; text-transform: uppercase; color: var(--saffron); }

p { margin-bottom: .9em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .6rem;
}

/* Gujarati font override */
body.lang-gu,
body.lang-gu p,
body.lang-gu span,
body.lang-gu a,
body.lang-gu li,
body.lang-gu blockquote,
body.lang-gu cite {
  font-family: var(--font-gu);
}

body.lang-gu h1,
body.lang-gu h2,
body.lang-gu h3,
body.lang-gu h4 {
  font-family: var(--font-gu);
  line-height: 1.35;
}

/* ── 4. LAYOUT HELPERS ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 2.5rem);
}

.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }

.bg-cream   { background: var(--cream); }
.bg-saffron { background: var(--saffron); color: var(--white); }
.bg-saffron h2, .bg-saffron p { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  margin-top: .6rem;
}

/* ── 5. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253,246,236,.88);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-color: var(--gold-light);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
}
.logo-sub {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 2rem);
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--saffron); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

/* ── 6. LANGUAGE TOGGLE ───────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  color: var(--saffron);
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-sans);
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.lang-toggle:hover {
  background: var(--saffron);
  color: var(--white);
}
.lang-label { display: none; }
.lang-show-en { display: block; }
body.lang-gu .lang-show-en { display: none; }
body.lang-gu .lang-show-gu { display: block; }

/* ── 7. HAMBURGER ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-dark); }
.btn-outline  { background: transparent; color: var(--saffron); border: 2px solid var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-white    { background: var(--white); color: var(--saffron); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── 9. IMAGE FRAMES ──────────────────────────────────────── */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.img-frame:hover img { transform: scale(1.03); }
.img-frame--portrait { aspect-ratio: 3 / 4; }
.img-frame--landscape { aspect-ratio: 4 / 3; }

/* ── 10. HERO (HOME) ──────────────────────────────────────── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 2.5rem);
  max-width: 1180px;
  margin-inline: auto;
}

.hero-text { max-width: 560px; }

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-text h1 {
  color: var(--maroon);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--charcoal-mid);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}
.hero-image .img-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-ornament {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-light);
  z-index: -1;
}

/* ── 11. QUOTE BANNER ─────────────────────────────────────── */
.quote-banner {
  background: var(--maroon);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.02) 40px,
    rgba(255,255,255,.02) 80px
  );
}
.quote-banner .container { position: relative; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: .6;
  color: var(--gold);
  opacity: .4;
  margin-bottom: .5rem;
}
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-banner cite {
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .06em;
  font-style: normal;
}

/* ── 12. FEATURE CARDS ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border-top: 4px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--charcoal);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  color: var(--saffron);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { color: var(--maroon); margin: 0; }
.feature-card p  { color: var(--charcoal-mid); font-size: .95rem; flex: 1; }
.feature-link    { color: var(--saffron); font-weight: 600; font-size: .9rem; }

/* ── 13. BIO TEASER ───────────────────────────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.bio-content h2 { margin-bottom: 1rem; }
.bio-content p  { color: var(--charcoal-mid); margin-bottom: 1rem; }
.bio-content .btn { margin-top: .5rem; }

/* ── 14. STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 5vw, 2.5rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}

/* ── 15. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, var(--saffron-dark) 100%);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.bg-cream + .page-hero::after,
.page-hero + section.bg-cream { /* no override needed */ }

.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .eyebrow { color: var(--amber); }
.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-content p  { color: rgba(255,255,255,.8); font-size: 1.15rem; font-family: var(--font-serif); font-style: italic; }

/* Hero with background image */
.page-hero--image {
  position: relative;
  background: var(--maroon-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img  { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(58,8,8,.6), rgba(58,8,8,.8)); }

/* ── 16. ABOUT — TRAIT CARDS ──────────────────────────────── */
.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.trait-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trait-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trait-icon {
  width: 44px;
  height: 44px;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.trait-icon svg { width: 100%; height: 100%; }
.trait-card h3 { color: var(--maroon); margin-bottom: .6rem; }
.trait-card p  { color: var(--charcoal-mid); font-size: .95rem; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--saffron-light);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.highlight-year {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  flex-shrink: 0;
}
.highlight-box p { color: var(--charcoal-mid); margin: 0; }

/* ── 17. TEACHINGS — PILLARS ──────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
}
.pillar-card h3 {
  color: var(--saffron);
  font-size: 2rem;
  margin-bottom: .25rem;
}
.pillar-card h4 {
  color: var(--maroon);
  font-size: .8rem;
  margin-bottom: 1rem;
}
.pillar-card p  { color: var(--charcoal-mid); font-size: .95rem; }

/* ── 18. TEACHINGS — QUOTES ───────────────────────────────── */
.quotes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quote-block {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--cream-dark);
  max-width: 780px;
}
.quote-block:last-child { border-bottom: none; }
.quote-block--alt {
  margin-left: auto;
  text-align: right;
}
.big-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--saffron);
  opacity: .25;
  line-height: .5;
  margin-bottom: .5rem;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
}

/* ── 19. BOOKS GRID ───────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.book-cover {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.book-card:hover .book-cover img { transform: scale(1.04); }
.book-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.book-lang-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--saffron-light);
  color: var(--saffron);
  padding: .2rem .6rem;
  border-radius: 50px;
  width: fit-content;
}
.book-info h3 { color: var(--maroon); font-size: 1.3rem; margin: 0; }
.book-info p  { color: var(--charcoal-mid); font-size: .9rem; flex: 1; }

/* ── 20. LEGACY — TIMELINE ────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-block: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 5%, var(--gold) 95%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
.timeline-item .timeline-marker { text-align: right; padding-right: 2.5rem; }
.timeline-item .timeline-content { padding-left: 2.5rem; }
.timeline-item--right .timeline-marker { text-align: left; order: 2; padding-right: 0; padding-left: 2.5rem; }
.timeline-item--right .timeline-content { order: 1; text-align: right; padding-left: 0; padding-right: 2.5rem; }

.timeline-marker {
  position: relative;
}
.timeline-marker::after {
  content: '';
  position: absolute;
  top: 8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--saffron);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-item--right .timeline-marker::after {
  right: auto;
  left: -8px;
}
.timeline-marker--final::after {
  background: var(--maroon);
  box-shadow: 0 0 0 3px var(--maroon);
  width: 22px;
  height: 22px;
  top: 5px;
  right: -11px;
}
.timeline-item--right .timeline-marker--final::after {
  right: auto;
  left: -11px;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  display: block;
}
.timeline-content h3 { color: var(--maroon); font-size: 1.2rem; margin-bottom: .5rem; }
.timeline-content p  { color: var(--charcoal-mid); font-size: .95rem; }

/* ── 21. LEGACY — MEMORIAM ────────────────────────────────── */
.memoriam-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon-dark);
  overflow: hidden;
}
.memoriam-bg {
  position: absolute;
  inset: 0;
}
.memoriam-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.memoriam-overlay { position: absolute; inset: 0; background: rgba(61,8,8,.75); }

.memoriam-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 5rem;
  max-width: 720px;
}
.memoriam-flame { font-size: 3rem; margin-bottom: 1.5rem; }
.memoriam-content h2 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.memoriam-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}

/* ── 22. LEGACY — REACH STATS ─────────────────────────────── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.reach-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-bottom: 4px solid var(--saffron);
  box-shadow: var(--shadow-sm);
}
.reach-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.reach-label {
  font-size: .9rem;
  color: var(--charcoal-mid);
  font-weight: 500;
}

/* ── 23. CONTACT ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 4px solid var(--saffron);
  text-align: center;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 48px;
  height: 48px;
  color: var(--saffron);
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card h3 { color: var(--maroon); margin: 0; }
.contact-card p  { color: var(--charcoal-mid); font-size: .95rem; }
.contact-link {
  color: var(--saffron);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--saffron-dark); }
.contact-detail { color: var(--gray); font-size: .88rem; margin: 0; }
.contact-note {
  text-align: center;
  font-size: .9rem;
  color: var(--gray);
  max-width: 580px;
  margin-inline: auto;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

/* ── 24. CREDITS BOX ──────────────────────────────────────── */
.credits-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.credits-box h2 { color: var(--maroon); margin-bottom: 2rem; }
.credits-inner {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.credit-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  flex: 1;
  min-width: 180px;
}
.credit-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon);
  display: block;
}
.credit-item p { color: var(--charcoal-mid); font-size: .9rem; }
.credit-link {
  color: var(--saffron);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}
.credit-link:hover { color: var(--saffron-dark); }
.credit-divider {
  width: 1px;
  background: var(--cream-dark);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── 25. CTA SECTION ──────────────────────────────────────── */
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 26. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,.8);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand { display: flex; flex-direction: column; gap: .4rem; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.footer-years { font-size: .8rem; color: var(--gold); letter-spacing: .06em; }
.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-top: .5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-credits a {
  color: var(--amber);
  transition: color var(--transition);
}
.footer-credits a:hover { color: var(--white); }

.footer-copy {
  padding-block: 1.5rem;
  background: rgba(0,0,0,.2);
}
.footer-copy p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin: 0;
}

/* ── 27. SCROLL ANIMATIONS ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 28. RESPONSIVE ───────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 2rem; min-height: auto; padding-block: 4rem; }
  .two-col-grid { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDF6EC;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
    border-top: 2px solid var(--gold-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 3rem;
  }
  .hero-text { max-width: 100%; order: 2; }
  .hero-image { order: 1; max-width: 280px; margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-ornament { display: none; }

  /* Two col */
  .two-col-grid { grid-template-columns: 1fr; }
  .two-col-grid.reverse { direction: ltr; }
  .two-col-grid .img-frame { order: -1; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-image { max-width: 280px; margin-inline: auto; }

  /* Timeline */
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item .timeline-marker,
  .timeline-item--right .timeline-marker {
    order: 0;
    text-align: left;
    padding-left: 56px;
    padding-right: 0;
  }
  .timeline-item .timeline-content,
  .timeline-item--right .timeline-content {
    order: 1;
    text-align: left;
    padding-left: 56px;
    padding-right: 0;
  }
  .timeline-marker::after,
  .timeline-item--right .timeline-marker::after {
    left: 12px;
    right: auto;
  }
  .timeline-marker--final::after {
    left: 9px;
    right: auto;
  }
  .timeline-item--right .timeline-marker--final::after {
    left: 9px;
    right: auto;
  }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  /* Credits */
  .credits-inner { flex-direction: column; }
  .credit-divider { width: 100%; height: 1px; align-self: auto; }

  /* Quote block */
  .quote-block--alt { text-align: left; margin-left: 0; }
  .quote-block--alt .big-quote { display: block; }

  /* Page hero wave */
  .page-hero::after { height: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .books-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .reach-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .traits-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding-block: 2rem; }
  .btn { padding: .65rem 1.35rem; font-size: .9rem; }
  h1 { font-size: 2.4rem; }
}

/* ── 29. SAFARI FIXES ─────────────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: calc(100vh - var(--nav-h)); }

  .navbar {
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
  }

  /* Fix for Safari overflow on sticky */
  .navbar { -webkit-transform: translateZ(0); }

  /* Safe area insets for notched iPhones */
  .navbar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .footer-copy {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

/* Smooth scroll on webkit */
html { -webkit-overflow-scrolling: touch; }

/* ── 30. AUDIENCE CARDS (Home) ────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.audience-icon { width: 44px; height: 44px; color: var(--saffron); margin-bottom: 1rem; }
.audience-icon svg { width: 100%; height: 100%; }
.audience-card h3 { color: var(--maroon); margin-bottom: .7rem; font-size: 1.2rem; }
.audience-card p  { color: var(--charcoal-mid); font-size: .95rem; font-style: italic; font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.55; }

/* ── 31. STACKED QUOTES (Home philosophy) ─────────────────── */
.philosophy-quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stacked-quote {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.stacked-quote:hover { transform: translateX(4px); }
.sq-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron);
  opacity: .4;
  line-height: 1.1;
  flex-shrink: 0;
}
.stacked-quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--charcoal); margin: 0; line-height: 1.5; }

/* ── 32. MEDIA FEATURE (Home) ─────────────────────────────── */
.media-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.media-feature-text h2 { margin-bottom: 1rem; }
.media-feature-text p  { color: var(--charcoal-mid); margin-bottom: 1rem; }
.media-feature-img { position: relative; }
.media-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--maroon);
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  box-shadow: var(--shadow-sm);
}
.media-badge span:first-child { font-weight: 700; font-size: .95rem; }
.media-badge-sub { font-size: .75rem; color: var(--amber); }

@media (max-width: 768px) {
  .media-feature-inner { grid-template-columns: 1fr; }
}

/* ── 33. TOPIC PILLS (Home) ───────────────────────────────── */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: 760px;
  margin-inline: auto;
}
.topic-pill {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  color: var(--charcoal-mid);
  padding: .55rem 1.25rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.topic-pill:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-light); }

/* ── 34. BOOKS MINI GRID (Home teaser) ────────────────────── */
.books-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.book-mini { aspect-ratio: 2/3; }

/* ── 35. FINAL QUOTE SECTION (Home) ──────────────────────── */
.final-quote-section { text-align: center; }
.final-quote-inner { max-width: 680px; margin-inline: auto; }
.fq-lotus { font-size: 2.5rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.final-quote-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.final-quote-inner cite { color: var(--amber); font-style: normal; font-size: .95rem; display: block; margin-bottom: 2rem; }
.fq-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 36. FACTS BAND (About) ───────────────────────────────── */
.facts-band {
  background: var(--maroon);
  padding: 1.5rem clamp(1.2rem, 5vw, 2.5rem);
}
.facts-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.fact-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; text-align: center; }
.fact-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.fact-value { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); }

/* ── 37. MONK LIFE GRID (About) ───────────────────────────── */
.monk-life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.monk-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.monk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.monk-number {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
}
.monk-card h3 { color: var(--maroon); margin-bottom: .6rem; }
.monk-card p  { color: var(--charcoal-mid); font-size: .95rem; }

/* ── 38. ABOUT QUOTE BOX ──────────────────────────────────── */
.about-quote-box {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aq-top { margin-bottom: .5rem; }
.aq-ornament {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .4;
  line-height: .6;
  display: block;
}
.about-quote-box blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.about-quote-box cite { color: var(--amber); font-style: normal; font-size: .9rem; }

/* ── 39. HUMOUR QUOTE CARDS (About) ──────────────────────── */
.humour-quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--amber);
}
.hq-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: .75rem;
}
.hq-cite { color: var(--saffron); font-size: .85rem; font-weight: 600; }

/* ── 40. TOPIC TEACH GRID (Teachings) ────────────────────── */
.topic-teach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.topic-teach-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.topic-teach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.topic-teach-card h3 { color: var(--maroon); font-size: 1.1rem; margin-bottom: .75rem; }
.topic-teach-card p  { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--charcoal-mid); line-height: 1.55; margin: 0; }

/* ── 41. JAIN CONCEPTS GRID (Teachings) ──────────────────── */
.jain-concepts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.jain-concept {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.jain-term {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron);
  display: block;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: .5rem;
}
.jain-concept p { color: var(--charcoal-mid); font-size: .95rem; margin: 0; }

/* ── 42. BOOKS WRITING QUOTE (Books) ─────────────────────── */
.books-writing-quote {
  display: flex;
  align-items: center;
}
.bwq-inner {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
}
.bwq-ornament {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .35;
  line-height: .6;
  display: block;
  margin-bottom: .5rem;
}
.bwq-inner blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.bwq-inner cite { color: var(--amber); font-style: normal; font-size: .9rem; }

/* ── 43. FEATURED BOOK SECTION (Books) ───────────────────── */
.featured-book-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.featured-book-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.fbs-item { display: flex; flex-direction: column; gap: .2rem; }
.fbs-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--saffron); line-height: 1; }
.fbs-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }

/* BOOK PULL QUOTE */
.book-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--charcoal-mid);
  border-left: 3px solid var(--gold);
  padding-left: .85rem;
  margin-top: .75rem;
  margin-bottom: 0;
}

/* GET BOOKS GRID */
.get-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.get-book-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}
.get-book-card:hover { transform: translateY(-4px); }
.gb-icon { width: 44px; height: 44px; color: var(--saffron); margin-bottom: 1rem; }
.gb-icon svg { width: 100%; height: 100%; }
.get-book-card h3 { color: var(--maroon); margin-bottom: .6rem; }
.get-book-card p  { color: var(--charcoal-mid); font-size: .95rem; }

@media (max-width: 768px) { .featured-book-inner { grid-template-columns: 1fr; } }

/* ── 44. LEGACY INTRO STATS ───────────────────────────────── */
.legacy-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  height: 100%;
}
.li-stat {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-bottom: 3px solid var(--saffron);
  box-shadow: var(--shadow-sm);
}
.li-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.li-label { font-size: .82rem; color: var(--charcoal-mid); font-weight: 500; }

/* ── 45. MEMORIAM DATES ───────────────────────────────────── */
.memoriam-dates {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
}

/* ── 46. IMPACT CARDS (Legacy) ────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.impact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-icon { width: 44px; height: 44px; color: var(--saffron); margin-bottom: 1rem; }
.impact-icon svg { width: 100%; height: 100%; }
.impact-card h3 { color: var(--maroon); margin-bottom: .6rem; }
.impact-card p  { color: var(--charcoal-mid); font-size: .95rem; }

/* ── 47. CARRY FORWARD GRID (Legacy) ─────────────────────── */
.carry-forward-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.cf-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cf-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  opacity: .3;
  line-height: 1;
}
.cf-card h3 { color: var(--maroon); margin: 0; }
.cf-card p  { color: var(--charcoal-mid); font-size: .95rem; flex: 1; }
.cf-link { color: var(--saffron); font-weight: 600; font-size: .9rem; margin-top: auto; }

/* ── 48. CONTACT INTRO QUOTE ──────────────────────────────── */
.contact-intro-quote { display: flex; align-items: center; }
.ciq-inner {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
}
.ciq-ornament {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .35;
  line-height: .6;
  display: block;
  margin-bottom: .5rem;
}
.ciq-inner blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.ciq-inner cite { color: var(--amber); font-style: normal; font-size: .88rem; }

/* ── 49. FIND GRID (Contact) ──────────────────────────────── */
.find-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.find-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform var(--transition);
}
.find-card:hover { transform: translateY(-3px); }
.find-card h3 { color: var(--maroon); font-size: 1.1rem; }
.find-card p  { color: var(--charcoal-mid); font-size: .92rem; flex: 1; }
.find-link { color: var(--saffron); font-weight: 600; font-size: .9rem; margin-top: auto; }

/* ── 50. FAQ LIST (Contact) ───────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--maroon); font-size: 1.15rem; margin-bottom: .6rem; }
.faq-item p  { color: var(--charcoal-mid); font-size: .95rem; margin: 0; }

