/* =========================================
   Ministry of the Good Shepherd – Main CSS
   Red & Gold Color Scheme | Modern Nonprofit
   ========================================= */

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

/* ---- CSS Variables ---- */
:root {
  --red:        #9B1C1C;
  --red-dark:   #6B1111;
  --red-light:  #C53030;
  --red-faint:  #FEF2F2;
  --gold:       #B7860B;
  --gold-light: #F0C040;
  --cream:      #FAF7F2;
  --charcoal:   #1A1A1A;
  --text:       #2D2D2D;
  --muted:      #6B6B6B;
  --white:      #FFFFFF;
  --border:     #E2D6C8;
  --shadow:     rgba(155, 28, 28, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red-dark);
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.bg-cream { background: var(--cream); }
.bg-red { background: var(--red); }
.bg-red-dark { background: var(--red-dark); }
.bg-charcoal { background: var(--charcoal); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183,134,11,0.25);
}

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

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-dark);
  line-height: 1.2;
  max-width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--red);
}

/* Dropdown */
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 100;
}
.nav-links li:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-links .dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border);
}
.nav-links .dropdown a:last-child { border-bottom: none; }
.nav-links .dropdown a:hover { background: var(--red-faint); color: var(--red); }

.nav-donate {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* Mobile nav hidden by default on ALL screen sizes */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-mobile.open { display: block; }

/* ---- Hero ---- */
.hero {
  padding-top: 72px; /* nav height */
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--red-dark);
  background: linear-gradient(135deg, #6B1111 0%, #9B1C1C 60%, #7B1414 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: 0.6; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Stats Strip ---- */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Mission Section ---- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-visual {
  position: relative;
}

.mission-visual-box {
  background: var(--red);
  border-radius: 3px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mission-visual-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.mission-visual-box .overlay-quote {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  width: 100%;
}

.mission-pill {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(183,134,11,0.3);
}

.mission-list {
  list-style: none;
  margin: 1.5rem 0;
}
.mission-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.mission-list li:last-child { border-bottom: none; }
.mission-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.75rem;
}

/* ---- Projects Grid ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--red);
  color: inherit;
}
.project-card-icon {
  background: var(--red);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.project-card-icon svg {
  width: 48px;
  height: 48px;
  color: white;
  opacity: 0.9;
}
.project-card-body {
  padding: 1.5rem;
}
.project-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.project-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.project-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- Campaign Callout ---- */
.campaign-callout {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.campaign-callout::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  border: 40px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.campaign-callout::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -30px;
  width: 300px; height: 300px;
  border: 50px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.campaign-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.campaign-title {
  color: white;
  margin-bottom: 0.75rem;
}
.campaign-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 580px;
}
.campaign-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.campaign-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-align: center;
}

/* ---- Story / Why Peru ---- */
.story-text {
  max-width: 780px;
  margin: 0 auto;
}
.story-text p { font-size: 1.02rem; line-height: 1.85; }

.story-pull {
  background: var(--red);
  color: white;
  padding: 3rem;
  border-radius: 3px;
  text-align: center;
  margin: 3rem 0;
}
.story-pull p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
}
.story-pull cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.impact-list {
  background: var(--cream);
  border-radius: 3px;
  padding: 2.5rem;
  margin: 2rem 0;
}
.impact-list h4 { margin-bottom: 1.25rem; color: var(--red); }
.impact-list ul { list-style: none; }
.impact-list ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.impact-list ul li:last-child { border-bottom: none; }
.impact-list ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---- Page Banner ---- */
.page-banner {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding-bottom: 3rem;
  padding-top: calc(72px + 3rem);
}
.page-banner h1 { color: white; }
.page-banner .lead { color: rgba(255,255,255,0.8); }
.page-banner .section-label { color: var(--gold-light); }

/* ---- About Page ---- */
.about-founding {
  max-width: 850px;
}
.about-founding p { font-size: 1.02rem; line-height: 1.85; }

.about-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.region-card {
  background: var(--cream);
  border-radius: 3px;
  padding: 2rem;
  border-top: 3px solid var(--red);
}
.region-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--red-dark); }
.region-card p { font-size: 0.92rem; }

/* ---- Project Detail Pages ---- */
.project-detail-intro {
  max-width: 800px;
  margin-bottom: 3rem;
}
.project-detail-intro blockquote {
  margin: 2rem 0;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.photo-grid-item {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-caption {
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--cream);
  font-style: italic;
}

/* ---- Newsletter List ---- */
.newsletter-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.newsletter-item {
  background: var(--cream);
  border-radius: 3px;
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.2s;
}
.newsletter-item:hover {
  background: var(--red-faint);
  transform: translateX(4px);
}
.newsletter-item-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.newsletter-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 600;
  flex: 1;
}
.newsletter-item-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-item p, .contact-item a {
  font-size: 1.05rem;
  color: var(--text);
}
.contact-item a:hover { color: var(--red); }

.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-brand .nav-logo-text { color: var(--gold-light); font-size: 1.1rem; }
.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-tax {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--charcoal); font-weight: 600; }

/* ---- Donate CTA Strip ---- */
.donate-strip {
  background: var(--cream);
  border-top: 3px solid var(--red);
  padding: 3rem 0;
  text-align: center;
}
.donate-strip h2 { color: var(--red-dark); margin-bottom: 0.75rem; }
.donate-strip p { color: var(--muted); margin-bottom: 1.5rem; }

/* ---- Project Sidebar ---- */
.project-sidebar {
  background: var(--cream);
  border-radius: 3px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-top: 3px solid var(--red);
}
.sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.project-sidebar ul {
  list-style: none;
}
.project-sidebar ul li {
  border-bottom: 1px solid var(--border);
}
.project-sidebar ul li:last-child {
  border-bottom: none;
}
.project-sidebar ul li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}
.project-sidebar ul li a:hover {
  color: var(--red);
  padding-left: 0.4rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-col:last-child { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  /* .nav-mobile rules now defined globally above */
  .nav-mobile ul { list-style: none; }
  .nav-mobile ul li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
  }
  .nav-mobile .sub-menu { padding-left: 1rem; }
  .nav-mobile .sub-menu a {
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--muted);
  }
  .nav-mobile .mobile-donate {
    margin-top: 1.25rem;
    width: 100%;
    text-align: center;
  }

  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-visual { order: -1; }
  .mission-visual-box { aspect-ratio: 16/9; }
  .mission-pill { display: none; }

  .campaign-inner { grid-template-columns: 1fr; }
  .campaign-actions { flex-direction: row; }

  .about-regions { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .story-pull { padding: 2rem; }
  .impact-list { padding: 1.5rem; }
}
