﻿/* ================================================================
   variables.css â€” Generated by tokens-to-css.ps1
   Make   : european
   Mode   : dark
   Source : themes/brands/european/tokens.json
   DO NOT EDIT MANUALLY â€” run: .\tokens-to-css.ps1 -make european
   MORPH-09: --surface is light for light-mode makes.
             --nav-bg / --footer-bg carry the dark surface.
   MORPH-16: --shadow-sm/md/lg and --dl-motion-speed/easing added.
================================================================ */

:root {
  /* === Mode === */
  --mode: "dark";

  /* === Brand Colors === */
  --primary:          #C8A850;
  --primary-hover:    #A48A42;
  --bg:               #0A0A0C;
  --surface:          #44444E;
  --border:           rgba(200,168,80,0.18);
  --text:             #E8E8F0;
  --text-muted:       #B0B0C0;

  /* === Derived Semantic Colors === */
  --text-inverse:       #E8E8F0;
  --text-muted-inverse: #B0B0C0;
  --footer-heading:     #C8A850;

  /* === Component Background Tokens (MORPH-09) === */
  /* --nav-bg and --footer-bg are the original dark surface: nav/footer stay dark. */
  /* --surface above is now the light elevated card/section background. */
  --nav-bg:             #44444E;
  --nav-bg-rgb:         68,68,78;
  --footer-bg:          #44444E;

  /* === Typography === */
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === Shape === */
  --radius-sm:   2px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-full: 9999px;

  /* === Shadows (MORPH-16: CSS-01) === */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.30);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.40);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.50);

  /* === Motion (MORPH-16: CSS-02) === */
  --speed:           200ms;
  --easing:          ease;
  --dl-motion-speed: 200ms;
  --dl-motion-easing: ease;

  /* === Spacing === */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* === Layout === */
  --max-w:  var(--dl-container-max, 1200px);
  --pad-h:  24px;
}

/* === Base Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p + p { margin-top: 1em; }

/* fonts.css - make: european - Strategy A: CSS @import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Syne:wght@600;700;800&display=swap");

/* COVOS Morpheme Library — Shared Reset
   Applied to every assembled site.
   No class names — pure element resets only.
   ─────────────────────────────────────── */

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* === Base Typography (MORPH-17: CSS-11) ===
   Element-level defaults. Component CSS may override.
   Depends on CSS custom properties from variables.css (loaded first).
   ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: var(--dl-heading-lh, 1.15);
  color: var(--text);
  font-weight: var(--dl-heading-weight, 700);
}

p {
  font-family: var(--font-body);
  font-size: var(--dl-body-size, 16px);
  line-height: var(--dl-body-lh, 1.7);
  color: var(--text);
}

li {
  font-family: var(--font-body);
  font-size: var(--dl-body-size, 16px);
  line-height: var(--dl-body-lh, 1.7);
  color: var(--text);
}

strong, b { font-weight: 700; }
em, i     { font-style: italic; }
small     { font-size: 0.85em; }

code, kbd, samp {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}


/*
 * COVOS Design Language System — index.css
 * Layer 1: Structural CSS variables per language
 * Body class (e.g. .lang-clinical) set by assembler from profile.json
 * Brand tokens (Layer 3) may override motion.speed and shape.radius only
 * Version: 1.0
 * MORPH-16: CSS-15 fix — color-mix() fallbacks added to vl-approachable.
 *           CSS-05 fix — section-alt rules added for all 7 visual languages.
 * MORPH-19: VL archetype color differentiation, scroll reveal classes added.
 */

/* === Global Focus Visibility (WCAG 2.1 AA — SC 2.4.7) === (MORPH-17: CSS-17) */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Nav links and buttons get a rounded focus ring to match their shape */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm, 2px);
}

/* FAQ buttons use an inset ring to avoid layout shift */
[class*="-faq-question"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* Remove focus ring on mouse click but not keyboard */
:focus:not(:focus-visible) { outline: none; }

/* ─────────────────────────────────────────────
   CLINICAL — Precision, engineering, restraint
───────────────────────────────────────────── */
.lang-clinical {
  --dl-spacing-base:        6px;
  --dl-section-padding-y:   56px;
  --dl-container-max:       1100px;
  --dl-container-px:        24px;
  --dl-component-gap:       14px;
  --dl-card-gap:            16px;

  --dl-hero-size:           clamp(2.2rem, 4.5vw, 3.6rem);
  --dl-h1-size:             clamp(1.8rem, 3.5vw, 2.8rem);
  --dl-h2-size:             clamp(1.2rem, 2vw, 1.6rem);
  --dl-h3-size:             1.1rem;
  --dl-body-size:           15px;
  --dl-body-lh:             1.65;
  --dl-hero-lh:             1.05;
  --dl-heading-lh:          1.1;
  --dl-heading-weight:      800;
  --dl-eyebrow-size:        0.7rem;
  --dl-eyebrow-ls:          0.12em;

  --dl-radius-sm:           0px;
  --dl-radius-md:           2px;
  --dl-radius-lg:           4px;
  --dl-radius-full:         2px;
  --dl-btn-radius:          2px;

  --dl-motion-speed:        100ms;
  --dl-motion-easing:       ease;

  --dl-hero-min-h:          58vh;
  --dl-hero-max-h:          68vh;
  --dl-hero-content-max:    580px;
  --dl-grid-columns:        3;
  --dl-sidebar-width:       280px;
}

/* ─────────────────────────────────────────────
   PERFORMANCE — Intensity, data-forward, bold
───────────────────────────────────────────── */
.lang-performance {
  --dl-spacing-base:        8px;
  --dl-section-padding-y:   64px;
  --dl-container-max:       1200px;
  --dl-container-px:        28px;
  --dl-component-gap:       20px;
  --dl-card-gap:            20px;

  --dl-hero-size:           clamp(2.8rem, 6vw, 5rem);
  --dl-h1-size:             clamp(2rem, 4vw, 3.2rem);
  --dl-h2-size:             clamp(1.4rem, 2.4vw, 1.9rem);
  --dl-h3-size:             1.2rem;
  --dl-body-size:           16px;
  --dl-body-lh:             1.6;
  --dl-hero-lh:             0.95;
  --dl-heading-lh:          1.0;
  --dl-heading-weight:      900;
  --dl-eyebrow-size:        0.65rem;
  --dl-eyebrow-ls:          0.18em;

  --dl-radius-sm:           0px;
  --dl-radius-md:           0px;
  --dl-radius-lg:           0px;
  --dl-radius-full:         0px;
  --dl-btn-radius:          0px;

  --dl-motion-speed:        80ms;
  --dl-motion-easing:       ease-out;

  --dl-hero-min-h:          72vh;
  --dl-hero-max-h:          88vh;
  --dl-hero-content-max:    720px;
  --dl-grid-columns:        3;
  --dl-sidebar-width:       0px;
}

/* ─────────────────────────────────────────────
   PREMIUM — Restraint, whitespace, earned luxury
───────────────────────────────────────────── */
.lang-premium {
  --dl-spacing-base:        8px;
  --dl-section-padding-y:   80px;
  --dl-container-max:       1040px;
  --dl-container-px:        32px;
  --dl-component-gap:       24px;
  --dl-card-gap:            24px;

  --dl-hero-size:           clamp(2.4rem, 4.8vw, 4.2rem);
  --dl-h1-size:             clamp(1.8rem, 3.2vw, 2.8rem);
  --dl-h2-size:             clamp(1.1rem, 1.8vw, 1.5rem);
  --dl-h3-size:             1rem;
  --dl-body-size:           16px;
  --dl-body-lh:             1.75;
  --dl-hero-lh:             1.05;
  --dl-heading-lh:          1.1;
  --dl-heading-weight:      300;
  --dl-eyebrow-size:        0.65rem;
  --dl-eyebrow-ls:          0.2em;

  --dl-radius-sm:           0px;
  --dl-radius-md:           0px;
  --dl-radius-lg:           0px;
  --dl-radius-full:         0px;
  --dl-btn-radius:          0px;

  --dl-motion-speed:        200ms;
  --dl-motion-easing:       cubic-bezier(0.25, 0.1, 0.25, 1);

  --dl-hero-min-h:          50vh;
  --dl-hero-max-h:          62vh;
  --dl-hero-content-max:    640px;
  --dl-grid-columns:        2;
  --dl-sidebar-width:       0px;
}

/* ─────────────────────────────────────────────
   HERITAGE — Craft, warmth, structural character
───────────────────────────────────────────── */
.lang-heritage {
  --dl-spacing-base:        8px;
  --dl-section-padding-y:   60px;
  --dl-container-max:       1100px;
  --dl-container-px:        28px;
  --dl-component-gap:       18px;
  --dl-card-gap:            20px;

  --dl-hero-size:           clamp(2.2rem, 4.5vw, 3.8rem);
  --dl-h1-size:             clamp(1.7rem, 3vw, 2.6rem);
  --dl-h2-size:             clamp(1.2rem, 2vw, 1.6rem);
  --dl-h3-size:             1.1rem;
  --dl-body-size:           16px;
  --dl-body-lh:             1.7;
  --dl-hero-lh:             1.1;
  --dl-heading-lh:          1.15;
  --dl-heading-weight:      700;
  --dl-eyebrow-size:        0.7rem;
  --dl-eyebrow-ls:          0.1em;

  --dl-radius-sm:           2px;
  --dl-radius-md:           4px;
  --dl-radius-lg:           6px;
  --dl-radius-full:         4px;
  --dl-btn-radius:          3px;

  --dl-motion-speed:        150ms;
  --dl-motion-easing:       ease;

  --dl-hero-min-h:          60vh;
  --dl-hero-max-h:          70vh;
  --dl-hero-content-max:    600px;
  --dl-grid-columns:        3;
  --dl-sidebar-width:       300px;
}

/* ─────────────────────────────────────────────
   APPROACHABLE — Friendly, human-scale, accessible
───────────────────────────────────────────── */
.lang-approachable {
  --dl-spacing-base:        8px;
  --dl-section-padding-y:   56px;
  --dl-container-max:       1100px;
  --dl-container-px:        24px;
  --dl-component-gap:       20px;
  --dl-card-gap:            20px;

  --dl-hero-size:           clamp(2rem, 4vw, 3.4rem);
  --dl-h1-size:             clamp(1.6rem, 3vw, 2.4rem);
  --dl-h2-size:             clamp(1.1rem, 1.8vw, 1.5rem);
  --dl-h3-size:             1.05rem;
  --dl-body-size:           16px;
  --dl-body-lh:             1.7;
  --dl-hero-lh:             1.15;
  --dl-heading-lh:          1.2;
  --dl-heading-weight:      700;
  --dl-eyebrow-size:        0.75rem;
  --dl-eyebrow-ls:          0.08em;

  --dl-radius-sm:           4px;
  --dl-radius-md:           8px;
  --dl-radius-lg:           12px;
  --dl-radius-full:         999px;
  --dl-btn-radius:          6px;

  --dl-motion-speed:        150ms;
  --dl-motion-easing:       ease-in-out;

  --dl-hero-min-h:          52vh;
  --dl-hero-max-h:          64vh;
  --dl-hero-content-max:    660px;
  --dl-grid-columns:        3;
  --dl-sidebar-width:       280px;
}

/* ─────────────────────────────────────────────
   EDITORIAL — Typography-led, destination feel
───────────────────────────────────────────── */
.lang-editorial {
  --dl-spacing-base:        8px;
  --dl-section-padding-y:   72px;
  --dl-container-max:       1080px;
  --dl-container-px:        28px;
  --dl-component-gap:       22px;
  --dl-card-gap:            24px;

  --dl-hero-size:           clamp(2.6rem, 5.5vw, 4.8rem);
  --dl-h1-size:             clamp(2rem, 3.8vw, 3.2rem);
  --dl-h2-size:             clamp(1.2rem, 2vw, 1.7rem);
  --dl-h3-size:             1.1rem;
  --dl-body-size:           17px;
  --dl-body-lh:             1.8;
  --dl-hero-lh:             1.05;
  --dl-heading-lh:          1.08;
  --dl-heading-weight:      600;
  --dl-eyebrow-size:        0.65rem;
  --dl-eyebrow-ls:          0.16em;

  --dl-radius-sm:           0px;
  --dl-radius-md:           0px;
  --dl-radius-lg:           0px;
  --dl-radius-full:         0px;
  --dl-btn-radius:          0px;

  --dl-motion-speed:        160ms;
  --dl-motion-easing:       ease;

  --dl-hero-min-h:          65vh;
  --dl-hero-max-h:          80vh;
  --dl-hero-content-max:    760px;
  --dl-grid-columns:        2;
  --dl-sidebar-width:       0px;
}


/* =======================================================================
   MORPH-10: Visual Language Body-Class Overrides
   Applied via body.vl-* classes injected by assembler from recipe.visualLanguage.
   All selectors use attribute wildcards to avoid CSS_PREFIX coupling.
======================================================================= */

/* ─────────────────────────────────────────────
   VL-PRECISION — Engineering exactness, monospace codes, zero ornament
───────────────────────────────────────────── */
body.vl-precision [class*="-service-card"] { border-radius: 0; }
body.vl-precision [class*="-service-icon"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
body.vl-precision [class*="-section"] + [class*="-section"] {
  border-top: 1px solid var(--border);
}
body.vl-precision [class*="-trust-item"] [class*="-trust-icon"] { display: none; }
body.vl-precision [class*="-trust-item"]::before {
  content: attr(data-code);
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 8px;
}

/* ─────────────────────────────────────────────
   VL-PRECISION: Section alternation (Audi, Mercedes)
   Uses --surface (light elevated tone ~#EAEAE8) for structural band effect.
   CSS-05 fix — MORPH-16
───────────────────────────────────────────── */
body.vl-precision [class*="-section-alt"] {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────
   VL-PERFORMANCE — Bold, data-forward, numbered sections
───────────────────────────────────────────── */
body.vl-performance [class*="-service-icon"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 0;
}
body.vl-performance [class*="-section-title"]::before {
  content: attr(data-num);
  position: absolute;
  left: -2rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
}
body.vl-performance [class*="-section-title"] { position: relative; }

/* ─────────────────────────────────────────────
   VL-PERFORMANCE: Section alternation (BMW, Porsche)
   Uses --nav-bg (dark surface) for aggressive light→dark→light rhythm.
   Text/icon colors inside dark blocks overridden for legibility.
   CSS-05 fix — MORPH-16
───────────────────────────────────────────── */
body.vl-performance [class*="-section-alt"] {
  background: var(--nav-bg);
}
body.vl-performance [class*="-section-alt"] [class*="-section-title"] { color: var(--text-inverse); }
body.vl-performance [class*="-section-alt"] [class*="-service-name"]  { color: var(--text-inverse); }
body.vl-performance [class*="-section-alt"] [class*="-service-desc"]  { color: var(--text-muted-inverse); }
body.vl-performance [class*="-section-alt"] [class*="-review-text"]   { color: var(--text-muted-inverse); }

/* ─────────────────────────────────────────────
   VL-PREMIUM — Restraint, whitespace, earned reveal
───────────────────────────────────────────── */
body.vl-premium [class*="-service-icon"] { display: none; }
body.vl-premium [class*="-service-card"] {
  border: none;
  background: transparent;
  border-left: 0px solid var(--primary);
  transition: border-left-width 150ms ease, padding-left 150ms ease;
  padding-left: 0;
}
body.vl-premium [class*="-service-card"]:hover {
  border-left-width: 3px;
  padding-left: 12px;
}
body.vl-premium [class*="-section-title"] { font-weight: 300; }
body.vl-premium [class*="-trust-strip"] { display: flex; gap: 24px; }
body.vl-premium [class*="-trust-item"] { display: inline; }
body.vl-premium [class*="-trust-item"] + [class*="-trust-item"]::before {
  content: " - ";
  color: var(--text-muted);
}
body.vl-premium [class*="-trust-icon"] { display: none; }

/* ─────────────────────────────────────────────
   VL-PREMIUM: Section alternation (Mercedes — clinical DIM)
   Uses --surface. Relies on whitespace alone (no border).
   CSS-05 fix — MORPH-16
───────────────────────────────────────────── */
body.vl-premium [class*="-section-alt"] {
  background: var(--surface);
}

/* ─────────────────────────────────────────────
   VL-APPROACHABLE — Pill shapes, warm, human-scale
   CSS-15 fix: color-mix() lines now have rgba() fallback preceding them.
───────────────────────────────────────────── */
body.vl-approachable [class*="-service-icon"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);                                                    /* fallback */
  background: color-mix(in srgb, var(--primary) 15%, transparent);                /* modern */
  color: var(--primary);
  font-weight: 700;
}
body.vl-approachable [class*="-service-card"] { border-radius: var(--radius-full); }
body.vl-approachable [class*="-trust-item"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);                                                    /* fallback */
  background: color-mix(in srgb, var(--primary) 10%, transparent);                /* modern */
}

/* ─────────────────────────────────────────────
   VL-APPROACHABLE: Section alternation (VW, European)
   Uses --surface for warm elevated band. Cards already have border-radius.
   CSS-05 fix — MORPH-16
───────────────────────────────────────────── */
body.vl-approachable [class*="-section-alt"] {
  background: var(--surface);
}

/* ─────────────────────────────────────────────
   VL-HERITAGE — Structural character, ruled accents
───────────────────────────────────────────── */
body.vl-heritage [class*="-service-card"] { border-top: 3px solid var(--primary); }
body.vl-heritage [class*="-eyebrow"]::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--primary);
  margin-top: 6px;
}
body.vl-heritage [class*="-trust-icon"] { display: none; }
body.vl-heritage [class*="-trust-item"]::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--primary);
  margin-right: 10px;
  vertical-align: middle;
}

/* VL-HERITAGE: Section alternation — diagonal texture (original, kept) */
body.vl-heritage [class*="-section-alt"] {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(0,0,0,0.012) 24px,
    rgba(0,0,0,0.012) 25px
  );
}

/* ─────────────────────────────────────────────
   VL-EDITORIAL — Typography-led, destination feel, silence
───────────────────────────────────────────── */
body.vl-editorial [class*="-service-card"] { border: none; background: transparent; }
body.vl-editorial [class*="-service-icon"] { display: none; }
body.vl-editorial [class*="-service-name"] { color: var(--primary); }
body.vl-editorial [class*="-trust-strip"] { display: none; }
body.vl-editorial [class*="-section"] + [class*="-section"] {
  border-top: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
}
body.vl-editorial [class*="-hero-eyebrow"] { letter-spacing: 0.3em; }
body.vl-editorial footer { border-top: 1px solid var(--primary); }

/* ─────────────────────────────────────────────
   VL-EDITORIAL: Section alternation (European dark mode)
   Subtle white lift on dark background.
   CSS-05 fix — MORPH-16
───────────────────────────────────────────── */
body.dark [class*="-section-alt"] {
  background: rgba(255,255,255,0.04);
}

/* =======================================================================
   MORPH-10: Micro-Interaction Body-Class Overrides
   Applied via body.mi-* classes injected by assembler from recipe.microInteractions.
======================================================================= */

/* --- MI-MINIMAL: subtle border shift only, no lift --- */
body.mi-minimal [class*="-service-card"] { transition: border-color 100ms ease; }
body.mi-minimal [class*="-service-card"]:hover { transform: none; box-shadow: none; }

/* --- MI-CONSIDERED: gentle lift --- */
body.mi-considered [class*="-service-card"] {
  transition: transform 150ms ease, box-shadow 150ms ease;
}
body.mi-considered [class*="-service-card"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* --- MI-EXPRESSIVE: energetic lift + hero cascade animations --- */
body.mi-expressive [class*="-service-card"] {
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}
body.mi-expressive [class*="-service-card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
body.mi-expressive [class*="-hero-eyebrow"]  { animation: fadeInUp 0.4s ease both; }
body.mi-expressive [class*="-hero-heading"]  { animation: fadeInUp 0.4s 0.1s ease both; }
body.mi-expressive [class*="-hero-sub"]      { animation: fadeInUp 0.4s 0.2s ease both; }
body.mi-expressive [class*="-hero-cta"]      { animation: fadeInUp 0.4s 0.3s ease both; }

/* MORPH-18: CSS-12 — Staggered service card entrance for mi-expressive (BMW, Porsche) */
body.mi-expressive [class*="-service-card"]:nth-child(1) { animation: fadeInUp 0.4s 0.05s ease both; }
body.mi-expressive [class*="-service-card"]:nth-child(2) { animation: fadeInUp 0.4s 0.10s ease both; }
body.mi-expressive [class*="-service-card"]:nth-child(3) { animation: fadeInUp 0.4s 0.15s ease both; }
body.mi-expressive [class*="-service-card"]:nth-child(4) { animation: fadeInUp 0.4s 0.20s ease both; }
body.mi-expressive [class*="-service-card"]:nth-child(5) { animation: fadeInUp 0.4s 0.25s ease both; }
body.mi-expressive [class*="-service-card"]:nth-child(6) { animation: fadeInUp 0.4s 0.30s ease both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- MI-CINEMATIC: long curves, left-border reveal, no bounce --- */
body.mi-cinematic * {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  transition-duration: 240ms !important;
}
body.mi-cinematic [class*="-service-card"]:hover {
  transform: none;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  box-shadow: none;
}


/* =======================================================================
   MORPH-12-VT: Per-Design-Language Atmosphere Backgrounds
   Purely decorative. pointer-events: none. z-index: 0.
   Applied via body::after on each lang-* class.
======================================================================= */

/* ─────────────────────────────────────────────
   CLINICAL (Audi) — subtle dot-grid
───────────────────────────────────────────── */
body.lang-clinical::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.035) 1px, transparent 0);
  background-size: 20px 20px;
}

/* ─────────────────────────────────────────────
   PERFORMANCE (BMW, Porsche) — diagonal hash marks
───────────────────────────────────────────── */
body.lang-performance::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 11px,
      rgba(0,0,0,0.018) 11px,
      rgba(0,0,0,0.018) 12px
    );
}

/* ─────────────────────────────────────────────
   PREMIUM (Mercedes) — atmosphere IS the whitespace.
   No ::after pattern. Instead: increase section padding by 40%.
───────────────────────────────────────────── */
.lang-premium {
  --dl-section-padding-y: 112px;
}

/* ─────────────────────────────────────────────
   HERITAGE (Land Rover) — subtle SVG noise texture
───────────────────────────────────────────── */
body.lang-heritage::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─────────────────────────────────────────────
   APPROACHABLE (VW) — soft radial from centre
───────────────────────────────────────────── */
body.lang-approachable::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%);
}

/* ─────────────────────────────────────────────
   EDITORIAL (European) — horizontal hairline rules at 33% + 66%
   Using body::before for first rule, body::after for second.
───────────────────────────────────────────── */
body.lang-editorial::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 33%;
  height: 1px;
  background: var(--border, rgba(0,0,0,0.08));
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

body.lang-editorial::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 66%;
  height: 1px;
  background: var(--border, rgba(0,0,0,0.08));
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   Mobile: reduce or disable atmosphere patterns
───────────────────────────────────────────── */
@media (max-width: 768px) {
  body.lang-clinical::after,
  body.lang-heritage::after {
    display: none;
  }
  body.lang-performance::after,
  body.lang-approachable::after {
    opacity: 0.5;
  }
  body.lang-editorial::before,
  body.lang-editorial::after {
    display: none;
  }
}


/* =======================================================================
   MORPH-12-VT: Section Rhythm — structural dividers + breathing room
======================================================================= */

/* ─────────────────────────────────────────────
   VL-PRECISION + VL-PREMIUM: strengthen section dividers
───────────────────────────────────────────── */
body.vl-precision [class*="-section"] + [class*="-section"] {
  padding-top: calc(var(--dl-section-padding-y, 56px) * 1.4);
}

body.vl-premium [class*="-section"] + [class*="-section"] {
  border-top: 1px solid var(--border);
  padding-top: calc(var(--dl-section-padding-y, 80px) * 1.4);
}


/* =======================================================================
   MORPH-19: Archetype-Differentiated Section Color Schemes
   VL body classes drive visual differentiation across archetypes.
   Task 2: Light → dark → light rhythm per archetype.
======================================================================= */

/* VL-PERFORMANCE: services section goes dark for light→dark rhythm (BMW, Porsche) */
body.vl-performance [class*="-section-alt"]:first-of-type {
  background: var(--nav-bg);
  border-top: none;
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-section-title"] {
  color: var(--text-inverse);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-eyebrow"] {
  color: rgba(255,255,255,0.55);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-service-card"] {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-service-name"] {
  color: var(--text-inverse);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-service-desc"] {
  color: var(--text-muted-inverse);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-service-link"] {
  color: var(--primary);
}
body.vl-performance [class*="-section-alt"]:first-of-type [class*="-service-icon"] {
  background: var(--primary);
  color: #fff;
}

/* VL-PRECISION: trust strip gets extra visual weight — dark band immediately below hero */
body.vl-precision [class*="-trust-strip"] {
  border-top: 3px solid var(--primary);
  border-bottom: 1px solid var(--border);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
body.vl-precision [class*="-trust-credential-text"] {
  font-size: var(--dl-body-size, 15px);
}

/* VL-HERITAGE: "Why Us" section gets warm textured background (Land Rover) */
body.vl-heritage [class*="-why-us"] {
  background: color-mix(in srgb, var(--primary) 4%, var(--bg));
  border-top: 3px solid var(--primary);
}
/* Fallback for older browsers */
@supports not (background: color-mix(in srgb, red 4%, blue)) {
  body.vl-heritage [class*="-why-us"] {
    background: var(--surface);
  }
}

/* VL-PREMIUM: CTA band uses restrained dark treatment (Mercedes) */
body.vl-premium [class*="-cta-band"] {
  background: var(--nav-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.vl-premium [class*="-cta-band-headline"] {
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}


/* =======================================================================
   MORPH-19+: Section Title Base CSS
   Applied globally — DL classes provide override values.
   section-title is used in every section template but had no CSS.
======================================================================= */

[class*="-section-title"] {
  font-family: var(--font-head);
  font-size: var(--dl-h2-size, clamp(1.4rem, 2.5vw, 2rem));
  font-weight: var(--dl-heading-weight, 700);
  line-height: var(--dl-heading-lh, 1.15);
  color: var(--text);
  margin-bottom: var(--space-5, 24px);
  letter-spacing: -0.01em;
}

/* Eyebrow label — small uppercase text above section titles */
[class*="-eyebrow"] {
  font-family: var(--font-body);
  font-size: var(--dl-eyebrow-size, 0.7rem);
  font-weight: 600;
  letter-spacing: var(--dl-eyebrow-ls, 0.12em);
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: var(--space-2, 8px);
  opacity: 0.85;
}

/* =======================================================================
   MORPH-19: Scroll-Triggered Reveal Animations (Task 3)
   IntersectionObserver script injected via hero template.
   Classes applied to section titles and content grids in templates.
   Does NOT apply to hero (handled by mi-expressive), nav, or footer.
======================================================================= */

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--dl-motion-easing, ease),
              transform 0.5s var(--dl-motion-easing, ease);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within a reveal group */
.reveal-group > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.30s; }

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1; transform: none; transition: none; }
}


/* ================================================================
   buttons.css -- Shared Button Component
   MORPH-17: CSS-10 fix -- extracted from hero.css.
   Buttons are used fleet-wide: hero CTA, sidebar CTA, cta-band,
   footer CTAs. This file must be loaded AFTER variables.css and
   BEFORE any component CSS that uses btn classes.
   ALL colors via CSS custom properties. Zero hardcoded hex.
================================================================ */

.eu-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px var(--space-5);
  border-radius: var(--dl-btn-radius, var(--radius-md));
  transition: background var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease),
              border-color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease),
              color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.eu-btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.eu-btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
}

.eu-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.eu-btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Ghost: transparent bg, primary border, primary text */
.eu-btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  opacity: 0.72;
}

.eu-btn-ghost:hover {
  opacity: 1;
  background: transparent;
}

/* Responsive: stack buttons below 480px */
@media (max-width: 480px) {
  .eu-btn {
    justify-content: center;
    width: 100%;
  }
}


/* ================================================================
   nav.css â€” Sticky Header + Mobile Overlay Panel
   ALL colors via CSS custom properties. Zero hardcoded hex values.
   Class prefix injected by assembler via eu.
   MORPH-09: uses --nav-bg (dark panel token) instead of --surface,
   so nav stays dark regardless of the new light --surface on cards.
================================================================ */

/* --- Container utility (shared across components) --- */
.eu-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

/* --- Header --- */
.eu-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.eu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-5);
}

/* --- Logo --- */
.eu-logo {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-inverse);
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.eu-logo:hover { color: var(--primary); }

/* --- Desktop Nav --- */
.eu-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
}
.eu-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted-inverse);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color var(--speed) var(--easing), background var(--speed) var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.eu-nav a:hover,
.eu-nav a.active { color: var(--text-inverse); background: rgba(255,255,255,0.08); }
.eu-nav-cta {
  background: var(--primary) !important;
  color: var(--text-inverse) !important;
  padding: 7px 16px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-md) !important;
  margin-left: var(--space-2);
}
.eu-nav-cta:hover { background: var(--primary-hover) !important; }

/* --- Header phone (desktop) --- */
.eu-header-phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.eu-header-phone:hover { color: var(--primary-hover); }

/* --- Hamburger (mobile only) --- */
.eu-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.eu-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  opacity: 0.7;
  transition: opacity var(--speed) var(--easing);
}
.eu-hamburger:hover span { opacity: 1; }

/* --- Mobile Panel --- */
.eu-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--nav-bg);
  flex-direction: column;
}
.eu-panel.open { display: flex; }
.eu-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: var(--space-5);
}
.eu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-5);
}
.eu-panel-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-inverse);
}
.eu-panel-close {
  background: none;
  border: none;
  color: var(--text-muted-inverse);
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--space-1);
  transition: color var(--speed) var(--easing);
}
.eu-panel-close:hover { color: var(--text-inverse); }
.eu-panel-nav { display: flex; flex-direction: column; flex: 1; }
.eu-panel-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted-inverse);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color var(--speed) var(--easing);
}
.eu-panel-nav a:hover { color: var(--text-inverse); }
.eu-panel-foot {
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}
.eu-panel-phone {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.eu-panel-cta {
  display: block;
  background: var(--primary);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: background var(--speed) var(--easing);
}
.eu-panel-cta:hover { background: var(--primary-hover); }

/* --- Responsive breakpoint --- */
@media (max-width: 768px) {
  .eu-nav          { display: none; }
  .eu-header-phone { display: none; }
  .eu-hamburger    { display: flex; }
}


/* ================================================================
   hero.css â€” Full-Width Hero Section
   Mode-aware: light mode = bg + dark text, dark mode = surface + light text
   ALL colors via CSS custom properties. Zero hardcoded hex values.
   MORPH-09: design language variables wired in for size, height, weight,
   content max-width, and button radius. Falls back to safe defaults if
   design-language.css is not linked (legacy mode safety).
================================================================ */

.eu-hero {
  background: var(--bg);
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  min-height: var(--dl-hero-min-h, 52vh);
  max-height: var(--dl-hero-max-h, 72vh);
}
.eu-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--dl-hero-content-max, 800px);
}
.eu-hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--dl-eyebrow-size, 11px);
  font-weight: 600;
  letter-spacing: var(--dl-eyebrow-ls, 2.5px);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
  display: block;
}
.eu-hero-heading {
  font-family: var(--font-head);
  font-size: var(--dl-hero-size, clamp(2.2rem, 4.5vw, 3.6rem));
  font-weight: var(--dl-heading-weight, 800);
  color: var(--text);
  line-height: var(--dl-hero-lh, 1.1);
  margin-bottom: var(--space-4);
  max-width: 760px;
}
.eu-hero-sub {
  font-family: var(--font-body);
  font-size: var(--dl-body-size, 1.05rem);
  color: var(--text);
  max-width: 580px;
  line-height: var(--dl-body-lh, 1.8);
  margin-bottom: var(--space-6);
  opacity: 0.78;
}
.eu-hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* --- Dark mode override (European / any dark-mode make) --- */
body.dark .eu-hero {
  background: var(--surface);
  border-bottom-color: var(--border);
}
body.dark .eu-hero-heading {
  color: var(--text-inverse);
}
body.dark .eu-hero-sub {
  color: var(--text-muted-inverse);
}

/* --- Responsive: stack CTA buttons below 480px --- */
@media (max-width: 480px) {
  .eu-hero-cta { flex-direction: column; align-items: stretch; }
  .eu-btn { justify-content: center; }
  .eu-hero { padding: var(--space-8) 0 var(--space-7); }
}


/* ================================================================
   footer.css â€” Multi-Column Dark Footer
   ALL colors via CSS custom properties. Zero hardcoded hex values.
   --footer-heading: computed by tokens-to-css.ps1 from primary hue
     - warm accent (gold hue 30-70 deg): --footer-heading = primary
     - cool/saturated (red, blue, green): --footer-heading = text-muted
   Result: European/LandRover get gold headings; Audi/BMW/etc get slate.
   MORPH-09: uses --footer-bg (dark panel token) instead of --surface,
   so footer stays dark regardless of the new light --surface on cards.
================================================================ */

.eu-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-7) 0 var(--space-5);
}
.eu-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-6);
}
.eu-footer-brand p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted-inverse);
  line-height: 1.7;
  margin-top: var(--space-3);
}
.eu-footer-brand a {
  color: var(--primary);
  text-decoration: none;
}
.eu-footer-brand a:hover { color: var(--primary-hover); }

/* --- Column heading: derived from --footer-heading token --- */
.eu-footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: var(--space-4);
}
.eu-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.eu-footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted-inverse);
  text-decoration: none;
  transition: color var(--speed) var(--easing);
  line-height: 1.4;
}
.eu-footer-links a:hover { color: var(--text-inverse); }
.eu-footer-hours {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted-inverse);
  line-height: 1.8;
}
.eu-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.eu-footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted-inverse);
  opacity: 0.6;
}
.eu-footer-bottom a {
  color: var(--text-muted-inverse);
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity var(--speed) var(--easing);
}
.eu-footer-bottom a:hover { opacity: 1; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .eu-footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 480px) {
  .eu-footer-inner { grid-template-columns: 1fr; gap: var(--space-5); }
}


/* =============================================================================
   services.css -- Services section wrapper + service cards grid
   MORPH-11: No hardcoded hex values. Custom properties only.
   MORPH-16: CSS-02 fix â€” transitions now use var(--dl-motion-speed/easing).
   ============================================================================= */

.eu-services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.eu-service-card {
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--dl-radius-lg, var(--radius-lg, 8px));
  background: var(--surface);
  transition: border-color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease), box-shadow var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}

.eu-service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.eu-service-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.eu-service-name {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.eu-service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.eu-service-link {
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  transition: color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}

.eu-service-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .eu-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .eu-services-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================================
   models.css -- Models section wrapper + model pill links
   MORPH-11: No hardcoded hex values. Custom properties only.
   ============================================================================= */

.eu-models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eu-model-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--dl-radius-full, var(--radius-full, 9999px));
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease),
              color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease),
              background var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
  background: var(--surface);
}

.eu-model-card:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.eu-model-name {
  /* inherits from parent link */
}

/* ================================================================
   trust-signals.css â€” Icon + Text Trust Signal List
   Uses its own background class, not section-alt.
   Light mode: subtle off-white strip / Dark mode: surface strip
   ALL colors via CSS custom properties. Zero hardcoded hex values.
================================================================ */

.eu-trust-strip {
  padding: var(--space-5) 0;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

body.dark .eu-trust-strip {
  background: var(--surface);
  border-top: 2px solid var(--primary);
  border-bottom-color: var(--border);
}

.eu-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}

.eu-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.eu-trust-icon {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.eu-trust-item span:last-child {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

body.dark .eu-trust-item span:last-child {
  color: var(--text-muted-inverse);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .eu-trust-signals { gap: var(--space-2) var(--space-3); }
  .eu-trust-item span:last-child { font-size: 12px; white-space: normal; }
}

/* ================================================================
   MORPH-12-VT: Credential trust signal â€” data-strip presentation.
   Each credential item shows a monospace code prefix (via data-code
   attribute + ::before pseudo-element) + full credential text.
   Elevated from fine-print metadata to a deliberate design element.
================================================================ */
.eu-trust-strip--credential {
  padding: var(--space-6) 0;
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

body.dark .eu-trust-strip--credential {
  background: var(--surface);
}

.eu-trust-strip--credential .eu-trust-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5) var(--space-8);
  align-items: start;
}

.eu-trust-item--credential {
  width: 100%;
  display: block;
  padding: var(--space-3) 0;
  border-radius: var(--dl-radius-sm, var(--radius-sm, 0));
}

/* Monospace code prefix via data-code attribute */
.eu-trust-item--credential::before {
  content: attr(data-code);
  display: block;
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.eu-trust-credential-text {
  font-family: var(--font-body);
  font-size: var(--dl-h3-size, 1.1rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 600;
}

body.dark .eu-trust-credential-text {
  color: var(--text-inverse);
}

@media (max-width: 640px) {
  .eu-trust-strip--credential .eu-trust-signals {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}


/* ================================================================
   cta-bar.css â€” Fixed Sticky CTA Bottom Bar
   UNPREFIXED: .cta-sb-bar is a vertical-level component (not brand-scoped)
   ALL colors via CSS custom properties. Zero hardcoded hex values.
   JS: IntersectionObserver on #footer-sentinel (inline in template.html)
   MORPH-16: CSS-06/07 fix â€” .cta-sb-bar now uses var(--nav-bg) (always dark).
             .cta-sb-phone now uses rgba(255,255,255,0.12) â€” visible on dark bar.
             body.dark variant preserved for European (dark bg).
================================================================ */

.cta-sb-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3) var(--space-5);
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
  transition: border-color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}
.cta-sb-bar.visible { display: flex; }

/* Dark mode (European): bar uses --surface (dark surface already), not nav-bg override needed */
body.dark .cta-sb-bar {
  background: var(--surface);
}

.cta-sb-phone,
.cta-sb-book {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px var(--space-5);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  max-width: 220px;
}
.cta-sb-phone {
  background: rgba(255,255,255,0.12);
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease), color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}
.cta-sb-phone:hover {
  background: rgba(255,255,255,0.20);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.cta-sb-book {
  background: var(--primary);
  color: #ffffff;
  transition: background var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease), color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}
.cta-sb-book:hover { background: var(--primary-hover); color: #ffffff; }

/* Hide on desktop if viewport is wide (optional â€” Audi shows on all widths) */
/* Uncomment to restrict to mobile only:
@media (min-width: 769px) { .cta-sb-bar { display: none !important; } }
*/


/* ================================================================
   cta-band.css â€” Full-Width Brand-Primary CTA Section Break
   Background: var(--primary). White text. Dual-button layout.
   European: primary is gold (#C8A850) â€” white text still works.
   No make-specific CSS branches â€” falls out of token consumption.
   ALL colors via CSS custom properties. Zero hardcoded hex values.
================================================================ */

.eu-cta-band {
  background: var(--primary);
  padding: var(--space-8) 0;
  text-align: center;
}

.eu-cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

.eu-cta-band-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-5);
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eu-cta-band-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Primary button: white bg, primary text (inverted from band) --- */
.eu-cta-band-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px var(--space-5);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity var(--speed) var(--easing);
  white-space: nowrap;
}
.eu-cta-band-btn-primary:hover { opacity: 0.92; }

/* --- Secondary button: transparent bg, white border + text --- */
.eu-cta-band-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.72);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px var(--space-5);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--speed) var(--easing);
  white-space: nowrap;
}
.eu-cta-band-btn-secondary:hover { border-color: rgba(255,255,255,1); }

/* --- Responsive --- */
@media (max-width: 480px) {
  .eu-cta-band { padding: var(--space-7) 0; }
  .eu-cta-band-actions { flex-direction: column; align-items: center; }
}


/* ================================================================
   faq.css â€” FAQ Accordion Section
   ALL colors via CSS custom properties. Zero hardcoded hex values.
   JS (inline in template): click toggles .open, one-at-a-time,
   accessible aria-expanded + role=region.
================================================================ */

.eu-faq-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

.eu-faq-list {
  max-width: 820px;
}

/* --- Individual FAQ item --- */
.eu-faq-item {
  border-bottom: 1px solid var(--border);
}
.eu-faq-item:first-child {
  border-top: 1px solid var(--border);
}

/* --- Question button --- */
.eu-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-4) 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: var(--space-3);
  transition: color var(--speed) var(--easing);
  min-height: 48px;
}
.eu-faq-question:hover { color: var(--primary); }

/* +/x indicator --- */
.eu-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--speed) var(--easing);
}
.eu-faq-item.open .eu-faq-question::after {
  transform: rotate(45deg);
}

/* --- Answer panel --- */
.eu-faq-answer {
  display: none;
  padding-bottom: var(--space-5);
}
.eu-faq-item.open .eu-faq-answer {
  display: block;
}

.eu-faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.eu-faq-answer p + p { margin-top: 0.8em; }


/* =============================================================================
   reviews.css -- Reviews section: proof strip + featured blockquote
   MORPH-19: Replaced 3-card generic grid with social proof structure.
   DQ-03: proof strip (3 data points) + featured vehicle-specific testimonial.
   No hardcoded hex values. Custom properties only.
   ============================================================================= */

.eu-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0;
}

.eu-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.eu-proof-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.eu-proof-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eu-featured-review {
  max-width: 680px;
  margin: 0 auto;
  border-left: 3px solid var(--primary);
  padding-left: var(--space-5);
}

.eu-featured-review-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.eu-featured-review-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .eu-proof-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* =============================================================================
   why-us.css -- Why Us / content section wrapper
   MORPH-11: Minimal wrapper. SECTION_BODY_HTML carries its own inline structure.
   MORPH-19: Added why-dealer comparison block styles.
   No hardcoded hex values. Custom properties only.
   ============================================================================= */

.eu-why-us {
  padding: var(--dl-section-padding-y) 0;
}

.eu-why-us .eu-container {
  max-width: var(--dl-content-max-w);
}

/* --- "Why Not The Dealer?" comparison block (MORPH-19) --- */
.eu-why-dealer {
  border-left: 3px solid var(--primary);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  background: rgba(0,0,0,0.025);
}

.eu-why-dealer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eu-why-dealer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.eu-why-dealer-list li {
  font-family: var(--font-body);
  font-size: var(--dl-body-size, 16px);
  line-height: 1.6;
  color: var(--text);
  padding-left: var(--space-4);
  position: relative;
}

.eu-why-dealer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.eu-why-dealer-list strong {
  color: var(--primary);
  font-weight: 700;
}


/* ================================================================
   nav/variants/minimal-sticky/nav.css â€” Thin 48px Sticky Bar + Full-Screen Overlay
   Mercedes / European variant. No visible desktop nav links.
   Hamburger opens full-screen overlay with large links.
   ALL colors via CSS custom properties. Zero hardcoded hex values.
================================================================ */

.eu-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

/* --- Minimal sticky header bar (48px) --- */
.eu-header-minimal {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  height: 48px;
}
.eu-header-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

/* --- Logo --- */
.eu-logo {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-inverse);
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.eu-logo:hover { color: var(--primary); }

/* --- Hamburger (always visible â€” no desktop nav links in this variant) --- */
.eu-hamburger-minimal {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.eu-hamburger-minimal span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  opacity: 0.7;
  transition: opacity var(--speed) var(--easing);
}
.eu-hamburger-minimal:hover span { opacity: 1; }

/* --- Full-screen overlay menu --- */
.eu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--nav-bg);
  opacity: 0;
  transition: opacity 200ms ease;
}
.eu-overlay.open {
  display: flex;
  opacity: 1;
  flex-direction: column;
}
.eu-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-6) var(--space-7);
  position: relative;
}

.eu-overlay-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--text-muted-inverse);
  font-size: 1.4rem;
  cursor: pointer;
  padding: var(--space-2);
  transition: color var(--speed) var(--easing);
}
.eu-overlay-close:hover { color: var(--text-inverse); }

.eu-overlay-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: var(--space-2);
  padding: var(--space-8) 0 var(--space-5);
}
.eu-overlay-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted-inverse);
  padding: var(--space-2) 0;
  text-align: center;
  text-decoration: none;
  transition: color var(--speed) var(--easing);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eu-overlay-nav a:hover { color: var(--text-inverse); }

.eu-overlay-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-7);
}
.eu-overlay-phone {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
}
.eu-overlay-phone:hover { color: var(--primary-hover); }
.eu-overlay-cta {
  display: block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: background var(--speed) var(--easing);
  min-width: 240px;
}
.eu-overlay-cta:hover { background: var(--primary-hover); }


/* ================================================================
   hero/variants/centered-text/hero.css â€” Typography-Centered Hero
   MORPH-12-VT: No image column. Single column, centered layout.
   Uses for all 7 GAD satellites until professional photography arrives.
   MORPH-19: Hero phone number block added.
   ALL colors via CSS custom properties. Zero hardcoded hex.
================================================================ */

.eu-hero--centered-text {
  min-height: var(--dl-hero-min-h, 52vh);
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: var(--dl-section-padding-y, 64px) 0;
  position: relative;
}

.eu-hero--centered-text .eu-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  width: 100%;
}

.eu-hero--centered-text .eu-hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--dl-eyebrow-size, 0.7rem);
  font-weight: 600;
  letter-spacing: var(--dl-eyebrow-ls, 0.12em);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
  display: block;
  opacity: 0.85;
}

.eu-hero--centered-text .eu-hero-heading {
  font-size: var(--dl-hero-size, clamp(2.5rem, 5vw, 4rem));
  font-weight: var(--dl-heading-weight, 700);
  line-height: var(--dl-hero-lh, 1.05);
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
  color: var(--text);
}

/* City line: block element below main heading, lighter treatment */
.eu-hero-city {
  display: block;
  font-weight: 400;
  font-size: 0.65em;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 0.25em;
}

body.dark .eu-hero-city {
  color: var(--text-muted-inverse);
}

.eu-hero--centered-text .eu-hero-sub {
  font-size: var(--dl-body-size, 16px);
  line-height: var(--dl-body-lh, 1.65);
  max-width: 48ch;
  margin: 0 auto;
  opacity: 0.78;
  color: var(--text-muted);
}

body.dark .eu-hero--centered-text .eu-hero-sub {
  color: var(--text-muted-inverse);
}

/* --- Hero phone block (MORPH-19) --- */
.eu-hero--centered-text .eu-hero-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-2);
}

.eu-hero--centered-text .eu-hero-phone-number {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
  transition: color var(--dl-motion-speed, 150ms) var(--dl-motion-easing, ease);
}

.eu-hero--centered-text .eu-hero-phone-number:hover {
  color: var(--primary-hover);
}

.eu-hero--centered-text .eu-hero-phone-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
}

.eu-hero--centered-text .eu-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-2);
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .eu-hero--centered-text {
    padding: var(--space-7) 0;
    min-height: 44vh;
  }
  .eu-hero--centered-text .eu-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .eu-hero--centered-text .eu-hero-cta a {
    width: 100%;
    text-align: center;
  }
}

/* --- Print styles (MORPH-19: CSS-19) --- */
@media print {
  [class*="-hero"] { min-height: unset; padding: 20pt 0; }
  [class*="-hero-heading"] { color: #000 !important; }
  [class*="-hero-sub"] { color: #333 !important; }
  [class*="-hero-cta"] { display: none; }
  [class*="-hero-phone-number"] { color: #000 !important; font-size: 18pt; }
}


/* ================================================================
   footer/variants/minimal/footer.css â€” Centered Minimal Footer
   Mercedes / European variant.
   Single centered block: brand name, phone, address, copyright.
   European editorial modifier: gold rule above, brand name in gold.
   ALL colors via CSS custom properties. Zero hardcoded hex values.
================================================================ */

.eu-footer--minimal {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px;
  text-align: center;
}
.eu-footer-minimal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto;
}
.eu-footer-brand-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.9;
}
.eu-footer-phone {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: block;
}
.eu-footer-phone:hover { color: var(--primary-hover); }
.eu-footer-address {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted-inverse);
  line-height: 1.5;
}
.eu-footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted-inverse);
  opacity: 0.6;
  margin-top: var(--space-2);
}

/* --- European editorial modifier --- */
.vl-editorial .eu-footer--minimal {
  border-top: 1px solid var(--primary);
}
.vl-editorial .eu-footer--minimal .eu-footer-brand-name {
  color: var(--primary);
  opacity: 1;
}


/* ================================================================
   interior.css -- Interior Page Components
   MORPH-13: Interior page template system
   All classes use eu-prefix.
   Appended to styles.css bundle by assemble.ps1.
   DL/VL/MI body classes apply automatically.
   Key scoping rule: homepage has NO <main> tag; interior pages do.
   Use "main .eu-hero" to scope without changing HTML.
================================================================ */

/* ── BREADCRUMB ──────────────────────────────────────────────────────────── */
.eu-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.eu-breadcrumb-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted, var(--text));
  flex-wrap: wrap;
}
.eu-breadcrumb a {
  color: var(--text-muted, var(--text));
  text-decoration: none;
}
.eu-breadcrumb a:hover { color: var(--primary); }
.eu-breadcrumb .sep {
  opacity: 0.4;
  font-size: 12px;
}

/* ── INTERIOR HERO (scoped to main -- homepage has no <main>) ────────────── */
main .eu-hero {
  background: var(--nav-bg);
  padding: 72px 0 56px;
  min-height: unset;
  max-height: unset;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
main .eu-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(var(--primary-rgb, 200,50,50), 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
main .eu-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* Interior eyebrow + h1 -- homepage uses p-hero-eyebrow / p-hero-heading */
.eu-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
main .eu-hero .eu-eyebrow {
  color: rgba(255,255,255,0.55);
}
.eu-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: var(--dl-heading-weight, 800);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 18ch;
}
main .eu-hero .eu-h1 { color: #fff; }
main .eu-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── SECTION WRAPPERS ────────────────────────────────────────────────────── */
.eu-section { padding: 72px 0; }
.eu-section-white { background: var(--bg); }
.eu-section-dark  { background: var(--nav-bg); }
.eu-section-mid   { background: var(--surface); }

/* ── INTERIOR CONTENT CARDS (index pages) ────────────────────────────────── */
/* Scoped inside model-grid to avoid collision with homepage p-model-card pill */
.eu-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.eu-model-grid .eu-model-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--nav-bg);
  border-radius: 0;
  padding: 28px;
  transition: border-top-color 200ms ease;
  color: var(--text);
  text-decoration: none;
}
.eu-model-grid .eu-model-card:hover {
  border-top-color: var(--primary);
}
.eu-model-gen {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.eu-model-grid .eu-model-card h4,
.eu-model-grid .eu-model-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}
.eu-model-grid .eu-model-card p {
  font-size: 13px;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin-bottom: 14px;
}
.eu-model-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}
.eu-model-link:hover { text-decoration: underline; }

/* ── ARTICLE LAYOUT (article pages: 2-col main + sidebar) ───────────────── */
.eu-content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .eu-content-sidebar { grid-template-columns: 1fr; }
}

/* ── ARTICLE BODY ─────────────────────────────────────────────────────────── */
.eu-article { max-width: 720px; }
.eu-article h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.eu-article h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
}
.eu-article p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1em;
}
.eu-article ul,
.eu-article ol {
  padding-left: 24px;
  margin-bottom: 1em;
  line-height: 1.7;
  color: var(--text);
}
.eu-article li { margin-bottom: 6px; }
.eu-article a { color: var(--primary); text-decoration: underline; }
.eu-article blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted, #555);
}

/* ── TABLE ───────────────────────────────────────────────────────────────── */
.eu-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.eu-table th {
  background: var(--nav-bg);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.eu-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.eu-table tr:nth-child(even) td { background: rgba(0,0,0,0.025); }
@media (max-width: 700px) {
  .eu-table { font-size: 13px; }
  .eu-table th,
  .eu-table td { padding: 10px 12px; }
}

/* ── SIDEBAR ─────────────────────────────────────────────────────────────── */
.eu-content-sidebar aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── SIDEBAR CTA ─────────────────────────────────────────────────────────── */
.eu-sidebar-cta {
  background: var(--nav-bg);
  padding: 28px;
  border-radius: var(--radius-md, 8px);
}
.eu-sidebar-cta h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.eu-sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin-bottom: 16px;
}
.eu-sidebar-cta .eu-btn,
.eu-sidebar-cta a.eu-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm, 4px);
  transition: opacity 150ms ease;
}
.eu-sidebar-cta .eu-btn:hover { opacity: 0.88; }

/* ── SIDEBAR CARD ────────────────────────────────────────────────────────── */
.eu-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
}
.eu-sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.eu-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.eu-sidebar-card li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.eu-sidebar-card li:last-child { border-bottom: none; }

/* ── SIDEBAR LINKS ───────────────────────────────────────────────────────── */
.eu-sidebar-links {
  display: flex;
  flex-direction: column;
}
.eu-sidebar-links a {
  display: block;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.eu-sidebar-links a:last-child { border-bottom: none; }
.eu-sidebar-links a:hover { text-decoration: underline; }

/* ── ISSUE LIST (common-problems pages) ──────────────────────────────────── */
.eu-issue-list { margin-top: 8px; }
.eu-issue {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.eu-issue:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.eu-issue-n {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(154,154,138,0.2);
  line-height: 1.2;
  padding-top: 2px;
}
.eu-section-dark .eu-issue h4 { color: #fff; }
.eu-section-dark .eu-issue h4 a { color: #fff; text-decoration: none; }
.eu-section-dark .eu-issue h4 a:hover { color: var(--primary); }
.eu-section-dark .eu-issue p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
/* Issue list on light background */
.eu-section-white .eu-issue,
.eu-section-mid .eu-issue {
  border-bottom-color: var(--border);
}
.eu-section-white .eu-issue:first-child,
.eu-section-mid .eu-issue:first-child {
  border-top-color: var(--border);
}
.eu-section-white .eu-issue h4,
.eu-section-white .eu-issue h4 a,
.eu-section-mid .eu-issue h4 { color: var(--text); }
.eu-section-white .eu-issue p,
.eu-section-mid .eu-issue p { color: var(--text-muted, #555); }

/* ── STICKY CONTACT BAR ──────────────────────────────────────────────────── */
.cta-sb-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.cta-sb-bar.cta-sb-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cta-sb-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-sb-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.cta-sb-phone {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.cta-sb-phone:hover { color: var(--primary); }
.cta-sb-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm, 4px);
  transition: opacity 150ms ease;
}
.cta-sb-btn:hover { opacity: 0.88; }
@media (max-width: 480px) {
  .cta-sb-label { display: none; }
  .cta-sb-inner { gap: 12px; }
}

/* ── PRINT STYLESHEET (MORPH-19: CSS-19) ─────────────────────────────────── */
@media print {
  /* Hide navigation and interactive elements */
  header, .cta-sb-bar, footer, [class*="-cta-band"], [class*="-nav"], [class*="-hamburger"], [class*="-panel"] {
    display: none !important;
  }
  /* Show full article content without sidebar */
  [class*="-content-sidebar"] {
    display: block;
  }
  aside, [class*="-sidebar-cta"], [class*="-sidebar-card"] {
    display: none !important;
  }
  /* Typography for print */
  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000 !important;
    background: #fff !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
  a[href^="tel"]::after,
  a[href^="#"]::after {
    content: none;
  }
  h1, h2, h3 { color: #000 !important; page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  [class*="-table"] { page-break-inside: avoid; }
}

/* DIM taste: background_css */
body::after { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%); pointer-events: none; z-index: 0; }

