/* =============================================================
   ST PTO — "Warm Academic" Design System
   stpto.demo.localforgesites.com
   Colors: Navy #1B3A6B | Orange #E85D26 | Cream #FBF8F3
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-light: #2A5298;
  --orange: #E85D26;
  --orange-dark: #d04e1e;
  --orange-light: #F5A623;
  --cream: #FBF8F3;
  --cream-dark: #F2EDE4;
  --cream-orange: #FFF0E8;
  --border: #E8E2D8;
  --charcoal: #2C2C2C;
  --muted: #555;
  --light-muted: #888;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,93,38,0.35); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.65rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-1px); }
.btn-outline:active { transform: scale(0.97); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.65rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.btn-outline-white:hover { background: white; color: var(--navy); transform: translateY(-1px); }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 300ms, box-shadow 300ms, border-color 300ms;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(27,58,107,0.3);
  flex-shrink: 0;
}
.nav-logo-circle span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  transition: color 300ms;
}
.nav-logo-sub {
  font-size: 0.72rem;
  color: rgba(255,200,150,0.9);
  transition: color 300ms;
}
#navbar.scrolled .nav-logo-title { color: var(--navy); }
#navbar.scrolled .nav-logo-sub { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 200ms;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--charcoal); }
#navbar.scrolled .nav-links a:hover { color: var(--orange); }

.nav-donate {
  margin-left: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  transition: color 300ms;
}
#navbar.scrolled .hamburger { color: var(--navy); }

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 8px;
  transition: background 150ms, color 150ms;
  margin-bottom: 4px;
}
.mobile-menu a:hover { background: var(--cream); color: var(--orange); }
.mobile-menu a.active { background: var(--cream-orange); color: var(--orange); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 767px) {
  .nav-links, .nav-donate { display: none; }
  .hamburger { display: block; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,58,107,0.87) 0%, rgba(27,58,107,0.62) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 640px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-content h1 .accent { color: var(--orange-light); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 2;
  font-size: 1.5rem;
  text-decoration: none;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── PILLARS ── */
#pillars {
  padding: 80px 0;
  background: white;
}
.pillars-header { text-align: center; margin-bottom: 3rem; }
.pillars-header h2 { font-size: 2.2rem; color: var(--navy); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--cream-orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.pillar-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── STATS BAR ── */
#stats {
  padding: 3.5rem 0;
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 0.25rem;
}
.stat-label { font-weight: 600; color: white; font-size: 0.9rem; margin-bottom: 0.2rem; }
.stat-sub { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ── ACTIVITIES PREVIEW ── */
#activities-preview {
  padding: 80px 0;
  background: var(--cream);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-header-row h2 { font-size: 2.2rem; color: var(--navy); }
.view-all-link {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms;
}
.view-all-link:hover { gap: 10px; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.activity-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }
.activity-card-img { height: 192px; overflow: hidden; }
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.activity-card:hover .activity-card-img img { transform: scale(1.05); }
.activity-card-body { padding: 1.5rem; }
.activity-card-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.activity-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── MEETINGS CTA ── */
#meetings-cta {
  padding: 80px 0;
  background: white;
}
.meetings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .meetings-grid { grid-template-columns: 1fr 1fr; } }
.meetings-text h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 1.25rem; }
.meetings-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.meetings-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.meetings-img-wrap { position: relative; }
.meetings-img-wrap img { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; box-shadow: 0 16px 48px rgba(27,58,107,0.18); }
.meeting-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--orange);
  color: white;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(232,93,38,0.35);
  max-width: 240px;
}
.meeting-badge-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.meeting-badge-detail { font-size: 0.82rem; opacity: 0.9; }
@media (max-width: 767px) {
  .meeting-badge { bottom: -16px; left: 16px; }
}

/* ── DONATE CTA ── */
#donate-cta {
  padding: 80px 0;
  background: var(--cream-orange);
}
.donate-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.donate-cta-inner h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 1.25rem; }
.donate-cta-inner p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.donate-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.donate-cta-note { font-size: 0.82rem; color: var(--light-muted); margin-bottom: 1.5rem; }
.matching-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.matching-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.matching-title { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.matching-body { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 128px 0 64px;
  background: var(--navy);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.7; }
.page-hero .section-label { color: rgba(255,200,150,0.9); }

/* ── CONTENT SECTIONS ── */
.section-white { padding: 80px 0; background: white; }
.section-cream { padding: 80px 0; background: var(--cream); }
.section-navy { padding: 80px 0; background: var(--navy); }
.section-orange-light { padding: 80px 0; background: var(--cream-orange); }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.content-block h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1.25rem; }
.content-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.content-block .btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

.content-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(27,58,107,0.18); }
.content-img img { width: 100%; height: 320px; object-fit: cover; }

.bullet-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.25rem; }
.bullet-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.info-box {
  background: var(--cream-orange);
  border: 1px solid #F5C9B0;
  border-radius: 12px;
  padding: 2.5rem;
}
.info-box h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.check-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.center-block { max-width: 720px; margin: 0 auto; text-align: center; }
.center-block h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1.25rem; }
.center-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

.navy-callout {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}
.navy-callout-icon { font-size: 1.25rem; flex-shrink: 0; }
.navy-callout-title { font-weight: 600; color: white; font-size: 0.9rem; margin-bottom: 4px; }
.navy-callout-body { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── DONATION METHODS GRID ── */
.donate-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.donate-method-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.donate-method-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }
.donate-method-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.donate-method-title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.donate-method-detail { font-size: 0.82rem; color: var(--muted); }
.donate-method-detail a { color: var(--orange); }
.donate-method-detail a:hover { text-decoration: underline; }

/* ── MEETINGS ARCHIVE ── */
.archive-section { max-width: 900px; margin: 0 auto; }
.archive-year {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.archive-year-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  transition: background 150ms;
}
.archive-year-btn:hover { background: var(--cream); }
.archive-year-btn .chevron { font-size: 1rem; color: var(--orange); transition: transform 200ms; }
.archive-year-btn.open .chevron { transform: rotate(180deg); }
.archive-table-wrap { display: none; overflow-x: auto; border-top: 1px solid var(--border); }
.archive-table-wrap.open { display: block; }
.archive-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.archive-table thead tr { background: var(--cream); }
.archive-table th {
  text-align: left;
  padding: 0.75rem 1.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.archive-table th:not(:first-child) { text-align: center; }
.archive-table td { padding: 0.75rem 1.5rem; border-top: 1px solid var(--border); }
.archive-table td:not(:first-child) { text-align: center; }
.archive-table tr:nth-child(even) td { background: #FDFCFA; }
.archive-table .month { font-weight: 500; color: var(--charcoal); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--cream-orange);
  color: var(--orange);
  border: 1px solid #F5C9B0;
}
.badge-empty { color: #CCC; font-size: 0.85rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: background 150ms;
}
.faq-btn:hover { background: var(--cream); }
.faq-btn .faq-chevron { font-size: 0.9rem; color: var(--light-muted); flex-shrink: 0; transition: transform 200ms, color 200ms; }
.faq-btn.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; padding-top: 1rem; }

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT CARDS ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--cream-orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label { font-weight: 600; color: var(--navy); font-size: 0.85rem; margin-bottom: 4px; }
.contact-value { font-size: 0.88rem; color: var(--muted); }
.contact-value a { color: var(--orange); }
.contact-value a:hover { text-decoration: underline; }

/* ── DONATE PAGE ── */
.donate-page-hero { background: var(--orange); }
.donate-page-hero .section-label { color: rgba(255,220,200,0.9); }
.donate-page-hero h1 { color: white; }
.donate-page-hero p { color: rgba(255,255,255,0.9); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .donate-grid { grid-template-columns: 1fr 1fr; } }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.amount-btn {
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--orange);
  background: var(--cream-orange);
  color: var(--orange);
}
.custom-amount-wrap { position: relative; margin-bottom: 1.5rem; }
.custom-amount-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-muted);
  font-size: 0.9rem;
}
.custom-amount-input {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  transition: border-color 150ms;
  outline: none;
}
.custom-amount-input:focus { border-color: var(--orange); }

.payment-alts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.payment-alt {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.payment-alt-title { font-weight: 600; color: var(--navy); font-size: 0.88rem; margin-bottom: 4px; }
.payment-alt-detail { font-size: 0.8rem; color: var(--muted); }
.payment-alt-detail span { color: var(--orange); font-family: 'DM Mono', monospace; font-size: 0.78rem; }

.donate-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
}
.donate-note strong { color: var(--navy); }

.impact-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.impact-icon { font-size: 1.5rem; flex-shrink: 0; }
.impact-amount { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--orange); font-size: 0.9rem; margin-bottom: 2px; }
.impact-desc { font-size: 0.85rem; color: var(--muted); }

.corporate-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.corporate-card-inner { display: flex; align-items: flex-start; gap: 1.25rem; }
.corporate-icon {
  width: 56px; height: 56px;
  background: var(--cream-orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.corporate-card h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.corporate-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }

/* ── THANK YOU SECTION ── */
.thank-you {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
}
.thank-you-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.thank-you h2 { font-size: 2rem; color: white; margin-bottom: 1rem; }
.thank-you p { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: white;
}
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }
.footer-logo-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-circle span { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; }
.footer-logo-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.95rem; }
.footer-logo-sub { font-size: 0.72rem; color: rgba(255,200,150,0.85); }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-address { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-address-icon { color: rgba(255,200,150,0.8); flex-shrink: 0; margin-top: 2px; }

.footer-col h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 150ms;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  transition: color 150ms;
}
.footer-email:hover { color: var(--orange); }
.footer-email-icon { color: rgba(255,200,150,0.8); }

.footer-subscribe-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-subscribe-form { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
  transition: border-color 150ms;
}
.footer-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-input:focus { border-color: var(--orange); }
.footer-subscribe-btn {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.65rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 150ms;
}
.footer-subscribe-btn:hover { background: var(--orange-dark); }
.footer-subscribed { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── PAGE NAVIGATION ── */
.page { display: none; }
.page.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .meetings-img-wrap { display: none; }
  .two-col { gap: 2rem; }
  .bullet-list { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-alts { grid-template-columns: 1fr; }
}
