/* Pimpelmees Product Model — Shared Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* Core palette */
  --bg: #faf8f5;
  --text: #2c2926;
  --text-soft: #7a7168;
  --cream: #f3efe9;
  --warm-1: #e8c9a0;
  --warm-2: #d4a574;
  --warm-3: #b8845a;
  --sage: #8fa68f;
  --sage-light: #c5d6c0;
  --sky: #8eaec4;
  --sky-light: #c8dae8;
  --blush: #c9908a;
  --blush-light: #e8cbc7;
  --sand: #c4b69c;

  /* Semantic tokens */
  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 56px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Page container */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 40px 100px;
}

/* Back link — consistent across all pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--text); }
.back-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Header pattern */
header { text-align: center; margin-bottom: 48px; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-3);
  margin-bottom: 14px;
}

header h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

header .subtitle {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stat { text-align: center; }

.stat-value {
  font-size: 26px;
  font-weight: 600;
  color: var(--warm-3);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Section label — uppercase divider headings */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--space-sm);
}

/* Content headings */
h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: var(--space-xs);
}

/* Body text */
p {
  font-size: 14px;
  line-height: 1.55;
}

.text-soft {
  color: var(--text-soft);
  font-weight: 300;
}

.text-small {
  font-size: 13px;
}

/* Card base */
.card {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

/* Stats bar — boxed variant (used by most pages) */
.stats-bar--boxed {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 28px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 300;
}

footer .source {
  font-size: 12px;
  color: var(--sand);
  margin-top: 6px;
  font-family: 'DM Sans', monospace;
}

/* Responsive */
@media (max-width: 640px) {
  .page { padding: 40px 20px 72px; }
  header h1 { font-size: 26px; }
  .stats-bar { gap: 16px; }
  .stat-value { font-size: 20px; }
  .back-link { margin-bottom: 28px; }
}
