:root {
  --ink: #182124;
  --muted: #556166;
  --paper: #f5f3ee;
  --surface: #ffffff;
  --line: #d7d3c8;
  --accent: #1b6d77;
  --accent-2: #b84535;
  --green: #577344;
}

* {
  box-sizing: border-box;
}

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

a {
  color: #0e5f78;
  font-weight: 700;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
  background: #111;
}

.hero__image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .55)),
    url("./assets/brunn-oversikt.jpg") center / cover no-repeat;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px);
  background: #f4f1e8;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #344047;
  font-size: 20px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__facts span {
  border: 1px solid #c8c0b1;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fffaf0;
  font-size: 15px;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.intro-grid,
.option-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: 34px;
  align-items: start;
}

.intro-grid p,
.section__heading p,
.safety p,
.option-grid p,
.check-list {
  color: var(--muted);
  font-size: 18px;
}

figure {
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.section__heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.diagram {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: #e8eee8;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
}

td:nth-child(3),
th:nth-child(3) {
  width: 130px;
  text-align: right;
  white-space: nowrap;
}

tfoot th {
  background: #263239;
  color: white;
  border-bottom: 0;
  font-size: 18px;
}

.check-list {
  margin: 0;
  padding-left: 22px;
}

.check-list li {
  margin: 0 0 14px;
}

.callout {
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 33, 36, .08);
}

.callout p {
  margin: 0 0 12px;
  font-size: 18px;
}

.safety {
  padding-bottom: 88px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.safety-grid div {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__image {
    min-height: 54vh;
  }

  .intro-grid,
  .option-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }
}
