:root {
  --color-dark-night: #071E3A;
  --color-naval: #1F405C;
  --color-steelblue: #4F8190;
  --color-slate-teal: #356F70;
  --color-seaworthy: #78AFA7;
  --color-silver-mist: #E4ECEE;
  --color-white: #FFFFFF;
  --color-ink: #0B1726;
  --dark-night: var(--color-dark-night);
  --naval: var(--color-naval);
  --steelblue: var(--color-steelblue);
  --slate-teal: var(--color-slate-teal);
  --seaworthy: var(--color-seaworthy);
  --silver-mist: var(--color-silver-mist);
  --white: var(--color-white);
  --ink: var(--color-ink);
  --muted: #5d6b76;
  --line: #dbe5e6;
  --shadow: 0 18px 48px rgba(7, 30, 58, .11);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: var(--white);
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--seaworthy);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: .75rem;
  z-index: 20;
  transform: translateY(-180%);
  background: var(--dark-night);
  color: var(--white);
  padding: .55rem .8rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  width: 320px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-full {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding: 6px 0 10px;
}

.brand-icon {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  color: var(--dark-night);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
  padding: .65rem .75rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--seaworthy);
  background: rgba(31, 120, 145, .08);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark-night);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--dark-night);
  color: var(--white);
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  background: var(--seaworthy);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--white);
  color: var(--dark-night);
  border-color: var(--steelblue);
}

.button.secondary:hover {
  background: var(--silver-mist);
  border-color: var(--seaworthy);
  color: var(--seaworthy);
}

.section {
  padding: 86px 0;
}

.section.tint {
  background: var(--silver-mist);
}

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

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--seaworthy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-kicker {
  max-width: 820px;
  margin: 0;
  color: var(--dark-night);
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark-night);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-top: 1.05rem;
  color: var(--steelblue);
  font-size: clamp(1.65rem, 3.1vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
  font-size: 1.23rem;
}

p {
  margin: 1rem 0 0;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.dark h2,
.dark h3,
.dark .lead {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  padding: 92px 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 48%, rgba(244, 247, 247, .82) 100%),
    var(--silver-mist);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-mark {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 24px 0 24px 32px;
  border: 1px solid rgba(79, 129, 144, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 236, 238, .72), rgba(255, 255, 255, .36)),
    radial-gradient(circle at 18% 24%, rgba(120, 175, 167, .18), transparent 32%);
  box-shadow: 0 24px 64px rgba(7, 30, 58, .06);
}

.hero-mark::after {
  content: "";
  position: absolute;
  left: 74px;
  right: 54px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 129, 144, .08), rgba(53, 111, 112, .22), rgba(120, 175, 167, .12));
  transform: translateY(-50%);
}

.hero-watermark {
  position: absolute;
  inset: 20px 10px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .1;
}

.hero-watermark img {
  width: min(500px, 100%);
  max-height: 100%;
  object-fit: contain;
}

.system-panel {
  position: relative;
  z-index: 1;
  width: min(390px, calc(100% - 56px));
  padding: .45rem 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.system-line {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .76rem 0;
  color: var(--dark-night);
  font-weight: 760;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.system-line span {
  display: block;
}

.system-line strong {
  display: block;
  margin-top: .05rem;
  color: var(--steelblue);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-line::before {
  content: "";
  width: 14px;
  height: 14px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--slate-teal);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .82), 0 0 0 13px rgba(120, 175, 167, .2);
}

.system-line + .system-line::after {
  content: "";
  position: absolute;
  left: 17px;
  top: -18px;
  width: 2px;
  height: 36px;
  background: rgba(79, 129, 144, .36);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2.2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.card,
.service-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.45rem;
  box-shadow: 0 10px 28px rgba(24, 43, 58, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover,
.service-block:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 120, 145, .48);
  box-shadow: var(--shadow);
}

.icon-node {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(31, 120, 145, .1);
  color: var(--seaworthy);
  font-weight: 850;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding-top: 3.4rem;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-night);
  color: var(--white);
  font-weight: 850;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 52px;
  width: calc(100% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--steelblue), transparent);
}

.process-step:last-child::after {
  display: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2rem;
}

.quote-chip {
  min-height: 104px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--seaworthy);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  color: var(--dark-night);
  font-weight: 730;
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -90px;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.cta-band .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero {
  background: var(--silver-mist);
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: 900px;
  margin: 0;
  color: var(--dark-night);
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  font-weight: 800;
  line-height: 1.04;
}

.page-subtitle {
  max-width: 850px;
  margin: 1.05rem 0 0;
  color: var(--steelblue);
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.service-list {
  display: grid;
  gap: 1.1rem;
}

.service-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, .42fr) minmax(0, 1fr);
  gap: 1.65rem;
  padding: 1.35rem 1.45rem;
  overflow: hidden;
}

.service-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--seaworthy), var(--steelblue));
}

.service-block h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.15;
}

.service-block ul {
  margin: .55rem 0 0;
  padding-left: 0;
  list-style: none;
}

.service-block li {
  position: relative;
  margin: .38rem 0;
  padding-left: 1.05rem;
}

.method-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.method-list li {
  margin: .35rem 0;
}

.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  background: var(--slate-teal);
}

.includes-label {
  margin-top: 1.05rem;
  color: var(--steelblue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.best-for {
  margin-top: .8rem;
  color: var(--seaworthy);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.method {
  display: grid;
  gap: 1rem;
  counter-reset: method;
}

.method-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.method-item::before {
  counter-increment: method;
  content: counter(method, decimal-leading-zero);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(86, 125, 127, .14);
  color: var(--dark-night);
  font-weight: 850;
}

.about-media {
  display: grid;
  gap: 1.3rem;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--silver-mist);
  box-shadow: var(--shadow);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(7, 30, 58, .18), transparent);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.about-callout {
  border-left: 5px solid var(--seaworthy);
  padding: 1.4rem 0 1.4rem 1.5rem;
  color: var(--dark-night);
  font-size: 1.28rem;
  font-weight: 720;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(300px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-email {
  margin-top: 1.4rem;
  color: var(--dark-night);
  font-weight: 760;
}

.contact-email a {
  color: var(--steelblue);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}

.contact-email a:hover {
  color: var(--slate-teal);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: .35rem;
}

label {
  color: var(--dark-night);
  font-size: .94rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8c8cb;
  border-radius: var(--radius);
  padding: .72rem .8rem;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

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

.site-footer {
  background: var(--dark-night);
  color: rgba(255, 255, 255, .82);
  padding: 54px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-brand img {
  width: min(280px, 100%);
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem .9rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #9bd5df;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .93rem;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 102px;
    padding: .8rem 0;
  }

  .brand {
    width: 280px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem 0 .2rem;
  }

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

  .site-nav a {
    padding: .85rem;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-mark {
    min-height: 320px;
  }

  .system-panel {
    margin: 0 auto;
  }

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

  .service-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, var(--content));
  }

  .nav-wrap .button {
    display: none;
  }

  .brand {
    width: 54px;
  }

  .brand-full {
    display: none;
  }

  .brand-icon {
    display: block;
    width: 54px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 62px 0;
  }

  .cards,
  .process,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}
