/* ============================================
   DON'T WORRY, BE HAPPY FOUNDATION
   Main Stylesheet
   ============================================ */

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

:root {
  --navy:        #0f2240;
  --navy-mid:    #1a3560;
  --navy-light:  #1e3f72;
  --navy-dark:   #080f1f;
  --orange:      #F47B20;
  --orange-light:#ffaa5a;
  --orange-dark: #c45000;
  --cream:       #fdf8f2;
  --white:       #ffffff;
  --grey:        #8a9ab5;
  --text-muted:  rgba(255,255,255,0.6);
  --transition:  all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-orange {
  background: var(--orange);
  color: white;
}
.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,123,32,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  background: white;
  color: var(--orange);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(8, 15, 31, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,123,32,0.15);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--orange); }

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  color: white;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-subtitle {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: var(--transition);
}
.hero-link:hover { color: var(--orange); border-color: var(--orange); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-butterfly-bg {
  position: absolute;
  width: 70%;
  opacity: 0.07;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-photo-frame {
  width: 320px;
  height: 400px;
  border: 2px solid rgba(244,123,32,0.35);
  border-radius: 180px 180px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,123,32,0.04);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 180px 180px 0 0;
}

.hero-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 3;
}

.hero-overlay-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-gradient-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15,34,64,0.85), transparent);
  z-index: 2;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--orange);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 60px; }
.section-sm { padding: 60px 60px; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(40px, 4vw, 60px);
  color: white;
  margin-top: 8px;
}
.section-header.dark h2 { color: var(--navy); }
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
  line-height: 1.8;
}
.section-header.dark p { color: #6b7a99; }

/* ===== DELANEY SECTION ===== */
.delaney-section {
  background: var(--cream);
  padding: 100px 60px;
}

.delaney-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.delaney-photo {
  position: relative;
}

.delaney-photo-inner {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #d4e3f5, #bdd0eb);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.delaney-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.delaney-photo-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
  z-index: 1;
}

.delaney-photo-caption {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: white;
  padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  max-width: 200px;
  line-height: 1.5;
  border-left: 3px solid var(--orange);
}

.delaney-text h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--navy);
  margin-bottom: 28px;
}
.delaney-text h2 em { color: var(--orange); font-style: italic; }

.delaney-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #4a5a74;
  margin-bottom: 20px;
  font-weight: 300;
}

.delaney-loves {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.love-tag {
  background: rgba(244,123,32,0.1);
  border: 1px solid rgba(244,123,32,0.3);
  color: var(--orange-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.text-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  transition: var(--transition);
}
.text-link:hover { opacity: 0.75; }

/* ===== MISSION QUOTE ===== */
.mission-section {
  background: var(--navy-mid);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 360px;
  color: rgba(244,123,32,0.05);
  line-height: 1;
  pointer-events: none;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  font-style: italic;
  color: white;
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.mission-quote span { color: var(--orange); }

.mission-attr {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ===== HOW TO HELP ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.help-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 52px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.help-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.help-card:hover::after { width: 100%; }
.help-card:hover {
  background: rgba(244,123,32,0.05);
  border-color: rgba(244,123,32,0.2);
}

.card-icon { font-size: 40px; margin-bottom: 24px; }
.card-title {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}
.card-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.52);
  font-weight: 300;
  margin-bottom: 28px;
}
.card-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid rgba(244,123,32,0.4);
  padding-bottom: 2px;
  transition: var(--transition);
}
.card-link:hover { border-color: var(--orange); }

/* ===== EVENTS SECTION ===== */
.events-section { background: var(--cream); }

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,34,64,0.08);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,34,64,0.15);
}

.event-date-bar {
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-month {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.event-year { font-size: 13px; color: var(--grey); }

.event-body { padding: 24px; }

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.event-desc {
  font-size: 14px;
  color: #6b7a99;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.event-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--orange);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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.05'%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");
}

.cta-section h2 {
  font-size: clamp(36px, 4vw, 58px);
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== DONATE PAGE ===== */
.donate-hero {
  background: var(--navy-dark);
  padding: 160px 60px 80px;
  text-align: center;
}
.donate-hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  margin-bottom: 20px;
}
.donate-hero h1 em { color: var(--orange); font-style: italic; }
.donate-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.donate-section {
  background: var(--cream);
  padding: 80px 60px;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.donate-form-box {
  background: white;
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(15,34,64,0.1);
}

.donate-form-box h3 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 32px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.amount-btn {
  border: 2px solid rgba(15,34,64,0.15);
  background: white;
  color: var(--navy);
  padding: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.amount-btn:hover,
.amount-btn.active {
  border-color: var(--orange);
  background: rgba(244,123,32,0.06);
  color: var(--orange);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a9ab5;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  border: 1px solid rgba(15,34,64,0.15);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus { border-color: var(--orange); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.donate-submit {
  width: 100%;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 3px;
  margin-top: 8px;
}

.donate-sidebar h3 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 24px;
}

.impact-items { margin-bottom: 40px; }

.impact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15,34,64,0.08);
}

.impact-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  min-width: 70px;
  line-height: 1;
}

.impact-desc {
  font-size: 14px;
  color: #4a5a74;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(to bottom, var(--navy-dark), var(--navy));
  padding: 160px 60px 80px;
  text-align: center;
}
.about-hero h1 { font-size: clamp(48px, 5vw, 72px); margin-bottom: 20px; }
.about-hero h1 em { color: var(--orange); font-style: italic; }

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(244,123,32,0.3);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
}

.timeline-content {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}

.timeline-content.right { grid-column: 3; }
.timeline-content.left { grid-column: 1; text-align: right; }

.timeline-dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(244,123,32,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 12px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--orange); }

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

.footer-memorial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}
.footer-memorial strong { color: var(--orange); font-style: normal; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ===== PAGE TRANSITIONS ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 60px; }
  .hero-right { height: 50vw; min-height: 280px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .stat:nth-child(2) { border-right: none; }

  .section, .section-sm, .delaney-section, .mission-section,
  .donate-section, .donate-hero, .about-hero { padding: 60px 24px; }

  .delaney-grid { grid-template-columns: 1fr; gap: 40px; }
  .help-grid { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 24px; }
}
