/* ========================================
   SARU - Healthcare Nonprofit Website
   Design System: Accessible & Ethical
   Typography: Figtree / Noto Sans
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #0E7C5F;
  --color-primary-light: #12a37d;
  --color-primary-dark: #0a5e48;
  --color-primary-bg: #e8f5f0;
  --color-secondary: #2563EB;
  --color-cta: #F97316;
  --color-cta-hover: #ea6c0e;
  --color-bg: #F8FAFC;
  --color-bg-alt: #f1f5f0;
  --color-surface: #ffffff;
  --color-text: #1E293B;
  --color-text-secondary: #475569;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;

  --font-heading: 'Figtree', system-ui, sans-serif;
  --font-body: 'Noto Sans', system-ui, sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);

  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

/* --- Focus --- */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(14, 124, 95, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-white {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.btn-white:hover {
  background: var(--color-primary-bg);
  border-color: var(--color-primary-bg);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* When hero is visible, make header transparent */
.header.hero-visible {
  background: transparent;
  border-bottom-color: transparent;
}

.header.hero-visible .logo-text {
  color: white;
}

.header.hero-visible .nav-links a:not(.btn) {
  color: rgba(255,255,255,0.85);
}

.header.hero-visible .nav-links a:not(.btn):hover {
  color: white;
}

.header.hero-visible .nav-links a:not(.btn)::after {
  background: white;
}

.header.hero-visible .hamburger,
.header.hero-visible .hamburger::before,
.header.hero-visible .hamburger::after {
  background: white;
}

.header.hero-visible .logo-icon svg circle {
  stroke: white;
}

.header.hero-visible .logo-icon svg path {
  stroke: white;
  fill: rgba(255,255,255,0.2);
}

.header.hero-visible .logo-icon svg circle:last-child {
  fill: white;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--color-primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:not(.btn).active {
  color: var(--color-primary);
}

.header.hero-visible .nav-links a:not(.btn).active {
  color: white;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========================================
   HERO - Full Image Background
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 94, 72, 0.82) 0%,
    rgba(14, 124, 95, 0.7) 40%,
    rgba(30, 41, 59, 0.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 var(--space-4xl);
}

.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.section-divider--left {
  margin: 0;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

/* ========================================
   MISSION - Two Column with Images
   ======================================== */
.mission-section {
  background: var(--color-surface);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mission-image-stack {
  position: relative;
}

.mission-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.mission-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.mission-text-col {
  display: flex;
  flex-direction: column;
}

.mission-text {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
}

.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.mission-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
}

/* ========================================
   SERVICES - Cards with Images
   ======================================== */
.services-section {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(14, 124, 95, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: var(--space-lg);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-bg);
  border-radius: var(--radius-md);
  margin: -40px auto var(--space-md);
  position: relative;
  z-index: 2;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--color-primary);
}

.service-icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  color: white;
}

.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========================================
   VALUES
   ======================================== */
.values-section {
  background: var(--color-surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
  position: relative;
}

.value-card:hover {
  background: var(--color-primary-bg);
  border-color: rgba(14, 124, 95, 0.15);
  transform: translateY(-2px);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(14, 124, 95, 0.12);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-card:hover .value-number {
  color: rgba(14, 124, 95, 0.25);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========================================
   SDG
   ======================================== */
.sdg-section {
  background: var(--color-bg);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.sdg-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--sdg-color, var(--color-primary));
  transition: all var(--transition-slow);
}

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

.sdg-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sdg-color, var(--color-primary));
  margin-bottom: var(--space-sm);
}

.sdg-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.sdg-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   SUPPORT / CTA - Image Background
   ======================================== */
.support-section {
  padding: var(--space-3xl) 0;
}

.support-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.support-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 94, 72, 0.9) 0%,
    rgba(14, 124, 95, 0.8) 50%,
    rgba(10, 94, 72, 0.85) 100%
  );
}

.support-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.support-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: white;
  margin: var(--space-sm) 0 var(--space-md);
}

.support-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.support-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========================================
   IMAGE BANNER
   ======================================== */
.image-banner {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.banner-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.banner-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner-img-wrap:hover img {
  transform: scale(1.06);
}

/* ========================================
   ABOUT - with Real Image
   ======================================== */
.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
  top: 24px;
  left: -12px;
  right: 12px;
  bottom: -12px;
}

.about-quote-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: 40px;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-primary);
  z-index: 2;
}

.about-quote-card p {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.about-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer .logo-text {
  color: white;
}

.footer-tagline {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  font-style: italic;
}

.footer-links h4 {
  color: white;
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8125rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.services-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.services-grid [data-animate]:nth-child(6) { transition-delay: 0.3s; }

.values-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.values-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.values-grid [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.values-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }

.sdg-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.sdg-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.sdg-grid [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.sdg-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.sdg-grid [data-animate]:nth-child(6) { transition-delay: 0.3s; }

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

/* Tablet */
@media (max-width: 1024px) {
  .services-grid,
  .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid,
  .about-grid {
    gap: var(--space-2xl);
  }

  .banner-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .mission-img-float {
    width: 160px;
    height: 130px;
    right: -10px;
    bottom: -20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition-slow);
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  /* Force solid nav on mobile even when open */
  .header.hero-visible .nav-links {
    background: var(--color-surface);
  }

  .header.hero-visible .nav-links a:not(.btn) {
    color: var(--color-text-secondary);
  }

  .hero-inner {
    padding: 130px 0 var(--space-3xl);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .mission-img-main {
    height: 280px;
  }

  .mission-img-float {
    width: 140px;
    height: 110px;
    bottom: -15px;
    right: -5px;
  }

  .services-grid,
  .values-grid,
  .sdg-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-quote-card {
    left: 10px;
    right: 10px;
    bottom: -15px;
  }

  .about-content {
    text-align: center;
  }

  .section-divider--left {
    margin: 0 auto;
  }

  .about-content .btn {
    align-self: center;
  }

  .support-card {
    padding: var(--space-xl);
    min-height: 320px;
  }

  .banner-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: auto;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* Small phones */
@media (max-width: 375px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .support-actions {
    flex-direction: column;
  }

  .support-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .service-card-img img,
  .banner-img-wrap img {
    transition: none !important;
  }
}
