:root {
  --paper: #f4f6fb;
  --white: #ffffff;
  --ink: #192133;
  --muted: #596577;
  --petrol: #1d3fa6;
  --petrol-dark: #13275f;
  --petrol-bright: #3459bd;
  --orange: #c23e18;
  --orange-dark: #9f2f11;
  --mint: #dbe5ff;
  --line: rgba(29, 34, 36, 0.22);
  --line-light: rgba(255, 255, 255, 0.3);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(244, 246, 251, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: 176px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: white;
  background: var(--orange);
}

.site-nav .nav-cta:hover {
  background: var(--orange-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  min-height: min(760px, calc(100vh - 64px));
  color: white;
  background: var(--petrol);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px max(32px, calc((100vw - var(--content)) / 2)) 96px
    max(24px, calc((100vw - var(--content)) / 2));
}

.status-kicker,
.side-label,
.section-index,
.survey-label,
.contact-label {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.status-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
}

.status-kicker span {
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  line-height: 1;
}

h1 {
  max-width: 900px;
  margin-top: 28px;
  font-size: 5.25rem;
  font-weight: 750;
}

h2 {
  font-size: 3.85rem;
  font-weight: 720;
}

h3 {
  font-size: 1.28rem;
  font-weight: 720;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid transparent;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 740;
  text-decoration: none;
}

.button span {
  font-size: 1.15rem;
}

.button-primary {
  min-width: 210px;
  color: white;
  background: var(--orange);
}

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

.button-dark {
  min-width: 280px;
  color: white;
  background: var(--ink);
}

.button-dark:hover {
  background: var(--petrol);
}

.text-link {
  color: white;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 44px;
  overflow: hidden;
  color: var(--ink);
  background: var(--mint);
}

.hero-side::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -10%;
  width: 92%;
  height: 54%;
  border: 4px solid var(--petrol);
  border-right: 0;
  border-bottom: 0;
  transform: skewY(-9deg);
  pointer-events: none;
}

.side-number {
  margin: 22px 0 -8px;
  color: var(--orange);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 8.5rem;
  font-weight: 800;
  line-height: 0.9;
}

.side-title {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 750;
  line-height: 1.05;
}

.district-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 34px;
}

.district-list span {
  font-size: 0.81rem;
  font-weight: 700;
}

.local-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  color: white;
  background: var(--petrol-bright);
  border-bottom: 1px solid var(--ink);
}

.local-strip span {
  padding: 12px 28px;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.local-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.content-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 56px;
  max-width: var(--content);
  padding: 112px 24px;
  margin: 0 auto;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.section-index {
  padding-top: 8px;
  color: var(--muted);
}

.section-copy {
  min-width: 0;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.copy-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-columns .large-copy {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.45;
}

.examples-section {
  background: var(--white);
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
}

.example-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.example-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--line);
}

.example-list li:nth-child(odd) {
  padding-right: 30px;
}

.example-list li:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.example-list span {
  grid-row: span 2;
  padding-top: 3px;
  color: var(--orange);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 750;
}

.example-list strong {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.example-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-section {
  color: white;
  background: var(--petrol-dark);
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
}

.process-section .section-index {
  color: rgba(255, 255, 255, 0.58);
}

.process-list {
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
  border-top: 2px solid white;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-number {
  color: var(--mint);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.83rem;
  font-weight: 750;
}

.process-list p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.process-state {
  padding: 5px 8px;
  border: 1px solid var(--line-light);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.process-state.current {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.survey-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 72px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background: var(--mint);
}

.survey-label {
  margin-bottom: 18px;
}

.survey-copy h2 {
  max-width: 780px;
}

.survey-copy > p:not(.survey-label, .survey-note) {
  max-width: 680px;
  margin: 26px 0 30px;
  font-size: 1.14rem;
}

.survey-note {
  max-width: 630px;
  margin: 20px 0 0;
  font-size: 0.84rem;
}

.flyer-preview {
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(29, 34, 36, 0.22);
  transform: rotate(1.5deg);
}

.flyer-preview img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  filter: hue-rotate(42deg) saturate(1.08);
}

.flyer-preview figcaption {
  padding: 10px 4px 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.principle-grid {
  display: grid;
  margin-top: 56px;
  border-top: 2px solid var(--ink);
}

.principle-grid article {
  display: grid;
  grid-template-columns: 130px 190px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.principle-grid span {
  color: var(--orange);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
}

.principle-grid h3 {
  margin: 0;
}

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

.contact-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px 56px;
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
  color: white;
  background: var(--petrol);
}

.contact-label {
  grid-row: span 2;
  padding-top: 8px;
  color: var(--mint);
}

.contact-section h2 {
  max-width: 760px;
}

.contact-mail {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: white;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-mail:hover {
  color: var(--mint);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 32px 56px;
  align-items: center;
  padding: 30px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 750;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.legal-page {
  width: min(920px, calc(100% - 48px));
  min-height: calc(100vh - 148px);
  padding: 88px 0 112px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-top: 18px;
  font-size: 4.4rem;
}

.legal-page h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.legal-page p,
.legal-page li {
  max-width: 72ch;
  color: var(--muted);
}

.legal-page a {
  text-underline-offset: 3px;
}

.notice {
  margin: 36px 0;
  padding: 18px 0 18px 20px;
  border-left: 5px solid var(--orange);
  color: var(--ink);
  font-weight: 650;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: 620px;
    padding: 84px 24px;
  }

  .hero-side {
    min-height: 360px;
    padding: 52px 24px;
  }

  .side-number {
    font-size: 7rem;
  }

  .content-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 76px 24px;
  }

  .contact-label {
    grid-row: auto;
  }

  .survey-section {
    gap: 46px;
    padding: 76px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .brand {
    width: 154px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-main {
    min-height: 560px;
    padding: 66px 20px 72px;
  }

  h1 {
    margin-top: 24px;
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-side {
    min-height: 330px;
    padding: 46px 20px;
  }

  .local-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .local-strip span {
    flex: 0 0 auto;
    padding: 11px 18px;
  }

  .copy-columns,
  .example-list,
  .survey-section {
    grid-template-columns: 1fr;
  }

  .copy-columns {
    gap: 22px;
    margin-top: 34px;
  }

  .example-list {
    margin-top: 38px;
  }

  .example-list li:nth-child(odd),
  .example-list li:nth-child(even) {
    padding: 19px 0;
    border-left: 0;
  }

  .process-list {
    margin-top: 38px;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .process-state {
    grid-column: 2;
    justify-self: start;
  }

  .survey-section {
    display: grid;
    padding: 68px 20px;
  }

  .button-dark {
    min-width: 0;
    width: 100%;
  }

  .flyer-preview {
    width: min(100%, 420px);
    justify-self: center;
    transform: none;
  }

  .principle-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .contact-mail {
    font-size: 1.05rem;
  }

  .legal-page {
    width: calc(100% - 40px);
    padding: 64px 0 84px;
  }

  .legal-page h1 {
    font-size: 3.2rem;
  }
}

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