:root {
  color-scheme: light;
  --navy: #062f62;
  --navy-900: #041b34;
  --blue-700: #164d83;
  --steel: #607080;
  --steel-100: #eef3f6;
  --steel-200: #d7e0e7;
  --ink: #17212b;
  --muted: #596673;
  --white: #ffffff;
  --paper: #f8faf9;
  --copper: #b26a3c;
  --teal: #277b78;
  --shadow: 0 18px 50px rgba(4, 27, 52, 0.16);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 10px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(96, 112, 128, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 750;
  color: var(--navy);
}

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

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #243545;
  font-size: 0.96rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 70svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero__image,
.hero__image img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img {
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 27, 52, 0.95) 0%, rgba(4, 27, 52, 0.82) 35%, rgba(4, 27, 52, 0.38) 72%, rgba(4, 27, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 27, 52, 0.3), rgba(4, 27, 52, 0.05));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 86px 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #91d9d3;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 790;
  color: var(--navy-900);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
  line-height: 1.25;
  color: var(--navy-900);
}

.hero__lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 10px 24px rgba(178, 106, 60, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #9c5830;
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.scope-note {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.proof-band {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
}

.proof-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel-200);
}

.proof-band__grid > div {
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 26px;
  background: var(--white);
}

.proof-band strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
}

.section {
  padding-block: 94px;
}

.section--muted {
  background: #edf3f2;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: center;
}

.section__heading--left {
  margin-inline: 0;
  text-align: left;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
}

.service-card__index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 850;
}

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

.fit-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.fit-panel {
  display: grid;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(96, 112, 128, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fit-panel__divider {
  height: 1px;
  background: var(--steel-200);
}

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

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

.plain-list li::before {
  background: var(--steel);
}

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

.approach__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.approach-steps {
  display: grid;
  gap: 14px;
}

.approach-steps article {
  padding: 24px 26px;
  border-left: 4px solid var(--teal);
  background: var(--steel-100);
}

.approach-steps span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.approach-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-block: 94px;
  color: var(--white);
  background: var(--navy-900);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.contact-copy .eyebrow {
  color: #91d9d3;
}

.contact-email {
  display: inline-flex;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.contact-form input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(145, 217, 211, 0.35);
  border-color: #91d9d3;
}

.contact-form .button {
  width: fit-content;
  min-width: 180px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.site-footer {
  padding-block: 30px;
  background: var(--white);
  border-top: 1px solid var(--steel-200);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-layout div {
  display: grid;
  gap: 4px;
}

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

.footer-layout span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-layout a {
  color: var(--navy);
  font-weight: 760;
  white-space: nowrap;
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .brand span {
    max-width: 260px;
    white-space: normal;
    line-height: 1.12;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--steel-200);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: grid;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .proof-band__grid,
  .service-grid,
  .fit-layout,
  .approach__layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .fit-layout,
  .approach__layout,
  .contact-layout {
    gap: 34px;
  }
}

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

  .brand img {
    width: 60px;
    height: 43px;
  }

  .brand span {
    max-width: 190px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 68svh;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(4, 27, 52, 0.96) 0%, rgba(4, 27, 52, 0.9) 52%, rgba(4, 27, 52, 0.54) 100%),
      linear-gradient(0deg, rgba(4, 27, 52, 0.28), rgba(4, 27, 52, 0.08));
  }

  .hero__content {
    padding-block: 58px 52px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__lede {
    font-size: 1.03rem;
  }

  .hero__actions,
  .footer-layout {
    align-items: stretch;
    flex-direction: column;
  }

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

  .proof-band__grid > div,
  .service-card,
  .fit-panel,
  .contact-form {
    padding: 22px;
  }

  .section,
  .contact-section {
    padding-block: 68px;
  }
}
