:root {
  color-scheme: light;
  --navy: #204674;
  --red: #a42838;
  --red-dark: #81202c;
  --beige: #fffaeb;
  --beige-strong: #f7edcf;
  --leaf: #4f7d5a;
  --ink: #1d2b35;
  --muted: #63717b;
  --line: #e3ded0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(32, 70, 116, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--leaf);
  border-radius: 50%;
  color: var(--leaf);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.footer-links a:hover,
.footer-links a:focus {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  padding: 9px 18px;
  color: var(--navy);
  background: var(--beige);
  border: 1px solid var(--beige-strong);
}

.nav-cta:hover,
.nav-cta:focus {
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 46px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0 76px;
}

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

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

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.8vw, 5.45rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  padding: 13px 24px;
  border: 2px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--red-dark);
}

.service-note {
  color: var(--muted);
  font-weight: 700;
}

.hero-panel,
.card,
.service-box,
.process-step,
.add-ons,
.area-section,
.proof-list,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-panel {
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--leaf);
}

.panel-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--leaf);
  content: "-";
  font-weight: 900;
}

.check-list li + li {
  margin-top: 10px;
}

.section {
  padding: 78px 0;
}

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

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

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

.card,
.process-step {
  padding: 22px;
  box-shadow: 0 10px 26px rgba(32, 70, 116, 0.07);
}

.card {
  min-height: 200px;
}

.card p,
.service-box p,
.process-step p,
.add-ons p,
.area-section p,
.trust-section p,
.final-cta p {
  color: var(--muted);
}

.band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background: var(--beige);
}

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

.service-box {
  padding: 28px;
}

.service-box.contrast {
  background: #fffdf5;
}

.process-grid,
.add-on-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.add-ons {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 30px;
  padding: 38px;
  background: #fffdf5;
}

.add-on-grid article {
  padding: 20px;
  border-left: 4px solid var(--leaf);
  background: var(--white);
}

.area-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 30px;
  padding: 38px;
  background: var(--beige);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.proof-list {
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.proof-list div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  margin: 18px 0 78px;
  padding: 48px;
  text-align: center;
  background: var(--beige);
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--navy);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--navy);
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .add-ons,
  .area-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .five-grid,
  .process-grid,
  .add-on-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-bottom: 50px;
  }

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

  .service-columns,
  .five-grid,
  .process-grid,
  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .card {
    min-height: auto;
  }

  .final-cta {
    padding: 34px 20px;
  }

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