@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #4A90A4;
  --teal-dark: #35687A;
  --gold: #C4A060;
  --gold-dark: #9A7840;
  --bg: #FAF8F5;
  --card: #FFFFFF;
  --text: #2C1810;
  --muted: #7A6A60;
  --border: #E8E2DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

.page-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.page-header a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
main h1 {
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 0.5rem;
  color: var(--text);
}
main .updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 2.5rem;
}
main h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 2rem 0 0.75rem;
  color: var(--teal-dark);
}
main p, main li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 0.9rem;
}
main ul { padding-left: 1.25rem; }
main a { color: var(--teal-dark); }

footer.page-footer {
  background: #1C1008;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer.page-footer .footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
footer.page-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}
footer.page-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
}
footer.page-footer a:hover { color: white; }
footer.page-footer .footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
