@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #1B2A4A;
  --navy-dark: #111B30;
  --navy-mid: #243558;
  --blue: #2B6CB0;
  --blue-light: #3B82C4;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --gray-light: #E8E6E1;
  --gray-mid: #9A9590;
  --gray-dark: #4A4845;
  --text: #1A1917;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .star { color: var(--gold); font-size: 18px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-light) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(43,108,176,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--white); border-color: var(--white); }

.hero-phone {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-phone-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-phone-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.hero-phone-number:hover { color: var(--gold); }

.hero-phone-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* PILLARS STRIP */
.pillars {
  background: var(--navy);
  padding: 64px 40px;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.pillar {
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:hover::before { opacity: 1; }

.pillar-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  color: rgba(201,168,76,0.15);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

.pillar h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* SECTIONS */
section { padding: 96px 40px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.section-body {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* ABOUT */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-right { padding-top: 16px; }

.about-block {
  margin-top: 40px;
  padding: 32px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.about-block h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.about-block p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 32px 24px;
  background: var(--navy-dark);
  color: var(--white);
}

.stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* SERVICE AREA */
.service-area { background: var(--white); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.neighborhood-list { list-style: none; }

.neighborhood-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 16px;
  color: var(--navy-dark);
  font-weight: 400;
}

.neighborhood-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: 2px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
}

.map-placeholder {
  background: var(--navy-dark);
  border-radius: 2px;
  padding: 60px 40px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.map-placeholder svg { opacity: 0.3; }

/* VOLUNTEER */
.volunteer { background: var(--off-white); }

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.volunteer-form {
  background: var(--white);
  padding: 48px;
  border-top: 3px solid var(--blue);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea { height: 100px; resize: vertical; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-dark);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--blue); }

.volunteer-info { padding-top: 8px; }

.requirements {
  list-style: none;
  margin-top: 24px;
}

.requirements li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.5;
  font-weight: 300;
}

.req-check {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: white;
}

/* CONTACT */
.contact { background: var(--navy-dark); }

.contact .section-title { color: var(--white); }
.contact .section-label { color: var(--gold); }
.contact .section-label::after { background: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}

.contact-primary {
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.contact-primary-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-phone-big {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.contact-phone-big:hover { color: var(--gold); }

.contact-avail {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.contact-emergency {
  padding: 16px;
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.2);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.contact-emergency strong { color: rgba(255,120,120,0.9); }

.contact-secondary { padding-top: 8px; }

.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-item-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.contact-item-value {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.contact-item-value:hover { color: var(--gold); }

.contact-item-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* FOOTER */
footer {
  background: #0A1020;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* PAGE HEADER */
.page-header {
  background: var(--navy-dark);
  padding: 120px 40px 64px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(43,108,176,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.page-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  font-weight: 700;
  margin-top: 16px;
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  background: rgba(43,108,176,0.1);
  border: 1px solid rgba(43,108,176,0.3);
  color: rgba(255,255,255,0.8);
  padding: 16px;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-phone { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-phone-number { font-size: 22px; }

  .pillars-inner { grid-template-columns: 1fr; }
  .pillar { padding: 32px 24px; }

  section { padding: 64px 20px; }

  .about-grid,
  .area-grid,
  .volunteer-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .volunteer-form { padding: 32px 24px; }

  .page-header { padding: 100px 20px 48px; }

  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}
