/* Friday Pour public pages. Colours mirror lib/theme.ts. */
:root {
  --dark: #14100c;
  --card: #1f1813;
  --cream: #f3e9d8;
  --amber: #e0a455;
  --amber-light: #f4c074;
  --muted: #a18a72;
  --border: #3a2d22;
  --pour: #c8772e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--dark);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: 680px; margin: 0 auto; }

header {
  padding: 48px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.brand {
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 10px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  color: var(--amber-light);
  margin: 40px 0 12px;
}

h3 { font-size: 17px; color: var(--cream); margin: 26px 0 8px; }

.updated { color: var(--muted); font-size: 14px; margin: 0; }

p, li { color: var(--cream); }
li { margin-bottom: 8px; }
ul { padding-left: 22px; }

a { color: var(--amber); }
a:hover { color: var(--amber-light); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top-color: rgba(244, 192, 116, 0.18);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 26px 0;
}

.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 16px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--amber);
  color: #2a1c0c;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note {
  border-left: 3px solid var(--pour);
  padding: 2px 0 2px 16px;
  color: var(--muted);
  font-size: 15px;
}

.todo {
  background: var(--pour);
  color: #14100c;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 4px;
}

footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--amber-light); font-weight: 600; }
td { color: var(--cream); }

@media (max-width: 520px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
}
