* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fbf7f0;
  color: #20221f;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.58;
}

a {
  color: #274c43;
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #274c43;
  color: #ffffff;
  display: grid;
  place-items: center;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  border-top: 1px solid #d9d0c2;
  border-bottom: 1px solid #d9d0c2;
  padding: 54px 0;
}

h1 {
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.95;
  margin: 0 0 18px;
}

h2 {
  margin-top: 34px;
}

.lead {
  max-width: 680px;
  font-size: 20px;
}

.panel {
  background: #fffcf7;
  border: 1px solid #d9d0c2;
  border-radius: 8px;
  padding: 22px;
  margin-top: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d9d0c2;
  font-size: 14px;
}
