:root {
  color-scheme: light;
  --navy: #1E293B;
  --slate: #2C3E50;
  --gold: #FBBF24;
  --paper: #FFFFFF;
  --soft: #F6F7F9;
  --line: #D9DEE7;
  --ink: #2C3E50;
  --ink-soft: #5C6875;
  --gold-soft: rgba(251, 191, 36, 0.14);
  --navy-soft: rgba(30, 41, 59, 0.08);
  --radius: 8px;
  --logo-blue: url("logo-hero.png?v=20260719-10");
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 5vw;
  border-bottom: 2px solid var(--gold);
  background: var(--slate);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--gold);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  max-width: min(520px, 48vw);
  line-height: 1.08;
}

.brand-name {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-slogan {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  white-space: normal;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 800;
  padding: 0.58rem 0.75rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--gold);
  color: var(--slate);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 4.4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.35rem;
}

h3 {
  font-size: 1.16rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 126px);
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 340px);
  gap: 3rem;
  align-items: center;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}

.hero-logo {
  width: min(340px, 72vw);
  aspect-ratio: 1;
  justify-self: end;
  background-image: var(--logo-blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.22rem;
}

.hero-note {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  padding: 0.76rem 1rem;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--paper);
}

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

.section {
  padding: 4.8rem 0;
}

.section-inner {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

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

.section-heading p,
.page-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro-band,
.muted {
  background: var(--soft);
}

.gold-band {
  background: var(--gold-soft);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 1.35rem 1.6rem;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.fact span {
  color: var(--ink-soft);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.contact-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.35rem;
}

.card {
  min-height: 230px;
}

.card-kicker,
.number {
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card h3,
.card h2 {
  margin-top: 0.65rem;
}

.card p,
.contact-card p,
.cta-panel p,
.timeline p,
.detail-block p {
  color: var(--ink-soft);
}

.text-link,
.card a {
  color: var(--slate);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.split-grid,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 3rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline .number,
.detail-marker {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
}

.timeline h2,
.timeline h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.page-hero {
  padding: 4.8rem 0 4.2rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero-inner {
  max-width: 780px;
}

.page-hero h1 {
  color: var(--navy);
}

.service-list {
  display: grid;
  gap: 0;
}

.detail-block {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.detail-block:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.check-list li::marker {
  color: var(--gold);
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.zone-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  padding: 0.4rem 0.58rem;
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 1rem;
}

.contact-card {
  min-height: 220px;
}

.emergency-text {
  color: var(--navy);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.emergency-band .split-grid {
  align-items: center;
}

.info-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.info-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child {
  border-bottom: 0;
}

.info-table span {
  color: var(--ink-soft);
  font-weight: 800;
}

.form-layout {
  max-width: 900px;
}

.form-card {
  display: grid;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.6rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  color: var(--navy);
  font-weight: 800;
}

.form-field span,
.choice-group legend {
  color: var(--navy);
  font-weight: 850;
}

.form-field strong,
.choice-group strong {
  color: #B45309;
}

.form-field input,
.form-field select,
.other-choice input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.68rem 0.78rem;
}

.form-field input:focus,
.form-field select:focus,
.other-choice input[type="text"]:focus {
  outline: 3px solid rgba(251, 191, 36, 0.34);
  border-color: var(--gold);
}

.form-field small {
  color: var(--ink-soft);
  font-weight: 650;
}

.choice-group {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.choice-group legend {
  padding: 0 0.35rem;
}

.radio-card,
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.radio-card {
  min-height: 44px;
  align-items: center;
}

.radio-card input[type="radio"],
.checkbox-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.other-choice {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  align-items: center;
}

.conditional-panel,
.data-notice {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 1rem;
}

.conditional-panel p,
.data-notice p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.data-notice h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  color: var(--navy);
  font-weight: 850;
}

.form-status.is-error {
  color: #B91C1C;
}

.form-status.is-success {
  color: #166534;
}

.is-hidden,
.honeypot {
  display: none !important;
}

.legal-content h2 {
  margin-top: 2.2rem;
}

.narrow {
  max-width: 800px;
}

.small-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 2rem;
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.footer-inner p {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: start;
}

.footer-inner a {
  color: var(--paper);
  font-weight: 750;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background: var(--soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: 84px 5vw auto 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(251, 191, 36, 0.55);
    border-radius: var(--radius);
    background: var(--slate);
    padding: 0.65rem;
  }

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

  .hero-inner,
  .split-grid,
  .process-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    justify-self: start;
  }

  .grid.three,
  .grid.four,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 82px;
    padding: 0 1rem;
  }

  .brand-logo {
    height: 34px;
    max-width: 56px;
  }

  .brand-text {
    max-width: min(210px, 54vw);
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-slogan {
    font-size: 0.58rem;
    line-height: 1.14;
  }

  .primary-nav {
    inset: 82px 1rem auto 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 2rem, 1120px);
    gap: 1.6rem;
    padding: 3rem 0 2rem;
  }

  .hero-logo {
    width: min(230px, 72vw);
  }

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

  .hero-note {
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .section,
  .page-hero {
    padding: 3.4rem 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .facts,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .detail-block {
    grid-template-columns: 1fr;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .field-grid.two,
  .other-choice {
    grid-template-columns: 1fr;
  }
}
