:root {
  --bg: #f6f4ef;
  --surface: #fffdf8;
  --ink: #1d1d1b;
  --muted: #5f5a52;
  --line: #d8d1c7;
  --accent: #0f5c4d;
  --accent-2: #c96f2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, #f8f6f2 0%, #f1ece3 100%);
  color: var(--ink);
}

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

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 4rem;
}

.site-header .wrap,
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.nav,
.footer-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a,
.footer-grid a {
  text-decoration: none;
}

.hero {
  padding: 5rem 0 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent-2);
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
  margin: 0.25rem 0 1rem;
}

h2 {
  margin-top: 0;
}

.lead,
.prose p,
.list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 2rem 0;
}

.section-alt {
  background: rgba(255, 253, 248, 0.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(48, 44, 38, 0.05);
}

.prose {
  max-width: 760px;
}

.list {
  padding-left: 1.2rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

@media (max-width: 700px) {
  .site-header .wrap,
  .site-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
