:root {
  color-scheme: light;
  --bg: #f4efe6;
  --panel: rgba(255, 250, 242, 0.92);
  --ink: #1c2a21;
  --accent: #a1451b;
  --accent-dark: #7d3110;
  --border: #d9cdb8;
  --max-width: 72rem;
}

* {
  box-sizing: border-box;
}

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

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

a:hover,
a:focus-visible {
  color: var(--accent-dark);
}

.site-header {
  padding: 1rem 1.25rem 0;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero,
.section-grid section,
.about,
.updates,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.hero {
  margin-bottom: 1rem;
}

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

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.updates {
  margin-top: 1rem;
}

.updates p {
  margin-bottom: 0;
}

.text-link {
  font-weight: 700;
}

.site-footer {
  max-width: calc(var(--max-width) - 2.5rem);
  margin: 0 auto 2rem;
}

h1,
h2 {
  line-height: 1.1;
}

@media (max-width: 700px) {
  .site-header {
    padding: 0.85rem 0.875rem 0;
  }

  main {
    padding: 1rem 0.875rem 3rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}
