:root {
  color-scheme: light;
  --water: #0f6f82;
  --water-deep: #0a4252;
  --orange: #c18164;
  --mauve: #8e6d8f;
  --ink: #122033;
  --muted: #5e6b78;
  --line: #d9e2ea;
  --paper: #ffffff;
  --page: #f7f9fb;
  --soft-water: #eaf6f8;
  --soft-orange: #fff5ef;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: var(--water-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: clamp(142px, 22vw, 210px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 3vw, 24px);
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  color: var(--muted);
  padding: 8px 0;
}

.site-nav a[aria-current="page"] {
  color: var(--water-deep);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: min(650px, calc(100svh - 108px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 84px) 0 clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 7vw, 76px);
  align-items: center;
}

.hero-media {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: min(100%, 390px);
  height: auto;
  display: block;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--water-deep);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 9vw, 84px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2.4vw, 22px);
}

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

.button {
  min-height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 900;
  border: 1px solid var(--water);
}

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

.button.secondary {
  background: #ffffff;
  color: var(--water-deep);
}

.band,
.contact-band {
  border-top: 1px solid var(--line);
}

.band {
  background: var(--paper);
}

.content-grid,
.contact-band,
.document-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.content-grid {
  padding: clamp(42px, 7vw, 72px) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 58px);
}

.content-grid article {
  border-left: 4px solid var(--water);
  padding-left: 20px;
}

.contact-band {
  padding: clamp(42px, 7vw, 72px) 0;
}

.section-heading {
  max-width: 680px;
}

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

.contact-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card,
.contact-list a {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.contact-card:hover,
.contact-list a:hover {
  border-color: var(--water);
  text-decoration: none;
}

.contact-card span,
.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong,
.contact-list strong {
  color: var(--water-deep);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.document-page {
  padding: clamp(36px, 7vw, 72px) 0;
}

.document-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.document-hero h1 {
  font-size: clamp(40px, 8vw, 68px);
}

.document-section {
  max-width: 820px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.document-section h2 {
  font-size: clamp(24px, 4vw, 34px);
}

.document-section ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.document-section li + li {
  margin-top: 8px;
}

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: flex-start;
    min-height: 140px;
  }

  .hero-media img {
    width: min(78vw, 300px);
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
