:root {
  color: #17231f;
  background: #f6f4ee;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.page {
  min-height: 100vh;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 8%, rgba(210, 78, 61, 0.18), transparent 28%),
    linear-gradient(135deg, #f8f7f2 0%, #ebe6da 48%, #dfe9e4 100%);
}

.shell {
  max-width: 880px;
  margin: 0 auto;
}

.nav,
.content,
.footer {
  border: 1px solid rgba(30, 44, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(38, 53, 48, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.brand {
  color: #17231f;
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
}

.nav-links,
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

a {
  color: #9a2d22;
  font-weight: 760;
}

.nav-links a,
.footer a {
  color: #52615a;
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: #17231f;
  text-decoration: underline;
}

.content {
  margin-top: 18px;
  padding: 34px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

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

p,
li {
  color: #43514b;
  font-size: 17px;
  line-height: 1.65;
}

ul,
ol {
  padding-left: 24px;
}

.lead {
  color: #52615a;
  font-size: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: #17231f;
  text-decoration: none;
}

.footer {
  justify-content: center;
  margin-top: 18px;
  padding: 14px;
}

@media (max-width: 640px) {
  .page {
    padding: 12px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    padding: 22px;
  }
}
