/* ============================================================
   LICHTBLICK V2  —  Token-Architektur (3 Stufen) + Theming
   Pfarreiengemeinschaft Weilheim i.OB
   ------------------------------------------------------------
   STUFE 1  Primitive   rohe Paletten (warm-*, ink-*, acc-*)
   STUFE 2  Semantisch  Rollen (--surface, --text-primary, --accent-*)
            → HIER wird pro Theme umgeschaltet
   STUFE 3  Komponente  benutzen NUR die semantische Stufe

   Theming:
     data-theme  = light | dark            (Modus)
     data-accent = gold | violet | green | red   (liturgische Saison)
   Modus und Saison sind orthogonal und frei kombinierbar.
   ============================================================ */

/* ============================================================
   STUFE 1 — PRIMITIVE (rohe Werte, nie direkt in Komponenten)
   ============================================================ */
:root {
  /* warme Neutraltoene */
  --warm-0:   #ffffff;
  --warm-50:  #fafaf8;
  --warm-100: #f5ede0;
  --warm-200: #ede6d8;
  --ink-900:  #1a1a1a;
  --ink-700:  #4a4a4a;
  --ink-500:  #666666;
  --line:     #e0d8ce;

  /* dunkle Neutraltoene (fuer Dark Mode) */
  --d-900: #14110e;
  --d-800: #1c1a17;
  --d-700: #241f18;
  --d-600: #2e281f;
  --d-line:#3a352d;
  --d-text:#ece5db;
  --d-text2:#b8afa2;
  --d-text3:#8c8578;
}

/* ---- Akzent-Rampen je liturgischer Saison ----
   Jede Saison liefert drei Stops: 300 (hell), 500 (mittel), 700 (dunkel).
   Kontrast von acc-700 auf Weiss ist jeweils >= 6:1 (WCAG AA). */
:root, [data-accent="gold"] {   /* Standard / Jahreskreis-neutral */
  --acc-300: #e2c04a;  --acc-500: #c9a227;  --acc-700: #7a5c00;
}
[data-accent="violet"] {        /* Advent & Fastenzeit */
  --acc-300: #b9a3d6;  --acc-500: #6b4e93;  --acc-700: #4a3568;
}
[data-accent="green"] {         /* Jahreskreis */
  --acc-300: #7cbf92;  --acc-500: #3d8a5a;  --acc-700: #276241;
}
[data-accent="red"] {           /* Hochfeste, Pfingsten, Maertyrer */
  --acc-300: #d98785;  --acc-500: #a5383a;  --acc-700: #7a2832;
}

/* ============================================================
   STUFE 2 — SEMANTISCH (Rollen) · LIGHT (Default)
   ============================================================ */
:root {
  color-scheme: light;

  --surface:         var(--warm-0);    /* Hauptflaeche          */
  --surface-sunken:  var(--warm-50);   /* Hero, ruhige Flaeche  */
  --surface-warm:    var(--warm-100);  /* warme Sektionen       */
  --surface-raised:  var(--warm-0);    /* Karten                */
  --surface-inverse: var(--d-800);     /* dunkle Sektionen      */

  --text-primary:    var(--ink-900);
  --text-secondary:  var(--ink-700);
  --text-tertiary:   var(--ink-500);
  --text-on-inverse: #ffffff;
  --text-on-inverse-mid: rgba(255,255,255,.72);
  --text-on-accent:  #ffffff;

  --border:          var(--line);
  --border-subtle:   #ece6dc;

  --accent-decor:    var(--acc-500);   /* dekorativ (Linien, Kanten) */
  --accent-text:     var(--acc-700);   /* Text/Links auf Flaeche     */
  --accent-strong:   var(--acc-700);   /* Fuellung primaerer Button  */

  --shadow-sm: 0 1px 3px rgba(26,26,26,.06);
  --shadow:    0 2px 12px rgba(26,26,26,.07);
  --shadow-lg: 0 10px 34px rgba(26,26,26,.10);
}

/* ---- SEMANTISCH · DARK ---- */
[data-theme="dark"] {
  color-scheme: dark;

  --surface:         var(--d-800);
  --surface-sunken:  var(--d-900);
  --surface-warm:    var(--d-700);
  --surface-raised:  var(--d-600);
  --surface-inverse: var(--d-900);

  --text-primary:    var(--d-text);
  --text-secondary:  var(--d-text2);
  --text-tertiary:   var(--d-text3);
  --text-on-inverse: var(--d-text);
  --text-on-inverse-mid: rgba(236,229,219,.72);
  --text-on-accent:  #ffffff;

  --border:          var(--d-line);
  --border-subtle:   #2a251f;

  --accent-decor:    var(--acc-500);
  --accent-text:     var(--acc-300);   /* heller Stop fuer Kontrast auf dunkel */
  --accent-strong:   var(--acc-700);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow:    0 2px 12px rgba(0,0,0,.5);
  --shadow-lg: 0 10px 34px rgba(0,0,0,.6);
}

/* ---- SEMANTISCH · HOCHKONTRAST (Zielgruppe 60+) ---- */
[data-theme="contrast"] {
  color-scheme: light;
  --surface:         #ffffff;
  --surface-sunken:  #ffffff;
  --surface-warm:    #f2f2f2;
  --surface-raised:  #ffffff;
  --surface-inverse: #000000;

  --text-primary:    #000000;
  --text-secondary:  #1a1a1a;
  --text-tertiary:   #262626;
  --text-on-inverse: #ffffff;
  --text-on-inverse-mid: #ffffff;
  --text-on-accent:  #ffffff;

  --border:          #000000;
  --border-subtle:   #333333;

  --accent-decor:    var(--acc-700);
  --accent-text:     var(--acc-700);
  --accent-strong:   var(--acc-700);

  --shadow-sm: none;
  --shadow:    0 0 0 1px #000;
  --shadow-lg: 0 0 0 2px #000;
}

/* System-Praeferenz, wenn Nutzer nichts gewaehlt hat */
@media (prefers-color-scheme: dark) and (min-width: 99999px) { /* DEAKTIVIERT: Auto-Dark-Flip verursachte Cross-Browser-Inkonsistenz - Dark nur via [data-theme=dark] */
  :root:not([data-theme]) {
    color-scheme: dark;
    --surface: var(--d-800); --surface-sunken: var(--d-900); --surface-warm: var(--d-700);
    --surface-raised: var(--d-600); --surface-inverse: var(--d-900);
    --text-primary: var(--d-text); --text-secondary: var(--d-text2); --text-tertiary: var(--d-text3);
    --text-on-inverse: var(--d-text); --text-on-inverse-mid: rgba(236,229,219,.72);
    --border: var(--d-line); --border-subtle: #2a251f;
    --accent-text: var(--acc-300);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.4); --shadow: 0 2px 12px rgba(0,0,0,.5); --shadow-lg: 0 10px 34px rgba(0,0,0,.6);
  }
}

/* ---- Rueckwaerts-Kompatibilitaet ----
   Die Mockup-Seiten (index.html, styleguide.html) nutzen teils noch
   --l-* Namen inline. Diese Aliase leiten sie auf die semantische
   Stufe um → alle Altreferenzen themen automatisch mit. */
:root {
  --l-white: var(--surface);        --l-off: var(--surface-sunken);
  --l-linen: var(--surface-warm);   --l-sand: var(--warm-200);
  --l-ink-bg: var(--surface-inverse);
  --l-ink: var(--text-primary);     --l-ink-mid: var(--text-secondary);
  --l-ink-light: var(--text-tertiary);
  --l-on-dark: var(--text-on-inverse); --l-on-dark-mid: var(--text-on-inverse-mid);
  --l-border: var(--border);        --l-border-lt: var(--border-subtle);
  --l-gold: var(--accent-decor);    --l-gold-dark: var(--accent-text);
  --l-bordeaux: var(--accent-strong); --l-bordeaux-d: var(--acc-700);

  --l-serif: 'Cormorant Garamond', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --l-sans:  'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Typo-Skala (Major Third 1.25) */
  --t-xs: .75rem; --t-sm: .875rem; --t-base: 1rem; --t-lg: 1.25rem;
  --t-xl: 1.563rem; --t-2xl: 1.953rem; --t-3xl: 2.441rem; --t-4xl: 3.052rem;

  --sp-xs: .382rem; --sp-sm: .618rem; --sp-md: 1rem; --sp-lg: 1.618rem; --sp-xl: 2.618rem; --sp-2xl: 4.236rem;

  --container: 1200px; --container-wide: 1360px; --header-h: 64px;
  --r-sm: 6px; --r: 10px; --r-lg: 16px; --r-full: 999px;
  --tr: 250ms ease; --tr-sl: 400ms cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   THEME-UEBERGANG  (sanft, aber reduced-motion respektieren)
   ============================================================ */
body, .site-header, .hero, .pf-card, .pf-plate, .gd-card, .k-card,
.gottesdienste, .sakramente, .sk-card, .site-footer, .section, .btn {
  transition: background-color .45s ease, color .45s ease, border-color .45s ease;
}

/* ============================================================
   STUFE 3 — KOMPONENTEN  (nur semantische Tokens)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--l-sans); font-size: var(--t-base); line-height: 1.5;
  color: var(--text-secondary); background: var(--surface);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--l-serif); color: var(--text-primary); font-weight: 600; line-height: 1.15; }
:focus-visible { outline: 3px solid var(--accent-text); outline-offset: 2px; border-radius: 2px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 2000; background: var(--text-primary);
  color: var(--surface); padding: .7rem 1.1rem; border-radius: var(--r-sm); text-decoration: none; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.section { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { font-family: var(--l-sans); font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-text); display: inline-flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.eyebrow::before { content:''; width: 26px; height: 2px; background: var(--accent-decor); }
.center .eyebrow::after { content:''; width: 26px; height: 2px; background: var(--accent-decor); }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
.section-desc { margin-top: .6rem; font-size: var(--t-lg); color: var(--text-secondary); line-height: 1.6; }

/* ---- HEADER (glass mit Fallback) ---- */
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: var(--surface); border-bottom: 1px solid var(--border); transition: box-shadow var(--tr), background-color .45s ease; }
@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .site-header { background: color-mix(in srgb, var(--surface) 72%, transparent);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { max-width: var(--container-wide); margin-inline: auto; height: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3rem); display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text-primary); min-height: 44px; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand b { font-family: var(--l-serif); font-size: 1.2rem; font-weight: 600; letter-spacing: .01em; }
.brand span span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text); }
.nav { display: none; }
@media (min-width: 960px) {
  .nav { display: flex; gap: .25rem; }
  .nav a { position: relative; padding: .6rem .8rem; min-height: 44px; display: flex; align-items: center;
    text-decoration: none; color: var(--text-tertiary); font-size: .95rem; transition: color var(--tr); }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--text-primary); }
  .nav a::after { content:''; position: absolute; left: .8rem; right: .8rem; bottom: .35rem; height: 2px;
    background: var(--accent-decor); transform: scaleX(0); transform-origin: left; transition: transform var(--tr); }
  .nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
}
.header-cta { display: none; }
@media (min-width: 960px) {
  .header-cta { display: inline-flex; align-items: center; gap: .4rem; margin-left: .6rem; padding: .6rem 1.1rem;
    background: var(--accent-strong); color: var(--text-on-accent); text-decoration: none; border-radius: var(--r-full);
    font-size: .9rem; font-weight: 600; min-height: 44px; transition: filter var(--tr); }
  .header-cta:hover { filter: brightness(1.1); }
}
.burger { display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; width: 44px; height: 44px;
  padding: 11px; background: none; border: none; cursor: pointer; }
.burger span { height: 2px; background: var(--text-primary); border-radius: 2px; }
@media (min-width: 960px) { .burger { display: none; } }

/* ---- HERO (hell, editorial) ---- */
.hero { background: var(--surface-sunken); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: var(--container-wide); margin-inline: auto;
  padding: clamp(2.4rem,6vw,4.4rem) clamp(1.25rem,4vw,3rem) clamp(1.4rem,3vw,2rem); }
.hero-motto { max-width: 720px; }
.hero-motto .eyebrow { margin-bottom: 1rem; }
.hero-motto h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 500; line-height: 1.04; letter-spacing: -.01em; color: var(--text-primary); }
.hero-motto h1 .gold { color: var(--accent-text); font-style: italic; font-weight: 600; }
.hero-welcome { margin-top: 1.1rem; font-family: var(--l-serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--text-secondary); font-weight: 400; }
.hero-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; min-height: 48px; padding: .75rem 1.5rem;
  border-radius: var(--r-full); font-family: var(--l-sans); font-size: 1rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; transition: filter var(--tr), transform var(--tr), border-color var(--tr), color var(--tr); }
.btn-primary { background: var(--accent-strong); color: var(--text-on-accent); }
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); }
[data-theme="dark"] .btn-primary { border-color: var(--acc-300); }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent-decor); color: var(--accent-text); }

/* ---- Pfarreien-Strip ---- */
.pfarreien { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3rem) clamp(2rem,4vw,3rem); }
.pf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.pf-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: var(--surface-raised);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--tr-sl), box-shadow var(--tr-sl), background-color .45s ease; }
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pf-img { aspect-ratio: 1 / 1.15; overflow: hidden; background: var(--warm-200); }
.pf-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform .6s ease; }
.pf-card:hover .pf-img img { transform: scale(1.05); }
.pf-plate { padding: .9rem .7rem 1.1rem; text-align: center; border-top: 3px solid var(--accent-decor); }
.pf-name { font-family: var(--l-serif); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); line-height: 1.1; }
.pf-loc { margin-top: .25rem; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-tertiary); }
@media (max-width: 820px) {
  .pf-grid { grid-auto-flow: column; grid-auto-columns: 62%; grid-template-columns: none; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: .6rem; -webkit-overflow-scrolling: touch; }
  .pf-card { scroll-snap-align: start; }
}

/* ---- Gottesdienste (warme Flaeche) ---- */
.gottesdienste { background: var(--surface-warm); border-block: 1px solid var(--border); }
.gd-card { background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2rem); }
.gd-row { display: grid; grid-template-columns: 78px 1fr auto; gap: 1rem; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--border-subtle); }
.gd-row:last-child { border-bottom: none; }
.gd-time { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.gd-typ { font-weight: 600; color: var(--text-primary); }
.gd-detail { font-size: .85rem; color: var(--text-tertiary); margin-top: 2px; }
.gd-ort { font-size: .85rem; color: var(--text-tertiary); white-space: nowrap; display: flex; align-items: center; gap: .4rem; }
.gd-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.gd-more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; min-height: 44px; font-weight: 600;
  color: var(--accent-text); text-decoration: none; border-bottom: 2px solid transparent; }
.gd-more:hover { border-bottom-color: var(--accent-decor); }
@media (max-width: 560px) {
  .gd-row { grid-template-columns: 64px 1fr; }
  .gd-ort { grid-column: 1 / -1; padding-left: 64px; margin-top: -6px; }
}

/* ---- Sakramente (dunkle/inverse Flaeche) ---- */
.sakramente { background: var(--surface-inverse); color: var(--text-on-inverse); }
.sakramente .eyebrow { color: var(--accent-decor); }
.sakramente .eyebrow::before, .sakramente .center .eyebrow::after { background: var(--accent-decor); }
.sakramente .section-title { color: var(--text-on-inverse); }
.sakramente .section-desc { color: var(--text-on-inverse-mid); }
.sk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.sk-card { display: block; text-decoration: none; color: inherit; border-radius: var(--r-lg); overflow: hidden;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); transition: transform var(--tr-sl), border-color var(--tr); }
.sk-card:hover { transform: translateY(-4px); border-color: var(--accent-decor); }
.sk-img { aspect-ratio: 16/9; overflow: hidden; }
.sk-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.sk-card:hover .sk-img img { transform: scale(1.05); }
.sk-body { padding: 1.1rem 1.2rem 1.3rem; }
.sk-name { font-family: var(--l-serif); font-size: 1.3rem; color: var(--text-on-inverse); font-weight: 600; }
.sk-sub { margin-top: .3rem; font-size: .85rem; color: var(--text-on-inverse-mid); }
@media (max-width: 720px) { .sk-grid { grid-template-columns: 1fr; } }

/* ---- Kontakt ---- */
.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.k-card { background: var(--surface-sunken); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2rem); }
.k-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.k-card p { color: var(--text-secondary); line-height: 1.6; }
.k-card a.tel { display: inline-block; margin-top: .6rem; font-size: 1.2rem; font-weight: 700; color: var(--accent-text); text-decoration: none; border-bottom: 2px solid transparent; }
.k-card a.tel:hover { border-bottom-color: var(--accent-decor); }
@media (max-width: 760px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.site-footer { background: var(--surface-inverse); color: var(--text-on-inverse-mid); border-top: 3px solid var(--accent-decor); }
.footer-inner { max-width: var(--container); margin-inline: auto; padding: clamp(2rem,4vw,3rem) clamp(1.25rem,4vw,3rem) 1.4rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-inner b.logo { font-family: var(--l-serif); font-size: 1.4rem; color: var(--text-on-inverse); display: block; margin-bottom: .6rem; }
.footer-inner h4 { font-family: var(--l-sans); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-decor); margin-bottom: .7rem; }
.footer-inner a { color: var(--text-on-inverse-mid); text-decoration: none; display: block; padding: .2rem 0; }
.footer-inner a:hover { color: var(--text-on-inverse); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: .8rem; color: rgba(255,255,255,.5); padding: 1rem; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 1.4rem; } }

/* ============================================================
   THEME-SCHALTER (Demo-Panel)
   ============================================================ */
.theme-panel { position: fixed; left: 14px; bottom: 14px; z-index: 3000;
  background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: .7rem .8rem; font-family: var(--l-sans); }
.theme-panel .tp-title { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: .5rem; }
.theme-panel .tp-row { display: flex; align-items: center; gap: .4rem; margin-bottom: .5rem; }
.theme-panel .tp-row:last-child { margin-bottom: 0; }
.tp-btn { min-width: 44px; min-height: 34px; padding: 0 .7rem; border-radius: var(--r-full); cursor: pointer;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-secondary);
  font-family: var(--l-sans); font-size: .8rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }
.tp-btn[aria-pressed="true"] { border-color: var(--accent-decor); color: var(--text-primary); box-shadow: inset 0 0 0 1px var(--accent-decor); }
.tp-swatch { width: 34px; min-width: 34px; height: 34px; padding: 0; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; }
.tp-swatch[aria-pressed="true"] { border-color: var(--text-primary); box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent-decor); }
.tp-swatch.gold   { background: #c9a227; }
.tp-swatch.violet { background: #6b4e93; }
.tp-swatch.green  { background: #3d8a5a; }
.tp-swatch.red    { background: #a5383a; }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .pf-card:hover, .sk-card:hover, .btn-primary:hover { transform: none; }
}
