/* ═══════════════════════════════════════════════════
   EXCLUSIVELY FIRST RESPONDERS — Website Styles
   Font: Cormorant Garamond + Montserrat
   Palette: Black, Gold, White, Indigo accent
   ═══════════════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --black-card: #141414;
  --gold: #c8a84e;
  --gold-light: #dfc06a;
  --gold-dark: #a68a3a;
  --gold-glow: rgba(200, 168, 78, 0.15);
  --white: #ffffff;
  --white-soft: #f5f4f0;
  --white-muted: #e8e6e0;
  --cream: #faf8f3;
  --indigo: #2d1b69;
  --indigo-light: #4930a8;
  --indigo-soft: rgba(45, 27, 105, 0.08);
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #7a7a7a;
  --text-light: #e0ddd5;
  --text-white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-reading: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--black);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
}
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo img { height: 56px; width: 56px; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-donate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(200,168,78,0.3);
  transition: all 0.3s !important;
}
.nav-donate::after { display: none !important; }
.nav-donate:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(200,168,78,0.4); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  background: var(--black);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,168,78,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,27,105,0.08) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-left { animation: fadeInUp 1s ease-out; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,78,0.1);
  border: 1px solid rgba(200,168,78,0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  font-family: var(--font-body);
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-family: var(--font-reading);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.75;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { animation: fadeInUp 1s ease-out 0.3s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 16px 36px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(200,168,78,0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200,168,78,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-indigo {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  color: var(--white);
  padding: 16px 36px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(45,27,105,0.3);
}
.btn-indigo:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(45,27,105,0.4); }
.btn-sm { padding: 12px 28px; font-size: 12px; }

/* ─── STAT CARD ─── */
.stat-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--indigo-light), var(--gold));
}
.stat-number { font-family: var(--font-display); font-size: 96px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-body); font-size: 15px; color: var(--text-light); opacity: 0.7; margin-bottom: 28px; font-weight: 500; }
.stat-divider { width: 60px; height: 1px; background: var(--gold); opacity: 0.3; margin-bottom: 28px; }
.stat-detail { font-family: var(--font-reading); font-size: 15px; color: var(--text-light); opacity: 0.55; line-height: 1.65; }
.stat-source { margin-top: 16px; font-size: 12px; color: var(--text-light); opacity: 0.3; font-style: italic; }

/* ─── MISSION STRIP ─── */
.mission-strip {
  background: var(--cream);
  padding: 80px 60px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.mission-strip h2 { font-family: var(--font-display); font-size: 34px; color: var(--text-dark); margin-bottom: 20px; font-weight: 600; }
.mission-strip h2 .gold { color: var(--gold-dark); }
.mission-strip p { font-family: var(--font-reading); font-size: 17px; color: var(--text-body); max-width: 800px; margin: 0 auto; line-height: 1.85; font-weight: 300; }

/* ─── SECTION HELPERS ─── */
.section-label { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.section-sub { font-family: var(--font-reading); font-size: 16px; color: var(--text-muted); max-width: 550px; line-height: 1.75; margin-bottom: 60px; font-weight: 300; }

/* ─── PILLARS ─── */
.pillars { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--white-muted);
  border-radius: 12px;
  padding: 44px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
.pillar-card:hover { border-color: rgba(200,168,78,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.pillar-card:nth-child(1) .pillar-icon { background: var(--gold-glow); border: 1px solid rgba(200,168,78,0.2); }
.pillar-card:nth-child(2) .pillar-icon { background: var(--indigo-soft); border: 1px solid rgba(45,27,105,0.15); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.15); }
.pillar-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--text-dark); margin-bottom: 14px; }
.pillar-card p { font-family: var(--font-reading); font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.pillar-tag { display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.tag-active { background: rgba(52,211,153,0.1); color: #22a06b; }
.tag-building { background: var(--indigo-soft); color: var(--indigo); }
.tag-vision { background: var(--gold-glow); color: var(--gold-dark); }

/* ─── IMAGE BREAK ─── */
.image-break { height: 400px; position: relative; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; }
.image-break-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.75), rgba(10,10,10,0.3)); display: flex; align-items: center; padding: 0 80px; }
.image-break-text { max-width: 500px; }
.image-break-text h2 { font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 12px; font-weight: 600; }
.image-break-text p { font-family: var(--font-reading); font-size: 16px; color: var(--text-light); opacity: 0.7; line-height: 1.7; font-weight: 300; }

/* ─── TECH SECTION ─── */
.tech-section { background: var(--black); padding: 100px 60px; position: relative; overflow: hidden; }
.tech-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(45,27,105,0.15), transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(200,168,78,0.06), transparent 50%); }
.tech-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tech-left .section-label { color: var(--gold); }
.tech-left .section-title { color: var(--white); font-size: 38px; }
.tech-left .section-title .indigo { color: var(--indigo-light); }
.tech-left p { font-family: var(--font-reading); font-size: 16px; color: var(--text-light); opacity: 0.7; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.tech-features { list-style: none; margin: 28px 0; }
.tech-features li { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; font-family: var(--font-reading); font-size: 15px; color: var(--text-light); opacity: 0.8; font-weight: 300; }
.tech-features li::before { content: '✦'; color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.tech-features li strong { font-weight: 600; }

/* ─── APP PREVIEW ─── */
.app-preview { background: linear-gradient(145deg, rgba(45,27,105,0.3), rgba(26,10,62,0.5)); border: 1px solid rgba(200,168,78,0.15); border-radius: 20px; padding: 48px; text-align: center; }
.phone-frame { width: 220px; height: 420px; background: linear-gradient(180deg, #1a0a3e, #0d0620); border-radius: 32px; margin: 0 auto 32px; border: 2px solid rgba(200,168,78,0.2); padding: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(45,27,105,0.2); }
.phone-notch { width: 80px; height: 24px; background: var(--black); border-radius: 0 0 16px 16px; margin: 0 auto 20px; }
.phone-content { text-align: center; padding: 10px; }
.phone-greeting { font-family: var(--font-display); font-size: 16px; color: var(--gold); margin-bottom: 6px; }
.phone-sub { font-size: 11px; color: var(--text-light); opacity: 0.5; margin-bottom: 24px; }
.phone-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; margin-bottom: 10px; text-align: left; }
.phone-card-title { font-size: 9px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 5px; }
.phone-card-text { font-size: 11px; color: var(--text-light); opacity: 0.7; line-height: 1.5; }
.phone-progress { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.phone-progress-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--gold), var(--indigo-light)); border-radius: 2px; }
.app-preview-label { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 6px; }
.app-preview-sub { font-size: 13px; color: var(--text-light); opacity: 0.4; }

/* ─── STORY ─── */
.story-section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.story-quote-block { position: relative; padding: 40px; }
.story-quote-mark { font-family: var(--font-display); font-size: 140px; color: var(--gold); opacity: 0.12; position: absolute; top: -30px; left: 10px; line-height: 1; }
.story-quote { font-family: var(--font-display); font-size: 26px; color: var(--text-dark); line-height: 1.55; position: relative; z-index: 2; margin-bottom: 24px; font-style: italic; }
.story-author { font-family: var(--font-body); font-size: 13px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.story-right p { font-family: var(--font-reading); font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }

/* ─── IMPACT ─── */
.impact { background: var(--cream); border-top: 1px solid var(--white-muted); border-bottom: 1px solid var(--white-muted); padding: 70px 60px; }
.impact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.impact-item h3 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold-dark); margin-bottom: 8px; }
.impact-item p { font-family: var(--font-reading); font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── CTA ─── */
.cta-section { background: linear-gradient(135deg, var(--black), #1a1020, var(--indigo)); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200,168,78,0.08), transparent 60%); }
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: 44px; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.cta-inner h2 .gold { color: var(--gold); }
.cta-inner p { font-family: var(--font-reading); font-size: 17px; color: var(--text-light); opacity: 0.65; margin-bottom: 40px; line-height: 1.75; font-weight: 300; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-crisis { margin-top: 20px; }
.cta-crisis p:first-child { font-family: var(--font-body); font-size: 16px; color: var(--gold); font-weight: 600; }
.cta-crisis p:last-child { font-family: var(--font-reading); font-size: 14px; color: var(--text-light); opacity: 0.5; margin-top: 8px; }

/* ─── PAGE HERO ─── */
.page-hero { background: var(--black); padding: 120px 60px 80px; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: 52px; color: var(--white); margin-bottom: 20px; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero p { font-family: var(--font-reading); font-size: 18px; color: var(--text-light); opacity: 0.65; max-width: 650px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

/* ─── ABOUT: FOUNDER ─── */
.founder-section { padding: 80px 60px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: start; }
.founder-image { width: 100%; aspect-ratio: 3/4; border-radius: 16px; background: linear-gradient(135deg, var(--gold-glow), var(--indigo-soft)); border: 2px solid var(--white-muted); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.founder-image-placeholder { text-align: center; padding: 40px; }
.founder-image-placeholder img { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 16px; }
.founder-image-placeholder p { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); font-style: italic; }
.founder-bio h2 { font-family: var(--font-display); font-size: 36px; color: var(--text-dark); margin-bottom: 8px; }
.founder-bio .founder-title { font-family: var(--font-body); font-size: 13px; color: var(--gold-dark); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.founder-bio p { font-family: var(--font-reading); font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }

/* ─── ABOUT: TEAM ─── */
.team-section { padding: 60px; max-width: 1200px; margin: 0 auto 80px; background: var(--cream); border-radius: 20px; }
.team-section h2 { font-family: var(--font-display); font-size: 36px; color: var(--text-dark); margin-bottom: 12px; }
.team-section > p { font-family: var(--font-reading); font-size: 16px; color: var(--text-muted); margin-bottom: 48px; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { background: white; border-radius: 12px; padding: 36px 28px; text-align: center; border: 1px solid var(--white-muted); transition: all 0.3s; }
.team-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); }
.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--indigo), var(--indigo-light)); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #2d6969, #1b9e69); }
.team-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--text-dark); margin-bottom: 4px; }
.team-card .team-role { font-family: var(--font-body); font-size: 11px; color: var(--gold-dark); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.team-card p { font-family: var(--font-reading); font-size: 14px; color: var(--text-body); line-height: 1.65; font-weight: 300; }

/* ─── CONTACT ─── */
.contact-section { padding: 80px 60px; max-width: 900px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; color: var(--text-dark); margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-glow); border: 1px solid rgba(200,168,78,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text h4 { font-family: var(--font-body); font-size: 12px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text p { font-family: var(--font-reading); font-size: 15px; color: var(--text-body); line-height: 1.6; }
.contact-item-text a { color: var(--indigo); text-decoration: none; font-weight: 500; }
.contact-item-text a:hover { color: var(--gold-dark); }
.contact-form h3 { font-family: var(--font-display); font-size: 28px; color: var(--text-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--white-muted); border-radius: 8px; font-family: var(--font-reading); font-size: 15px; color: var(--text-dark); transition: border-color 0.3s; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--black); padding: 60px 60px 30px; border-top: 3px solid var(--gold); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 48px; }
.footer-brand img { height: 52px; width: 52px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-family: var(--font-reading); font-size: 14px; color: var(--text-light); opacity: 0.45; line-height: 1.7; margin-top: 8px; font-weight: 300; }
.footer-ein { font-family: var(--font-reading); font-size: 13px; color: var(--text-light); opacity: 0.3; margin-top: 8px; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-family: var(--font-reading); font-size: 14px; color: var(--text-light); opacity: 0.45; text-decoration: none; padding: 5px 0; transition: all 0.3s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: var(--font-reading); font-size: 13px; color: var(--text-light); opacity: 0.3; }
.footer-bottom .gold { color: var(--gold); opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero h1 { font-size: 42px; }
  .tech-inner { grid-template-columns: 1fr; }
  .tech-right { display: none; }
  .story-section { grid-template-columns: 1fr; gap: 40px; }
  .founder-section { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .cta-inner h2 { font-size: 32px; }
  .pillars, .mission-strip, .tech-section, .impact, .cta-section { padding-left: 24px; padding-right: 24px; }
  .image-break-overlay { padding: 0 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
