/**
 * Base: reset, design tokens, typography and generic UI primitives (buttons, links, badges).
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  --ink: #201a18;
  --muted: #766d68;
  --cream: #f7f0e6;
  --paper: #fffaf4;
  --saffron: #b35b32;
  --line: #e7ddd3;
  --dark: #2b2421;
  --green: #386b54;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans',sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 13px 19px;
  font-weight: 700;
  font-size: 14px;
}

.btn svg,
.text-link svg,
.trust-row svg,
.microtrust svg,
.icon-circle svg,
.feature svg,
.policy-note svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 8px 20px rgba(179,91,50,.18);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn.small {
  padding: 10px 15px;
}

.btn.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}

button.text-link {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 14px;
}

h1 i,
h2 i {
  color: var(--saffron);
  font-weight: 500;
}

.icon-circle {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1e3d5;
  color: var(--saffron);
  margin-bottom: 22px;
}

.muted {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.error {
  background: #f9e9e4;
  border: 1px solid #e9c4b8;
  color: #8c3e2c;
  padding: 10px;
  border-radius: 7px;
  font-size: 12px;
  margin: 10px 0;
}

.loading {
  min-height: 60vh;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.empty {
  border: 1px dashed #d8ccc2;
  padding: 30px;
  color: var(--muted);
  font-size: 12px;
  border-radius: 8px;
}

.pill {
  display: inline-block;
  border-radius: 99px;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pill-green {
  background: #e7f0ea;
  color: #32654e;
}

.pill-amber {
  background: #fbeedd;
  color: #a3661b;
}

.pill-red {
  background: #f9e9e4;
  color: #8c3e2c;
}
