:root {
  --yellow: #ffdc00;
  --yellow-soft: #fff5ad;
  --blue: #e6f4fb;
  --ink: #0a0a0a;
  --muted: #46535b;
  --white: #ffffff;
  --line: rgba(10, 10, 10, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px 6px;
  background: var(--yellow);
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.nav-cta {
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: var(--blue);
  border-bottom: 10px solid var(--yellow);
}

.hero::before {
  content: "";
  position: absolute;
  top: 48px;
  right: -110px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 220, 0, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 750px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 28px;
  padding: 72px 0 0;
}

.hero-copy {
  align-self: center;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero h1 span {
  display: inline;
  padding: 0 12px 8px;
  background: var(--yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tagline {
  width: fit-content;
  margin: 0 0 42px;
  padding-bottom: 9px;
  border-bottom: 6px solid var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 700;
}

.hero h2 {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: #27353d;
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover,
.button-dark:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 630px;
}

.hero-people {
  position: absolute;
  z-index: 2;
  right: -55px;
  bottom: -2px;
  width: 690px;
  max-width: none;
}

.hero-landmarks {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -20px;
  width: min(800px, 66vw);
  max-height: 630px;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.48;
}

.local-badge {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 8px;
  width: 136px;
  height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 7px 7px 0 rgba(10, 10, 10, 0.17);
}

.local-badge span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.principles {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.principles-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 138px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.principles article:first-child {
  border-left: 1px solid var(--line);
}

.principles article > span {
  color: var(--yellow);
  font-size: 2.3rem;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--ink);
}

.principles h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

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

.section-heading h2,
.local-inner h2,
.engage-inner h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-heading-left > p:last-child {
  margin-left: 0;
}

.priority-list {
  border-top: 2px solid var(--ink);
}

.priority {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 34px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding 0.2s ease;
}

.priority:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: var(--yellow-soft);
}

.priority-number {
  color: var(--yellow);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px var(--ink);
}

.priority h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
}

.priority p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.vision-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  border-top: 10px solid var(--yellow);
}

.vision-section::after {
  content: "Å";
  position: absolute;
  right: -34px;
  bottom: -190px;
  color: rgba(255, 220, 0, 0.25);
  font-size: 34rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.vision-inner {
  position: relative;
  z-index: 1;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vision-card {
  min-height: 290px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 7px 7px 0 var(--ink);
}

.card-tag {
  width: fit-content;
  margin: 0 0 20px;
  padding: 5px 9px;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vision-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.vision-card > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.candidate-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.candidate-image-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--blue);
}

.candidate-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.18));
}

.candidate-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.candidate-content {
  padding: 26px;
}

.candidate-content h3 {
  width: fit-content;
  margin: -56px 0 12px;
  position: relative;
  z-index: 2;
  padding: 7px 10px;
  background: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.candidate-role {
  min-height: 74px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.candidate-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.candidate-content li {
  position: relative;
  padding-left: 23px;
  font-weight: 700;
}

.candidate-content li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.local-section {
  background: var(--ink);
  color: var(--white);
}

.local-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}

.local-inner h2 {
  color: var(--yellow);
}

.local-inner > div:first-child > p:last-child {
  max-width: 730px;
  margin: 24px 0 0;
  color: #d6dadd;
  font-size: 1.08rem;
  line-height: 1.75;
}

.local-promise {
  padding: 28px;
  border: 2px solid var(--yellow);
  box-shadow: 8px 8px 0 var(--yellow);
}

.local-promise strong,
.local-promise span {
  display: block;
}

.local-promise strong {
  margin-bottom: 14px;
  font-size: 1.6rem;
  line-height: 1.18;
}

.local-promise span {
  color: #d6dadd;
}

.engage-section {
  background: var(--yellow);
}

.engage-inner {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 98px 0;
  text-align: center;
}

.engage-inner h2 {
  margin-bottom: 24px;
}

.engage-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.site-footer {
  background: var(--white);
}

.footer-main {
  width: min(calc(100% - 40px), var(--max));
  min-height: 148px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
}

.footer-main > a:last-child {
  font-weight: 800;
}

.political-ad {
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  background: #f4f4f4;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-inner {
    min-height: 860px;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 68px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-people {
    right: 50%;
    width: min(720px, 92vw);
    transform: translateX(54%);
  }

  .hero-landmarks {
    width: 760px;
    max-height: 520px;
  }

  .local-badge {
    top: 0;
    right: 4%;
  }

  .principles-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .candidate-grid {
    grid-template-columns: 1fr;
  }

  .candidate-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  }

  .candidate-image-wrap {
    height: 430px;
  }

  .candidate-content {
    align-self: center;
  }

  .candidate-content h3 {
    margin: 0 0 12px;
  }

  .candidate-role {
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    border-bottom: 2px solid var(--ink);
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 12px 16px;
    text-align: center;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .local-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 38px 0;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero-inner,
  .principles-inner,
  .section,
  .local-inner,
  .engage-inner,
  .footer-main {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-inner {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15.5vw, 4.6rem);
  }

  .tagline {
    margin-bottom: 30px;
  }

  .hero h2 {
    font-size: 2.25rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 345px;
  }

  .hero-people {
    right: auto;
    left: 50%;
    width: 520px;
    transform: translateX(-49%);
  }

  .hero-landmarks {
    right: -80px;
    width: 620px;
    max-width: none;
    opacity: 0.34;
  }

  .local-badge {
    top: -16px;
    right: 0;
    width: 108px;
    height: 108px;
    font-size: 0.72rem;
  }

  .principles-inner {
    grid-template-columns: 1fr;
  }

  .principles article,
  .principles article:nth-child(3) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .section-heading h2,
  .local-inner h2,
  .engage-inner h2 {
    font-size: 2.8rem;
  }

  .priority {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 26px 6px;
  }

  .priority:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .priority-number {
    font-size: 1.45rem;
  }

  .vision-card {
    min-height: 0;
    padding: 24px;
  }

  .candidate-card {
    display: block;
  }

  .candidate-image-wrap {
    height: 400px;
  }

  .candidate-content h3 {
    margin: -56px 0 12px;
  }

  .local-inner,
  .engage-inner {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
