/* Hope and Impact — lightweight static pages */
:root {
  --navy: #1E3A5F;
  --navy-deep: #152a45;
  --gold: #D4A84B;
  --gold-soft: #e8c97a;
  --cream: #FBF8F3;
  --ink: #1a1a1a;
  --muted: #5c6570;
  --line: #e6e0d6;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1120px;
  --content: 720px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); margin: 0 0 0.75rem; }
h2 { font-size: 1.35rem; margin: 2rem 0 0.65rem; }
h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul, ol { color: var(--muted); padding-left: 1.25rem; margin: 0 0 1rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--ink); font-weight: 600; }

.announce {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}
.announce span { color: var(--gold-soft); }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 22px; width: auto; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  align-items: center;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
}

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 3.25rem 1.25rem 2.75rem;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.02rem;
}

.main {
  flex: 1;
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}
.main.wide { max-width: 860px; }
.main.prose h2:first-child { margin-top: 0; }
.main.prose p:last-child { margin-bottom: 0; }
.updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(30,58,95,0.04);
}
.card h2, .card h3 { margin-top: 0; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,75,0.2);
}
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.1s;
}
.btn:hover { background: var(--navy-deep); color: var(--white) !important; }
.btn-gold { background: var(--gold); color: var(--navy) !important; }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy) !important; }
.form-note {
  font-size: 0.88rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.highlight {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.25rem 0;
}
.email-link {
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.policy-nav a { text-decoration: none; font-weight: 500; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.25rem 1.5rem;
  margin-top: auto;
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 20px; width: auto; margin-bottom: 0.85rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; max-width: 16rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
