:root {
  --hearthwood: #2E2A22;
  --gold: #BD8A3D;
  --oatlight: #F1EFE5;
  --fog: #D8D3C6;
  --sage-text: #6B8564;
  --sage-bg: #E4EBE0;
  --ember-text: #9C4A3C;
  --ember-bg: #F6E9DD;
  --muted: #6B6659;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--oatlight);
  color: var(--hearthwood);
  font-family: 'Work Sans', -apple-system, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; margin-top: 2.2em; }
h3 { font-size: 1.3rem; margin-top: 1.6em; }

p { margin: 0 0 1.1em; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap.wide { max-width: 980px; }

/* ---------- Header ---------- */
header.site {
  padding: 22px 0;
  border-bottom: 1px solid var(--fog);
}
header.site .wrap.wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand svg { width: 22px; height: auto; }
.brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--hearthwood);
}
nav.site a {
  color: var(--hearthwood);
  margin-left: 28px;
  font-size: 0.95rem;
}
nav.site a:hover { color: var(--gold); }
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--hearthwood) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none !important;
}
.cta-button:hover { opacity: 0.9; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}
.hero .mark { width: 56px; margin-bottom: 26px; }
.hero h1 { max-width: 720px; margin-left: auto; margin-right: auto; }
.hero .tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-actions { margin-top: 10px; }
.hero-actions a { margin: 0 8px; }
.secondary-link {
  color: var(--hearthwood) !important;
  border: 1px solid var(--fog);
  padding: 10px 22px;
  border-radius: 8px;
  display: inline-block;
}

/* ---------- Sections ---------- */
section.block { padding: 50px 0; }
section.block.alt { background: #fff; }
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--fog);
  border-radius: 12px;
  padding: 26px;
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.tier {
  border-radius: 12px;
  padding: 22px;
  background: var(--sage-bg);
}
.tier h3 { color: var(--hearthwood); margin-top: 0; font-size: 1.1rem; }
.tier p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  font-style: italic;
  color: var(--muted);
}

.notice {
  background: var(--ember-bg);
  color: var(--ember-text);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.95rem;
  margin: 28px 0;
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--fog);
  padding: 34px 0;
  margin-top: 40px;
}
footer.site .wrap.wide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
footer.site p { margin: 0; color: var(--muted); font-size: 0.9rem; }
footer.site nav a { margin-left: 20px; margin-right: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: 2.1rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.2em; }
.legal h2 { font-size: 1.35rem; margin-top: 1.9em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: 0.5em; }

@media (max-width: 720px) {
  .grid3, .tier-row { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  nav.site { display: none; }
}
