/* ============================================
   Regulation Station — Shared Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --paper: #FAF6F0;
  --paper-alt: #F3ECE1;
  --ink: #2A241C;
  --ink-soft: #6B6155;
  --rust: #B14A2E;
  --rust-dark: #8C3A22;
  --deep: #24312B;
  --line: #E5DDD0;
  --white: #FFFFFF;

  /* kit accent colors, pulled directly from each printable pack */
  --kit-calm-bg: #F6C6C6;   --kit-calm-ink: #7A3B2E;
  --kit-bed-bg: #B8C9E8;    --kit-bed-ink: #2C4670;
  --kit-school-bg: #B8D9C2; --kit-school-ink: #1F4A32;
  --kit-sib-bg: #D9B8E8;    --kit-sib-ink: #4A2A5C;
  --kit-summer-bg: #FFC98C; --kit-summer-ink: #7A3E0F;
  --kit-bts-bg: #F0B8B8;    --kit-bts-ink: #7A2626;
  --kit-homes-bg: #A8CDC9;  --kit-homes-ink: #1F4A46;
  --kit-chore-bg: #F2DFA0;  --kit-chore-ink: #5C4413;
  --kit-doc-bg: #B8DDE8;    --kit-doc-ink: #1D4A5F;
  --kit-worry-bg: #C8D2B8;  --kit-worry-ink: #3E4A32;
  --kit-journal-bg: #D9C4A8; --kit-journal-ink: #5C3A17;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 45px rgba(42, 36, 28, 0.10);
  --shadow-soft: 0 10px 25px rgba(42, 36, 28, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Public Sans', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.4em 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em 0; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.nav-links { display: flex; gap: 34px; align-items: center; font-weight: 600; font-size: 14.5px; }
.nav-links a { color: var(--ink-soft); transition: color 0.15s; }
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--rust); }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rust); color: var(--white); box-shadow: 0 10px 24px rgba(177,74,46,0.30); }
.btn-primary:hover { background: var(--rust-dark); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep);
  color: #DCE6E0;
  margin-top: 120px;
  padding: 64px 0 32px;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.site-footer h4 { color: white; font-size: 15px; margin-bottom: 14px; }
.site-footer a { color: #B7C6BE; display: block; margin-bottom: 8px; font-size: 14px; }
.site-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #8FA398;
}

/* ---------- Section spacing ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 640px) {
  .section { padding: 56px 0; }
}
