/* ============================================
   THE FRAME PROJECT — STYLESHEET
   Brand Colors: #193c71 (Navy) · #fefbf0 (Cream)
   ============================================ */

:root {
  --navy:        #193c71;
  --navy-light:  #2a5299;
  --navy-dark:   #102850;
  --navy-deeper: #0b1e38;
  --cream:       #fefbf0;
  --cream-dark:  #f4eedc;
  --cream-deeper:#e8dfcb;
  --white:       #ffffff;
  --gray-50:     #fafaf8;
  --gray-100:    #f0ede6;
  --gray-200:    #ddd9d0;
  --gray-400:    #a8a29a;
  --gray-600:    #6b6560;
  --gray-800:    #2e2b28;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --shadow-xs: 0 1px 4px rgba(19,60,113,0.07);
  --shadow-sm: 0 4px 16px rgba(19,60,113,0.1);
  --shadow-md: 0 12px 40px rgba(19,60,113,0.15);
  --shadow-lg: 0 24px 72px rgba(19,60,113,0.2);
  --trans: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
p   { line-height: 1.75; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 820px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-xl);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
}
.btn-cream:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-ghost-cream {
  background: rgba(254,251,240,0.15);
  color: var(--cream);
  border: 2px solid rgba(254,251,240,0.4);
}
.btn-ghost-cream:hover {
  background: rgba(254,251,240,0.25);
  border-color: rgba(254,251,240,0.7);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   LABELS / SECTION TITLES
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(25, 60, 113, 0.09);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-xl);
  margin-bottom: 1.1rem;
}
.section-label.light {
  color: var(--cream);
  background: rgba(254,251,240,0.18);
}
.section-label.centered { display: block; text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.section-sub.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section { padding: 6rem 0; }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all var(--trans);
}

.navbar.at-hero {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; position: relative; height: 72px; width: 160px; }

.logo-img {
  position: absolute;
  top: 0; left: 0;
  height: 72px; width: auto;
  object-fit: contain;
  transition: opacity var(--trans);
}

.logo-dark  { opacity: 1; }
.logo-light { opacity: 0; }

.navbar.at-hero .logo-dark  { opacity: 0; }
.navbar.at-hero .logo-light { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-sm);
  transition: all var(--trans);
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--cream);
}

.navbar.at-hero .nav-links a {
  color: rgba(254,251,240,0.85);
}
.navbar.at-hero .nav-links a:hover {
  color: var(--cream);
  background: rgba(254,251,240,0.15);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: all var(--trans);
}
.nav-icon-link:hover {
  background: var(--navy);
  color: var(--cream);
}
.navbar.at-hero .nav-icon-link {
  color: var(--cream);
  background: rgba(254,251,240,0.2);
}
.navbar.at-hero .nav-icon-link:hover {
  background: rgba(254,251,240,0.35);
}

.navbar.at-hero .btn-primary {
  background: var(--cream);
  color: var(--navy);
}
.navbar.at-hero .btn-primary:hover {
  background: var(--cream-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.navbar.at-hero .hamburger span { background: var(--cream); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(19, 40, 72, 0.82) 0%,
    rgba(19, 60, 113, 0.72) 40%,
    rgba(19, 40, 72, 0.88) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 0;
}

.hero-content {
  max-width: 700px;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254,251,240,0.75);
  margin-bottom: 1.75rem;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  opacity: 0.8;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: #c8d8f4;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(254,251,240,0.78);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(254,251,240,0.1);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(254,251,240,0.15);
  padding: 1.5rem 0;
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  padding: 0 1.5rem;
}
.hero-stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(254,251,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(254,251,240,0.2);
  flex-shrink: 0;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-wrap {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 22s linear infinite;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(254,251,240,0.65);
  letter-spacing: 0.02em;
}

.marquee-dot {
  color: rgba(254,251,240,0.3);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   MISSION
   ============================================ */

.mission-section { background: var(--cream); }

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

.mission-imgs { position: relative; }

.mission-img-stack {
  position: relative;
  height: 560px;
}

.mission-img {
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center top;
}

.mission-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 420px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.mission-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 62%;
  height: 300px;
  box-shadow: var(--shadow-md);
  z-index: 1;
  border: 4px solid var(--cream);
}

.mission-text p {
  color: var(--gray-600);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.mission-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-deeper);
  transition: all var(--trans);
}
.mission-feature:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.mission-feature strong { color: var(--navy-dark); font-size: 0.95rem; }
.mission-feature small  { color: var(--gray-600); font-size: 0.85rem; display: block; margin-top: 0.2rem; }

.mf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(25,60,113,0.09);
  border-radius: var(--r-sm);
  color: var(--navy);
  flex-shrink: 0;
}

/* ============================================
   IMPACT
   ============================================ */

.impact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.impact-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.impact-sub {
  color: rgba(254,251,240,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.impact-card {
  background: rgba(254,251,240,0.07);
  border: 1px solid rgba(254,251,240,0.12);
  border-radius: var(--r-md);
  padding: 2.25rem 1.75rem;
  transition: all var(--trans);
}
.impact-card:hover {
  background: rgba(254,251,240,0.12);
  border-color: rgba(254,251,240,0.25);
  transform: translateY(-4px);
}

.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.impact-number span {
  color: rgba(254,251,240,0.5);
  font-size: 0.7em;
}

.impact-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(254,251,240,0.85);
  margin-bottom: 0.7rem;
}

.impact-desc {
  font-size: 0.85rem;
  color: rgba(254,251,240,0.5);
  line-height: 1.65;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */

.gallery-section { overflow: hidden; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  height: 526px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,40,72,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section { background: var(--gray-50); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-top: 3.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all var(--trans);
}
.step-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  opacity: 0.55;
}

.step-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.85rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  padding-top: 5rem;
  flex-shrink: 0;
}

/* ============================================
   EVENTS
   ============================================ */

.events-section { background: var(--cream); }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--cream-deeper);
  overflow: hidden;
  transition: all var(--trans);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.event-featured {
  display: flex;
  flex-direction: column;
}

.event-img-wrap { height: 260px; overflow: hidden; }
.event-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.event-card:hover .event-img { transform: scale(1.04); }

.event-body { padding: 2rem; flex: 1; }

.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(25,60,113,0.09);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-xl);
  margin-bottom: 0.85rem;
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.event-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
}

.events-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-small {
  padding: 1.75rem;
}

.outreach-block {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-deeper);
}

.outreach-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.outreach-intro {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 0.5rem;
}

.outreach-intro a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.outreach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.outreach-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all var(--trans);
}
.outreach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.outreach-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.outreach-card h4 a {
  color: var(--navy-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1px;
  transition: color var(--trans);
}
.outreach-card h4 a:hover {
  color: var(--navy);
}

.outreach-date {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.outreach-time {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================
   LEGAL (DISCLAIMER & PRIVACY)
   ============================================ */

.legal-section { background: var(--white); }
.legal-section-alt { background: var(--cream); }

.legal-page-section {
  padding-top: 160px;
  min-height: 70vh;
}

.legal-back {
  margin-top: 2.5rem;
  text-align: center;
}
.legal-back a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.legal-back a:hover { text-decoration: underline; }

.legal-body {
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.legal-body p {
  margin-bottom: 1.1rem;
}

.legal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 2rem 0 0.75rem;
}

.legal-body ul {
  margin: 0 0 1.1rem 1.25rem;
  padding: 0;
  list-style: disc;
}
.legal-body li {
  margin-bottom: 0.35rem;
}

.legal-body a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   QUOTE
   ============================================ */

.quote-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.quote-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,30,56,0.92) 0%, rgba(25,60,113,0.88) 100%);
  z-index: 1;
}

.quote-section .container { position: relative; z-index: 2; }

.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: rgba(254,251,240,0.18);
  line-height: 0.4;
  display: block;
  margin-bottom: 2rem;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.quote-section cite {
  display: block;
  font-style: normal;
  color: rgba(254,251,240,0.6);
  font-size: 0.9rem;
}
.quote-section cite strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* ============================================
   PARTNERS
   ============================================ */

.partners-section { background: var(--white); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.partner-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  background: var(--gray-50);
  transition: all var(--trans);
}
.partner-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}

.partner-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.partner-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

.partner-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   WAYS TO GIVE
   ============================================ */

.give-section { background: var(--cream); }

.give-header { margin-bottom: 3.5rem; }

.give-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.give-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--trans);
}
.give-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.give-card-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.give-card-icon {
  width: 60px; height: 60px;
  background: rgba(25,60,113,0.09);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.give-card-primary .give-card-icon {
  background: rgba(254,251,240,0.15);
  color: var(--cream);
}
.give-icon-amazon { background: rgba(255,153,0,0.1); color: #d68000; }
.give-icon-glasses { background: rgba(25,60,113,0.09); color: var(--navy); }

.give-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.give-card-primary h3 { color: var(--cream); }

.give-card > p {
  font-size: 0.93rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.give-card-primary > p { color: rgba(254,251,240,0.72); }

.give-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.give-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.give-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(25,60,113,0.1);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--navy);
  flex-shrink: 0;
  font-weight: 700;
}
.give-card-primary .give-list li { color: rgba(254,251,240,0.75); }
.give-card-primary .give-list li::before {
  background: rgba(254,251,240,0.2);
  color: var(--cream);
}

.give-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}
.give-card-primary .give-note { color: rgba(254,251,240,0.4); }

/* ============================================
   FOOTER
   ============================================ */

.footer-top {
  background: var(--navy-dark);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(254,251,240,0.1);
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta-text p {
  color: rgba(254,251,240,0.65);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

.footer-main {
  background: var(--navy-deeper);
  padding: 4.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(254,251,240,0.5);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.footer-tax {
  font-size: 0.76rem;
  color: rgba(254,251,240,0.3) !important;
  margin-bottom: 1.25rem !important;
}

.footer-social {
  margin-top: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(254,251,240,0.55);
  transition: color var(--trans);
}
.social-link:hover { color: var(--cream); }

.footer-col h5 {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: rgba(254,251,240,0.5);
  transition: color var(--trans);
  line-height: 1.4;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(254,251,240,0.07);
  padding: 1.5rem 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(254,251,240,0.3);
}
.footer-legal-links {
  margin-top: 0.5rem;
}
.footer-legal-links a {
  color: rgba(254,251,240,0.45);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-legal-links a:hover {
  color: var(--cream);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .impact-grid,
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .impact-header { grid-template-columns: 1fr; gap: 1.5rem; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    grid-auto-flow: dense;
    height: auto;
  }
  .gallery-item-tall { grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-row: span 1; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: 0.25rem auto;
  }

  .give-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .nav-inner { padding: 0.75rem 1.5rem; }
  .nav-logo { height: 56px; width: 130px; }
  .logo-img { height: 56px; }

  .navbar.at-hero.mobile-open {
    background: var(--white);
  }
  .navbar.at-hero.mobile-open .logo-dark  { opacity: 1; }
  .navbar.at-hero.mobile-open .logo-light { opacity: 0; }
  .navbar.at-hero.mobile-open .hamburger span { background: var(--navy); }

  .mobile-menu {
    padding: 1rem 1.5rem 1.5rem;
  }
  .mobile-menu a.mobile-link {
    padding: 0.75rem 0;
    display: block;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero-container { padding-top: 110px; }
  .hero-content { padding-bottom: 3rem; }
  .hero-headline { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 0;
    padding: 1.25rem 1.5rem;
    margin: 0 -2rem;
  }
  .hero-stat { flex: 0 0 50%; padding: 0.75rem 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.5rem; }

  .marquee-track { font-size: 0.85rem; }

  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-img-stack {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: static;
  }
  .mission-img-main {
    position: static;
    width: 100%;
    height: 260px;
    border-radius: var(--r-md);
  }
  .mission-img-accent {
    position: static;
    width: 100%;
    height: 260px;
    border: none;
    border-radius: var(--r-md);
  }
  .events-grid { grid-template-columns: 1fr; }
  .event-img-wrap { height: 200px; }
  .outreach-grid { grid-template-columns: 1fr; }
  .outreach-block { margin-top: 2.5rem; padding-top: 2.5rem; }

  .quote-section { padding: 5rem 0; }
  .quote-mark { font-size: 5rem; }

  .partners-grid { grid-template-columns: 1fr 1fr; }

  .footer-top-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-top-inner .footer-logo { height: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .partner-icon { margin: 0 auto 1rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item { height: 200px; }
  .gallery-overlay { opacity: 1; }
}

@media (max-width: 580px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  .nav-inner { padding: 0.6rem 1rem; }
  .nav-logo { height: 48px; width: 110px; }
  .logo-img { height: 48px; }
  .hamburger span { width: 22px; }

  .hero-container { padding-top: 90px; }
  .hero-content { padding-bottom: 2rem; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-eyebrow { font-size: 0.68rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  .impact-grid,
  .partners-grid { grid-template-columns: 1fr; }
  .impact-card { padding: 1.75rem 1.5rem; }

  .mission-img-stack { grid-template-columns: 1fr; }
  .mission-img-main,
  .mission-img-accent { height: 220px; }
  .mission-feature { padding: 1rem; }

  .step-card { padding: 2rem 1.25rem; }
  .step-emoji { font-size: 2rem; }

  .event-small { padding: 1.25rem; }

  .give-card { padding: 1.75rem; }
  .give-card h3 { font-size: 1.2rem; }

  .footer-main { padding: 3rem 0 2rem; }
  .footer-logo { height: 50px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .gallery-item-tall { height: 240px; }
}
