:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #66736f;
  --line: #dce4df;
  --paper: #f7faf7;
  --panel: #ffffff;
  --primary: #0f6f62;
  --primary-deep: #0b4f47;
  --accent: #b58a3d;
  --soft: #d9eef1;
  --soft-green: #e9f3ee;
  --danger-note: #8b5e19;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-banner {
  padding: 10px 18px;
  background: #fff7e6;
  color: var(--danger-note);
  border-bottom: 1px solid #f0d7a6;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.button-primary {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  cursor: pointer;
  font-weight: 800;
}

.button-secondary {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--primary-deep);
  cursor: pointer;
  font-weight: 800;
}

.placeholder-media {
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 111, 98, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 111, 98, 0.18), rgba(181, 138, 61, 0.16)),
    repeating-linear-gradient(45deg, #edf5f1 0 14px, #e2eee8 14px 28px);
  color: var(--primary-deep);
  font-weight: 800;
  text-align: center;
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
