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

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 19px;
  line-height: 1.6;
  color: #0b0b0b;
  background: #ffffff;
}

a {
  color: #0d3b66;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #d6d6d6;
}
.site-header .header-inner {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand .brand-mark {
  font-size: 1.25rem;
}
.brand .brand-name {
  font-weight: 700;
  color: #0b0b0b;
  text-decoration: none;
}
.brand .brand-name:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid #d6d6d6;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  z-index: 999;
}
.nav-toggle:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  position: fixed;
  inset: 0px 0 auto 0;
  background: #fff;
  transform: translateY(-110%);
  transition: transform 200ms ease;
  border-bottom: 1px solid #d6d6d6;
  z-index: 900;
}
@media (min-width: 720px) {
  .site-nav {
    position: static;
    transform: none;
    border: 0;
    background: transparent;
  }
}
.site-nav ul {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }
}
.site-nav a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  color: #0b0b0b;
  border-radius: 8px;
}
.site-nav a:hover {
  background: #f2f7fb;
}
.site-nav a:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.site-nav a.btn {
  text-decoration: none;
}
.site-nav.open {
  transform: translateY(0);
  inset: 64px 0 auto 0;
  padding-left: 0.5rem;
}

.section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
@media (min-height: 740px) and (min-width: 720px) {
  .section {
    min-height: 100vh;
    display: grid;
    align-items: center;
  }
}

.container {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
}

.section-hero {
  background: #f2f7fb;
}
.section-hero .hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.3;
  color: #0d3b66;
  margin: 0 0 0.5rem 0;
}
.section-hero .tagline {
  margin: 0 0 1rem 0;
  color: #444;
  font-weight: 600;
}
.section-hero .hero-intro {
  margin: 0 0 1.25rem 0;
  max-width: 65ch;
}
.section-hero .hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-services {
  background: #ffffff;
}
.section-services .service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .section-services .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-services .service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-services .service-list li {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.08);
  list-style: none;
}
.section-services .service-list .service-title {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #0d3b66;
}

.section-about {
  background: #eef6ee;
}
.section-about p {
  max-width: 65ch;
}
.section-about .about-highlights {
  margin: 1rem 0 0 0;
  padding-left: 1.25rem;
}
.section-about .about-highlights li + li {
  margin-top: 0.25rem;
}

.section-faq {
  background: #ffffff;
}
.section-faq .faq details {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.08);
}
.section-faq .faq details + details {
  margin-top: 0.75rem;
}
.section-faq .faq details summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d3b66;
}
.section-faq .faq details summary:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.section-faq .faq details p {
  margin: 0.5rem 0 0 0;
}

.section-contact {
  background: #f2f7fb;
}
.section-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .section-contact .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-contact .form-field {
  display: grid;
  gap: 0.25rem;
}
.section-contact .form-field.form-field-full {
  grid-column: 1/-1;
}
.section-contact .form-field label {
  font-weight: 600;
}
.section-contact .form-field input,
.section-contact .form-field textarea {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  background: #fff;
}
.section-contact .form-field input:focus-visible,
.section-contact .form-field textarea:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.section-contact .form-note {
  color: #444;
  margin: 0.5rem 0 0.75rem 0;
}
.section-contact .form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}
.section-contact .form-status {
  min-height: 1.25rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}

.btn-cta {
  background: #ee6c4d;
  color: #0b0b0b;
  border-color: rgb(242.4461538462, 146.4461538462, 123.5538461538);
}
.btn-cta:hover {
  background: rgb(240.6676923077, 131.0676923077, 104.9323076923);
}

.btn-secondary {
  background: #fff;
  color: #0d3b66;
  border-color: #0d3b66;
}
.btn-secondary:hover {
  background: #f2f7fb;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border: 2px solid #0d3b66;
  background: #fff;
  color: #0d3b66;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
.to-top:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: #0a2540;
  color: #fff;
  padding: 1rem 0;
}
.site-footer a {
  color: #ffdd57;
}
.site-footer .footer-inner {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #0d3b66;
}

@supports (scroll-snap-type: y mandatory) {
  html {
    scroll-snap-type: y proximity;
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-snap-type: none;
    }
  }
  .section {
    scroll-snap-align: start;
  }
}
:root.larger-text body {
  font-size: 24px;
}

/*# sourceMappingURL=styles.css.map */
