:root {
  --ink: #102421;
  --muted: #5f716f;
  --surface: #ffffff;
  --surface-soft: #f3f8f6;
  --line: #dce8e4;
  --teal: #0f7f78;
  --teal-dark: #0a5854;
  --green: #3d8c49;
  --amber: #c68a25;
  --shadow: 0 18px 60px rgba(16, 36, 33, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 46%;
  box-shadow: 0 6px 18px rgba(16, 36, 33, 0.1);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  color: #123e68;
  font-size: 1.08rem;
  font-weight: 850;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 14px;
  color: #29413e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 28, 26, 0.88) 0%, rgba(7, 28, 26, 0.7) 42%, rgba(7, 28, 26, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 28, 26, 0.55), transparent 40%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  color: #ffffff;
  padding: 80px 0 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9fe6d8;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #e7f3ef;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: #ffffff;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-section {
  background: var(--surface);
}

.copy {
  color: #425a56;
  font-size: 1.08rem;
}

.service-band {
  background: var(--surface-soft);
}

.service-band > h2,
.service-band > .section-kicker {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(35, 78, 70, 0.07);
}

.card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 850;
}

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

.compliance-section {
  background: #123c38;
  color: #ffffff;
}

.compliance-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.compliance-panel .section-kicker {
  color: #a9e6da;
}

.compliance-panel p {
  margin: 0;
  color: #dcefeb;
  font-size: 1.16rem;
}

.contact-section {
  background: var(--surface);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(35, 78, 70, 0.06);
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-weight: 850;
}

.contact-item p,
.contact-note {
  margin-bottom: 0;
  color: #425a56;
}

.contact-item a {
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0f241f;
  color: #dcefeb;
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

.site-footer a {
  color: #a9e6da;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 28, 26, 0.9) 0%, rgba(7, 28, 26, 0.78) 58%, rgba(7, 28, 26, 0.38) 100%);
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

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

  .brand-text small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4.2rem);
    max-width: 9.5ch;
  }

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

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

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