:root {
  --blue: #1f3fa8;
  --blue-dark: #142a72;
  --red: #d8232a;
  --green: #7dc242;
  --ink: #1a1d24;
  --muted: #5a6072;
  --bg: #fdfdfd;
  --card: #f4f6fb;
  --border: #d8ddea;
  --max: 980px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5rem; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

main { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 3rem; }

/* ---- nav ---- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.brand img { display: block; height: 56px; width: auto; }
.primary { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.primary a { color: var(--ink); text-decoration: none; font-weight: 600; }
.primary a:hover { color: var(--blue); text-decoration: underline; }

/* ---- hero ---- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center; margin: 1rem 0 2.5rem;
}
.hero-text h1 { font-size: 2.75rem; color: var(--blue); margin-bottom: 0; }
.hero-text .kicker { color: var(--muted); margin: .25rem 0 1rem; font-weight: 600; letter-spacing: .02em; }
.hero-text .lead { font-size: 1.15rem; }
.hero-img img { width: 100%; height: auto; border-radius: 8px; display: block; }

.hero-image { margin: 0 0 2rem; }
.hero-image a { display: block; overflow: hidden; border-radius: 8px; }
.hero-image img {
  /* Crop strips off the art; % of width so it scales with the image
     (fixed px over-cropped on phones — beheaded Joel). Tuned at desktop:
     30px/50px of a 940px-wide render. */
  width: 100%; height: auto; display: block; margin-top: -3.2%; margin-bottom: -5.3%;
}

.home-statement { margin: 0 0 2.5rem; }

/* ---- anthem video band ---- */
.video-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  margin: 0 0 2.5rem;
}
.video-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden; background: var(--blue-dark);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; padding: 0; border: 0; background: none; cursor: pointer;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%; background: var(--green);
  transition: transform .15s ease;
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play::after {
  content: ""; position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--blue);
}
.video-eyebrow {
  color: var(--green); font-weight: 600; letter-spacing: .14em; font-size: .85rem;
  margin: 0 0 .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.video-copy h2 { color: var(--blue); font-size: 1.8rem; }
.video-blurb { margin: .5rem 0 0; }
@media (max-width: 720px) {
  .video-band { grid-template-columns: 1fr; gap: 1.25rem; }
}

.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.btn {
  display: inline-block; background: var(--blue); color: #fff !important;
  padding: .65rem 1.1rem; border-radius: 6px; text-decoration: none; font-weight: 600;
}
.btn:hover { background: var(--blue-dark); }
.btn.ghost { background: transparent; color: var(--blue) !important; border: 2px solid var(--blue); padding: calc(.65rem - 2px) calc(1.1rem - 2px); }
.btn.ghost:hover { background: var(--blue); color: #fff !important; }

/* ---- status note ---- */
.status-note {
  background: var(--card); border-left: 4px solid var(--blue);
  padding: 1rem 1.25rem; border-radius: 4px; margin: 0 0 2.5rem;
}
.status-note p { margin: 0; }

/* ---- home cards ---- */
.home-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem; text-decoration: none; color: var(--ink);
  transition: transform .1s ease, border-color .1s ease;
}
.card:hover { border-color: var(--blue); transform: translateY(-2px); }
.card h3 { color: var(--blue); margin-bottom: .35rem; }
.card p { margin: 0; color: var(--muted); }

/* ---- prose ---- */
.prose header { margin-bottom: 1.5rem; }
.prose header .kicker { color: var(--muted); font-size: 1.1rem; }
.prose h1 { color: var(--blue); }
.prose p { margin: 0 0 1rem; }
.prose figure { margin: 1.5rem 0; }
.prose figure img { width: 100%; height: auto; border-radius: 8px; display: block; }
.prose figure figcaption { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.prose .signoff { font-weight: 700; color: var(--red); font-size: 1.1rem; }

/* ---- issues list ---- */
.issues { list-style: none; padding: 0; counter-reset: issue; }
.issue {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  counter-increment: issue;
}
.issue h2 { color: var(--blue); }
.issue h2::before {
  content: counter(issue) ". ";
  color: var(--muted);
  font-weight: 400;
}

/* ---- news / events ---- */
.news-list, .event-list { list-style: none; padding: 0; }
.news-list li, .event-list li {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.news-list h2, .event-list h2 { font-size: 1.25rem; color: var(--blue); }
.news-list .meta, .event-list .meta { color: var(--muted); font-size: .95rem; margin: 0 0 .5rem; }
.aside { color: var(--muted); margin-top: 2rem; }

/* ---- contact form ---- */
.form { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: flex; flex-direction: column; font-weight: 600; font-size: .92rem; color: var(--ink); }
.form .opt { color: var(--muted); font-weight: 400; }
.form input, .form textarea {
  margin-top: .3rem; padding: .65rem .75rem;
  border: 1px solid var(--border); border-radius: 6px;
  font: inherit; color: var(--ink); background: #fff;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--blue); border-color: var(--blue);
}
.form button {
  align-self: flex-start;
  background: var(--blue); color: #fff;
  border: 0; padding: .75rem 1.25rem; border-radius: 6px;
  font: inherit; font-weight: 600; cursor: pointer;
}
.form button:hover:not(:disabled) { background: var(--blue-dark); }
.form button:disabled { opacity: .6; cursor: wait; }
#contact-result { margin: 0; min-height: 1.5em; }
#contact-result.ok { color: #136a2c; }
#contact-result.err { color: var(--red); }
.fineprint { color: var(--muted); font-size: .9rem; margin-top: 1.5rem; }

.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  background: #fafbfd;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 1.5rem 1.25rem; text-align: center; }
.footer-inner .tagline {
  font-weight: 800;
  color: var(--blue);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.socials { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: .75rem; }
.socials a { color: var(--blue); text-decoration: none; font-weight: 600; }
.socials a:hover { text-decoration: underline; }
.paid-for { color: var(--muted); font-size: .85rem; margin: 0; }

/* ---- responsive ---- */
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .home-cards { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; }
}
