/* ==========================================================================
   DSN 1.1 — BRAND CONFIG · Project 17 · Casinacho (DE + IT)
   Keyword-hijack review of the Mexican-fiesta brand "Casinacho".
   The live site casinacho.com geo-blocks the VPS, so the palette is an
   on-brand reconstruction of the fiesta identity (warm dark shell, sun-yellow
   accent, chili-red action button, papel-picado hero). style.css is NOT
   touched — only the tokens below are overridden.
   Distinct accent hue from Project 16 (which runs the same brand): P17 leads
   with amber/sun-yellow, P16 leads elsewhere — both still read as Casinacho.
   ========================================================================== */

:root {
  /* ---- Brand accent — Casinacho sun-yellow (badges, numbers, rating bars) ---- */
  --accent:       #f5b722;
  --accent-hover: #ffc846;
  --accent-ink:   #2a1606;   /* dark warm ink on the bright amber accent */

  /* ---- CTA — the fiesta "play / claim" button is chili-red, split from the
     amber accent exactly as brand.css anticipates ---- */
  --cta:          #c6312b;
  --cta-hover:    #d94239;
  --cta-ink:      #ffffff;

  /* ---- Wordmark ("Casinacho Review", text, never the logo file) ---- */
  --wordmark-1:        var(--text);
  --wordmark-2:        var(--accent);
  --wordmark-gradient: linear-gradient(180deg, #ffd976, #e28f1c);

  /* ---- Hero — warm near-black chili-brown shell ---- */
  --hero-bg:     #1e1206;
  --hero-wash-1: color-mix(in srgb, var(--accent) 24%, transparent);
  --hero-wash-2: color-mix(in srgb, #c6312b 12%, transparent);

  /* ---- Display font — heavy condensed poster face for the fiesta headline.
     Anton is a single-weight ultra-bold display grotesk; HERO_FONT <link>
     is enabled in every page <head>. ---- */
  --hero-font:        'Anton', 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --hero-font-weight: 400;
  --hero-font-style:  normal;
  --hero-tracking:    0.005em;
  --hero-transform:   uppercase;

  --font-display: 'Anton', 'Oswald', 'Arial Narrow', system-ui, -apple-system, Roboto, Arial, sans-serif;
}

.wordmark, .hero h1 .brand { }
