:root {
  --ink: #252920;
  --cream: #f4f0e6;
  --olive: #535e38;
  --brick: #a44e32;
  --sand: #ded5c1;
  --line: #cfc7b8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    18px/1.6 Georgia,
    serif;
}
a {
  color: var(--olive);
}
.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
}
.top {
  background: #252920;
  color: #fff;
  padding: 17px 0;
}
.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font:
    800 17px Arial,
    sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}
.brand span {
  font-weight: 400;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a {
  font:
    700 12px Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}
.hero {
  padding: 54px 0 44px;
  background: linear-gradient(100deg, #f4f0e6 0 65%, #ded5c1 65%);
}
.eyebrow {
  font:
    700 12px Arial,
    sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brick);
}
h1,
h2,
h3 {
  line-height: 1.09;
  margin: 0.3em 0;
}
h1 {
  font-size: clamp(45px, 6vw, 70px);
  letter-spacing: -0.045em;
  max-width: 850px;
}
h2 {
  font-size: clamp(30px, 4vw, 47px);
  letter-spacing: -0.035em;
}
.dek {
  font-size: 22px;
  max-width: 720px;
}
.rule {
  height: 5px;
  width: 105px;
  background: var(--brick);
  margin: 28px 0;
}
.section {
  padding: 67px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  background: #fff;
  border-top: 5px solid var(--olive);
  padding: 24px;
  min-height: 210px;
}
.tile h3 {
  font-size: 25px;
}
.tile a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font:
    700 15px Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
}
.quiet {
  background: #e7e0d2;
}
.note {
  background: #fff;
  padding: 25px;
  border-left: 5px solid var(--brick);
}
.plan-visual {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.path {
  padding: 18px 0;
  font:
    13px Arial,
    sans-serif;
}
.article {
  max-width: 790px;
  padding-bottom: 65px;
}
.article h2 {
  margin-top: 1.4em;
}
.article h3 {
  margin-top: 1.5em;
}
.article ul,
.article ol {
  padding-left: 25px;
}
.footer {
  background: #252920;
  color: #fff;
  padding: 42px 0;
  font-size: 15px;
}
.footer a {
  color: #fff;
}
.facts {
  background: #e7e0d2;
  border-top: 5px solid var(--olive);
  padding: 22px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin: 27px 0;
}
th,
td {
  text-align: left;
  padding: 13px;
  border-bottom: 1px solid var(--line);
}
th {
  font:
    700 12px Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .top .wrap {
    display: block;
  }
  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
    gap: 4px;
  }
  .nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.15;
  }
  .hero {
    padding: 42px 0 34px;
    background: #f4f0e6;
  }
  .section {
    padding: 48px 0;
  }
  .grid,
  .split {
    grid-template-columns: 1fr;
  }
  .tile {
    min-height: 0;
  }
  .wrap {
    width: min(100% - 28px, 1080px);
  }
}
