:root {
  --blue: #082744;
  --blue-soft: #eef5f8;
  --orange: #e87500;
  --orange-dark: #bd5f00;
  --cream: #f7f1e8;
  --paper: #fcfaf6;
  --white: #ffffff;
  --text: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --shadow: 0 18px 42px rgba(8, 39, 68, 0.1);
  --soft-shadow: 0 10px 24px rgba(8, 39, 68, 0.07);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

p {
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin-bottom: 16px;
  color: var(--blue);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  font-size: 4rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.34);
  outline-offset: 3px;
}

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

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

.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;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container.narrow {
  width: min(850px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 220, 207, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(8, 39, 68, 0.08);
}

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

.site-header .container {
  width: min(1320px, calc(100% - 40px));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  color: var(--blue);
  text-decoration: none;
}

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

.brand span {
  display: grid;
  gap: 2px;
  line-height: 1.12;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
}

.main-nav a {
  padding: 10px 8px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button,
.mobile-actionbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(232, 117, 0, 0.2);
}

.button:hover {
  background: var(--orange-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--cream);
}

.button.blue {
  background: var(--blue);
}

.button.light {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.button.outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.button.small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.hero {
  padding: 66px 0 54px;
  background: linear-gradient(135deg, #fffdfa 0%, #ffffff 46%, #edf5ef 100%);
}

.page-hero {
  padding: 58px 0 48px;
  background: linear-gradient(135deg, #fffdfa 0%, #ffffff 52%, var(--blue-soft) 100%);
}

.hero-grid,
.split-grid,
.form-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 52px;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1.45;
  font-weight: 700;
}

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

.trust-line,
.form-note,
.quiet-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-weight: 760;
}

.hero-media,
.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  object-position: center;
}

.hero-media figcaption,
.image-frame figcaption {
  padding: 16px 18px;
  color: var(--blue);
  font-weight: 780;
}

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

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

.trust-grid article {
  min-height: 102px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

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

.trust-grid span,
.card-kicker,
.fact-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  color: var(--blue);
  line-height: 1.32;
}

.section {
  padding: 76px 0;
}

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

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

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

.section.blue h2,
.section.blue h3,
.section.blue .eyebrow {
  color: var(--white);
}

.section.blue p {
  color: rgba(255, 255, 255, 0.86);
}

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

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

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

.card-grid,
.house-grid,
.motive-grid,
.benefit-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.mini-card,
.form-panel,
.contact-panel,
.faq-item,
.choice-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.card,
.mini-card,
.contact-panel,
.choice-result {
  padding: 24px;
}

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

.entry-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.entry-card .actions {
  margin-top: auto;
  padding-top: 18px;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.image-frame img,
.rounded-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-frame img {
  border-radius: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
}

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

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline li::before {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  content: counter(step);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 3px;
  color: var(--muted);
}

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

.choice-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-weight: 850;
  text-align: left;
  box-shadow: var(--soft-shadow);
}

.choice-card[aria-pressed="true"] {
  border-color: var(--orange);
  background: #fff8ee;
}

.choice-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
}

.choice-result strong,
.choice-result span {
  display: block;
}

.choice-result span {
  color: var(--muted);
}

.form-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 1.24fr);
}

.form-panel {
  padding: 28px;
}

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

.field,
.fieldset {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field.full,
.fieldset.full {
  grid-column: 1 / -1;
}

.field label,
.fieldset legend {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--text);
}

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

[aria-invalid="true"] {
  border-color: #9f2f24;
  box-shadow: 0 0 0 3px rgba(159, 47, 36, 0.1);
}

fieldset {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.check-option,
.privacy-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--text);
  font-weight: 650;
}

.check-option input,
.privacy-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--orange);
}

.optional-box {
  grid-column: 1 / -1;
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.optional-box summary {
  padding: 14px 16px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

.optional-box .form-grid {
  padding: 0 16px 16px;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status.is-error {
  color: #9f2f24;
}

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

.faq-item {
  box-shadow: none;
}

.faq-item summary {
  padding: 18px 20px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-links a,
.contact-links span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  padding: 54px 0 92px;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

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

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

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

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

.mobile-actionbar {
  display: none;
}

@media (max-width: 1320px) {
  .brand {
    min-width: 190px;
  }

  .main-nav a {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 0.86rem;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 1500px) and (min-width: 1081px) {
  .brand {
    min-width: 196px;
  }

  .brand small,
  .phone-link {
    display: none;
  }

  .main-nav a {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .header-actions .button {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-open .main-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .hero-media {
    order: -1;
  }

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

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  :root {
    --container: calc(100% - 30px);
  }

  .container.narrow {
    width: calc(100% - 30px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

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

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero,
  .page-hero,
  .section {
    padding: 46px 0;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .trust-grid,
  .two,
  .three,
  .four,
  .choice-grid,
  .form-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
  }

  .choice-result {
    display: grid;
  }

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

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

  .timeline li {
    grid-template-columns: 1fr;
  }

  .form-panel,
  .card,
  .mini-card,
  .contact-panel,
  .choice-result {
    padding: 20px;
  }

  .mobile-actionbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 160;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(8, 39, 68, 0.13);
  }

  .mobile-actionbar a {
    min-height: 50px;
    padding: 0 10px;
    font-size: 0.92rem;
    box-shadow: none;
  }

  .mobile-actionbar a:last-child {
    background: var(--blue);
  }
}

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

  h2 {
    font-size: 1.65rem;
  }
}

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