/* ============================================================
   The Baton Exchange — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1F2937;
  background: #FAFAF8;
  overflow-x: hidden;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* --- NAVIGATION --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.site-nav.transparent {
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.site-nav.scrolled .nav-inner {
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #C8A951;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.75rem;
  background: #C8A951;
  color: #1B2A4A;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #d4b85e;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle span + span { margin-top: 6px; }

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  background: rgba(0,0,0,0.5);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #1B2A4A;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-link {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-drawer-link:hover {
  color: #C8A951;
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; flex-direction: column; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1B2A4A;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(200, 169, 81, 0.12), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(200, 169, 81, 0.1);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: 6px;
  margin-bottom: 2rem;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #C8A951;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: #C8A951;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Category Page Hero (shorter) */
.hero-compact {
  min-height: auto;
  padding: 10rem 0 6rem;
}

.hero-compact .hero-content {
  max-width: 680px;
}

.hero-compact h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  padding: 0.625rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 81, 0.15);
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C8A951;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn-primary {
  background: #C8A951;
  color: #1B2A4A;
}

.btn-primary:hover {
  background: #d4b85e;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* --- STATS BAR --- */
.stats-bar {
  background: white;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
}

.stats-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #E5E7EB, transparent);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  color: #6B7280;
  font-weight: 400;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

/* --- SECTION STYLES --- */
.section {
  padding: 7rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #C8A951;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.7;
}

/* --- PATHWAY CARDS --- */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pathway-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid #F3F4F6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(27, 42, 74, 0.12);
  border-color: transparent;
}

.pathway-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pathway-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 0.625rem;
}

.pathway-card p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pathway-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pathway-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1B2A4A;
  background: #F3F4F6;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

.pathway-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: #C8A951;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.25s;
}

.pathway-card:hover .pathway-arrow {
  gap: 0.75rem;
}

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

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1B2A4A;
  color: #C8A951;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 0.625rem;
}

.step p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- RESOURCE CARDS --- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.resource-card {
  background: white;
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #F3F4F6;
  transition: border-color 0.2s ease;
}

.resource-card:hover {
  border-color: rgba(200, 169, 81, 0.2);
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  width: fit-content;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1B2A4A;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
}

.card-type {
  font-size: 0.6875rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.card-download {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #C8A951;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.card-download:hover {
  background: rgba(200, 169, 81, 0.08);
}

@media (max-width: 1024px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* --- CATEGORY TAGS --- */
.tag-character { background: #F3F0FF; color: #6D28D9; }
.tag-career { background: #EFF6FF; color: #1D4ED8; }
.tag-faith { background: #FFFBEB; color: #B45309; }
.tag-self-discovery { background: #ECFDF5; color: #047857; }
.tag-leadership { background: #FEF2F2; color: #B91C1C; }
.tag-communication { background: #EEF2FF; color: #4338CA; }
.tag-team { background: #F0FDFA; color: #0F766E; }
.tag-professional { background: #FAF5FF; color: #7C3AED; }
.tag-entrepreneurship { background: #FFF1F2; color: #BE123C; }
.tag-business-growth { background: #FEFCE8; color: #A16207; }
.tag-social-work { background: #ECFEFF; color: #0E7490; }
.tag-real-estate { background: #FDF2F8; color: #BE185D; }
.tag-book-summaries { background: #F0FDF4; color: #15803D; }

/* --- FILTER TABS --- */
.filter-bar {
  background: white;
  border-bottom: 1px solid #F3F4F6;
  position: sticky;
  top: 64px;
  z-index: 40;
  transition: box-shadow 0.2s;
}

.filter-bar.has-shadow {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.filter-scroll {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-scroll::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6B7280;
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  color: #1B2A4A;
  background: #F9FAFB;
}

.filter-tab.active {
  color: #1B2A4A;
  background: #FAFAF8;
  border-color: #C8A951;
  font-weight: 600;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: #1B2A4A;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 169, 81, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(200, 169, 81, 0.06) 0%, transparent 50%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* --- FOOTER --- */
.site-footer {
  background: #0F1724;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(200, 169, 81, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 0.375rem 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #C8A951;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* --- GROUPED RESOURCE LIST --- */
.resource-search {
  width: 100%;
  padding: 0.875rem 1.25rem 0.875rem 3rem;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 1rem center no-repeat;
  color: #1F2937;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 2rem;
}

.resource-search:focus {
  outline: none;
  border-color: #C8A951;
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.12);
}

.resource-search::placeholder {
  color: #9CA3AF;
}

.resource-group {
  margin-bottom: 2rem;
}

.resource-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.25rem;
}

.resource-group-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.resource-group-count {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  opacity: 0.8;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.15s;
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item:hover {
  background: #F9FAFB;
}

.resource-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1B2A4A;
  white-space: nowrap;
  flex-shrink: 0;
}

.resource-item-desc {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: #9CA3AF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resource-item-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #C8A951;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.resource-item-download:hover {
  background: rgba(200, 169, 81, 0.1);
}

.resource-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #9CA3AF;
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .resource-item-desc { display: none; }
  .resource-item-title { white-space: normal; }
}

/* --- CONTENT PAGES --- */
.content-prose {
  max-width: 720px;
  margin: 0 auto;
}

.content-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B2A4A;
  margin: 2.5rem 0 1rem;
}

.content-prose h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1B2A4A;
  margin: 2rem 0 0.75rem;
}

.content-prose p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-prose ul, .content-prose ol {
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-prose li {
  margin-bottom: 0.5rem;
}

.content-prose blockquote {
  border-left: 3px solid #C8A951;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(200, 169, 81, 0.05);
  border-radius: 0 10px 10px 0;
}

.content-prose blockquote p {
  color: #1B2A4A;
  font-style: italic;
  margin-bottom: 0;
}

.highlight-card {
  background: white;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 2.25rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
}

.highlight-card:hover {
  border-color: rgba(200, 169, 81, 0.2);
}

.highlight-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

.stat-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-block {
  text-align: center;
}

.stat-block .stat-number {
  font-size: 2rem;
}

/* --- PATHWAY TABS (Resources page) --- */
.pathway-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.pathway-tab {
  padding: 0.625rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.pathway-tab:hover {
  color: #1B2A4A;
  border-color: #C8A951;
  background: rgba(200, 169, 81, 0.06);
}

.pathway-tab.active {
  color: #1B2A4A;
  background: rgba(200, 169, 81, 0.1);
  border-color: #C8A951;
  font-weight: 700;
}

/* --- MISC --- */
.bg-warm { background: #FAFAF8; }
.bg-soft { background: #F7F7F5; }

/* --- CURRICULUM / SYLLABUS LAYOUT --- */
.curriculum-section {
  margin-bottom: 3.5rem;
}

.curriculum-section:last-child {
  margin-bottom: 0;
}

.curriculum-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F3F4F6;
}

.curriculum-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0;
}

.curriculum-count {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.curriculum-list {
  display: grid;
  gap: 0.75rem;
}

.curriculum-item {
  background: white;
  border: 1px solid #F3F4F6;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.15s;
}

.curriculum-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #F3F4F6;
  color: #1B2A4A;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.curriculum-item-content {
  flex: 1;
  min-width: 0;
}

.curriculum-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1B2A4A;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.curriculum-item-desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
}

.curriculum-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.curriculum-intro p {
  font-size: 1.0625rem;
  color: #6B7280;
  line-height: 1.7;
}

.curriculum-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.curriculum-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: #1B2A4A;
  border: 1.5px solid #E5E7EB;
  transition: all 0.2s;
}

.curriculum-nav-link:hover {
  border-color: #C8A951;
  background: rgba(200, 169, 81, 0.06);
}

.curriculum-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.curriculum-link:hover .curriculum-item {
  background: #F9FAFB;
}

.curriculum-item-badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9CA3AF;
  border: 1px solid #E5E7EB;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.15rem;
  opacity: 0;
  transition: opacity 0.15s;
}

.curriculum-link:hover .curriculum-item-badge {
  opacity: 1;
}

@media (max-width: 640px) {
  .curriculum-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .curriculum-number {
    margin-top: 0;
  }
  .curriculum-header {
    flex-wrap: wrap;
  }
  .curriculum-item-badge {
    opacity: 1;
  }
  .pathway-tabs {
    flex-wrap: wrap;
  }
}
