/* ===== VFSA – Violence-Free Schools Alliance ===== */
/* Palette: Navy #1B2A4A · Slate #2C3E6B · Silver #8C9BB5 · Light #E8ECF3 · White #FFF · Red accent #C0392B */

:root {
  --navy: #1B2A4A;
  --slate: #2C3E6B;
  --silver: #8C9BB5;
  --light: #E8ECF3;
  --white: #FFFFFF;
  --red: #C0392B;
  --text: #2D3436;
  --text-light: #636E72;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --max-w: 1140px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(27,42,74,.08);
  --transition: .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--slate); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--light); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
p + p { margin-top: 16px; }
.lead { font-size: 1.15rem; color: var(--text-light); max-width: 720px; margin: 0 auto 32px; }
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: #A93226; color: var(--white); }
.btn--outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--slate); color: var(--white); }
.btn + .btn { margin-left: 12px; }

/* ---- Header / Nav ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 800;
}
.logo span { color: var(--silver); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 600px; margin-bottom: 32px; line-height: 1.8; }
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 60px 0;
}
.stat {
  text-align: center;
}
.stat__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat__number--red { color: var(--red); }
.stat__label {
  font-size: .9rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,42,74,.12); }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; }
.card p { color: var(--text-light); font-size: .95rem; margin-top: 8px; }

/* ---- Values ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.value-item {
  padding: 24px;
  border-left: 3px solid var(--red);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-item h3 { color: var(--navy); }
.value-item p { color: var(--text-light); font-size: .93rem; margin-top: 6px; }

/* ---- Timeline ---- */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--light);
}
.timeline__dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
}
.timeline__content h3 { margin-bottom: 4px; }
.timeline__content p { color: var(--text-light); font-size: .93rem; }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  font-family: var(--font);
  line-height: 1.5;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--silver);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '\2212'; color: var(--red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer__inner {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.8;
}

/* ---- Membership Tiers ---- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.tier:hover { border-color: var(--navy); }
.tier--featured { border-color: var(--red); }
.tier--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tier__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 4px;
}
.tier__price span { font-size: .9rem; font-weight: 400; color: var(--silver); }
.tier__name { font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.tier__desc { font-size: .85rem; color: var(--text-light); margin-bottom: 16px; }
.tier ul { text-align: left; margin-bottom: 20px; }
.tier li {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.tier li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 28px; }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D5DBE5;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* ---- Legislation Summary ---- */
.leg-articles {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.leg-article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
}
.leg-article h3 { color: var(--navy); margin-bottom: 8px; }
.leg-article p { color: var(--text-light); font-size: .93rem; }

/* ---- Blockquote ---- */
.pullquote {
  border-left: 4px solid var(--red);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer p { font-size: .9rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer a:hover { color: var(--white); }
.footer ul li { margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--white);
}
.footer__social a:hover { background: var(--red); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  .nav.open { transform: translateY(0); }
  .btn + .btn { margin-left: 0; }
  .hero { padding: 60px 0 50px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .section { padding: 50px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
