/* ==========================================================================
   Dedinsky for Judge — Campaign Site
   Brand Kit: Nagawicka Blue, Republican Red, Greatest Gray, Waukesha White
   ========================================================================== */

/* Fonts loaded via HTML <link> for non-render-blocking behavior with font-display:swap */

/* --- Brand Kit Tokens --- */
:root {
  --navy: #1b2a4a;
  --navy-dark: #111d33;
  --navy-light: #243556;

  --red: #a60e0d;
  --red-dark: #8a0b0a;
  --red-light: #c4312f;

  --gray: #c1c2c6;
  --gray-light: #e8e8ea;
  --gray-pale: #f4f4f5;

  --white: #ffffff;
  --off-white: #fafafa;

  --text: #1b2a4a;
  --text-mid: #3d4a5c;
  --text-light: #5a6577;
  --text-muted: #8a8f9a;

  --border: #d8d9dc;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', 'Segoe UI', sans-serif;

  --max-width: 1100px;
  --nav-height: 86px;
  --nav-height-tall: 140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }


/* ==========================================================================
   NAV
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  height: var(--nav-height-tall);
  transition: height 0.25s ease;
}

body.is-scrolled .site-nav {
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.nav-logo img {
  height: 110px;
  width: auto;
  transition: height 0.25s ease;
}

body.is-scrolled .nav-logo img {
  height: 64px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: var(--gray);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(27,42,74,0.07);
}

.nav-links .nav-donate {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.15s;
}

.nav-links .nav-donate:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}


/* ==========================================================================
   HERO — Landing Page
   ========================================================================== */

.hero {
  margin-top: var(--nav-height-tall);
  background: var(--red);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  transition: margin-top 0.25s ease;
}

body.is-scrolled .hero {
  margin-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, var(--red-light) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
}

.hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 460px;
  font-weight: 300;
}

.hero-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo img {
  max-height: 420px;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}


/* ==========================================================================
   PAGE HEADER — Inner Pages
   ========================================================================== */

.page-header {
  margin-top: var(--nav-height-tall);
  background: var(--red);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--navy);
  transition: margin-top 0.25s ease;
}

body.is-scrolled .page-header {
  margin-top: var(--nav-height);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(0,0,0,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 0%, var(--red-light) 0%, transparent 45%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
  font-family: var(--font-heading);
}

.page-header .accent-bar {
  width: 50px;
  height: 3px;
  background: var(--white);
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-header .bar {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 0 auto;
  border-radius: 2px;
}

.section-header--left {
  text-align: left;
}
.section-header--left .bar {
  margin: 0;
}

/* Section backgrounds */
.section--white { background: var(--white); }
.section--light { background: var(--gray-pale); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--red   { background: var(--red); color: var(--white); position: relative; overflow: hidden; }

.section--navy .section-header .overline { color: var(--gray); }
.section--navy .section-header h2 { color: var(--white); }
.section--navy .section-header .bar { background: var(--red); }

.section--red .section-header .overline { color: rgba(255,255,255,0.7); }
.section--red .section-header h2 { color: var(--white); }
.section--red .section-header .bar { background: rgba(255,255,255,0.4); }

.section--red::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(0,0,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, var(--red-light) 0%, transparent 40%);
  pointer-events: none;
}
.section--red .section-inner { position: relative; z-index: 1; }


/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Prose */
.prose {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
}
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--text); }

/* Cards */
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 6px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 16px rgba(27,42,74,0.06);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Highlights sidebar */
.highlights-box {
  background: var(--navy);
  color: var(--white);
  padding: 36px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.highlights-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  padding-bottom: 12px;
}

.highlights-box ul {
  list-style: none;
  padding: 0;
}

.highlights-box li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  position: relative;
  line-height: 1.5;
}

.highlights-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.highlights-box li:last-child { border-bottom: none; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Blockquote */
.pull-quote {
  background: var(--gray-pale);
  border-radius: 6px;
  padding: 28px;
  border-left: 4px solid var(--red);
  margin-top: 24px;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
}

.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Timeline / career entries */
.timeline-entry {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-entry:last-child {
  border-bottom: none;
}

.timeline-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  min-width: 110px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.timeline-entry h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-entry p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Education table */
.edu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  max-width: 700px;
}

.edu-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.edu-table tr:last-child td {
  border-bottom: none;
}

.edu-year {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  width: 80px;
}

/* Support cards */
.support-card {
  padding: 36px;
  background: var(--gray-pale);
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--border);
}

.support-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.support-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.support-card .contact-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.support-card .contact-link:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

/* Donate */
.donate-copy {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}

.donate-embed {
  max-width: 500px;
  margin: 0 auto;
  min-height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.donate-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s, background 0.15s;
  min-height: 96px;
}

.donate-tier:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166,14,13,0.18);
}

.donate-tier-amount {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.donate-tier-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.donate-tier--featured {
  border-color: var(--red);
  background: var(--red);
}

.donate-tier--featured .donate-tier-amount {
  color: var(--white);
}

.donate-tier--featured .donate-tier-tag {
  color: rgba(255,255,255,0.9);
}

.donate-tier--featured:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

@media (max-width: 600px) {
  .donate-tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .donate-tier { padding: 24px 12px; min-height: 88px; }
  .donate-tier-amount { font-size: 28px; }
}

.donate-notice {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--gray-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  text-align: center;
}

.donate-notice-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.donate-notice h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.donate-notice p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.1s;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--red {
  background: var(--red);
  color: #fff;
}
.btn--red:hover { background: var(--red-dark); }

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-dark); }

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { background: var(--gray-pale); }

/* About page photo */
.about-photo {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(27,42,74,0.1);
}

/* Icons (inline SVG, Heroicons-style) */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}

.icon-row:last-child { border-bottom: none; }

.icon-row .icon-svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.icon-row .icon-label {
  flex: 1;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.4;
}

.icon-row .icon-date {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .icon-row { flex-wrap: wrap; }
  .icon-row .icon-date { white-space: normal; width: 100%; padding-left: 44px; }
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--red);
}

.feature-icon .icon-svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

/* Vote page */
.vote-date {
  padding: 40px 28px;
  border: 3px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.vote-date-day {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 10px;
}

.vote-date-main {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
}

.vote-date-context {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.vote-date-time {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.vote-dates {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.vote-dates td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.vote-dates tr:last-child td {
  border-bottom: none;
}

.vote-dates td:first-child {
  color: var(--text-mid);
}

.vote-dates td:last-child {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .vote-date-main { font-size: 44px; }
  .vote-dates td:last-child { white-space: normal; }
}

/* Support form */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.form-row label .required {
  color: var(--red);
}

.form-row label .optional {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166,14,13,0.1);
}

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

.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  min-height: 1em;
}

.form-checkboxes {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  background: var(--white);
}

.form-checkboxes legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0 6px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text-mid);
  cursor: pointer;
}

.check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.support-form button[type="submit"] {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  margin-top: 8px;
}

.support-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  background: #f0f8f0;
  border-left: 4px solid #2d7a2d;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #1a4a1a;
}

.form-error {
  color: var(--red);
  font-size: 14px;
  margin-bottom: 12px;
}

.form-error:empty {
  display: none;
}

/* Endorsements */
.featured-quotes {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.featured-quote {
  background: var(--white);
  padding: 32px 36px;
  border-radius: 8px;
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 20px rgba(27,42,74,0.08);
}

.featured-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.featured-quote-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.featured-quote-author span {
  display: block;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.3px;
  font-size: 12px;
  text-transform: none;
}

.endorser-tier {
  margin-bottom: 56px;
}

.endorser-tier:last-child {
  margin-bottom: 0;
}

.endorser-tier-header {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.endorser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.endorser {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 6px;
  border-left: 3px solid var(--red);
  box-shadow: 0 1px 3px rgba(27,42,74,0.06);
}

.endorser-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.endorser-title {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.endorser-retired {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

/* Endorsement placeholder */
.endorsement-message {
  text-align: center;
  padding: 48px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.endorsement-message h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.endorsement-message p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-dark);
  text-align: center;
  padding: 28px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.site-footer .paid-for {
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer-logo-wrap {
  display: block;
  max-width: fit-content;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 24px;
}

.site-footer-logo {
  display: block;
  height: 100px;
  width: auto;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
  }
  .hero h1 { font-size: 46px; }
  .hero-tagline { margin: 0 auto; }
  .hero-photo { justify-content: center; margin-top: 20px; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }

  .page-header h1 { font-size: 34px; }

  .timeline-row {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 0;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li:last-child {
    border-bottom: none;
  }
  .nav-links.open a {
    display: block;
    padding: 16px 24px;
    color: var(--navy);
    border-radius: 0;
  }
  .nav-links.open .nav-donate {
    margin: 12px 24px;
    text-align: center;
    border-radius: 4px;
    padding: 14px 22px;
  }
  .nav-toggle { display: block; }

  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 19px; }

  .section { padding: 48px 20px; }
  .section-header h2 { font-size: 30px; }

  .nav-logo-text { font-size: 15px; }
}
