:root {
  color-scheme: light;
  --bg: #f3f1ea;
  --surface: #fffdf8;
  --surface-2: #f7f9f6;
  --ink: #18221f;
  --muted: #66716d;
  --line: #d8ddd5;
  --green: #0f6b54;
  --blue: #2d5f8b;
  --rose: #a33f55;
  --gold: #b4822f;
  --shadow: 0 18px 55px rgba(25, 38, 31, .11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.icon-button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
}

.icon-button svg {
  height: 16px;
  width: 16px;
}

.icon-button:hover {
  border-color: var(--green);
}

.icon-button.accent {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.icon-button.publish {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.toast {
  background: var(--ink);
  bottom: 22px;
  color: white;
  left: 50%;
  opacity: 0;
  padding: 11px 14px;
  pointer-events: none;
  position: fixed;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
