/* ═══════════════════════════════════════════════
   GRUMBLEGRAM · Warm minimal site
   Shared tokens, nav, footer, cards, tiles
   ═══════════════════════════════════════════════ */

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

:root {
  --bg: #FFF9F1;
  --ink: #261D15;
  --ink-2: #6E6157;
  --accent: #E4572E;
  --accent-soft: #FBEAE2;
  --card: #FFFFFF;
  --line: #EFE3D5;
  --happy-1: #BCDFAE; --happy-2: #92C57E;
  --content-1: #E4EDD2; --content-2: #CFDBB0;
  --neu-1: #FDF6E6; --neu-2: #EDE1C4;
  --annoy-1: #F8D3C6; --annoy-2: #EBAE9B;
  --mad-1: #F2A48F; --mad-2: #D9765B;
  --disp: 'Bricolage Grotesque', sans-serif;
  --body: 'Karla', sans-serif;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ── Nav ─────────────────────────────────────── */
nav.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em; text-decoration: none;
}
.logo-tile {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(160deg, var(--mad-1), var(--mad-2));
  display: grid; place-items: center;
}
.logo-tile svg { width: 20px; height: 14px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.pill {
  background: var(--ink); color: var(--bg); padding: 10px 20px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: transform .15s ease;
}
.pill:hover { transform: translateY(-2px); }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--disp); font-weight: 600; font-size: 16px;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 16px 28px; border-radius: 14px;
  box-shadow: 0 8px 24px rgba(228,87,46,.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(228,87,46,.34); }
.btn-ghost { font-weight: 700; font-size: 15px; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--line); padding-bottom: 2px; }

/* ── Tiles ───────────────────────────────────── */
.tl {
  aspect-ratio: 1; border-radius: 7px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--disp); font-weight: 800; font-size: 17px; line-height: 1;
  color: var(--ink);
  box-shadow: 0 2px 4px rgba(38,29,21,.18);
}
.tl svg { width: 16px; height: 9px; margin-top: 1px; }
.tl.h { background: linear-gradient(170deg, var(--happy-1), var(--happy-2)); }
.tl.c { background: linear-gradient(170deg, var(--content-1), var(--content-2)); }
.tl.n { background: linear-gradient(170deg, var(--neu-1), var(--neu-2)); }
.tl.a { background: linear-gradient(170deg, var(--annoy-1), var(--annoy-2)); }
.tl.m { background: linear-gradient(170deg, var(--mad-1), var(--mad-2)); }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 2px 4px rgba(38,29,21,.03), 0 16px 32px rgba(38,29,21,.05);
}

/* ── Inner pages ─────────────────────────────── */
.page {
  max-width: 720px; margin: 0 auto;
  padding: 40px 32px 80px;
}
.page-eyebrow {
  display: inline-flex;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); border-radius: 100px; padding: 7px 14px;
  margin-bottom: 20px;
}
.page h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 14px;
}
.page .page-intro { font-size: 17.5px; color: var(--ink-2); margin-bottom: 40px; max-width: 54ch; }
.page .page-date { font-size: 14px; color: var(--ink-2); margin-bottom: 36px; }

/* FAQ cards */
.faq { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.faq .card h3 { font-family: var(--disp); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 8px; }
.faq .card p { font-size: 15.5px; color: var(--ink-2); }
.faq .card p b { color: var(--ink); font-weight: 700; }

/* Contact block */
.contact-card {
  background: var(--ink); color: var(--bg);
  border-radius: 22px; padding: 36px 32px; text-align: center;
}
.contact-card h2 { font-family: var(--disp); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 6px; }
.contact-card .email {
  display: inline-block;
  font-family: var(--disp); font-weight: 600; font-size: 19px;
  color: var(--bg); text-decoration: none;
  border-bottom: 2px solid var(--accent);
  margin: 8px 0 10px;
}
.contact-card .email:hover { color: #fff; }
.contact-card p { font-size: 14px; color: #C9BCAF; }

/* Policy sections */
.policy-callout {
  background: var(--accent-soft);
  border-radius: 18px; padding: 22px 26px;
  font-size: 16px; line-height: 1.65;
  margin-bottom: 40px;
}
.policy-callout b { color: var(--accent); }
.policy { margin-bottom: 34px; }
.policy h2 {
  font-family: var(--disp); font-weight: 600; font-size: 21px;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.policy h3 {
  font-family: var(--disp); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em; margin-top: 20px; margin-bottom: 8px;
}
.policy p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; }
.policy p + p { margin-top: 10px; }
.policy ul { margin: 10px 0 0 20px; }
.policy li { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; }
.policy a { color: var(--accent); text-decoration: none; font-weight: 600; }
.policy a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────────── */
footer.site {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0 36px; font-size: 13.5px; color: var(--ink-2);
}
footer.site .links { display: flex; gap: 22px; }
footer.site a { text-decoration: none; }
footer.site a:hover { color: var(--ink); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links a:not(.pill) { display: none; }
  footer.site { flex-direction: column; gap: 12px; }
  .page { padding: 24px 24px 60px; }
}
