:root {
  --ink: #172033;
  --muted: #5a6475;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #dedbd2;
  --red: #b7202e;
  --red-dark: #8d1722;
  --gold: #d5a11e;
  --blue: #1e5a78;
  --shadow: 0 22px 60px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 246, 242, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 10px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--red-dark);
  background: #fff;
}

main {
  padding: 0 clamp(20px, 5vw, 72px) 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  min-height: calc(100vh - 84px);
  align-items: center;
  padding: 58px 0;
}

.hero-copy,
.page-hero {
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.6vw, 4.65rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary,
button {
  color: #fff;
  background: var(--red);
}

.button.primary:hover,
button:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel,
.sidebar-panel,
.main-panel,
.contact-card,
.contact-form,
.campaign-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(22px, 4vw, 36px);
}

.priority-list,
.check-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.priority-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.priority-list li:first-child {
  border-top: 0;
}

.priority-list span,
.values-grid span {
  color: var(--gold);
  font-weight: 800;
}

.priority-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.intro-section,
.statement-band,
.commitment-section,
.cta-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.intro-section p:last-child,
.statement-band p:last-child,
.commitment-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section > div:last-child p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.values-grid,
.issue-list,
.updates-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.values-grid article,
.issue-list article,
.updates-list article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card p,
.values-grid p,
.issue-list p,
.updates-list p,
.timeline-item p,
.form-note {
  color: var(--muted);
}

.feature-card a {
  color: var(--red-dark);
  font-weight: 800;
}

.issues-section,
.updates-section,
.action-ladder,
.forms-section {
  padding: 66px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.issue-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-list article,
.updates-list article {
  border-top: 4px solid var(--red);
}

.issue-list span,
.updates-list time {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates-section {
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.cta-band {
  align-items: center;
  margin-top: 34px;
  padding: 40px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.cta-band .section-kicker {
  color: #f4c94b;
}

.cta-band p {
  margin-bottom: 0;
  color: #d9deea;
}

.cta-band .button {
  justify-self: end;
}

.page-hero {
  padding: 78px 0 52px;
}

.page-hero.compact {
  padding-bottom: 36px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
}

.content-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.sidebar-panel,
.main-panel,
.contact-card,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.profile-list {
  margin: 0;
}

.profile-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.profile-list div:first-child {
  border-top: 0;
}

.profile-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 38px;
}

.education-grid article {
  padding: 22px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
}

.education-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #fbfaf7;
}

.timeline-date,
.meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-list li {
  padding: 12px 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.session-card {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.session-card > p:not(.session-label) {
  color: var(--muted);
}

.session-label {
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-card .button {
  margin-top: 24px;
}

.single-column {
  grid-template-columns: 1fr;
}

.schedule-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  margin-top: 58px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-band p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.commitment-section {
  margin-top: 34px;
}

.faq-section {
  padding: 66px 0 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
}

.contact-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list li:first-child {
  border-top: 0;
}

.action-ladder ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: action;
}

.action-ladder li {
  position: relative;
  min-height: 180px;
  padding: 58px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: action;
}

.action-ladder li::before {
  content: counter(action, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--gold);
  font-weight: 800;
}

.action-ladder strong,
.action-ladder span {
  display: block;
}

.action-ladder span {
  margin-top: 8px;
  color: var(--muted);
}

.contact-list strong,
.contact-list a,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--red-dark);
  font-weight: 800;
}

.contact-form,
.campaign-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.campaign-form {
  padding: 26px;
}

.campaign-form > p {
  color: var(--muted);
}

.optional {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.check-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.check-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.compliance-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.compliance-note p:last-child,
.privacy-content p {
  color: var(--muted);
}

.privacy-content {
  max-width: 880px;
  padding: 10px 0 40px;
}

.privacy-content article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.privacy-content article:first-child {
  border-top: 0;
}

.privacy-content a,
.text-link,
.site-footer a {
  color: var(--red-dark);
  font-weight: 800;
}

.legal-note {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.94rem;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1200px) {
  .issue-list,
  .action-ladder ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header,
  .content-layout,
  .contact-layout,
  .intro-section,
  .statement-band,
  .commitment-section,
  .schedule-band,
  .compliance-note,
  .cta-band,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .feature-grid,
  .values-grid,
  .session-grid,
  .forms-grid,
  .education-grid,
  .issue-list,
  .updates-list,
  .action-ladder ol,
  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-band .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav a {
    padding-left: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .button,
  button {
    width: 100%;
  }

  .priority-list li {
    grid-template-columns: 1fr;
  }

  .priority-list p {
    grid-column: 1;
  }
}
