:root {
  --bg: #f3eee4;
  --ink: #2a211c;
  --muted: #6d5e55;
  --card: #fffaf3;
  --line: #e4d8c8;
  --accent: #c45c4a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  line-height: 1.5;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.2rem 1.1rem 3rem;
}

.top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.faces {
  display: flex;
  gap: 0.12rem;
}

.faces img {
  width: 1.15rem;
  height: 1.15rem;
}

h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin: 1.6rem 0 0.5rem;
}

p, li {
  color: var(--ink);
}

.lead, .muted, footer {
  color: var(--muted);
}

.lead { margin: 0 0 1rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0.4rem;
}

a.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
}

a.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.warn {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

ul.plain {
  padding-left: 1.1rem;
}

footer {
  margin-top: 2.4rem;
  font-size: 0.9rem;
}

footer a { color: var(--accent); }

.lang {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.subscribe {
  margin: 1.6rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.subscribe h2 {
  margin-top: 0;
}

.subscribe-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0.5rem;
}

.subscribe-fields input[type="email"] {
  flex: 1 1 12rem;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.subscribe-fields button {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.45rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.subscribe-consent {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
}

.subscribe-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.subscribe-status {
  font-size: 0.9rem;
  margin: 0.4rem 0 0;
}

.subscribe-status[data-state="error"] { color: var(--accent); }
.subscribe-status[data-state="success"] { color: var(--muted); }
