/* =========================================================
   Tweaking Cat Studios — site styles
   Aesthetic: literary editorial, dark, restrained
   ========================================================= */

/* ---- Web fonts (self-hosted from /assets/fonts) ---- */
@font-face {
  font-family: "Tanker";
  src: url("/assets/fonts/Tanker-Regular.woff2") format("woff2"),
       url("/assets/fonts/Tanker-Regular.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bespoke Serif";
  src: url("/assets/fonts/BespokeSerif-Variable.woff2") format("woff2-variations"),
       url("/assets/fonts/BespokeSerif-Variable.woff2") format("woff2"),
       url("/assets/fonts/BespokeSerif-Variable.woff")  format("woff");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bespoke Serif";
  src: url("/assets/fonts/BespokeSerif-VariableItalic.woff2") format("woff2-variations"),
       url("/assets/fonts/BespokeSerif-VariableItalic.woff2") format("woff2"),
       url("/assets/fonts/BespokeSerif-VariableItalic.woff")  format("woff");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --ink-0:       #0a020f;   /* page background, deeper than logo black */
  --ink-1:       #1d0523;   /* deepest brand purple — primary surface */
  --ink-2:       #2c1b3f;   /* main purple — raised surface */
  --ink-3:       #47315b;   /* secondary purple — borders, hover */
  --accent:      #960066;   /* magenta — used sparingly */
  --accent-soft: #b41a82;   /* magenta hover state */
  --cream:       #e2cfc0;   /* primary text */
  --cream-soft:  #f7f2f0;   /* high-emphasis text */
  --cream-mute:  rgba(226, 207, 192, 0.62);
  --cream-faint: rgba(226, 207, 192, 0.32);
  --rule:        rgba(226, 207, 192, 0.14);

  --display: "Tanker", "Bespoke Serif", Georgia, serif;
  --serif:   "Bespoke Serif", "Cormorant Garamond", Georgia, serif;
  --sans:    "Bespoke Serif", "Helvetica Neue", Arial, sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, monospace;

  --measure: 64ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-w: 1320px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---- Base ---- */
html {
  background: var(--ink-0);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Background watermark — giant, faint cat mark behind content but above the radial atmosphere */
main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url('/assets/logos/cat-cream.svg');
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(130vmin, 1600px) auto;
  opacity: 0.08;
}

/* Grain — printed-paper tactility on dark surfaces */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* Subtle radial atmosphere — never flat */
body::after {
  content: "";
  position: fixed;
  inset: -20vmin;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60vmax 50vmax at 12% -8%,  rgba(150, 0, 102, 0.16), transparent 60%),
    radial-gradient(80vmax 70vmax at 110% 110%, rgba(71, 49, 91, 0.30), transparent 65%),
    linear-gradient(180deg, #07010c 0%, var(--ink-0) 40%, #06010a 100%);
}

::selection { background: var(--accent); color: var(--cream-soft); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--cream-soft);
  margin: 0;
  line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

em, i { font-style: italic; color: var(--cream-soft); }

a.link {
  color: var(--cream-soft);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 2px;
  transition: background-size .25s ease, color .25s ease;
}
a.link:hover { background-size: 100% 38%; color: var(--cream-soft); }

/* Eyebrow / meta labels */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(150, 0, 102, 0.18);
}
.eyebrow.plain::before { display: none; }

.numeral {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-faint);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ---- Focus ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 2, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.95rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand svg, .brand img { height: 22px; width: auto; }
.brand__mark { height: 22px; width: auto; }
.brand__type {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--cream-soft);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav a {
  padding: 0.45rem 0.85rem;
  color: var(--cream-mute);
  position: relative;
  transition: color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--cream-soft); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.18rem;
  height: 1px;
  background: var(--accent);
}

.social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.social a {
  width: 36px; height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--cream-mute);
  transition: color .2s, border-color .2s, background .2s;
}
.social a:hover {
  color: var(--cream-soft);
  border-color: var(--cream-faint);
  background: rgba(150, 0, 102, 0.08);
}
.social svg { width: 16px; height: 16px; }

/* Mobile nav (very simple — pages are short, just collapse) */
.nav-toggle { display: none; }
@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: rgba(10, 2, 15, 0.96);
    border-bottom: 1px solid var(--rule);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav a { padding: 0.85rem 0; }
  .nav a[aria-current="page"]::after { left: 0; right: 0; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    color: var(--cream-mute);
  }
  .social { display: none; }
}

/* ---- Main / layout ---- */
main { flex: 1; position: relative; z-index: 0; }

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  position: relative;
}
.section + .section { border-top: 1px solid var(--rule); }

.section__head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__head .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--cream-soft);
  max-width: 52ch;
  margin: 0;
}

.prose {
  max-width: var(--measure);
  color: var(--cream);
}
.prose p { margin-bottom: 1.1em; }
.prose p + h3 { margin-top: 2.5em; }
.prose h3 { margin-bottom: 0.6em; }
.prose ul { padding-left: 1.1em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }

/* ---- Hero ---- */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.hero__body {
  max-width: 64ch;
}
.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1.2rem;
  animation: rise .8s 0.15s both ease-out;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.008em;
  font-weight: 400;
  color: var(--cream-soft);
  max-width: 60ch;
  margin: 0;
  animation: rise 1s 0.25s both ease-out;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-soft);
}
.hero__meta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
  animation: rise 1s 0.4s both ease-out;
}
.hero__meta { margin: 0; }
.hero__meta b { color: var(--cream-soft); font-weight: 400; letter-spacing: 0.14em; }
.hero__meta > div { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__meta dt { color: var(--cream-faint); font-size: 0.7rem; }
.hero__meta dd { margin: 0; }

@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; }
  .hero__mark { grid-column: 1; }
  .hero__body { grid-column: 1; }
}

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

/* ---- Buttons / CTA ---- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.3rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream-soft);
}
.btn--ghost { border-color: var(--rule); color: var(--cream-mute); }
.btn--ghost:hover { color: var(--cream-soft); background: rgba(150, 0, 102, 0.12); border-color: var(--accent); }
.btn svg { width: 14px; height: 14px; }
.btn--icon { padding: 0.7rem 1.05rem; gap: 0; }
.btn--icon svg { width: 22px; height: 22px; }

/* ASCII logo (homepage hero) */
.ascii-logo {
  font-family: var(--mono);
  color: var(--cream-soft);
  font-size: clamp(0.7rem, 1.4vw, 1.05rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 2.5rem;
  white-space: pre;
  text-align: left;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: color .25s ease;
  animation: twitch 4s infinite;
}
.ascii-logo:hover,
.ascii-logo:focus-visible {
  color: var(--accent);
  animation: twitch-intense 0.6s infinite;
}
.ascii-logo.is-shaken { animation: ascii-cat-shake 0.5s ease !important; }
.ascii-logo.is-annoyed { color: var(--accent); animation: twitch-intense 0.3s infinite !important; }
.ascii-logo.is-fled {
  animation: cat-flee 0.6s ease-in forwards !important;
  pointer-events: none;
}
.ascii-logo.is-gone {
  visibility: hidden;
  pointer-events: none;
}
.ascii-logo.is-returning {
  animation: cat-return 0.8s ease-out forwards !important;
}
@keyframes cat-flee {
  0%   { transform: translate(0, 0) rotate(0); opacity: 1; }
  30%  { transform: translate(10px, -20px) rotate(5deg); opacity: 1; }
  100% { transform: translate(120vw, -60px) rotate(15deg); opacity: 0; }
}
@keyframes cat-return {
  0%   { transform: translate(-120vw, 40px) rotate(-10deg); opacity: 0; visibility: visible; }
  60%  { transform: translate(8px, -5px) rotate(1deg); opacity: 1; }
  80%  { transform: translate(-3px, 2px) rotate(-0.5deg); opacity: 1; }
  100% { transform: translate(0, 0) rotate(0); opacity: 1; visibility: visible; }
}
@keyframes twitch {
  0%, 100% { transform: translate(0, 0); }
  5%  { transform: translate(-0.5px, 0.3px); }
  7%  { transform: translate(0, 0); }
  48% { transform: translate(0.4px, -0.3px); }
  50% { transform: translate(0, 0); }
  83% { transform: translate(-0.3px, 0.2px); }
  85% { transform: translate(0, 0); }
}
@keyframes twitch-intense {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  12% { transform: translate(-1px, 0.5px) rotate(-0.3deg); }
  24% { transform: translate(0.8px, -0.6px) rotate(0.2deg); }
  42% { transform: translate(-0.6px, 0.8px); }
  64% { transform: translate(1px, -0.3px) rotate(-0.2deg); }
  80% { transform: translate(-0.8px, 0.4px) rotate(0.3deg); }
}

/* Animated ASCII cat */
.ascii-cat-wrap {
  display: flex;
  justify-content: center;
  padding: 3rem 0 4rem;
}
.ascii-cat {
  font-family: var(--mono);
  color: var(--cream-mute);
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: pre;
  cursor: pointer;
  user-select: none;
  transition: color .25s ease, transform .25s ease;
  outline: none;
}
.ascii-cat:hover,
.ascii-cat:focus-visible { color: var(--accent); transform: translateY(-2px); }
.ascii-cat.is-shaken { animation: ascii-cat-shake 0.5s ease; }
@keyframes ascii-cat-shake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  20%      { transform: translate(-4px, -2px) rotate(-2deg); }
  40%      { transform: translate(4px, 1px) rotate(2deg); }
  60%      { transform: translate(-3px, 2px) rotate(-1deg); }
  80%      { transform: translate(3px, -1px) rotate(1deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ascii-cat, .ascii-cat:hover, .ascii-cat.is-shaken { transform: none; animation: none; }
}

/* Inline contact mark (Discord logo as section "title" in community section) */
.contact-mark {
  display: inline-flex;
  align-items: center;
  color: var(--cream-soft);
  margin-bottom: 0.9rem;
  transition: color .2s, transform .2s;
}
.contact-mark svg { width: 44px; height: 44px; }
.contact-mark:hover { color: var(--accent); transform: translateY(-1px); }

/* ---- Team grid ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
}
.member {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.member__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-1);
  border: 1px solid var(--rule);
  overflow: hidden;
  filter: saturate(0.75) contrast(1.05);
  transition: filter .35s ease;
}
.member__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.member:hover .member__portrait { filter: saturate(1) contrast(1); }
.member:hover .member__portrait img { transform: scale(1.03); }
.member__numeral {
  position: absolute;
  top: 0.65rem; left: 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-soft);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
}
.member__name {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--cream-soft);
  line-height: 1.1;
}
.member__role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.member__bio {
  font-size: 0.93rem;
  color: var(--cream);
  margin: 0.25rem 0 0;
  max-width: 32ch;
}
.member__bio--placeholder {
  font-style: italic;
  color: var(--cream-faint);
  font-family: var(--serif);
}
.member--empty .member__portrait {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(226,207,192,0.04) 12px 13px),
    var(--ink-1);
}
.member--empty .member__portrait::after {
  content: "—";
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--cream-faint);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2rem;
  margin-top: 4rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(29, 5, 35, 0.5) 100%);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 38ch;
}
.site-footer__brand img { height: 32px; width: auto; opacity: 0.85; }
.site-footer__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.site-footer__links a:hover { color: var(--cream-soft); }
.site-footer__links a svg { width: 18px; height: 18px; vertical-align: middle; display: inline-block; }
.site-footer__colophon {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__links { align-items: flex-start; }
}

/* ---- Card / panel ---- */
.panel {
  background: linear-gradient(180deg, rgba(29,5,35,0.6), rgba(29,5,35,0.3));
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* ---- Studio: value list ---- */
.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.values li {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
}
.values h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.values p { color: var(--cream-mute); font-size: 0.95rem; }

/* ---- Careers: simple list ---- */
.careers-empty {
  border: 1px solid var(--rule);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: left;
  background: rgba(29, 5, 35, 0.35);
}
.careers-empty h3 { margin-bottom: 0.5rem; }

/* ---- Legal pages ---- */
.legal h2 { margin-top: 2.5em; margin-bottom: 0.6em; font-size: clamp(1.4rem, 2vw, 1.8rem); }
.legal h3 { margin-top: 1.8em; font-size: 1.1rem; }
.legal p, .legal li { color: var(--cream); }
.legal .updated {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 2rem;
}

/* ---- 404 ---- */
.not-found {
  text-align: left;
  padding-top: clamp(5rem, 12vw, 8rem);
}
.not-found h1 { font-size: clamp(4rem, 14vw, 9rem); line-height: 0.9; }
.not-found h1 em { color: var(--accent-soft); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
