:root {
  --primary: #009b96;
  --primary-dark: #005d63;
  --primary-soft: #d8f5f1;
  --ink: #102022;
  --muted: #5f6f72;
  --line: #d9e6e4;
  --paper: #f7fbfa;
  --white: #ffffff;
  --accent: #ffb84d;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(0, 93, 99, 0.14);
}

* {
  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.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 250, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 230, 228, 0.82);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  color: var(--primary-dark);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 750;
  border: 1px solid var(--primary-dark);
  box-shadow: 0 12px 28px rgba(0, 93, 99, 0.18);
}

.button.secondary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: none;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 78px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  max-width: 680px;
}

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

.hero-image,
.page-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-image img {
  width: 100%;
  height: min(58vh, 560px);
  object-fit: cover;
}

.section {
  padding: 76px 0;
}

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

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
}

.white .card {
  background: var(--paper);
}

.card .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.card p,
.split p,
.legal p,
.legal li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 48px;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: 44px;
}

.page-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 4px;
  top: 9px;
  box-shadow: 0 0 0 6px rgba(255, 184, 77, 0.18);
}

.contact-panel {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.legal {
  max-width: 860px;
}

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

.legal p,
.legal ul {
  margin-top: 14px;
}

.site-footer {
  background: #092426;
  color: var(--white);
  padding: 36px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.h5-body {
  background: var(--white);
}

.h5-about {
  width: min(720px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.h5-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 22px;
}

.h5-about h1 {
  font-size: clamp(34px, 12vw, 54px);
}

.h5-about .page-image {
  margin: 28px 0;
}

.h5-about .card {
  margin-top: 14px;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .page-hero .container,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 34px;
    gap: 34px;
  }

  .hero-image img {
    height: 360px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav,
  .container,
  .hero,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .page-image img,
  .hero-image img {
    height: 280px;
  }
}
