:root {
  --bg: #F5F1E6;
  --panel: #FAF7EE;
  --ink: #232620;
  --sub: #5B5D55;
  --line: #E3DDC9;
  --accent: #B5623E;
  --max: 880px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, .brand-name { font-family: 'DM Serif Display', serif; }

a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
a:hover { border-bottom-color: var(--ink); }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--panel); padding: 10px 12px; border-radius: 10px;
}
.skip-link:focus { left: 12px; border: 1px solid var(--line); }

.site-header {
  padding: 28px 0 0;
}
.header-inner { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }

.brand { display: inline-flex; gap: 14px; align-items: center; border-bottom: 0; }
.brand-mark { height: 56px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-size: 22px; line-height: 1; color: var(--ink); }
.brand-motto { font-style: italic; font-weight: 300; font-size: 12px; letter-spacing: 0.02em; color: var(--sub); }

.nav { display: inline-flex; gap: 28px; padding-top: 10px; }
.nav a { border-bottom: 0; font-size: 14px; color: var(--ink); }
.nav a[aria-current="page"] { color: var(--accent); }

.eyebrow { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sub); font-weight: 600; }

.hero { padding: 88px 0 40px; }
.hero h1 { margin: 0 0 20px; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em; }
.lead { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 300; font-size: 1.15rem; color: var(--ink); margin: 0 0 28px; max-width: 62ch; }

.status { display: flex; gap: 12px; align-items: center; margin: 0; }
.pill {
  display: inline-flex; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--ink); background: transparent;
  font-size: 0.85rem; font-weight: 600;
}
.muted { color: var(--sub); }

.section { padding: 32px 0; border-top: 1px solid var(--line); }
.section h2 { margin: 0 0 14px; font-size: 1.6rem; }
.section p { margin: 0 0 14px; max-width: 68ch; }

.bullets { margin: 12px 0 0; padding-left: 20px; color: var(--sub); }
.bullets li { margin: 8px 0; }

.page { padding: 48px 0 80px; }
.page h1 { margin: 0 0 16px; font-size: 2.2rem; }

.site-footer { border-top: 1px solid var(--line); padding: 24px 0 48px; margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-footer .muted { margin: 0; font-size: 13px; }

@media (max-width: 720px) {
  .header-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .nav { padding-top: 0; gap: 20px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .brand-mark { height: 44px; }
}
