/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #8B1A2B;
  --color-primary-dark: #6B1420;
  --color-primary-light: #A82040;
  --color-text: #1a1a2e;
  --color-text-light: #555;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f6f3;
  --color-bg-dark: #1a1a2e;
  --color-border: #e5e5e5;
  --color-accent: #2d6a4f;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --max-width: 1320px;
  --header-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 26, 43, 0.3);
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--color-primary);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo { text-decoration: none; color: var(--color-text); }
.logo-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 700; }

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link, .nav-dropdown-toggle {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-link:hover, .nav-dropdown-toggle:hover { background: var(--color-bg-alt); color: var(--color-text); }
.nav-link--donate {
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 6px;
  margin-left: 0.5rem;
}
.nav-link--donate:hover { background: var(--color-primary-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: background 0.15s;
}
.nav-dropdown-menu li a:hover { background: var(--color-bg-alt); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #3d1a2e 100%);
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0" stop-color="%23fff" stop-opacity=".05"/><stop offset="1" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="400" fill="url(%23a)"/><circle cx="900" cy="500" r="350" fill="url(%23a)"/></svg>');
  background-size: cover;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-tagline {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-title {
  text-align: center;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-title--accent { color: var(--color-primary); }
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 26, 43, 0.08);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse .two-col__text { order: -1; }
.two-col__text h2 { margin-bottom: 1.25rem; }
.two-col__text p { color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.8; }
.two-col__text .btn { margin-top: 0.5rem; }
.two-col__media h2 { margin-bottom: 1.5rem; }

/* Video Embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Image placeholder */
.image-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

/* ===== Media Coverage ===== */
.media-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.media-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 1.5rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.2s;
  background: #fff;
}
.media-logo:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--color-bg-dark);
  padding: 4rem 0;
  color: #fff;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-text h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.newsletter-form input {
  flex: 1;
  min-width: 150px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-size: 1.125rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo strong { font-weight: 700; }
.site-footer address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.7);
}
.site-footer address a { color: rgba(255,255,255,0.85); }
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 0.2s;
}
.social-links a:hover { background: rgba(255,255,255,0.2); color: #fff; }

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-links h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.375rem; }
.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: #fff; }

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(139, 26, 43, 0.3);
  transition: all 0.2s;
  z-index: 90;
  text-decoration: none;
}
.floating-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 26, 43, 0.4);
  color: #fff;
}

/* ===== Page Header ===== */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  margin-bottom: 0;
}
.page-header h1 { color: #fff; }
.page-subtitle { color: rgba(255,255,255,0.85); margin-top: 0.5rem; font-size: 1.125rem; }

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
}
.page-hero-content { max-width: 700px; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1.25rem; }

/* ===== Content Styles ===== */
.content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.content p { margin-bottom: 1rem; color: var(--color-text-light); line-height: 1.8; }
.content ul, .content ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--color-text-light); }
.content li { margin-bottom: 0.5rem; line-height: 1.7; }
.content a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.content a.btn { text-decoration: none; }
.content a.btn--primary { color: #fff; }
.content blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.card-body { padding: 1.75rem; }
.card-tag {
  display: inline-block;
  background: rgba(139, 26, 43, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-title a { color: var(--color-text); text-decoration: none; }
.card-title a:hover { color: var(--color-primary); }
.card-date { font-size: 0.8125rem; color: var(--color-text-light); display: block; margin-bottom: 0.75rem; }
.card-excerpt { color: var(--color-text-light); font-size: 0.9375rem; line-height: 1.7; }
.card-author { font-size: 0.875rem; color: var(--color-text-light); }

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-member {
  text-align: center;
}
.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
  border: 3px solid var(--color-border);
}
.team-member h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-member p {
  color: var(--color-text-light);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Horizontal team layout (matching original WP site) */
.team-grid--horizontal {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.team-member--horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.team-member--horizontal .team-member-photo {
  margin: 0;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.team-member--horizontal .team-member-info h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.team-member--horizontal .team-member-info p {
  color: var(--color-text-light);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ===== Track Record / Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.stat-card {
  text-align: center;
  padding: 2rem;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-sans);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ===== Chapter Page ===== */
.chapter-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
}
.chapter-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.chapter-hero p { color: rgba(255,255,255,0.85); font-size: 1.125rem; }

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.chapter-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.chapter-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 26, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.chapter-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.chapter-card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

/* ===== Guidance Page ===== */
.guidance-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* ===== Form Styles ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== Calendar Embed ===== */
.calendar-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  margin: 2rem 0;
}
.calendar-embed iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ===== Author Bio ===== */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.author-bio-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio-info h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.author-bio-info .author-title {
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.author-bio-info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Media Logo Images ===== */
.media-logo img {
  max-height: 32px;
  width: auto;
  display: block;
}

/* ===== Two Column Images ===== */
.two-col__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ===== Team Member Photos ===== */
.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== Pathway Cards (Get Involved) ===== */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pathway-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  color: var(--color-text);
  text-decoration: none;
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}
.pathway-icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 26, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pathway-icon svg {
  width: 28px;
  height: 28px;
}
.pathway-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pathway-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

/* ===== Find Chapter (front page chapter cards) ===== */
.find-chapter .chapter-card {
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.find-chapter .chapter-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}
.find-chapter .chapter-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.find-chapter .chapter-card .btn {
  margin-top: auto;
  width: fit-content;
}

/* ===== FAQ Accordion ===== */
.faq-section .container {
  max-width: 760px;
}
.faq-list {
  margin-top: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] {
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-light);
  border-bottom: 2px solid var(--color-text-light);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item summary:hover { color: var(--color-primary); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 0.75rem; }
.faq-answer a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--color-primary-dark); }

/* ===== Responsive (Tablet) ===== */
@media (max-width: 1024px) {
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: flex; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--color-bg-alt);
    border-radius: 6px;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-link--donate { margin-left: 0; margin-top: 0.5rem; text-align: center; justify-content: center; }

  .hero { min-height: 70vh; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse .two-col__text { order: 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .pathway-grid { grid-template-columns: 1fr; gap: 16px; }
  .chapter-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-item summary { padding: 16px 20px; font-size: 0.95rem; }
  .faq-answer { padding: 0 20px 16px; font-size: 0.9rem; }
  .floating-cta { bottom: 1rem; right: 1rem; font-size: 0.8125rem; padding: 0.75rem 1.25rem; }
}
