/* ===== Variables ===== */
:root {
  --navy: #0a1628;
  --navy-mid: #152340;
  --red: #c0392b;
  --red-light: #e74c3c;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --light-grey: #e8e8e4;
  --mid-grey: #888880;
  --text: #1a1a1a;
  --text-light: #555550;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;

  --max-w: 860px;
  --pad: 1.25rem;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: underline; }
a:hover { color: var(--red-light); }

/* ===== Layout helpers ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: 4rem var(--pad);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark a { color: #e8896e; }
.section--alt {
  background: var(--off-white);
}
.section--red {
  background: var(--red);
  color: var(--white);
}
.section--red a { color: var(--white); font-weight: 700; }

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}
.site-nav__wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-nav__logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.wordmark-red { color: var(--red); }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.site-nav__links a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.site-nav__links a:hover { color: var(--white); }
.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--red-light); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem var(--pad) 4rem;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.hero__eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 0;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
}
.hero__subhead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 2.25rem;
  color: #c8d0dc;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-light); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); color: var(--white); }
.hero__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Hero logo band ===== */
.hero__logo-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 1.75rem 0 2rem;
}
.hero__logo-large {
  height: 192px;
  width: 192px;
  border-radius: 20px;
  flex-shrink: 0;
}
.hero__social-group {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.hero__social-pair {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__social-single {
  display: flex;
  align-items: center;
}
.hero__social-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__social-icon {
  height: 44px;
  width: 44px;
  opacity: 0.65;
  filter: brightness(0) invert(1);
}
.hero__ban-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(200, 200, 200, 0.85);
  pointer-events: none;
}
.hero__ban-overlay::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 130%;
  background: rgba(200, 200, 200, 0.85);
  top: -15%;
  left: calc(50% - 2px);
  transform: rotate(-45deg);
  border-radius: 2px;
}

/* ===== Section headings ===== */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section--dark .section-label { color: #e8896e; }
.section--red .section-label { color: rgba(255,255,255,0.7); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== Argument section ===== */
.argument__body {
  max-width: var(--max-w);
  margin: 0 auto;
}
.argument__body p { font-size: 1.05rem; }
.argument__more {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== Stakes section ===== */
.stakes {
  background: var(--navy-mid);
  color: var(--white);
}
.stakes .container { max-width: var(--max-w); }
.stakes__pullquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--off-white);
}

/* ===== FAQ ===== */
.faq { background: var(--off-white); }
.faq .container { max-width: var(--max-w); }
.faq__list { margin-top: 1.5rem; }
.faq__item {
  border-top: 1px solid var(--light-grey);
}
.faq__item:last-child { border-bottom: 1px solid var(--light-grey); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-family: var(--font-sans);
}
.faq__question:hover { color: var(--red); }
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.2s;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq__icon::after { width: 2px; height: 12px; top: 4px; left: 9px; transition: transform 0.2s; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); }
.faq__answer {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 720px;
}
.faq__item.open .faq__answer { display: block; }

/* ===== Take Action ===== */
.action { background: var(--navy); color: var(--white); }
.action .container { max-width: var(--max-w); }
.action__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.action__track {
  background: rgba(255,255,255,0.07);
  border-top: 3px solid var(--red);
  padding: 1.5rem;
}
.action__track h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.action__track p { font-size: 0.9rem; color: #c8d0dc; margin-bottom: 1.1rem; }
.share-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.share-links a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
}
.share-links a:hover { background: rgba(255,255,255,0.1); }

/* ===== Email Capture ===== */
.email-capture { background: var(--red); color: var(--white); }
.email-capture .container { max-width: var(--max-w); }
.email-capture h2 { color: var(--white); }
.email-capture p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.email-form { margin-top: 1rem; }
.email-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.email-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.email-form__field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.email-form input,
.email-form select {
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  width: 100%;
}
.email-form input:focus,
.email-form select:focus {
  outline: 3px solid rgba(255,255,255,0.5);
}
.email-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.email-form__checkbox input { width: auto; margin-top: 3px; }
.email-form__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  display: block;
}
.btn--white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn--white:hover { background: var(--off-white); color: var(--red); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: #888;
  padding: 2.5rem var(--pad);
  font-size: 0.8rem;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
}
.site-footer__nav a {
  color: #888;
  text-decoration: none;
}
.site-footer__nav a:hover { color: var(--light-grey); }
.site-footer__disclaimer {
  line-height: 1.55;
  max-width: 680px;
}
.site-footer__disclaimer strong { color: var(--mid-grey); }

/* ===== Secondary page ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem var(--pad) 2.5rem;
  border-bottom: 4px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: #c8d0dc;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0;
}
.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--pad);
}
.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content ul, .page-content ol {
  margin: 0.5rem 0 1rem 1.25rem;
  font-size: 0.95rem;
}
.page-content li { margin-bottom: 0.4rem; }
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }
.template-box {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  white-space: pre-line;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .site-nav__links { display: none; }
  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    padding: 1rem var(--pad) 1.25rem;
    gap: 0.85rem;
    border-bottom: 3px solid var(--red);
  }
  .nav-toggle { display: flex; }
  .site-nav .container { position: relative; }

  .action__tracks { grid-template-columns: 1fr; gap: 1.25rem; }
  .email-form__row { grid-template-columns: 1fr; }

  .hero__logo-band { gap: 1rem; }
  .hero__social-icon-wrap { width: 50px; height: 50px; }
  .hero__social-icon { height: 28px; width: 28px; }
  .hero__logo-large { height: 120px; width: 120px; }
  .hero__social-group { gap: 0.75rem; }
  .hero__social-pair { gap: 0.75rem; }
}
