:root {
  --navy: #0e2842;
  --navy-900: #0a2035;
  --navy-soft: #173b5c;
  --accent: #8a7a43;
  --accent-dark: #66592e;
  --accent-soft: #f2ecd9;
  --paper: #f8f6ef;
  --white: #ffffff;
  --ink: #172331;
  --muted: #617083;
  --line: #dfe5e9;
  --line-strong: #cfd8df;
  --success: #2d6f58;
  --danger: #9f3f39;
  --shadow: 0 18px 44px rgba(14, 40, 66, 0.12);
  --shadow-soft: 0 10px 28px rgba(14, 40, 66, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(138, 122, 67, 0.5);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 229, 233, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(14, 40, 66, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--accent);
}

.nav-contact {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.header-cta,
.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--navy-900);
}

.button-secondary {
  border-color: rgba(14, 40, 66, 0.18);
  background: var(--white);
  color: var(--navy);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span[aria-hidden="true"] {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(135deg, rgba(242, 236, 217, 0.86), rgba(255, 255, 255, 0.92) 42%, rgba(227, 236, 238, 0.72)),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  min-height: min(760px, calc(100svh - 76px));
  padding: clamp(46px, 6vw, 74px) 0 clamp(38px, 5vw, 62px);
}

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

.hero-grid > *,
.split-grid > *,
.media-grid > *,
.faq-grid > *,
.form-grid > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.15vw, 4.1rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.13rem;
}

.hero-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: #35455b;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

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

.trustline {
  margin: 20px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img,
.image-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(138, 122, 67, 0.18);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  width: min(330px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.hero-visual figcaption strong {
  color: var(--navy);
}

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

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

.trust-grid article {
  display: grid;
  gap: 4px;
  padding: 20px clamp(10px, 2vw, 24px);
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--navy);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section:nth-of-type(even) {
  background: var(--paper);
}

.split-grid,
.media-grid,
.faq-grid,
.form-grid,
.contact-grid {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.split-grid,
.form-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
}

.media-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.faq-grid {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.section-copy p,
.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.centered {
  text-align: center;
}

.check-card,
.highlight-card,
.region-card,
.quote-card,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.check-card {
  padding: clamp(20px, 3vw, 30px);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 850;
}

.choice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #2d3d51;
  cursor: pointer;
}

.choice:first-of-type {
  border-top: 0;
}

.choice input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.check-result {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.check-result span {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.check-result strong {
  color: var(--navy);
}

.check-result p {
  margin: 0;
  color: #4a4f42;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.mini-card,
.profile-list article,
.day-flow li,
.step-list li,
.metrics-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.mini-card,
.profile-list article,
.day-flow li,
.metrics-grid article {
  padding: 22px;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.feature-card p,
.mini-card p,
.profile-list p,
.day-flow p,
.quote-card p,
.region-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.image-card {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #314258;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.icon-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.highlight-card,
.region-card,
.quote-card {
  padding: clamp(22px, 3vw, 32px);
}

.highlight-card {
  border-color: rgba(138, 122, 67, 0.25);
  background: linear-gradient(135deg, var(--white), var(--accent-soft));
}

.day-flow,
.step-list,
.metrics-grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-flow {
  grid-template-columns: repeat(4, 1fr);
}

.day-flow span,
.step-list strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-list li {
  display: grid;
  grid-template-columns: minmax(90px, 0.26fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

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

.metrics-grid strong {
  display: block;
  color: var(--accent-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.contact-band {
  padding: clamp(46px, 7vw, 76px) 0;
  background: var(--navy);
  color: var(--white);
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--white);
}

.contact-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr) auto;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-style: normal;
}

.contact-card a,
.footer-contact a,
.contact-inline a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 18px 20px;
  border: 0;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 16px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-item div {
  padding: 0 20px 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.field,
.field-grid {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(138, 122, 67, 0.12);
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 700;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.field-error,
.form-error {
  min-height: 1.35em;
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 46px 0;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(150px, 0.55fr));
  gap: 28px;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--navy);
}

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

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid p {
  max-width: 320px;
  margin: 16px 0 0;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.legal-page .main-nav {
  justify-content: flex-end;
}

.legal-main {
  min-height: calc(100svh - 260px);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 0;
    max-height: calc(100svh - 94px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .legal-page .site-header {
    grid-template-columns: 1fr;
  }

  .legal-page .main-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    max-height: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .legal-page .main-nav a {
    border-bottom: 0;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split-grid,
  .media-grid,
  .faq-grid,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .trust-grid,
  .feature-grid.three,
  .feature-grid.four,
  .feature-grid.six,
  .day-flow,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 70px;
    left: 12px;
    right: 12px;
  }

  .hero-grid {
    gap: 30px;
    padding: 46px 0 36px;
  }

  h1 {
    font-size: clamp(1.78rem, 7.35vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.6rem, 8vw, 2.35rem);
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-visual figcaption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-grid,
  .feature-grid.three,
  .feature-grid.four,
  .feature-grid.six,
  .day-flow,
  .metrics-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .step-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form {
    padding: 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: none;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow);
  }

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

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  h1 {
    font-size: 1.78rem;
  }
}

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