/* ============================================================
   Milo Antaeus — Site Design System
   v1.0 (2026-06-08) — replaces inline per-page CSS
   Design philosophy:
   - Dark mode default (preserves the brand's existing aesthetic)
   - 8px spacing grid, 4px half-step
   - WCAG 2.2 AA contrast (≥4.5:1 body, ≥3:1 large text)
   - System font stack (no FOIT, no Google Fonts dependency)
   - prefers-reduced-motion respected throughout
   - prefers-color-scheme: light optional toggle
   ============================================================ */

:root {
  /* --- Color tokens (dark default) --- */
  --bg: #0a0a0f;
  --bg-elev-1: #12121a;
  --bg-elev-2: #1a1a24;
  --bg-elev-3: #232330;
  --border: #2a2a38;
  --border-strong: #3a3a4a;
  --text: #f0f0f5;
  --text-muted: #b0b0c0;
  --text-dim: #888898;
  --accent: #ff9a56;          /* Milo orange (WCAG AA on dark) — primary CTA */
  --accent-strong: #ff7a2e;   /* hover, paired with dark text */
  --accent-foreground: #1a0e08; /* text on accent bg — passes 4.5:1 */
  --accent-fg: #1a0e08;       /* legacy alias */
  --accent-hover: #ffb37a;
  --accent-dim: #4a2515;       /* accent background tints */
  --secondary: #b57bff;       /* purple accent (WCAG AA) */
  --secondary-hover: #c99aff;
  --success: #4ade80;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* --- Spacing (8px grid) --- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* --- Type scale --- */
  --fs-xs: 0.75rem;     /* 12 */
  --fs-sm: 0.875rem;    /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md: 1.125rem;    /* 18 */
  --fs-lg: 1.25rem;     /* 20 */
  --fs-xl: 1.5rem;      /* 24 */
  --fs-2xl: 1.875rem;   /* 30 */
  --fs-3xl: 2.25rem;    /* 36 */
  --fs-4xl: 3rem;       /* 48 */
  --fs-5xl: 3.75rem;    /* 60 */

  --lh-tight: 1.15;
  --lh-base: 1.6;
  --lh-loose: 1.8;

  /* --- Radius --- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px rgba(255, 107, 53, 0.3), 0 0 24px rgba(255, 107, 53, 0.15);

  /* --- Layout --- */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 120ms;
  --t-base: 240ms;
  --t-slow: 480ms;

  /* --- Z-index --- */
  --z-nav: 50;
  --z-modal: 100;
  --z-toast: 200;
}

/* --- Optional light scheme (auto-applied if user prefers) --- */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --bg-elev-1: #ffffff;
    --bg-elev-2: #f5f5f8;
    --bg-elev-3: #e8e8f0;
    --border: #d8d8e0;
    --border-strong: #b8b8c5;
    --text: #1a1a25;
    --text-muted: #4a4a58;
    --text-dim: #6a6a78;
  }
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-6) 0; }

/* ============================================================
   Accessibility — skip link, sr-only
   ============================================================ */
.skip-link {
  position: absolute; top: -100px; left: var(--s-2);
  background: var(--accent); color: var(--accent-foreground);
  padding: var(--s-3) var(--s-4); border-radius: var(--r-md);
  font-weight: 700; z-index: var(--z-toast);
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: var(--s-2); }

.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.container { width: 100%; max-width: var(--container-xl); margin: 0 auto; padding: 0 var(--s-5); }
.container-sm { max-width: var(--container-md); }
.container-md { max-width: var(--container-lg); }
.container-lg { max-width: var(--container-xl); }
.container-xl { max-width: var(--container-2xl); }

main { flex: 1 0 auto; padding: var(--s-7) 0; }
main > .container > * + * { margin-top: var(--s-6); }

section { padding: var(--s-7) 0; }
section.tight { padding: var(--s-5) 0; }
section.loose { padding: var(--s-9) 0; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: var(--s-1); } .gap-2 { gap: var(--s-2); } .gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); } .gap-5 { gap: var(--s-5); } .gap-6 { gap: var(--s-6); }

.stack > * + * { margin-top: var(--s-4); }
.stack-sm > * + * { margin-top: var(--s-2); }
.stack-lg > * + * { margin-top: var(--s-6); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }
@media (max-width: 640px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
}
p { color: var(--text); }
p + p { margin-top: var(--s-4); }
.lead { font-size: var(--fs-md); color: var(--text-muted); line-height: var(--lh-loose); max-width: 65ch; }
.eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }
.text-lg { font-size: var(--fs-md); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-mono { font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

ul, ol { padding-left: var(--s-5); }
li + li { margin-top: var(--s-2); }
ul.checks { list-style: none; padding-left: 0; }
ul.checks li { padding-left: var(--s-6); position: relative; }
ul.checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 700;
}

code {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  background: var(--bg-elev-2);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-size: 0.9em;
}
pre {
  background: var(--bg-elev-2);
  padding: var(--s-4);
  border-radius: var(--r-md);
  overflow-x: auto;
  font-size: var(--fs-sm);
}
pre code { background: none; padding: 0; }
blockquote {
  border-left: 4px solid var(--accent);
  padding: var(--s-3) var(--s-5);
  margin: var(--s-5) 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
@media (prefers-color-scheme: light) {
  .nav { background: rgba(250, 250, 250, 0.8); }
}
.nav-inner {
  display: flex; align-items: center; gap: var(--s-5);
  padding: var(--s-3) var(--s-5);
  max-width: var(--container-2xl);
  margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: var(--s-2);
  font-weight: 800; color: var(--text);
  font-size: var(--fs-md);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-brand:hover { text-decoration: none; color: var(--accent); }
.nav-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: var(--r-md);
  color: white; font-weight: 800; font-size: var(--fs-sm);
}
.nav-links {
  display: flex; gap: var(--s-2);
  margin-left: auto; margin-right: var(--s-4);
  list-style: none; padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm); font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: var(--bg-elev-1); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { font-size: var(--fs-sm); }
.nav-toggle {
  display: none;
  padding: var(--s-2);
  background: var(--bg-elev-1);
  border-radius: var(--r-md);
  margin-left: auto;
}
.nav-toggle svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-elev-1);
    border-bottom: 1px solid var(--border);
    padding: var(--s-3);
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: var(--s-3); border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   Links
   ============================================================ */
a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}
a:hover { color: var(--accent-hover); text-decoration-color: var(--accent-hover); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Button-style links should not have underlines */
.btn, .nav-brand, .cookie-banner a, .nav-links a, .footer a, .legal-body a.bare, .hero-image a, .card-link { text-decoration: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-weight: 700; font-size: var(--fs-base);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: var(--s-2) var(--s-4); font-size: var(--fs-sm); }
.btn-lg { padding: var(--s-4) var(--s-6); font-size: var(--fs-md); }
.btn-primary {
  background: var(--accent); color: var(--accent-foreground);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-foreground); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--bg-elev-2); color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-elev-3); border-color: var(--border-strong); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: var(--bg-elev-1); }
.btn-link { color: var(--accent); padding: 0; background: none; }
.btn-link:hover { color: var(--accent-hover); transform: none; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: border-color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.card:hover { border-color: var(--border-strong); }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; border-color: var(--accent); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card-featured { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.card-title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--s-2); color: var(--text); }
.card-subtitle { font-size: var(--fs-sm); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--s-3); }
.card-body { color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--lh-loose); }
.card-footer { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .card-title { font-size: var(--fs-md); }
.product-card .price { font-size: var(--fs-2xl); font-weight: 800; color: var(--accent); }
.product-card .price-range { font-size: var(--fs-lg); font-weight: 700; color: var(--accent); }
.product-card .guarantee { font-size: var(--fs-xs); color: var(--success); margin-top: var(--s-2); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: var(--s-9) 0 var(--s-7);
  background:
    radial-gradient(ellipse at top, rgba(255, 107, 53, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(124, 58, 237, 0.08), transparent 50%);
  border-bottom: 1px solid var(--border);
}
.hero h1 { max-width: 18ch; }
.hero .lead { margin-top: var(--s-4); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.hero-pill::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
}
.hero-grid { align-items: center; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; }
}
.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-elev-1);
}
.hero-image img { width: 100%; height: auto; display: block; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), transparent 50%);
  pointer-events: none;
}

/* ============================================================
   Sections — banner, callout, etc.
   ============================================================ */
.banner {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--s-5);
  border: 1px solid;
}
.banner-info { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: #bfdbfe; }
.banner-success { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.3); color: #bbf7d0; }
.banner-warning { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); color: #fde68a; }
.banner-danger { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.3); color: #fecaca; }
.banner-draft { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); color: #fde68a; }

.callout {
  background: linear-gradient(135deg, var(--bg-elev-1), var(--bg-elev-2));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.callout-accent { border-color: var(--accent); box-shadow: var(--shadow-glow); }

/* ============================================================
   Forms
   ============================================================ */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label { font-weight: 600; font-size: var(--fs-sm); color: var(--text); }
.field label .req { color: var(--danger); }
.field .help { font-size: var(--fs-xs); color: var(--text-dim); }
.field .error { font-size: var(--fs-xs); color: var(--danger); margin-top: var(--s-1); }
input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="number"], input[type="date"], input[type="time"], select, textarea {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}
textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.checkbox { display: flex; gap: var(--s-3); align-items: flex-start; }
.checkbox input { margin-top: 4px; flex-shrink: 0; }
.checkbox label { font-size: var(--fs-sm); color: var(--text-muted); font-weight: 400; line-height: var(--lh-base); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev-1);
  padding: var(--s-7) 0 var(--s-5);
  margin-top: var(--s-9);
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.05em; color: var(--text); margin-bottom: var(--s-3); }
.footer ul { list-style: none; padding: 0; }
.footer li + li { margin-top: var(--s-2); }
.footer a { color: var(--text-muted); font-size: var(--fs-sm); }
.footer a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  color: var(--text-dim);
}
.footer-bottom .legal-links { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.footer-bottom a { color: var(--text-dim); }
.footer-brand { font-weight: 700; color: var(--text); }

/* ============================================================
   Tables
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
th, td { padding: var(--s-3) var(--s-4); text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--bg-elev-1); font-weight: 600; color: var(--text); }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--bg-elev-1); }

/* ============================================================
   Stats
   ============================================================ */
.stat { text-align: center; padding: var(--s-4); }
.stat-value { font-size: var(--fs-4xl); font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: var(--fs-xs); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: var(--s-2); }

/* ============================================================
   Badges / tags
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: var(--s-1);
  padding: 2px var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--r-pill);
  background: var(--bg-elev-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.badge-accent { background: rgba(255, 107, 53, 0.15); color: var(--accent); border-color: rgba(255, 107, 53, 0.3); }
.badge-success { background: rgba(34, 197, 94, 0.15); color: var(--success); border-color: rgba(34, 197, 94, 0.3); }
.badge-secondary { background: rgba(124, 58, 237, 0.15); color: #a78bfa; border-color: rgba(124, 58, 237, 0.3); }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: var(--s-3); right: var(--s-3);
  z-index: var(--z-modal);
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  font-size: var(--fs-xs);
  display: flex; gap: var(--s-2); align-items: center; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text { flex: 1 1 200px; line-height: 1.4; }
.cookie-banner-text strong { color: var(--text); }
.cookie-banner-actions { display: flex; gap: var(--s-1); flex-shrink: 0; }
.cookie-banner .btn-sm { padding: var(--s-1) var(--s-3); font-size: var(--fs-xs); }
@media (max-width: 480px) {
  .cookie-banner { left: var(--s-2); right: var(--s-2); bottom: var(--s-2); max-width: none; }
}

/* ============================================================
   Utility helpers
   ============================================================ */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: var(--s-1) !important; }
.mt-2 { margin-top: var(--s-2) !important; } .mt-3 { margin-top: var(--s-3) !important; }
.mt-4 { margin-top: var(--s-4) !important; } .mt-5 { margin-top: var(--s-5) !important; }
.mt-6 { margin-top: var(--s-6) !important; } .mt-7 { margin-top: var(--s-7) !important; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: var(--s-1) !important; }
.mb-2 { margin-bottom: var(--s-2) !important; } .mb-3 { margin-bottom: var(--s-3) !important; }
.mb-4 { margin-bottom: var(--s-4) !important; } .mb-5 { margin-bottom: var(--s-5) !important; }
.mb-6 { margin-bottom: var(--s-6) !important; }
.no-margin { margin: 0 !important; }
.no-padding { padding: 0 !important; }
.full-width { width: 100% !important; }
.hide { display: none !important; }
.print-only { display: none; }
@media print {
  .nav, .footer, .cookie-banner, .no-print { display: none !important; }
  .print-only { display: block; }
  body { background: white; color: black; }
}
