:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #56616d;
  --line: #d8e0e8;
  --surface: #f5f7f9;
  --accent: #0f6c81;
  --accent-dark: #0a4b5b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
}

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

a {
  color: var(--accent-dark);
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(580px, 72vh) auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 580px;
  background: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 88px);
}

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

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.4vw, 1.62rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  background: var(--white);
}

.hero-media {
  min-height: 100%;
  overflow: hidden;
  background: #d9e1e5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.details > div {
  min-height: 230px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--surface);
}

h2 {
  margin-bottom: 14px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.details p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-shell {
    grid-template-rows: auto auto;
  }

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

  .hero-copy {
    min-height: 54vh;
    padding: 38px 24px 34px;
  }

  .hero-media {
    min-height: 38vh;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .details > div {
    min-height: auto;
    padding: 30px 24px;
  }
}
