:root {
  --blue-950: #071a2f;
  --blue-900: #0b2b4c;
  --green-900: #1f4538;
  --green-700: #356a52;
  --wood-700: #815f2d;
  --wood-500: #aa8642;
  --wood-100: #f2eadb;
  --paper: #fbfaf6;
  --soft: #f4f7f2;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5e6f7d;
  --line: #dce5df;
  --shadow: 0 22px 58px rgba(7, 26, 47, 0.13);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link,
.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:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--wood-500);
  color: var(--blue-950);
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(170, 134, 66, 0.48);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(220, 229, 223, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 42px rgba(7, 26, 47, 0.11);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--blue-950);
  font-size: 1.03rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--wood-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active,
.primary-nav a:focus-visible {
  background: var(--soft);
  outline: none;
}

.primary-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--blue-950);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-950);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.96) 0%, rgba(7, 26, 47, 0.82) 46%, rgba(7, 26, 47, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 26, 47, 0.82) 0%, rgba(7, 26, 47, 0.06) 58%);
}

.hero-content {
  padding: 80px 0 34px;
}

.eyebrow,
.section-kicker,
.page-kicker {
  margin: 0 0 14px;
  color: var(--wood-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 4.8vw, 4.4rem);
  line-height: 1.02;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.3vw, 1.35rem);
}

.hero-trust {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

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

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

.button-primary {
  color: var(--white);
  background: var(--blue-950);
}

.hero .button-primary {
  color: var(--blue-950);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.hero-tags,
.trust-track,
.plain-list,
.check-list,
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  margin-top: 18px;
}

.hero-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.trust-bar {
  color: var(--white);
  background: var(--blue-950);
}

.trust-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-track span {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.section {
  padding: clamp(68px, 10vw, 116px) 0;
}

.section-soft {
  background: var(--soft);
}

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

.section-deep,
.cta-section {
  color: var(--white);
  background: var(--blue-950);
}

.section-deep h2,
.section-deep h3,
.section-deep p,
.cta-section h2,
.cta-section h3,
.cta-section p {
  color: var(--white);
}

.section-deep .info-card,
.section-deep .query-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.section h2,
.page-hero h1 {
  color: var(--blue-950);
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 1.05;
}

.section h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.12rem;
  line-height: 1.25;
}

.section p,
.page-hero p {
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-lead,
.section-head p {
  max-width: 760px;
  font-size: 1.07rem;
}

.split,
.decision-grid,
.contact-grid,
.faq-grid,
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-panel,
.sticky-panel,
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

.decision-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.decision-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.decision-list input {
  flex: 0 0 auto;
  margin-top: 5px;
  accent-color: var(--blue-950);
}

.decision-list label:has(input:checked) {
  border-color: rgba(53, 106, 82, 0.72);
  box-shadow: inset 4px 0 0 var(--green-700);
}

.result-box {
  color: var(--white);
  background: var(--blue-950);
  border-color: rgba(255, 255, 255, 0.16);
}

.result-box h3,
.result-box p {
  color: var(--white);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.result-tags span,
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.card-grid,
.wood-grid,
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card,
.wood-card,
.route-card,
.query-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.route-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  color: inherit;
  text-decoration: none;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(53, 106, 82, 0.55);
  box-shadow: var(--shadow);
  outline: none;
}

.route-meta,
.number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--wood-700);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-700);
  content: "";
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.steps li {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--wood-700);
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue-950);
  font-weight: 800;
  text-decoration: none;
}

.article {
  max-width: 790px;
}

.article h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  color: var(--muted);
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-list a {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 18px 20px;
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.privacy-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.privacy-line input {
  width: auto;
  min-height: auto;
  margin-top: 6px;
  accent-color: var(--wood-500);
}

.privacy-line a {
  color: var(--white);
  font-weight: 900;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  min-height: 1.4em;
  margin: 0;
  color: #ffe2dc;
  font-weight: 800;
}

.form-success {
  min-height: 1.4em;
  margin: 0;
  color: #dff3df;
  font-weight: 900;
}

.form-note,
.note-light {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #061524;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer .brand-text strong,
.site-footer h2 {
  color: var(--white);
}

.site-footer .brand-text small {
  color: var(--wood-500);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-950);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .primary-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .trust-track,
  .card-grid,
  .wood-grid,
  .question-grid,
  .steps,
  .footer-grid,
  .split,
  .decision-grid,
  .contact-grid,
  .faq-grid,
  .page-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .hero {
    min-height: calc(100vh - 96px);
  }

  .hero-content {
    padding-top: 96px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .primary-nav {
    top: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 76px 0 38px;
  }

  .hero-tags {
    display: none;
  }

  .hero h1 {
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: clamp(2.05rem, 8.6vw, 2.45rem);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .intro-panel,
  .sticky-panel,
  .contact-card,
  .info-card,
  .wood-card,
  .route-card,
  .query-card {
    padding: 20px;
  }

  body.show-sticky-cta .mobile-sticky-cta {
    display: flex;
  }
}
