/* HUMAN CRAFT — patient specific manufacturing
   Hand-written design system. No frameworks, no build step. */

/* ---------------------------------------------------------- tokens */
:root {
  --brand: #c70039;
  --brand-dark: #a1002e;
  --brand-tint: #fff1f4;

  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-elev: #ffffff;
  --ink: #14161a;
  --ink-soft: #4b525d;
  --ink-mute: #767e8b;
  --line: #e4e7ec;
  --line-soft: #eef0f4;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(16, 20, 28, .05), 0 8px 24px rgba(16, 20, 28, .06);
  --shadow-lg: 0 2px 6px rgba(16, 20, 28, .06), 0 18px 48px rgba(16, 20, 28, .12);

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --header-h: 74px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1116;
    --bg-soft: #151922;
    --bg-elev: #171c25;
    --ink: #eef1f6;
    --ink-soft: #b9c1cd;
    --ink-mute: #8b95a4;
    --line: #262d3a;
    --line-soft: #1d232d;
    --brand: #ff3d6b;
    --brand-dark: #ff6384;
    --brand-tint: #24121a;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 8px 24px rgba(0, 0, 0, .35);
    --shadow-lg: 0 2px 6px rgba(0, 0, 0, .5), 0 18px 48px rgba(0, 0, 0, .5);
  }
}

/* ------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .9vw, 1.65rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.35em; }
li { margin-bottom: .5em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }
table { border-collapse: collapse; width: 100%; margin-bottom: 1.4em; }
th, td { border: 1px solid var(--line); padding: .6em .8em; text-align: left; }
th { background: var(--bg-soft); font-weight: 600; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section-soft { background: var(--bg-soft); }
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }

/* --------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.logo { flex: 0 0 auto; display: flex; align-items: center; }
/* Full lockup (icon + wordmark + "PATIENT SPECIFIC MANUFACTURING" tagline).
   48px is the smallest height at which the tagline row stays legible instead
   of turning into a grey smudge — tested by rendering the source PNG at
   several sizes before picking this one. */
.logo img { height: 48px; width: auto; }
.logo img.logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .logo img.logo-light { display: none; }
  .logo img.logo-dark { display: block; }
}

.nav { margin-left: auto; }
.nav > ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav a, .nav > ul > li > .nav-top {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem; border-radius: 9px;
  color: var(--ink); font-weight: 500; font-size: .97rem;
  background: none; border: 0; cursor: pointer; font-family: inherit;
}
.nav a:hover, .nav .nav-top:hover { background: var(--bg-soft); color: var(--brand); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--brand); }

.has-sub { position: relative; }
.has-sub > .nav-top::after {
  content: ""; width: 6px; height: 6px; margin-left: .15rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .55;
}
.subnav {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .4rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-sub:hover > .subnav, .has-sub:focus-within > .subnav { opacity: 1; visibility: visible; transform: none; }
.subnav a { display: block; padding: .55rem .7rem; font-size: .95rem; }

.header-cta { display: flex; align-items: center; gap: .5rem; }
.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 0 10px;
    background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; margin: 0;
    background: var(--bg); border-top: 1px solid var(--line);
    padding: 1rem 20px 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
  }
  .nav[data-open="true"] { transform: none; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav a, .nav .nav-top { width: 100%; padding: .8rem .6rem; font-size: 1.05rem; }
  .has-sub > .nav-top { justify-content: space-between; }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 0 0 .4rem .6rem; padding: 0 0 0 .4rem;
    display: none;
  }
  .has-sub[data-open="true"] > .subnav { display: block; }
  .header-cta .btn { display: none; }
}

/* --------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 28%, transparent); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }

/* ----------------------------------------------------------- hero */
.hero { padding-block: clamp(2.5rem, 1.5rem + 5vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .6rem; }
.hero .lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); color: var(--ink-soft); margin-bottom: 1.8rem; }
.hero-media { perspective: 1000px; }
.hero-media img { border-radius: var(--radius-lg); transition: transform .1s ease-out; will-change: transform; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-media { order: -1; } }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-tint); padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1rem;
}

/* ---------------------------------------------------------- cards */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
/* auto-fill, not auto-fit: several catalog groups hold a single product, and
   auto-fit would collapse the empty tracks and stretch that one card across
   the full row. */
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }

/* The whole card is the click target. Only the title stays a real link, so
   screen readers and search engines still see one link with meaningful text;
   this pseudo-element just stretches its hit area over the card.
   ".card--link" is set by the generator on cards that have a title link — not
   via a :has() selector, because a browser without :has() support would then
   show a plain arrow cursor over most of the card (the link still works, it
   just stops looking clickable, which reads as "broken" to a visitor). */
.card--link { cursor: pointer; }
.card-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
/* hovering anywhere on the card should light up its title and CTA */
.card--link:hover .card-title a { color: var(--brand); }
.card--link:hover .card-more { color: var(--brand); }
/* focus ring should outline the card, not the invisible overlay */
.card-title a:focus-visible { outline: none; }
.card--link:focus-within { outline: 3px solid var(--brand); outline-offset: 3px; }
.card-media { background: var(--bg-soft); aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 1rem; }
/* Fill the media box explicitly. With "width:auto" an image that has not loaded
   yet computes to 0x0, and inside an initially-hidden tab panel that deadlocks
   lazy loading: zero box -> never "near the viewport" -> never fetched. */
.card-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
@media (prefers-color-scheme: dark) { .card-media img { mix-blend-mode: normal; } }
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-title {
  font-size: 1.02rem; font-weight: 650; margin-bottom: .5rem; line-height: 1.35;
  /* product names run long ("…с патологией гипертрофического гингивита"):
     cap them so every card in a row keeps the same rhythm */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
  overflow: hidden; hyphens: auto;
}
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--brand); text-decoration: none; }
.card-text {
  color: var(--ink-soft); font-size: .93rem; margin-bottom: 1rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.card-more { margin-top: auto; font-weight: 600; font-size: .93rem; }
.card-more::after { content: " →"; }

/* feature blocks */
.feature { display: grid; grid-template-columns: 96px 1fr; gap: 1.2rem; align-items: start; }
.feature-media { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feature p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
@media (max-width: 560px) { .feature { grid-template-columns: 1fr; } .feature-media { max-width: 96px; } }

/* stats */
.stats { background: #10131a; color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem); }
.stats .grid { gap: 2rem; }
.stat-num { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat-num .plus { color: var(--brand-dark); }
.stat-label { color: #a8b0bd; font-size: .95rem; margin-top: .5rem; }

/* logos */
.logo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; align-items: center; }
.logo-strip figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; height: 110px; display: grid; place-items: center; }
.logo-strip img { width: 100%; height: 100%; object-fit: contain; }

/* --------------------------------------------------- page furniture */
.page-head { padding-block: 2.2rem 1rem; border-bottom: 1px solid var(--line-soft); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 .8rem; font-size: .88rem; color: var(--ink-mute); }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--brand); }
.page-head h1 { margin: 0; }
.page-head .lead { color: var(--ink-soft); margin: .7rem 0 0; max-width: 68ch; }

/* rich text from the original CMS */
.prose { max-width: 72ch; }
.prose img { border-radius: var(--radius); margin: 1.6rem auto; }
.prose h2, .prose h3, .prose h4, .prose h5 { margin-top: 2rem; }
.prose h5 { font-size: 1.15rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul li::marker { color: var(--brand); }
.prose ol li::marker { color: var(--brand); font-weight: 700; }
.prose figure { margin: 1.6rem 0; }

/* product detail */
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.product-hero-media { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 1.5rem; display: grid; place-items: center; }
@media (max-width: 860px) { .product-hero { grid-template-columns: 1fr; } }

/* catalog */
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.tab {
  padding: .65rem 1.25rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg-elev); color: var(--ink); font-weight: 600; font-size: .95rem;
  cursor: pointer; font-family: inherit; transition: .15s;
}
.tab:hover { border-color: var(--brand); color: var(--brand); }
.tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab-panel[hidden] { display: none; }
.group-title { font-size: 1.1rem; font-weight: 700; margin: 2.2rem 0 1.1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.group-title:first-of-type { margin-top: 0; }

/* second tier under the main tabs: a specialty (ЧЛХ / Ортопедия / ...), shown
   as an icon+label pill even when a tab has only one — matches the live site,
   where a lone specialty still gets its own pill rather than being collapsed */
.specialty-tabs {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin: 0 0 2.5rem;
}
.specialty-tab {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  width: 112px; padding: 1rem .6rem .8rem;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--bg-elev); cursor: pointer; font-family: inherit;
  transition: border-color .15s, background .15s, color .15s;
}
.specialty-tab:hover { border-color: var(--brand); }
.specialty-tab[aria-selected="true"] { border-color: var(--brand); background: var(--brand-tint); color: var(--brand); }
.specialty-tab-icon { width: 44px; height: 44px; object-fit: contain; }
.specialty-tab span { font-size: .85rem; font-weight: 600; text-align: center; line-height: 1.25; }

/* contacts */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-item .ico { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-tint); color: var(--brand); }
.contact-item .h6 { font-weight: 700; margin: 0 0 .15rem; }
.contact-item p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.contact-item a { font-size: 1.05rem; font-weight: 600; }

.form-box { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; padding: .75rem .9rem; font: inherit; font-size: .98rem;
  color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
}
.field input:focus, .field textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--ink-mute); margin-top: .8rem; }
.form-status { margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px; font-size: .93rem; display: none; }
.form-status[data-state="ok"] { display: block; background: #e8f7ee; color: #12683b; }
.form-status[data-state="err"] { display: block; background: var(--brand-tint); color: var(--brand); }

/* search */
.search-box { position: relative; margin-bottom: 2rem; }
.search-box input {
  width: 100%; padding: 1rem 1.2rem 1rem 3rem; font: inherit; font-size: 1.05rem;
  color: var(--ink); background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 999px;
}
.search-box input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent); }
.search-box .ico { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--ink-mute); }
.result { padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft); }
.result h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.result .crumb { font-size: .82rem; color: var(--ink-mute); margin-bottom: .35rem; }
.result p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.result mark { background: color-mix(in srgb, var(--brand) 22%, transparent); color: inherit; border-radius: 3px; padding: 0 2px; }

/* --------------------------------------------------------- footer */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 4vw, 4rem) 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-grid h2, .footer-grid h3 { font-size: 1.05rem; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--ink-soft); font-size: .95rem; }
.footer-grid a:hover { color: var(--brand); }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-elev); border: 1px solid var(--line); color: var(--ink-soft);
}
.social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .88rem; color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.reg-note { font-size: .82rem; color: var(--ink-mute); margin-top: 1.5rem; line-height: 1.55; }

/* blog — a single-column list of full-width post teasers, matching the live
   site's layout (title, date, wide image, excerpt, button) rather than the
   3-column card grid used for products/sections. */
.blog-list { display: flex; flex-direction: column; gap: 3rem; }
.blog-post { position: relative; }
.blog-post-title { font-size: 1.4rem; margin-bottom: .4rem; }
.blog-post-title a { color: var(--ink); }
.blog-post-title a:hover { color: var(--brand); }
.blog-post-date { color: var(--ink-mute); font-size: .9rem; margin-bottom: 1.2rem; }
.blog-post-media { display: block; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.3rem; }
.blog-post-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-post-excerpt { color: var(--ink-soft); }
.blog-post--link { cursor: pointer; }
.blog-post-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.blog-post--link:hover .blog-post-title a { color: var(--brand); }
.blog-post--link:focus-within { outline: 3px solid var(--brand); outline-offset: 4px; border-radius: var(--radius); }
.blog-post .btn { position: relative; z-index: 2; } /* the real "Подробнее" link sits above the stretched overlay */

/* misc */
.to-top {
  position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; z-index: 90;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--brand); color: #fff; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: .2s; border: 0; cursor: pointer;
}
.to-top[data-show="true"] { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--brand-dark); text-decoration: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media print { .site-header, .site-footer, .to-top, .nav-toggle { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
