:root {
  --ink: #10243a;
  --ink-soft: #405469;
  --paper: #fbfaf5;
  --white: #ffffff;
  --lake: #0b5f75;
  --lake-dark: #073e50;
  --evergreen: #164c3b;
  --sky: #dceff0;
  --gold: #f3b33d;
  --gold-light: #fff2ce;
  --line: #d7e1df;
  --shadow: 0 20px 55px rgba(16, 36, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--lake-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--lake);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.85rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

p {
  margin: 0 0 1.2rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 2.25rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.25rem), 820px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 225, 223, 0.88);
  background: rgba(251, 250, 245, 0.97);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--lake-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--lake);
}

.main-nav .nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--lake-dark);
  color: var(--white);
}

.main-nav .nav-cta:hover {
  background: var(--lake);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: var(--lake-dark);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 35, 45, 0.98) 0%, rgba(3, 35, 45, 0.9) 36%, rgba(3, 35, 45, 0.44) 64%, rgba(3, 35, 45, 0.16) 100%),
    url("hero-northwoods.png") center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 84px solid rgba(243, 179, 61, 0.32);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  align-items: center;
  padding-block: 5.5rem;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  background: #ffd174;
  color: var(--ink);
}

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

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--lake-dark);
}

.button-dark {
  background: var(--lake-dark);
  color: var(--white);
}

.button-dark:hover {
  background: var(--lake);
  color: var(--white);
}

.hero-note {
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 118px;
  padding: 1.45rem 1.65rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.section-sm {
  padding-block: 4rem;
}

.section-tint {
  background: var(--sky);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--lake));
  content: "";
}

.card p {
  color: var(--ink-soft);
}

.card-link {
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.role-card {
  position: relative;
  min-height: 245px;
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.role-card::after {
  position: absolute;
  right: 1.45rem;
  bottom: 1.35rem;
  width: 38px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
}

.role-card p {
  color: var(--ink-soft);
}

.role-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.role-card li {
  margin-bottom: 0.3rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.region-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.region-card h3 {
  color: var(--lake-dark);
}

.region-card p:last-child {
  margin-bottom: 0;
}

.place-line {
  color: var(--lake);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-line {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.category {
  display: flex;
  min-height: 150px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.category:hover {
  transform: translateY(-3px);
  border-color: var(--lake);
  color: var(--lake-dark);
  box-shadow: 0 16px 36px rgba(16, 36, 58, 0.1);
}

.category strong {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.category span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 5rem;
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  content: "0" counter(steps);
  font-weight: 900;
}

.step p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.callout {
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius-lg);
  background: var(--gold-light);
}

.callout-list,
.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.callout-list li,
.check-list li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.7rem;
}

.callout-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  color: var(--evergreen);
  content: "✓";
  font-weight: 900;
}

.location-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--evergreen);
  color: var(--white);
}

.location-band::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(243, 179, 61, 0.18);
  border-radius: 50%;
  content: "";
}

.location-content {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 7vw, 5rem);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.location-list span {
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.page-hero {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(243, 179, 61, 0.28), transparent 27%),
    linear-gradient(135deg, var(--lake-dark), var(--evergreen));
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.page-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.notice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid #e3c878;
  border-radius: var(--radius-md);
  background: var(--gold-light);
}

.notice p {
  margin: 0;
}

.notice strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.resource {
  padding: 2rem;
  border-left: 7px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 36, 58, 0.08);
}

.resource p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-card .label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lake);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card .contact-value {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.prose h2 {
  margin-top: 2.3rem;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 1.8rem;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.55rem;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq summary {
  padding: 1.25rem 2.25rem 1.25rem 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq details p {
  max-width: 760px;
  padding: 0 2rem 1.25rem 0;
  color: var(--ink-soft);
}

.cta-band {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: var(--gold);
  color: var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0.3rem;
}

.cta-inner p {
  margin: 0;
}

.cta-band .button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.cta-band .button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  background: #082c37;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-main p,
.footer-main address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.external-note {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding-block: 1rem;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
  }

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 35, 45, 0.98) 0%, rgba(3, 35, 45, 0.85) 62%, rgba(3, 35, 45, 0.5) 100%),
      url("hero-northwoods.png") center / cover no-repeat;
  }

  .trust-grid,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .split,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-grid,
  .resource-grid,
  .contact-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

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

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

  .container,
  .narrow {
    width: min(calc(100% - 1.35rem), var(--content));
  }

  .main-nav .nav-cta {
    padding: 0.55rem 0.75rem;
  }

  .hero-inner {
    padding-block: 4.5rem 5.5rem;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: -20px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .category {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  }
}

@media print {
  .site-header,
  .site-footer,
  .actions,
  .cta-band {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
