:root {
  --paper: #f7f5f0;
  --surface: #ffffff;
  --ink: #15191c;
  --muted: #5d6469;
  --line: #d9d7d0;
  --navy: #16232d;
  --navy-soft: #263945;
  --bronze: #8b6a38;
  --bronze-light: #b99a67;
  --success: #315c46;
  --danger: #7c3434;
  --max: 1180px;
  --measure: 72ch;
  --shadow: 0 18px 48px rgba(22, 35, 45, 0.08);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a {
  color: inherit;
  text-decoration-color: var(--bronze-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { text-decoration-color: currentColor; }

img, svg { max-width: 100%; }

button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 16px;
  border: 2px solid var(--navy);
}

.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-notice {
  margin: 0;
  padding: 9px 20px;
  background: var(--navy);
  color: #f4f0e7;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 215, 208, 0.9);
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.brand-name {
  display: grid;
  line-height: 1.08;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-name span {
  color: var(--muted);
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.site-nav a[aria-current="page"] { color: var(--bronze); }

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 11px 18px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover { background: var(--navy-soft); }

.button--outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button--outline:hover { background: rgba(22, 35, 45, 0.06); }

.button--light {
  background: #f4f0e7;
  color: var(--navy);
}

.hero {
  padding: clamp(66px, 9vw, 116px) 0 clamp(54px, 7vw, 88px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

p { margin: 0 0 1em; }

.lede {
  max-width: 64ch;
  color: #343b40;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.answer {
  max-width: var(--measure);
  border-left: 3px solid var(--bronze);
  padding-left: 20px;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dial {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -1deg, rgba(22,35,45,.4) 0deg 1deg, transparent 1deg 30deg),
    radial-gradient(circle at center, #fff 0 53%, #eeebe3 54% 67%, #fff 68%);
  box-shadow: var(--shadow);
}

.dial::before {
  content: "";
  width: 42%;
  height: 1px;
  background: var(--navy);
  transform: rotate(-42deg);
  transform-origin: right center;
}

.dial::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
}

.dial-label {
  position: absolute;
  max-width: 16ch;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.section--white { background: var(--surface); }
.section--dark { background: var(--navy); color: #e8e4dc; }
.section--dark h2, .section--dark h3 { color: white; }
.section--dark .eyebrow { color: var(--bronze-light); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p { color: var(--muted); }
.section--dark .section-head p { color: #c6cbc9; }

.grid-2, .grid-3 {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.panel {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
}

.panel p, .panel li { color: #454c50; }

.number {
  display: block;
  margin-bottom: 28px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.steps {
  counter-reset: step;
  display: grid;
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step::before {
  content: "0" counter(step);
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.94rem;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.route-table th, .route-table td {
  min-width: 170px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.route-table th {
  background: var(--navy);
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-table tr:last-child td { border-bottom: 0; }

.callout {
  margin: 30px 0 0;
  padding: 24px;
  border: 1px solid var(--bronze-light);
  background: #fbf7ed;
}

.source-list {
  padding-left: 1.25rem;
  columns: 2;
  column-gap: 44px;
}

.source-list li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3, .faq-item p { margin: 0; }

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.form-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }

.field label, .fieldset-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9bab6;
  border-radius: 0;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(139, 106, 56, 0.22);
  border-color: var(--bronze);
}

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

.check {
  display: flex;
  min-height: 42px;
  gap: 9px;
  align-items: center;
  font-size: 0.88rem;
}

.check input { width: 18px; height: 18px; flex: none; }

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--success);
  background: #eef5f0;
}

.form-status[hidden] { display: none; }
.form-status.is-error { border-color: var(--danger); background: #f8eeee; }

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.page-intro {
  max-width: 880px;
  padding: clamp(58px, 8vw, 92px) 0 50px;
}

.page-intro h1 { max-width: 20ch; font-size: clamp(2.5rem, 5.5vw, 4.6rem); }

.meta-line {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  padding: 52px 0 26px;
  background: #0f1921;
  color: #d8dddc;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
  gap: 54px;
}

.footer-grid p { max-width: 62ch; color: #aeb8bb; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
}

.footer-links a { color: #e8eceb; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #33424a;
  color: #9ea9ac;
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    margin: 0;
    padding: 96px 28px 36px;
    display: none;
    align-content: start;
    background: var(--paper);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; font-size: 1.05rem; }
  .site-nav .button { justify-content: center; }
  .nav-toggle { position: relative; z-index: 70; }
  .hero-grid, .section-head, .form-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .dial { width: min(72vw, 390px); margin-inline: auto; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand-name span { display: none; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .grid-2, .form-grid, .checks, .footer-grid, .footer-links, .faq-item { grid-template-columns: 1fr; }
  .faq-item { gap: 8px; }
  .source-list { columns: 1; }
  .panel { padding: 22px; }
  .step { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; }
  .cta-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
