:root {
  --ink: #082f36;
  --ink-2: #14434a;
  --teal: #0b6f63;
  --mint: #109e84;
  --gold: #d9a441;
  --gold-soft: #f7d36b;
  --paper: #f7f9f6;
  --white: #ffffff;
  --line: rgba(8, 47, 54, .12);
  --shadow: 0 22px 60px rgba(8, 47, 54, .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", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 246, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { width: 236px; height: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.nav-menu > a, .dropdown-button {
  color: var(--ink-2);
  border: 0;
  background: transparent;
  font: inherit;
  padding: 10px 0;
  cursor: pointer;
}

.nav-menu > a:hover, .dropdown-button:hover { color: var(--teal); }
.nav-cta {
  padding: 10px 16px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dropdown { position: relative; }
.dropdown-button::after { content: "▾"; margin-left: 6px; font-size: 12px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 250px;
  padding: 8px;
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.dropdown.open .dropdown-menu { display: grid; }
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-2);
  line-height: 1.35;
}
.dropdown-menu a:hover { background: #edf6f1; color: var(--teal); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 47, 54, .94), rgba(8, 47, 54, .6) 48%, rgba(8, 47, 54, .25)),
    url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1800&q=82") center/cover;
  z-index: -2;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--paper), rgba(247, 249, 246, 0));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 120px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; }
.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}
.primary { background: var(--gold); color: #162316; }
.secondary { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.28); }
.primary:hover { background: var(--gold-soft); }
.secondary:hover { background: rgba(255,255,255,.18); }

.hero-panel {
  position: absolute;
  right: max(16px, calc((100% - 1180px) / 2));
  bottom: 42px;
  width: min(390px, calc(100% - 32px));
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero-panel strong { display: block; font-size: 26px; line-height: 1; }
.hero-panel span { display: block; margin-top: 8px; color: var(--ink-2); }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  font-size: 19px;
  color: var(--ink-2);
}
.intro-grid p { margin: 0; }

.vmv-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.vmv article, .service-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(8,47,54,.06);
}
.vmv article { padding: 28px; }
.vmv span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--teal);
  font-weight: 900;
}
.vmv p, .service-grid p { margin: 0; color: var(--ink-2); }

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid article { padding: 22px; min-height: 220px; }
.service-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #e8f5ef;
  color: var(--teal);
  font-weight: 900;
}

.text-link {
  font-weight: 900;
  color: var(--teal);
  border-bottom: 2px solid var(--gold);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.metrics div {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--ink);
  color: var(--white);
}
.metrics strong { font-size: clamp(38px, 5vw, 62px); line-height: 1; }
.metrics span { color: var(--gold-soft); font-weight: 800; }

.story {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.story-visual {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8,47,54,.1), rgba(217,164,65,.18)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82") center/cover;
  box-shadow: var(--shadow);
}
.story p:not(.eyebrow) { color: var(--ink-2); font-size: 18px; }

.resource-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.resource-list a {
  min-height: 120px;
  padding: 20px;
  display: flex;
  align-items: end;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}
.resource-list a:hover { border-color: var(--teal); color: var(--teal); }

.contact {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 40px;
  align-items: start;
}
.contact p { max-width: 620px; color: var(--ink-2); font-size: 18px; }
.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-card a:not(.button) { color: var(--teal); font-weight: 900; }
.contact-card span { color: var(--ink-2); }
.contact-card .button { width: 100%; margin-top: 8px; }

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}
.footer a { color: var(--teal); font-weight: 800; }

@media (max-width: 980px) {
  .brand img { width: 205px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > a, .dropdown-button { width: 100%; text-align: left; padding: 12px; }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }
  .intro-grid, .vmv-grid, .story, .contact { grid-template-columns: 1fr; }
  .service-grid, .resource-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .nav { width: min(100% - 22px, 1180px); }
  .brand img { width: 178px; }
  .hero { min-height: auto; }
  .hero-media {
    background:
      linear-gradient(180deg, rgba(8,47,54,.92), rgba(8,47,54,.72)),
      url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1000&q=80") center/cover;
  }
  .hero-content { padding: 74px 0 210px; }
  .hero-panel { left: 16px; right: 16px; bottom: 28px; width: auto; }
  .section { padding: 70px 0; }
  .section-heading.split { display: block; }
  .section-heading.split .text-link { display: inline-block; margin-top: 18px; }
  .service-grid, .resource-list, .metrics { grid-template-columns: 1fr; }
  .metrics div { min-height: 130px; }
  .story-visual { min-height: 300px; }
  .footer { flex-direction: column; }
}
