/* Field Staff Association — Main Stylesheet */

:root {
  --navy: #1a3668;
  --navy-dark: #0f2347;
  --royal: #2563b0;
  --sky: #4a90d9;
  --green: #2d8a4e;
  --green-light: #3cb371;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(26, 54, 104, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 54, 104, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

.logo-link:hover {
  color: var(--navy);
}

.logo-link img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--gray-100);
  color: var(--navy);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  color: var(--white) !important;
}

.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(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, rgba(15, 35, 71, 0.92) 0%, rgba(26, 54, 104, 0.88) 50%, rgba(37, 99, 176, 0.85) 100%),
              url('../assets/hero-community.png') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(61, 179, 113, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(320px, 80%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Sections ── */
section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bg-light {
  background: var(--gray-50);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.65rem;
}

.blog-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.blog-body p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}

.read-more:hover {
  color: var(--royal);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--gray-600);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
              url('../assets/activity-team-meeting.png') center/cover no-repeat;
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
}

.page-header--advocacy {
  background-image: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
                    url('../assets/activity-advocacy.png');
}

.page-header--networking {
  background-image: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
                    url('../assets/activity-networking.png');
}

.page-header--community {
  background-image: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
                    url('../assets/activity-community.png');
}

.page-header--field {
  background-image: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
                    url('../assets/activity-field-work.png');
}

.page-header--workshop {
  background-image: linear-gradient(135deg, rgba(15, 35, 71, 0.9), rgba(26, 54, 104, 0.88)),
                    url('../assets/activity-workshop.png');
}

.page-header h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
}

.page-header p {
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Forms ── */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(37, 99, 176, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
}

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ── Donate ── */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: 0.85rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--navy);
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--green);
  background: #ecfdf5;
  color: var(--green);
}

.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.disclaimer-box h4 {
  color: #92400e;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  color: #78350f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.info-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.info-box h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--navy);
  min-width: 110px;
}

/* ── Membership tiers ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.tier-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.tier-card.featured {
  border-color: var(--green);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.tier-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.tier-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.tier-price .currency {
  font-size: 1.35rem;
  vertical-align: super;
  font-weight: 700;
}

.tier-price-period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
}

.tier-price-monthly {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  background: #ecfdf5;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.tier-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
}

.tier-savings {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Pricing comparison table */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.pricing-table thead th.featured-col {
  background: var(--green);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .check {
  color: var(--green);
  font-weight: 700;
}

.pricing-table .dash {
  color: var(--gray-400);
}

.pricing-note-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
}

.pricing-note-box h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.pricing-note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pricing-note-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pricing-note-icon {
  width: 36px;
  height: 36px;
  background: #ecfdf5;
  color: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pricing-note-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.pricing-note-item span {
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.45;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.75rem;
}

.tier-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.tier-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--green-light);
}

.map-placeholder,
.contact-photo {
  border-radius: var(--radius);
  height: 200px;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Activity Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 71, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.15rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 1;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

/* ── Image Cards ── */
.card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: -2rem -2rem 1.25rem;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.has-image {
  padding-top: 0;
  overflow: hidden;
}

/* ── Split Layout ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 360px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 71, 0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
}

/* ── About timeline ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-year {
  font-weight: 800;
  color: var(--royal);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #1a7a42 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 72px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-brand .ein {
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.55;
  line-height: 1.5;
}

/* ── Modal (blog) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 71, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-meta {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.modal-body {
  color: var(--gray-600);
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .donate-grid,
  .contact-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .split-image {
    min-height: 260px;
    order: -1;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    width: 200px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tier-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .donate-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 3rem 0;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .trust-grid,
  .testimonial-grid,
  .leader-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   CREDIBILITY & PREMIUM UPGRADES
   ══════════════════════════════════════════ */

/* Top Trust Bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.top-bar-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a:hover {
  color: var(--green-light);
}

/* Header scroll state */
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(26, 54, 104, 0.12);
}

.site-header.scrolled .header-inner {
  padding: 0.55rem 0;
}

.site-header.scrolled .logo-link img {
  width: 52px;
  height: 52px;
}

/* Hero upgrades */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-trust-pill img {
  width: 16px;
  height: 16px;
}

.section-header h2,
.page-header h1,
.hero h1 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* Trust credentials */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.trust-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
}

.trust-card h3 {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.trust-card p {
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.5;
}

.trust-card .trust-id {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: #ecfdf5;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(26, 54, 104, 0.25);
}

.process-step h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.88rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gray-200);
  font-family: Georgia, serif;
}

.testimonial-quote {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

/* Leadership */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.leader-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-dark), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.leader-body {
  padding: 1.5rem;
}

.leader-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.leader-title {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.leader-body p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Compliance section */
.compliance-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compliance-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.compliance-header h3 {
  font-size: 1.15rem;
}

.compliance-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 138, 78, 0.25);
  border: 1px solid rgba(60, 179, 113, 0.5);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6ee7b7;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compliance-item {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.compliance-item:nth-child(odd) {
  border-right: 1px solid var(--gray-100);
}

.compliance-check {
  width: 22px;
  height: 22px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.compliance-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.compliance-item span {
  color: var(--gray-600);
  font-size: 0.82rem;
}

.compliance-footer {
  padding: 1.25rem 2rem;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Legal / transparency pages */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid var(--gray-200);
}

.info-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.info-table tr:nth-child(even) td {
  background: var(--gray-50);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
}

/* Stat counter animation helper */
.stat-number {
  transition: opacity 0.3s;
}

/* Accreditation strip */
.accreditation-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  opacity: 0.85;
}

.accreditation-strip img {
  width: 64px;
  height: 64px;
  filter: grayscale(20%);
  transition: filter var(--transition), transform var(--transition);
}

.accreditation-strip img:hover {
  filter: none;
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .compliance-item:nth-child(odd) {
    border-right: none;
  }
}
