:root {
  --bg: #fbf7f1;
  --text: #241b16;
  --muted: #6f625b;
  --accent: #7a4f36;
  --card: #ffffff;
  --line: #eadfd6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

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

nav {
  display: flex;
  gap: 18px;
}

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

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.hero {
  max-width: 760px;
  padding: 42px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

h2 {
  line-height: 1.2;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 12px;
}

.cards,
.post-list {
  display: grid;
  gap: 18px;
}

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

article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.page-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

iframe {
  max-width: 100%;
}
