:root {
  color-scheme: light;
  --ink: #17251e;
  --muted: #66726b;
  --forest: #173f32;
  --coral: #e75b4e;
  --sand: #f6f0e6;
  --line: #dde5df;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--forest);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.hero__inner,
.content,
.site-footer__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--forest);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  padding: 72px 0;
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.1;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.content {
  max-width: 880px;
  padding: 56px 0 70px;
}

.panel,
.content section {
  margin-bottom: 24px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

p,
li {
  color: var(--muted);
}

.button {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 12px 18px;
  border-radius: 9px;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.meta {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.site-footer a {
  margin-right: 14px;
  color: var(--white);
}

@media (max-width: 680px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    padding: 48px 0;
  }

  .content {
    padding-top: 36px;
  }
}
