:root {
  --color-primary: #0F172A; /* Deep Navy */
  --color-primary-light: #1E293B;
  --color-accent: #D97706; /* Terracotta Amber */
  --color-accent-hover: #B45309;
  --color-accent-light: #FEF3C7;
  --color-bg: #F8FAFC; /* Warm Off-White */
  --color-surface: #FFFFFF;
  --color-surface-alt: #F1F5F9;
  --color-text: #0F172A; /* High-Contrast Slate */
  --color-text-muted: #475569;
  --color-border: #E2E8F0;
  --color-border-dark: #CBD5E1;
  --color-footer: #111827; /* Obsidian Charcoal */
  --color-footer-text: #E5E7EB;
  --color-footer-muted: #9CA3AF;
  --color-success: #15803D;
  --color-success-bg: #DCFCE7;
  
  --font-serif: "Cinzel", "Playfair Display", Georgia, Cambria, serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: -0.011em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.875rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover, a:focus {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-main {
  flex: 1 0 auto;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-alt {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-stone {
  background-color: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Top Utility Strip */
.top-utility-bar {
  background-color: #0b1120;
  color: #94A3B8;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-utility-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.top-utility-legal .badge-loi {
  background-color: rgba(217, 119, 6, 0.2);
  color: #FBBF24;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-utility-link {
  color: #F8FAFC;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0 0.5rem;
}

.top-utility-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Header & Navigation */
.site-header {
  background-color: var(--color-primary);
  border-bottom: 3px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: #FFFFFF;
}

.brand-wrapper:hover {
  text-decoration: none;
}

.brand-crest {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.badge-official {
  background-color: rgba(255, 255, 255, 0.15);
  color: #F8FAFC;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
}

/* Main Navigation Menu (Single-level, 5 items) */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-link {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 0.875rem;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link:focus {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.nav-link.active {
  color: #FFFFFF;
  background-color: rgba(217, 119, 6, 0.25);
  border-bottom: 2px solid var(--color-accent);
}

.nav-cta-btn {
  background-color: var(--color-accent);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-left: 0.75rem;
  white-space: nowrap;
}

.nav-cta-btn:hover, .nav-cta-btn:focus {
  background-color: var(--color-accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  position: relative;
  transition: background-color 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  left: 0;
  transition: transform 0.2s ease;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  bottom: -7px;
}

.nav-toggle.open .nav-toggle-icon {
  background-color: transparent;
}

.nav-toggle.open .nav-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Breadcrumbs */
.breadcrumbs-bar {
  background-color: #EDF2F7;
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs-list li+li::before {
  content: "›";
  margin-right: 0.5rem;
  color: #94A3B8;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 4.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 44px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #FFFFFF;
}

.btn-outline-light {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.btn-outline-dark {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Standalone Mission Highlight Box (index.php) */
.standalone-mission-box {
  background-color: #FFFFFF;
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.standalone-mission-box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.standalone-mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1E293B;
  font-weight: 450;
  margin-bottom: 0;
}

/* Metric / Stats Bar */
.impact-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.metric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.metric-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1.35;
}

/* 3-Pillar Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.pillar-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Image Card Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

.content-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.content-card-media {
  position: relative;
  overflow: hidden;
}

.content-card-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-card:hover .content-card-media img {
  transform: scale(1.03);
}

.content-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-card-date {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.content-card-title {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.content-card-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.content-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--color-surface);
  font-size: 0.9375rem;
}

.data-table th, .data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.data-table th {
  background-color: #F1F5F9;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: #F8FAFC;
}

.data-table tfoot td {
  font-weight: 700;
  background-color: #F8FAFC;
}

/* Callout Box */
.compliance-box {
  background-color: #EFF6FF;
  border-left: 4px solid #3B82F6;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.compliance-box h4 {
  color: #1E3A8A;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.compliance-box p:last-child {
  margin-bottom: 0;
}

.alert-nonprofit {
  background-color: #FEF3C7;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.alert-nonprofit h4 {
  color: #92400E;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  color: var(--color-text);
  min-height: 44px;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-helper {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

/* Modal Popup (for AJAX form submission) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  text-align: center;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-icon-success {
  width: 64px;
  height: 64px;
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748B;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.modal-close-btn:hover {
  color: var(--color-primary);
  background-color: #F1F5F9;
}

/* Footer (4-Column Mega Matrix) */
.site-footer {
  background-color: var(--color-footer);
  color: var(--color-footer-text);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--color-accent);
}

.footer-matrix {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(217, 119, 6, 0.6);
}

.footer-org-name {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.footer-status-tag {
  display: inline-block;
  background-color: rgba(217, 119, 6, 0.25);
  color: #FBBF24;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-footer-muted);
}

.footer-meta-list li {
  margin-bottom: 0.5rem;
}

.footer-meta-list strong {
  color: #FFFFFF;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.65rem;
}

.footer-nav-list a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--color-accent);
  text-decoration: none;
  transform: translateX(3px);
}

.footer-disclosure-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #CBD5E1;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: var(--color-footer-muted);
}

/* Article & Content Typography */
.article-content {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.article-header h1 {
  margin-bottom: 0.75rem;
}

.article-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #334155;
  font-weight: 450;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pillars-grid, .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-utility-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--color-primary);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem 1.5rem;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow-y: auto;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
  }
  
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    min-height: 48px;
  }
  
  .nav-cta-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }
  
  .pillars-grid, .cards-grid, .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .impact-metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-matrix {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .standalone-mission-box {
    padding: 1.5rem;
    margin-top: -1.5rem;
  }
  
  .article-content {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
