@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Nunito-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Nunito-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/Nunito-800.woff2') format('woff2');
}

:root {
  --bg: #f5f7f2;
  --card: #ffffff;
  --line: #e2e6de;
  --ink: #26292b;
  --muted: #7d827c;
  --faint: #b9beb5;
  --chip: #eceee8;
  --accent: #2e8f5e;
  --accent-bg: #e0f0e6;
  --accent-ink: #1c6844;
  --gold: #d9a441;
  --gold-light: #eec06a;
  --gold-line: #b98a3a;
  --coral: #e2704a;
  --coral-bg: #fdeae2;
  --coral-ink: #b0522f;
  --teal: #3d7fc4;
  --teal-bg: #e3eef9;
  --teal-ink: #245a8c;
  --grass: #4aa66f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.logo { font-weight: 800; color: inherit; text-decoration: none; }
.logo span { color: var(--accent); }

.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 99px;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-a { background: var(--coral); color: #fff; }
.btn-b { background: var(--teal); color: #fff; }
.btn-chip { background: var(--chip); color: var(--muted); }
.btn-coral { background: var(--accent); color: #fff; }

.ad-slot {
  border: 2px dashed var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--faint);
}

.site-footer {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 20px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--faint);
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
