:root {
  --bg: #FBF7F4;
  --accent: #8A4E58;
  --accent-2: #B88967;
  --text: #332829;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
}

.page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent);
  line-height: 1.25;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--accent-2);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 0.3rem;
}

p, li {
  font-size: 1rem;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

th, td {
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid #e8ddd6;
}

th {
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

/* Shared footer */
#site-footer {
  margin-top: 3rem;
  background: var(--accent);
  color: var(--bg);
}

.site-footer-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.site-footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--bg);
}

.site-footer-links a {
  color: var(--bg);
  text-decoration: none;
  margin-left: 1.2rem;
}

.site-footer-links a:first-child {
  margin-left: 0;
}

.site-footer-links a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}
