:root {
  --green: #4a7c70;
  --dark: #274d44;
  --pale: #eef6f3;
  --text: #24312e;
  --muted: #687873;
  --border: #dbe6e2;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--text);
  font:
    16px/1.65 Montserrat,
    Arial,
    sans-serif;
  background: #fafcfb;
}
a {
  color: var(--dark);
}
.wrap {
  width: min(960px, calc(100% - 40px));
  margin: auto;
}
.top {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.top a {
  text-decoration: none;
  font-weight: 700;
}
.hero {
  padding: 64px 0 36px;
  background: var(--pale);
}
h1,
h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.2;
}
h1 {
  font-size: clamp(34px, 6vw, 58px);
  margin: 0 0 14px;
}
h2 {
  font-size: 28px;
  margin: 32px 0 12px;
}
.lead {
  max-width: 720px;
  color: var(--muted);
}
main {
  padding: 40px 0 72px;
}
.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  margin: 18px 0;
}
.links {
  list-style: none;
  padding: 0;
}
.links li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.meta {
  color: var(--muted);
  font-size: 14px;
}
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--muted);
}
iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}
@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, 960px);
  }
  .hero {
    padding: 44px 0 28px;
  }
  iframe {
    height: 560px;
  }
}
