:root {
  --bg: #f5f3ef;
  --surface: #ffffff;
  --surface-2: #f9f7f3;
  --ink: #171613;
  --muted: #69645c;
  --soft: #e8e2d8;
  --line: #ddd5c9;
  --brand: #2d261d;
  --accent: #9b7348;
  --accent-2: #c59b65;
  --danger: #a33b30;
  --warn: #9a6d11;
  --ok: #2f6f4e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(31, 27, 20, 0.10);
  --shadow-soft: 0 14px 40px rgba(31, 27, 20, 0.08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top left, #fffaf0 0, transparent 36rem), var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

button { cursor: pointer; }

button:disabled { cursor: not-allowed; opacity: .65; }

a { color: inherit; }

.hidden { display: none !important; }

.eyebrow {
  color: var(--accent);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 { font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.05; margin-bottom: .35rem; }
h2 { font-size: clamp(1.24rem, 2vw, 1.55rem); line-height: 1.15; margin-bottom: .25rem; }
h3 { font-size: 1rem; line-height: 1.2; margin-bottom: .35rem; }
p { color: var(--muted); line-height: 1.55; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: .78rem .88rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}

textarea { min-height: 104px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(155, 115, 72, .14);
}

label {
  color: var(--brand);
  display: grid;
  gap: .42rem;
  font-size: .82rem;
  font-weight: 800;
}

small { color: var(--muted); }
