:root {
  color-scheme: light;
  --ink: #142029;
  --muted: #4f606a;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --line: #dbe4e5;
  --teal: #11a7b7;
  --teal-text: #08717c;
  --charcoal: #071217;
  --content-width: 1120px;
  --content-gutter: 40px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 14, 18, 0.78) 0%, rgba(5, 14, 18, 0.56) 36%, rgba(5, 14, 18, 0.14) 68%, rgba(5, 14, 18, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 14, 18, 0.16) 0%, rgba(5, 14, 18, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  padding: 80px 0;
  overflow-wrap: break-word;
}

.hero-content > * {
  max-width: min(560px, 58vw);
}

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

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

h1 {
  max-width: min(580px, 60vw);
  margin-bottom: 24px;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  margin-bottom: 0;
  color: var(--teal-text);
  font-size: 1.3rem;
}

p {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.section {
  padding: 78px 0;
  background: var(--surface);
}

.section-light {
  background: #eef4f4;
}

.section-inner {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  margin: 0 auto;
}

.section-inner.text-block {
  max-width: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.text-block > * {
  max-width: 820px;
}

ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

li {
  min-height: 64px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
}

li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

.section-light li {
  background: #fff;
}

.contact {
  background: var(--charcoal);
  color: #fff;
}

.contact a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus {
  text-decoration: none;
}

.contact-icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .hero-media {
    position: relative;
    order: 2;
    aspect-ratio: 16 / 9;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-position: 60% center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 56px 40px 36px;
  }

  .hero-content > * {
    max-width: 620px;
  }

  .hero-content p:last-child {
    margin-bottom: 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 44px 20px 24px;
  }

  .section-inner {
    width: min(100% - 32px, var(--content-width));
  }

  .hero-content > * {
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: 1.85rem;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .contact a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .contact-link {
    max-width: 100%;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-icon {
    margin-top: 0.1em;
  }
}
