:root {
  --navy-950: #0d2236;
  --navy-900: #132d48;
  --navy-800: #1a3c5d;
  --navy-700: #275171;
  --field-700: #496448;
  --field-600: #5c7758;
  --field-100: #e9efe6;
  --earth-700: #735541;
  --earth-100: #f1e9df;
  --oat-100: #f7f3eb;
  --oat-50: #fbfaf7;
  --white: #ffffff;
  --ink: #1c2833;
  --muted: #5d6872;
  --line: #d9dfdc;
  --line-strong: #bdc9c2;
  --accent: #b1582b;
  --accent-dark: #8f421e;
  --success: #2f6849;
  --error: #a13935;
  --shadow-sm: 0 8px 24px rgba(13, 34, 54, 0.08);
  --shadow-lg: 0 24px 65px rgba(13, 34, 54, 0.14);
  --radius-sm: 0.7rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.7rem;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: var(--navy-800);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-dark);
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  hyphens: none;
  letter-spacing: -0.025em;
  line-height: 1.12;
  overflow-wrap: normal;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 5.6vw, 4.4rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid #e59b61;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.65rem 0.95rem;
  border-radius: 0.45rem;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

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

.section {
  position: relative;
  padding: clamp(4.25rem, 9vw, 7.2rem) 0;
}

.section--tight {
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}

.section--oat {
  background: var(--oat-100);
}

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

.section--navy {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-950);
}

.section--navy h2,
.section--navy h3,
.section--navy a {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.section--navy .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

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

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

.eyebrow--light {
  color: #d6bc9f;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.09rem, 2.2vw, 1.3rem);
}

.section--navy .lead {
  color: rgba(255, 255, 255, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 2px solid var(--navy-900);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 6px 18px rgba(13, 34, 54, 0.12);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--navy-700);
  border-color: var(--navy-700);
  box-shadow: 0 10px 25px rgba(13, 34, 54, 0.18);
  transform: translateY(-1px);
}

.button:disabled {
  border-color: var(--line-strong);
  color: var(--muted);
  background: #e8ece9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.82;
  transform: none;
}

.button--accent {
  border-color: var(--accent);
  background: var(--accent);
}

.button--accent:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

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

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

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

.button--light:hover {
  color: var(--navy-950);
  background: #f2eee7;
  border-color: #f2eee7;
}

.button__arrow {
  font-size: 1.18em;
  line-height: 1;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(19, 45, 72, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(13, 34, 54, 0.04);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 5.35rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.js .header-inner {
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand img {
  width: 73px;
  height: 40px;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 0.03rem;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__line {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-content: center;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.js .nav-toggle {
  display: inline-grid;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.site-nav {
  position: static;
  display: block;
  flex: 1 0 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.js .site-nav {
  position: fixed;
  inset: 5.35rem 0 auto;
  display: none;
  max-height: calc(100vh - 5.35rem);
  overflow-y: auto;
}

.js .site-nav.is-open {
  display: block;
}

.site-nav ul {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
  padding: 0.85rem 0 1.1rem;
  list-style: none;
}

.site-nav li {
  border-bottom: 1px solid var(--line);
}

.site-nav li:last-child {
  border-bottom: 0;
}

.site-nav a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.55rem 0.15rem;
  color: var(--navy-950);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav .nav-contact {
  margin-top: 0.65rem;
  padding-inline: 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  justify-content: center;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: var(--white);
  background: var(--navy-700);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233, 239, 230, 0.88), transparent 55%),
    var(--oat-50);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -9rem;
  bottom: -13rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(73, 100, 72, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(73, 100, 72, 0.035),
    0 0 0 10rem rgba(73, 100, 72, 0.025);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.3rem;
  align-items: center;
  padding-top: clamp(3.2rem, 8vw, 6.2rem);
  padding-bottom: clamp(3.2rem, 8vw, 6.2rem);
}

.hero__copy {
  max-width: 690px;
}

.hero__copy h1 {
  max-width: 780px;
}

.hero:not(.hero--compact) .hero__copy h1 {
  font-size: clamp(2.35rem, 4.25vw, 3.55rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero--compact h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.8rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero__media {
  position: relative;
}

.hero__media > .definition-panel__art {
  min-height: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: #dfe6dc;
  box-shadow: var(--shadow-lg);
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  box-shadow: inset 0 -70px 100px rgba(13, 34, 54, 0.11);
  content: "";
  pointer-events: none;
}

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

.hero__note {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: -2rem 1.2rem 0 auto;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(19, 45, 72, 0.1);
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero__note strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 1.15rem 0;
  gap: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 680;
}

.trust-list li::before {
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  border: 2px solid var(--field-600);
  border-radius: 50%;
  content: "";
}

.path-grid,
.card-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.path-grid > *,
.card-grid > *,
.benefit-grid > *,
.contact-grid > *,
.form-layout > *,
.split > * {
  min-width: 0;
}

.path-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.path-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--field-600);
  content: "";
}

.path-card--earth::before {
  background: var(--earth-700);
}

.path-card__number {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--oat-50);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.path-card p {
  color: var(--muted);
}

.path-card .button-row {
  margin-top: auto;
  padding-top: 1rem;
}

.info-card,
.benefit-card,
.contact-card {
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card p,
.benefit-card p,
.contact-card p {
  color: var(--muted);
}

.info-card__mark,
.benefit-card__mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--navy-950);
  background: var(--field-100);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.benefit-card:nth-child(2n) .benefit-card__mark {
  background: var(--earth-100);
}

.plain-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.85rem;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 1.7rem;
}

.plain-list li::before {
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--field-600);
  box-shadow: 0 0 0 4px var(--field-100);
  content: "";
}

.plain-list strong {
  color: var(--navy-950);
}

.definition-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.definition-panel__copy {
  padding: clamp(2rem, 6vw, 4rem);
  color: rgba(255, 255, 255, 0.8);
}

.definition-panel__copy h2 {
  color: var(--white);
}

.definition-panel__art {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(92, 119, 88, 0.23)),
    var(--navy-900);
}

.field-lines {
  position: absolute;
  inset: 10%;
}

.field-lines span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.field-lines span:nth-child(1) {
  inset: 3% 15% 48% 5%;
  border-radius: 53% 28% 48% 22%;
  transform: rotate(-7deg);
}

.field-lines span:nth-child(2) {
  inset: 40% 5% 5% 25%;
  border-radius: 30% 55% 24% 48%;
  transform: rotate(9deg);
}

.field-lines span:nth-child(3) {
  inset: 20% 45% 15% 30%;
  border-color: rgba(214, 188, 159, 0.55);
  border-radius: 47% 25% 51% 31%;
  transform: rotate(22deg);
}

.field-lines::after {
  position: absolute;
  top: 44%;
  left: 49%;
  width: 0.85rem;
  height: 0.85rem;
  border: 5px solid #d6bc9f;
  border-radius: 50%;
  box-shadow: 0 0 0 0.55rem rgba(214, 188, 159, 0.18);
  content: "";
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1.1rem;
  list-style: none;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 100%;
  padding: 1.55rem 1.4rem 1.55rem 4.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 1.35rem;
  left: 1.25rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  content: counter(steps);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.step h3 {
  font-size: 1.19rem;
}

.step p {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.split__aside {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--oat-50);
}

.split__aside h3 {
  font-size: 1.35rem;
}

.check-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.check-panel__intro {
  padding: clamp(1.7rem, 4vw, 2.7rem);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.check-panel__intro h2 {
  color: var(--white);
}

.self-check {
  display: grid;
  margin: 0;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  gap: 0.75rem;
  border: 0;
}

.check-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: var(--oat-50);
  cursor: pointer;
}

.check-option:hover {
  border-color: var(--line-strong);
  background: var(--field-100);
}

.check-option input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.15rem 0 0;
  accent-color: var(--field-700);
}

.check-result {
  margin: 0.3rem 0 0;
  padding: 0 0.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.dayline li {
  position: relative;
  padding: 0 0 2.1rem 3.6rem;
}

.dayline li:last-child {
  padding-bottom: 0;
}

.dayline li::before {
  position: absolute;
  z-index: 2;
  top: 0.12rem;
  left: 0;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  content: attr(data-step);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.dayline li::after {
  position: absolute;
  top: 2.45rem;
  bottom: 0.15rem;
  left: 1.1rem;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.dayline li:last-child::after {
  display: none;
}

.dayline h3 {
  margin-bottom: 0.35rem;
  font-size: 1.16rem;
}

.dayline p {
  color: var(--muted);
}

.form-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.form-intro {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.79);
  background: var(--navy-950);
}

.form-intro h2,
.form-intro h3,
.form-intro a {
  color: var(--white);
}

.form-intro .direct-contact {
  margin-top: 1.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.direct-contact {
  display: grid;
  gap: 0.35rem;
}

.direct-contact a {
  font-weight: 750;
}

.contact-form {
  padding: clamp(1.2rem, 4vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 0.38rem;
}

.field label,
.field__label {
  color: var(--navy-950);
  font-size: 0.91rem;
  font-weight: 750;
}

.field small {
  color: var(--muted);
  font-size: 0.8rem;
}

.optional {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--white);
}

input,
select {
  min-height: 3.05rem;
  padding: 0.68rem 0.78rem;
}

textarea {
  min-height: 7.7rem;
  padding: 0.75rem 0.78rem;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--navy-700);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(39, 81, 113, 0.12);
  outline: 0;
}

[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(161, 57, 53, 0.11);
}

.field-error {
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 700;
}

.disclosure {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--oat-50);
}

.disclosure__button {
  display: flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: inherit;
  color: var(--navy-950);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.disclosure__button:hover {
  background: var(--field-100);
}

.disclosure__icon {
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.disclosure__icon::before,
.disclosure__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.disclosure__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.disclosure__button[aria-expanded="true"] .disclosure__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.disclosure__panel {
  padding: 0 0.9rem 1rem;
}

.disclosure__panel[hidden] {
  display: none;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.form-actions {
  margin-top: 1.15rem;
}

.form-actions .button {
  width: 100%;
}

.form-status {
  min-height: 1.6rem;
  margin-top: 0.85rem;
  padding: 0;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 680;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.honeypot {
  position: absolute;
  width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.1rem 3.3rem 1.1rem 1.1rem;
  color: var(--navy-950);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy-950);
  content: "+";
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item__answer {
  padding: 0 1.1rem 1.15rem;
  color: var(--muted);
}

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

.legal section {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal h2 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0;
}

.legal address {
  font-style: normal;
}

.legal-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--earth-700);
  color: var(--muted);
  background: var(--earth-100);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.2rem);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025);
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--white);
}

.cta-panel p {
  max-width: 720px;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  background: #091a2a;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.95rem;
  color: var(--white);
}

.footer-brand .brand__line {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
  max-width: 440px;
  font-size: 0.9rem;
}

.footer-block h2 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

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

.footer-bottom p {
  margin: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.1rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.35rem;
  color: var(--line-strong);
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anchor-nav a {
  display: inline-flex;
  padding: 0.48rem 0.76rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.anchor-nav a:hover {
  border-color: var(--navy-700);
  background: var(--field-100);
}

@media (min-width: 600px) {
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list li:nth-child(2n) {
    padding-left: 1.2rem;
    border-left: 1px solid var(--line);
  }

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

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

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

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

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(170px, 0.8fr) minmax(190px, 0.9fr);
  }

  .definition-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .check-panel {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  }

  .form-layout {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (min-width: 920px) {
  .nav-toggle,
  .js .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open,
  .js .site-nav,
  .js .site-nav.is-open {
    position: static;
    display: block;
    flex: 0 1 auto;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    width: auto;
    align-items: center;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
  }

  .site-nav li {
    border: 0;
  }

  .site-nav a {
    min-height: 2.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    font-size: 0.87rem;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--navy-950);
    background: var(--field-100);
  }

  .site-nav .nav-contact {
    margin-top: 0;
    margin-left: 0.35rem;
    padding-inline: 1rem;
  }

  .site-nav .nav-contact:hover,
  .site-nav .nav-contact[aria-current="page"] {
    color: var(--white);
    background: var(--navy-700);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
  }

  .hero:not(.hero--compact) .hero__copy h1 {
    hyphens: none;
    overflow-wrap: normal;
  }

  .hero__image-frame {
    aspect-ratio: 16 / 11;
  }

  .hero--compact .hero__inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  }

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

  .trust-list li {
    padding-inline: 1.1rem;
    border-left: 1px solid var(--line);
  }

  .trust-list li:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .path-grid {
    gap: 1.35rem;
  }

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

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

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

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

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

  .split {
    grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.64fr);
    gap: clamp(2.3rem, 6vw, 5.2rem);
  }

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

@media (min-width: 1200px) {
  .hero--compact .hero__copy h1 {
    font-size: 3.2rem;
    hyphens: none;
    overflow-wrap: normal;
  }
}

@media (max-width: 420px) {
  h1,
  h2,
  h3 {
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .hero--compact .hero__copy h1 {
    font-size: 2.05rem;
    hyphens: none;
    overflow-wrap: normal;
  }

  .eyebrow {
    gap: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .eyebrow::before {
    width: 1.25rem;
  }

  .brand__line {
    display: none;
  }

  .brand img {
    width: 64px;
    height: 35px;
  }

  .header-inner {
    min-height: 4.8rem;
  }

  .js .site-nav {
    inset-block-start: 4.8rem;
    max-height: calc(100vh - 4.8rem);
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.1rem;
  }

  .hero .hero__copy h1 {
    font-size: 1.72rem;
    hyphens: none;
    overflow-wrap: normal;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .anchor-nav,
  .form-actions,
  .nav-toggle {
    display: none !important;
  }

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

  .section,
  .hero__inner {
    padding-block: 1.5rem;
  }

  .hero,
  .section--oat,
  .section--soft,
  .section--navy {
    color: #000;
    background: #fff;
  }

  h1,
  h2,
  h3,
  .section--navy h2,
  .section--navy h3 {
    color: #000;
  }

  a {
    color: #000;
  }
}
