:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #59677a;
  --line: #d9e0e7;
  --paper: #f7f9fb;
  --white: #ffffff;
  --teal: #0c7c7a;
  --teal-dark: #075f5d;
  --gold: #bf8a26;
  --green-soft: #e6f3ef;
  --blue-soft: #eaf0f7;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 249, 251, 0.92);
  border-bottom: 1px solid rgba(217, 224, 231, 0.8);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--teal-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(230, 243, 239, 0.9), rgba(234, 240, 247, 0.72)),
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-text,
.copy-block p,
.contact-section p,
.policy-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-soft);
}

.hero-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.hero-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.copy-block {
  max-width: 780px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

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

.service-grid article,
.compliance-grid div,
.fact,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article {
  min-height: 250px;
  padding: 24px;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.service-grid p,
.compliance-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.compliance {
  background: #eef4f3;
}

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

.compliance-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
}

.fact {
  padding: 22px;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.fact span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: #17202a;
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section p {
  color: #c3d6d1;
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-card a:first-child {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #b6ebe3;
  font-weight: 750;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #10171f;
  color: #b9c4d0;
  font-size: 14px;
}

footer p {
  margin: 0;
}

.policy-page {
  background: var(--white);
}

.policy-hero {
  padding: 76px clamp(20px, 5vw, 72px) 32px;
  background: var(--paper);
}

.policy-hero h1 {
  font-size: clamp(42px, 7vw, 70px);
}

.policy-content {
  max-width: 850px;
  padding: 46px clamp(20px, 5vw, 72px) 90px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

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

@media (max-width: 960px) {
  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .brand {
    max-width: calc(100% - 58px);
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  h1 {
    font-size: 42px;
  }

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

  .hero-panel div {
    display: grid;
    gap: 6px;
  }

  .hero-panel dd {
    text-align: left;
  }

  footer {
    display: block;
  }

  footer a {
    display: inline-flex;
    margin-top: 12px;
  }
}
