/* ================================================================
   TCF SITE v2 — DESIGN SYSTEM
   Light Editorial / Corporate Movement Theme
   60% Purple #8B5A96 | 30% Blue #4472B7 | 10% Green #224335
   ================================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --purple:       #8B5A96;
  --purple-dark:  #6B3F76;
  --purple-light: #f4eaf8;
  --purple-mid:   #d4a8e0;
  --blue:         #4472B7;
  --blue-dark:    #2d5a9e;
  --blue-light:   #eef2fb;
  --blue-mid:     #9ab5de;
  --green:        #224335;
  --green-light:  #e8f0ec;
  --green-mid:    #3d7a5e;

  --text:         #1a1525;
  --text-body:    #3d3550;
  --text-muted:   #7a6e8a;
  --border:       #e8e4ef;
  --bg:           #ffffff;
  --bg-soft:      #faf8fc;
  --bg-blue:      #f4f7fd;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(139,90,150,0.08);
  --shadow:       0 6px 30px rgba(139,90,150,0.12);
  --shadow-lg:    0 16px 60px rgba(139,90,150,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        92px;
  --max-w:        1280px;
  --max-narrow:   860px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── UTILITY ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--bg  { background: var(--bg-soft); }
.section--blue { background: var(--bg-blue); }
.section--purple { background: var(--purple-light); }
.section--dark { background: var(--text); color: white; }
.section--dark .section-label { color: var(--purple-mid); }
.section--dark .section-title { color: white; }
.section--dark .section-sub { color: rgba(255,255,255,0.7); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,90,150,0.35); }

.btn-blue {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(68,114,183,0.35); }

.btn-green {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-green:hover { background: #1a3329; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,67,53,0.35); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: white; }

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.site-nav.scrolled { box-shadow: 0 4px 24px rgba(139,90,150,0.12); }

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 78px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.nav-logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0 24px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 9px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--purple); background: var(--purple-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-friend-btn {
  background: var(--purple);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.nav-friend-btn:hover { background: var(--purple-dark); box-shadow: 0 4px 16px rgba(139,90,150,0.4); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text);
  font-size: 1.4rem;
}

/* Mobile Nav Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.nav-drawer.is-open { display: block; }

.nav-drawer-links {
  list-style: none;
  margin-bottom: 16px;
}

.nav-drawer-links a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--bg-blue) 100%);
}

.page-hero-content {
  padding: 60px 0 56px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero .hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.page-hero-accent {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,90,150,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--purple); }
.breadcrumb-sep { opacity: 0.4; }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 28px; }
.card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* Stat card */
.stat-block {
  text-align: center;
  padding: 32px 24px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--purple);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple);
}

.pill-blue { background: var(--blue-light); color: var(--blue); }
.pill-green { background: var(--green-light); color: var(--green); }

/* ── DIVIDER ── */
.divider { width: 48px; height: 3px; background: var(--purple); border-radius: 2px; margin: 16px 0; }
.divider-blue { background: var(--blue); }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 56px; margin-bottom: 16px; background: white; border-radius: 10px; padding: 6px 10px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; opacity: 0.7; max-width: 280px; }

.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--purple-mid); }

.footer-newsletter p { font-size: 0.88rem; opacity: 0.7; margin-bottom: 14px; line-height: 1.7; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); color: white; font-size: 0.85rem; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form button { padding: 10px 18px; background: var(--purple); color: white; border: none; border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; }
.footer-newsletter-form button:hover { background: var(--purple-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ── HOME HERO ── */
.home-hero {
  padding-top: var(--nav-h);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
  background: white;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,90,150,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.home-hero-left { padding: 80px 0 80px 40px; max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 32px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.home-hero h1 em {
  font-style: normal;
  color: var(--purple);
}

.home-hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Hero Right — Photo Mosaic */
.home-hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  background: var(--purple-light);
  overflow: hidden;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.mosaic-cell {
  overflow: hidden;
  background: var(--bg-blue);
}

.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-cell--tall { grid-row: span 2; }

.hero-badge {
  position: absolute;
  bottom: 36px; left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--purple-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── HOME — KEY PAGES NAV CARDS ── */
.page-nav-section { padding: 0 0 96px; }

.page-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-nav-card {
  display: block;
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.page-nav-card:last-child { border-right: none; }

.page-nav-card:hover { background: var(--purple-light); }

.page-nav-card::after {
  content: '→';
  position: absolute;
  bottom: 28px; right: 28px;
  font-size: 1.2rem;
  color: var(--purple);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s;
}

.page-nav-card:hover::after { opacity: 1; transform: translateX(0); }

.page-nav-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background 0.25s;
}

.page-nav-card:hover .page-nav-icon {
  background: white;
}

.page-nav-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.page-nav-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── HOME — TICKER ── */
.ticker-bar {
  background: var(--purple);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 36px;
}

.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HOME — MISSION STRIP ── */
.mission-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text) 0%, #2d1a3e 100%);
  color: white;
  text-align: center;
}

.mission-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.45;
  color: white;
  max-width: 900px;
  margin: 0 auto 24px;
}

.mission-strip blockquote em {
  font-style: normal;
  color: var(--purple-mid);
}

.mission-strip p {
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── HOME — LATEST ACTIVITY ── */
.activity-strip {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  align-items: start;
}

.activity-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 22px 24px;
  transition: background 0.2s;
}
.activity-item:hover { background: var(--bg-soft); }

.activity-item-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--border);
  width: 36px;
  text-align: center;
}

.activity-item-text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.activity-item-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.activity-item-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--purple-light);
  color: var(--purple);
  white-space: nowrap;
}

.activity-side {
  background: var(--purple);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: white;
  text-align: center;
}

.activity-side h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.activity-side p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── HERITAGE PAGE ── */
.heritage-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.heritage-intro-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

.heritage-intro-visual {
  position: relative;
}

.heritage-img-stack {
  position: relative;
  padding-top: 40px;
  padding-right: 40px;
}

.heritage-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.heritage-img-overlay {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  aspect-ratio: 1;
  object-fit: cover;
}

.heritage-quote {
  position: absolute;
  top: 0; right: 0;
  background: var(--purple);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 220px;
  text-align: center;
  line-height: 1.5;
}

/* Timeline — TCF founding */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--border);
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -36px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--purple);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--purple);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Thar geography facts */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.geo-item {
  background: white;
  padding: 36px 28px;
  text-align: center;
}

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

.geo-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 6px;
}

.geo-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── IMPACT PAGE ── */
.impact-intro p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

.challenge-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px;
  border-left: 4px solid var(--purple);
  transition: transform 0.25s, box-shadow 0.25s;
}
.challenge-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.challenge-card--blue  { border-left-color: var(--blue); }
.challenge-card--green { border-left-color: var(--green); }

.challenge-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: var(--purple-light);
  color: var(--purple);
}

.challenge-card--blue .challenge-icon { background: var(--blue-light); color: var(--blue); }
.challenge-card--green .challenge-icon { background: var(--green-light); color: var(--green); }

.challenge-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.challenge-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.challenge-card ul {
  margin-top: 12px;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Demand card */
.demand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.demand-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.demand-item:hover { border-color: var(--purple); }

.demand-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demand-item h4 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 6px;
}

.demand-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── MEDIA HUB ── */
.media-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  background: white;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.media-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-blue);
}

.media-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.media-item:hover img { transform: scale(1.06); }

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,37,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.media-item:hover .media-overlay { opacity: 1; }

.media-caption {
  color: white;
  font-size: 0.75rem;
  line-height: 1.4;
}

.media-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s;
}

.media-item:hover .media-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox-bg {
  position: absolute; inset: 0;
  background: rgba(10,5,20,0.94);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#lightbox-img {
  max-width: 85vw;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-caption-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-nav {
  position: fixed; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; color: white;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── ABOUT PAGE ── */
.forums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.forum-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}

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

.forum-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition: background 0.25s;
}

.forum-card:hover .forum-card-icon { background: var(--purple); color: white; }

.forum-card h3 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.forum-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.objectives-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.objectives-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}

.obj-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Membership info */
.membership-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.membership-table th {
  background: var(--purple);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.membership-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: top;
  line-height: 1.65;
}

.membership-table tr:last-child td { border-bottom: none; }
.membership-table tr:nth-child(even) td { background: var(--bg-soft); }

/* ── GLASS MODAL (Become a Friend) ── */
.friend-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.friend-modal.is-open { display: flex; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,21,37,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 32px 100px rgba(26,21,37,0.4), 0 0 0 1px rgba(255,255,255,0.3);
  animation: modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  padding: 32px 36px 28px;
  border-radius: 24px 24px 0 0;
  color: white;
  text-align: center;
  position: relative;
}

.modal-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.88rem;
  opacity: 0.85;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }

.modal-body { padding: 28px 36px 36px; }

/* Form */
.tcf-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }

.form-col-full { grid-column: 1 / -1; }

.form-section-head {
  grid-column: 1 / -1;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--border);
  margin-top: 6px;
}

.form-section-head span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .req { color: #c0392b; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(255,255,255,0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,90,150,0.15);
  background: white;
}

.form-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 14px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139,90,150,0.4);
}

.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.success-banner {
  grid-column: 1 / -1;
  background: var(--green-light);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  border-left: 3px solid var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-band p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .grid-4, .forums-grid { grid-template-columns: repeat(2, 1fr); }
  .page-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .page-nav-card { border-right: none; border-bottom: 1px solid var(--border); }
  .page-nav-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .page-nav-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .activity-strip { grid-template-columns: 1fr; }
  .media-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container, .container--narrow { padding: 0 20px; }
  .section { padding: 64px 0; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-left { padding: 60px 20px 40px; max-width: 100%; }
  .home-hero-right { min-height: 280px; }
  .heritage-intro, .grid-2 { grid-template-columns: 1fr; }
  .forums-grid { grid-template-columns: repeat(2, 1fr); }
  .demand-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .media-gallery { grid-template-columns: repeat(2, 1fr); }
  .tcf-form { grid-template-columns: 1fr; }
  .form-col-full, .form-section-head, .form-check, .form-submit, .form-note, .success-banner { grid-column: 1; }
  .modal-panel { border-radius: 16px; }
  .modal-header { padding: 24px 20px 20px; border-radius: 16px 16px 0 0; }
  .modal-body { padding: 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .page-nav-grid { grid-template-columns: 1fr; }
  .page-nav-card { border-right: none; border-bottom: 1px solid var(--border); }
  .grid-3 { grid-template-columns: 1fr; }
  .activity-strip { grid-template-columns: 1fr; }
}
