/* ============================================================
   SYANA — Sikh Youth Alliance of North America
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700;800&family=Noto+Sans+Gurmukhi:wght@400;500;600;700&display=swap');

:root {
  /* Navy */
  --navy-900: #0E1A36;
  --navy-800: #14254A;
  --navy-700: #1C3268;
  --navy-600: #2A4684;
  --navy-500: #3D5DA0;
  --navy-300: #97A8C9;
  --navy-100: #DCE2EE;

  /* Kesri */
  --kesri-700: #D85A14;
  --kesri-500: #F08740;
  --kesri-300: #F6B585;
  --kesri-100: #FCE2CD;

  /* Basanti */
  --basanti-700: #B8881A;
  --basanti-500: #F2C94C;
  --basanti-400: #F6D770;
  --basanti-300: #F9E195;
  --basanti-100: #FCEFC2;

  /* Cream */
  --cream-100: #FFFFFF;
  --cream-200: #FBF7EE;
  --cream-300: #F4EEDF;
  --cream-400: #E9DFC6;

  /* Ink */
  --ink-900: #1A1A1F;
  --ink-700: #3F3D44;
  --ink-500: #6B6873;
  --ink-400: #8E8B95;
  --ink-300: #B7B4BE;
  --ink-200: #D8D5DD;

  --logo-gray: #5A5A5A;
  --teal-500: #2E8488;
  --teal-100: #CFE3E4;

  /* Semantic */
  --bg:         var(--cream-200);
  --bg-alt:     var(--cream-300);
  --surface:    var(--cream-100);
  --fg-1:       var(--ink-900);
  --fg-2:       var(--ink-700);
  --fg-3:       var(--ink-500);
  --fg-4:       var(--ink-400);
  --border:     var(--cream-400);

  /* Fonts */
  --font-display: 'Lora', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-hand:    'Allura', 'Snell Roundhand', 'Apple Chancery', cursive;
  --font-gurmukhi:'Noto Sans Gurmukhi', 'Lora', serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(20, 37, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 37, 74, 0.08);
  --shadow-md: 0 6px 16px rgba(20, 37, 74, 0.10);
  --shadow-lg: 0 14px 32px rgba(20, 37, 74, 0.14);
  --shadow-xl: 0 24px 56px rgba(20, 37, 74, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-2);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: var(--navy-800); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--kesri-700); }
h1, h2, h3, h4, p { margin: 0; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.btn:hover { opacity: 0.88; color: inherit; }
.btn-primary   { background: var(--basanti-500); color: var(--navy-900); font-size: 15px; }
.btn-dark      { background: var(--navy-700); color: #fff; font-size: 15px; }
.btn-dark-alt  { background: var(--navy-800); color: var(--cream-100); font-size: 15px; }
.btn-donate    { background: var(--basanti-500); color: var(--navy-900); font-size: 13px; padding: 9px 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out);
}
.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .logo { height: 36px; display: block; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-1);
  text-decoration: none;
}
.nav-links a.active { color: var(--basanti-700); }
.nav-links a:hover  { color: var(--kesri-700); }

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
}
.mobile-nav.open { display: block; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 54, 0.5);
}
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--cream-200);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 16px;
}
.mobile-nav-drawer a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-1);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-drawer a.active { color: var(--basanti-700); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: scaleIn 1.2s var(--ease-out) both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,54,0.72) 0%, rgba(14,26,54,0.35) 50%, rgba(14,26,54,0.15) 100%);
}
.hero-content {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
  color: var(--cream-200);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream-100);
  margin: 18px 0 22px;
  max-width: 800px;
  animation: fadeUp 0.8s 0.2s var(--ease-out) both;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--basanti-300);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.86);
  max-width: 520px;
  margin: 0 0 32px;
  animation: fadeUp 0.8s 0.4s var(--ease-out) both;
}
.hero-cta { animation: fadeUp 0.8s 0.6s var(--ease-out) both; }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: 48px 32px;
  background: var(--cream-300);
  text-align: center;
}
.mission-inner {
  max-width: 880px;
  margin: 0 auto;
}
.mission-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.55;
  color: var(--fg-1);
  margin: 18px 0 0;
  text-wrap: balance;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { padding: 64px 0 80px; background: var(--cream-200); }
.programs .section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 12px 0 48px;
}

.program-row {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
  align-items: stretch;
}
.program-row-reverse { flex-direction: row-reverse; }

.program-img {
  flex: 3;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}
.program-row-reverse .program-img {
  flex: 2;
  min-height: 240px;
  max-height: 300px;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.program-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 0;
}
.program-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--kesri-700);
}
.program-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  color: var(--fg-1);
  margin: 8px 0 12px;
}
.program-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 8px;
}
.program-meta {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0 0 20px;
}
.program-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-700);
  text-decoration: none;
}
.program-link:hover { color: var(--kesri-700); }

.program-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 64px;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-section { padding: 96px 0; background: var(--navy-800); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   DATES
   ============================================================ */
.dates { padding: 96px 0; background: var(--cream-300); }
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.date-card {
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.date-card-header {
  background: var(--navy-800);
  padding: 20px 24px;
}
.date-card-date {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--basanti-500);
}
.date-card-body { padding: 24px; }
.date-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.date-card-location {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
}

/* ============================================================
   MOSAIC
   ============================================================ */
.mosaic { padding: 96px 0; background: var(--cream-200); }
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.mosaic-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mosaic-tall { grid-row: 1 / 3; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--navy-700);
  padding: 64px 32px;
  color: var(--cream-200);
}
.testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--cream-100);
  margin: 18px 0 28px;
  text-wrap: pretty;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--basanti-300);
  font-weight: 600;
}

/* ============================================================
   SCHOLARSHIP
   ============================================================ */
.scholarship { background: var(--basanti-500); padding: 64px 32px; }
.scholarship-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.scholarship h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.scholarship p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-800);
  max-width: 520px;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing { background: var(--cream-200); padding: 96px 0; }
.closing-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.closing-img {
  flex: none;
  width: 360px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.closing-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.closing-text { flex: 1; }
.closing-hand {
  font-family: var(--font-hand);
  font-size: 36px;
  color: var(--logo-gray);
  line-height: 1;
  margin-bottom: 12px;
}
.closing-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 20px;
}
.closing-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 0 12px;
}
.closing-text p + .btn { margin-top: 20px; }

/* ============================================================
   ABOUT PAGE — Opener
   ============================================================ */
.about-opener { padding: 100px 0 0; background: var(--cream-200); }
.about-opener h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 0;
  max-width: 800px;
  animation: fadeUp 0.8s 0.2s var(--ease-out) both;
}
.about-opener h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy-600);
}

/* ---- Founders ---- */
.founders { padding: 48px 0 0; background: var(--cream-200); }
.founders-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.founders-photo img {
  width: 100%; height: 520px;
  object-fit: cover;
  object-position: center 25%;
}
.founders-card {
  position: relative;
  max-width: 560px;
  margin: -80px 0 0 48px;
  background: var(--cream-100);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founders-card .hand-label {
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--logo-gray);
  line-height: 1;
  margin-bottom: 8px;
}
.founders-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.founders-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 12px;
}
.founders-card p:last-child { margin-bottom: 0; }

/* ---- Timeline ---- */
.timeline { padding: 96px 0; background: var(--cream-200); }
.timeline-track {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 32px;
}
.timeline-line {
  position: absolute;
  left: 11px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: var(--basanti-500);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -27px;
  top: 6px;
  width: 12px; height: 12px;
  background: var(--navy-800);
  border-radius: 50%;
  border: 3px solid var(--basanti-500);
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.timeline-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 600px;
}

/* ---- Values ---- */
.values { background: var(--navy-700); padding: 96px 32px; }
.values-header { text-align: center; margin-bottom: 48px; }
.values-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--cream-100);
  margin: 12px 0 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.value-card .value-icon {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--basanti-500);
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--cream-100);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.7);
}

/* ---- Sevaadaars ---- */
.sevaadaars { padding: 96px 0; background: var(--cream-200); }
.sevaadaars-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.sevaadaars-text { flex: 1; }
.sevaadaars-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 12px 0 20px;
}
.sevaadaars-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 0 12px;
}
.sevaadaars-text p + .btn { margin-top: 20px; }
.sevaadaars-img {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sevaadaars-img img { width: 100%; height: 400px; object-fit: cover; }

/* ---- Impact Stats ---- */
.stats { background: var(--cream-300); padding: 64px 32px; }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--navy-800);
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-3);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--cream-200); padding: 64px 32px 24px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { height: 38px; filter: invert(1) brightness(2.4); margin-bottom: 14px; }
.footer-desc {
  font-size: 14px;
  color: rgba(251, 247, 238, 0.7);
  line-height: 1.55;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--basanti-500);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  color: rgba(251, 247, 238, 0.85);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.85;
}
.footer-link:hover { color: var(--basanti-500); }
.footer-address {
  color: rgba(251, 247, 238, 0.85);
  font-size: 14px;
  line-height: 1.85;
}
.footer-bottom {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 247, 238, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(251, 247, 238, 0.5);
}
.footer-gurmukhi {
  font-family: var(--font-gurmukhi);
  font-size: 16px;
  color: rgba(251, 247, 238, 0.7);
}

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

/* Tablet & small desktop */
@media (max-width: 900px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding-top: 90px; padding-bottom: 60px; }

  /* Programs */
  .program-row,
  .program-row-reverse { flex-direction: column; gap: 20px; }
  .program-img { min-height: 220px !important; max-height: none !important; flex: none !important; height: 300px; }
  .program-row-reverse .program-img { min-height: 220px; max-height: none; height: 360px; }
  .program-row-reverse .program-img img { object-position: center bottom; }
  .program-text { flex: none; justify-content: flex-start; padding: 0; }
  .programs { padding: 48px 0 64px; }

  /* Mosaic */
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .mosaic-tall { grid-row: 1 / 3; }
  .mosaic { padding: 64px 0; }

  /* Dates */
  .dates-grid { grid-template-columns: 1fr; }
  .dates { padding: 64px 0; }

  /* Video */
  .video-section { padding: 64px 0; }

  /* Testimonial */
  .testimonial { padding: 48px 20px; }

  /* Closing */
  .closing { padding: 64px 0; }
  .closing-inner { flex-direction: column; }
  .closing-img { width: 100%; height: 280px; }

  /* Scholarship banner */
  .scholarship { padding: 48px 20px; }
  .scholarship-inner { flex-direction: column; text-align: center; }
  .scholarship p { margin: 0 auto; }

  /* Footer */
  .site-footer { padding: 48px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* About: Founders */
  .founders-card { margin: -40px 16px 0; max-width: 100%; padding: 24px; }
  .founders-photo img { height: 360px; }

  /* About: Sevaadaars */
  .sevaadaars { padding: 64px 0; }
  .sevaadaars-inner { flex-direction: column; }
  .sevaadaars-img img { height: 280px; }

  /* About: Values */
  .values { padding: 64px 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* About: Stats */
  .stats { padding: 48px 20px; }
  .stats-inner { gap: 32px; }

  /* About: Timeline */
  .timeline { padding: 64px 0; }

  /* About: Opener */
  .about-opener { padding: 90px 0 0; }
}

/* Phone */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Hero */
  .hero { min-height: 420px; }
  .hero-content { padding-top: 80px; padding-bottom: 48px; }
  .hero-sub { font-size: 16px; }

  /* Mission */
  .mission { padding: 36px 16px; }

  /* Programs */
  .programs { padding: 40px 0 48px; }
  .program-row { margin-bottom: 40px; }
  .program-divider { margin: 0 0 40px; }

  /* Mosaic */
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }
  .mosaic-tall { grid-row: auto; }

  /* Footer */
  .site-footer { padding: 40px 16px 16px; }
  .footer-grid { grid-template-columns: 1fr; }

  /* About: Values */
  .values-grid { grid-template-columns: 1fr; }

  /* About: Stats */
  .stats-inner { flex-direction: column; gap: 24px; }

  /* About: Founders */
  .founders-photo img { height: 260px; }
  .founders-card { margin: -32px 12px 0; padding: 20px; }
  .founders { padding: 32px 0 0; }

  /* About: Opener */
  .about-opener { padding: 80px 0 0; }
}
