:root {
  --navy: #173f63;
  --navy-deep: #0f2d48;
  --blue: #6daedb;
  --blue-light: #dff0fc;
  --blue-pale: #f3f9fe;
  --cream: #fffaf3;
  --white: #ffffff;
  --ink: #1b2d3e;
  --muted: #536575;
  --line: #cbddea;
  --success: #1b6848;
  --danger: #9a2d2d;
  --shadow: 0 18px 50px rgba(23, 63, 99, 0.12);
  --shadow-soft: 0 10px 30px rgba(23, 63, 99, 0.08);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --container: 1180px;
  --base-font-size: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: var(--base-font-size);
}

html.large-text {
  --base-font-size: 21px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

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

.utility-bar {
  color: var(--navy-deep);
  background: var(--blue-pale);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.text-controls {
  display: flex;
  gap: 8px;
}

.text-control {
  min-width: 40px;
  min-height: 34px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.text-control[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
}

.text-control-large {
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(203, 221, 234, 0.85);
  backdrop-filter: blur(12px);
}

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

.brand {
  flex: 0 1 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.primary-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-navigation a {
  min-height: 46px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
}

.primary-navigation a:hover {
  background: var(--blue-pale);
}

.menu-button {
  display: none;
  min-height: 48px;
  padding: 8px 14px;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 24px;
  height: 3px;
  display: block;
  border-radius: 4px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(23, 63, 99, 0.22);
}

.button-primary:hover {
  background: var(--navy-deep);
}

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

.button-call {
  min-height: 48px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--navy);
  white-space: nowrap;
}

.button-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(109, 174, 219, 0.28), transparent 32%),
    linear-gradient(145deg, var(--cream) 0%, #ffffff 58%, var(--blue-pale) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(109, 174, 219, 0.34);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  top: -90px;
  left: -100px;
}

.hero::after {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: 40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 92px 0 118px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2d6795;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-card h2,
.request-intro h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.85rem, 6vw, 5.2rem);
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #344a5d;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-notes {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 650;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-notes svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card {
  padding: 34px;
  border: 1px solid rgba(109, 174, 219, 0.38);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-card-top img {
  flex: 0 0 76px;
}

.small-label {
  color: #447696;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 3px 0 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.18;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.custom-request-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--navy-deep);
  background: var(--blue-pale);
  font-weight: 700;
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -58px;
  height: 118px;
  border-radius: 50% 50% 0 0;
  background: var(--white);
}

.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid #e5eef5;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-pale);
  font-size: 1.25rem;
  font-weight: 900;
}

.trust-item div {
  display: grid;
  line-height: 1.35;
}

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

.trust-item span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-card h2,
.request-intro h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--blue-pale);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 22px 0 14px;
  color: var(--navy-deep);
  font-size: 1.45rem;
}

.service-card ul {
  margin: 0;
  padding-left: 22px;
}

.service-card li + li {
  margin-top: 8px;
}

.service-card li::marker {
  color: var(--blue);
}

.how-section {
  background: var(--blue-pale);
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid rgba(109, 174, 219, 0.35);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.3rem;
  font-weight: 900;
}

.step-card h3 {
  margin: 22px 0 10px;
  color: var(--navy-deep);
  font-size: 1.3rem;
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.about-card,
.promise-card {
  padding: 42px;
  border-radius: var(--radius-large);
}

.about-card {
  border: 1px solid #eadfce;
  background: rgba(255, 255, 255, 0.74);
}

.about-card > p:not(.eyebrow) {
  color: #405263;
  font-size: 1.07rem;
}

.inclusive-note {
  padding: 18px 20px;
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: var(--blue-pale);
}

.service-area {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-area svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
}

.service-area div {
  display: grid;
}

.promise-card {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.promise-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.promise-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.promise-list li span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-light);
  font-weight: 900;
}

.hours-block {
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.hours-block span {
  color: #d9e9f5;
}

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

.request-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 125px;
}

.request-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-cards {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-card {
  min-height: 78px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-deep);
  background: var(--blue-pale);
  text-decoration: none;
}

.contact-card:hover {
  background: var(--blue-light);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-card > span:last-child {
  min-width: 0;
  display: grid;
}

.contact-card small {
  color: var(--muted);
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.button-payment {
  width: 100%;
  margin-top: 16px;
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
}

.request-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fbfdff;
  box-shadow: var(--shadow);
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-group {
  margin: 0 0 22px;
}

.field-group label,
.field-group legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-weight: 800;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 2px solid #a9bfd0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.field-group textarea {
  min-height: 145px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(109, 174, 219, 0.35);
}

.field-group input[aria-invalid="true"],
.field-group select[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-help {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.preference-group {
  padding: 0;
  border: 0;
}

.preference-group legend {
  margin-bottom: 12px;
}

.choice {
  min-height: 48px;
  margin-right: 18px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 650 !important;
}

.choice input,
.consent-row input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  accent-color: var(--navy);
}

.consent-row {
  margin: 4px 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #394e60;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  font-size: 1.05rem;
}

.form-status {
  margin: 16px 0 0;
  min-height: 1.4em;
  font-weight: 700;
}

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

.site-footer {
  padding: 50px 0 22px;
  color: #e7f2fa;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer-brand span {
  color: #bfd4e4;
}

.footer-links,
.social-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.social-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #aac3d6;
  font-size: 0.84rem;
}

.mobile-contact-bar {
  display: none;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand {
    flex: 1 1 auto;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-navigation {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 10px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .primary-navigation.open {
    display: grid;
  }

  .primary-navigation a {
    min-height: 52px;
  }

  .header-inner > .button-call {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

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

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

  .request-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 100px;
  }

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

  .utility-inner > span {
    font-size: 0.78rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .hero-grid {
    min-height: auto;
    padding: 64px 0 94px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

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

  .hero-card {
    padding: 26px 22px;
  }

  .hero-card-top {
    align-items: flex-start;
  }

  .hero-card-top img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .trust-grid,
  .service-grid,
  .steps,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .service-card,
  .about-card,
  .promise-card,
  .request-form {
    padding: 26px 22px;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .choice {
    width: 100%;
    margin-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  body {
    padding-bottom: 66px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    height: 66px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(23, 63, 99, 0.12);
  }

  .mobile-contact-bar a {
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    color: var(--navy);
    background: var(--blue-light);
  }
}

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-contact-bar,
  .hero-actions,
  .request-form,
  .site-footer {
    display: none !important;
  }

  .section,
  .hero-grid {
    padding: 30px 0;
  }

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


.returning-note {
  margin: 24px 0 0;
  padding: 18px;
  display: grid;
  gap: 4px;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: var(--navy-deep);
  background: var(--blue-pale);
}

.returning-note strong {
  font-size: 1.02rem;
}

.confirmation-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 10px;
  color: #394e60;
  background: var(--blue-pale);
}

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