:root {
  --kraft: #c59a67;
  --kraft-dark: #a87843;
  --paper: #f7f2e8;
  --paper-2: #eee4d2;
  --ink: #20251d;
  --green: #184e37;
  --green-light: #d8e2d3;
  --orange: #f05a28;
  --orange-light: #ffd9c8;
  --line: rgba(32, 37, 29, .2);
  --shadow: 0 16px 40px rgba(54, 39, 22, .12);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  background: var(--green); color: white; padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1440px, calc(100% - 32px));
  height: 84px;
  margin: 16px auto 0;
  padding: 0 22px;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px 18px 34px 18px;
  background: rgba(247, 242, 232, .92);
  box-shadow: 0 8px 30px rgba(54, 39, 22, .08);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; }
.brand strong { display: block; font-size: .94rem; letter-spacing: .03em; }
.brand small { display: block; margin-top: 7px; font-size: .66rem; color: #596052; }
.brand-mark { width: 43px; height: 43px; display: grid; grid-template-columns: repeat(3, 1fr); transform: rotate(-3deg); }
.brand-mark i { border: 2px solid var(--ink); }
.brand-mark i:nth-child(2) { background: var(--orange); border-left: 0; }
.brand-mark i:nth-child(3) { border-left: 0; background: var(--green); }
.desktop-nav { display: flex; gap: clamp(16px, 2.4vw, 38px); }
.desktop-nav a, .mobile-nav a { text-decoration: none; font-size: .81rem; font-weight: 700; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; height: 3px; border-radius: 3px; left: 0; right: 100%; bottom: -9px; background: var(--orange); transition: .25s; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.lang-switch {
  border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 5px;
  display: flex; cursor: pointer; font-size: .7rem;
}
.lang-switch span, .lang-switch b { padding: 5px 7px; border-radius: 99px; }
.lang-switch span { color: white; background: var(--green); }
html[lang="en"] .lang-switch span { color: inherit; background: none; }
html[lang="en"] .lang-switch b { color: white; background: var(--green); }
.mini-cta { background: var(--orange); color: white; text-decoration: none; font-weight: 800; font-size: .76rem; padding: 11px 15px; border-radius: 9px 9px 18px 9px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--green); border-radius: 10px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: white; transition: .25s; }
.mobile-nav { display: none; }

.section { width: min(1380px, calc(100% - 40px)); margin: 0 auto; padding: 110px clamp(12px, 3vw, 48px); scroll-margin-top: 100px; }
.eyebrow { margin: 0 0 18px; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Roboto Slab", serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 26px; font-size: clamp(3rem, 6.5vw, 7rem); max-width: 890px; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4.3vw, 4.5rem); }
h3 { line-height: 1.25; }
.section-heading { display: grid; grid-template-columns: .6fr 1.25fr 1fr; gap: 36px; align-items: start; margin-bottom: 56px; }
.section-heading .eyebrow { grid-column: 1; }
.section-heading h2 { grid-column: 2; }
.section-heading > p:last-child { grid-column: 3; color: #565c51; }
.section-heading.compact { grid-template-columns: .55fr 1.45fr; }
.section-heading.compact h2 { grid-column: 2; }

.hero {
  min-height: calc(100vh - 100px);
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 28px;
}
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.25rem); max-width: 760px; color: #4d5349; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin: 35px 0 56px; flex-wrap: wrap; }
.button {
  border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 12px 22px; border-radius: 12px 12px 24px 12px;
  text-decoration: none; font-weight: 800; font-size: .85rem; transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(36, 29, 20, .15); }
.button.primary { background: var(--orange); color: white; }
.button.secondary { border: 1px solid var(--line); background: var(--paper-2); }
.button.dark { background: var(--ink); color: white; }
.fact-strip { list-style: none; padding: 0; margin: 0; display: flex; gap: 3px; }
.fact-strip li { min-width: 145px; padding: 16px 20px; background: var(--paper-2); border: 1px solid rgba(32,37,29,.08); }
.fact-strip li:first-child { border-radius: 15px 0 0 25px; }
.fact-strip li:last-child { border-radius: 0 15px 25px 0; }
.fact-strip span { display: block; font-size: .64rem; text-transform: uppercase; color: #63695e; }
.fact-strip strong { font-size: .87rem; }
.hero-object { min-height: 530px; position: relative; perspective: 800px; }
.sheet { position: absolute; width: 68%; height: 58%; left: 13%; top: 16%; border-radius: 16px 16px 48px 16px; box-shadow: var(--shadow); }
.sheet-back { background: var(--green); transform: rotate(-10deg) translate(-34px, 8px); }
.sheet-middle { background: var(--orange); transform: rotate(8deg) translate(42px, 4px); display: flex; align-items: flex-end; justify-content: flex-end; padding: 18px; font-weight: 800; color: white; }
.box-net { position: absolute; width: 72%; height: 60%; top: 15%; left: 12%; background: var(--kraft); border: 2px solid var(--ink); transform: rotate(-2deg); clip-path: polygon(18% 0, 82% 0, 82% 13%, 100% 13%, 100% 87%, 82% 87%, 82% 100%, 18% 100%, 18% 88%, 0 88%, 0 12%, 18% 12%); }
.box-net::before, .box-net::after { content: ""; position: absolute; border: 1px dashed rgba(32,37,29,.6); }
.box-net::before { top: 13%; bottom: 13%; left: 18%; right: 18%; }
.box-net::after { top: 42%; left: 18%; right: 18%; }
.box-label { position: absolute; z-index: 2; left: 29%; top: 26%; width: 42%; height: 40%; border-radius: 8px 8px 24px 8px; background: var(--paper); border: 1px solid var(--ink); padding: 13px; display: grid; }
.box-label small { font-size: .45rem; }
.box-label strong { font-family: "Roboto Slab"; font-size: 3rem; color: var(--green); line-height: 1; }
.box-label span { justify-self: end; font-weight: 800; color: var(--orange); }
.round-tag { position: absolute; right: 3%; bottom: 12%; width: 110px; aspect-ratio: 1; border-radius: 50% 50% 50% 16px; background: var(--paper-2); border: 2px solid var(--ink); display: grid; place-content: center; text-align: center; font-weight: 800; line-height: 1.2; transform: rotate(8deg); }

.intro { background: var(--paper-2); border-radius: 60px 60px 20px 20px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-card { min-height: 300px; padding: 28px; border: 1px solid var(--line); border-radius: 14px 14px 44px 14px; display: flex; flex-direction: column; }
.service-card:nth-child(even) { transform: translateY(26px); }
.service-card .card-number { font-size: .68rem; font-weight: 800; margin-bottom: auto; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { font-size: .87rem; margin-bottom: 0; }
.service-card.orange { background: var(--orange); color: white; }
.service-card.green { background: var(--green); color: white; }
.service-card.cream { background: var(--paper); }
.service-card.kraft { background: var(--kraft); }

.materials { display: grid; grid-template-columns: 1fr .9fr; gap: 10%; align-items: center; }
.materials-copy > p:not(.eyebrow) { color: #565c51; max-width: 650px; }
.material-notes { margin-top: 38px; border-top: 1px solid var(--line); }
.material-notes div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .83rem; }
.material-notes span { color: #5e6459; }
.swatch-stack { position: relative; min-height: 540px; }
.swatch { position: absolute; width: 76%; height: 330px; padding: 25px; border: 2px solid var(--ink); border-radius: 20px 20px 65px 20px; box-shadow: var(--shadow); display: flex; justify-content: space-between; font-weight: 800; transition: transform .3s; }
.swatch:hover { z-index: 6; transform: translateY(-12px) rotate(0); }
.swatch.white { background: #fffdf8; top: 0; left: 3%; transform: rotate(-7deg); }
.swatch.brown { background: var(--kraft); top: 95px; right: 1%; transform: rotate(5deg); }
.swatch.green { background: var(--green); color: white; top: 185px; left: 8%; transform: rotate(-2deg); }
.swatch b { align-self: end; font-size: 4rem; opacity: .25; line-height: 1; }

.brief { width: 100%; max-width: none; padding-inline: max(30px, calc((100vw - 1280px) / 2)); background: var(--green); color: white; border-radius: 70px 18px 70px 18px; }
.brief-heading { display: grid; grid-template-columns: .7fr 1.2fr 1fr; gap: 45px; margin-bottom: 45px; }
.brief-heading .eyebrow { color: #ffa17f; }
.brief-heading p:last-child { color: #d4dfd8; }
.brief-builder { background: var(--paper); color: var(--ink); padding: clamp(22px, 4vw, 52px); border-radius: 18px 18px 54px 18px; }
fieldset { border: 0; padding: 0; margin: 0 0 28px; }
legend, .brief-selects label > span { font-weight: 800; margin-bottom: 12px; display: block; }
.choice-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.choice-row label { cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; }
.choice-row span { min-height: 68px; padding: 13px; border: 1px solid var(--line); border-radius: 10px 10px 22px 10px; display: flex; align-items: center; font-size: .82rem; font-weight: 700; }
.choice-row input:checked + span { background: var(--orange); color: white; border-color: var(--orange); box-shadow: inset 0 0 0 2px var(--paper); }
.choice-row input:focus-visible + span { outline: 3px solid var(--green); outline-offset: 2px; }
.brief-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
select, input, textarea { width: 100%; color: var(--ink); border: 1px solid var(--line); border-radius: 10px 10px 20px 10px; background: #fffdf8; padding: 14px; outline: none; }
select:focus, input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,90,40,.14); }
.brief-result { margin-top: 30px; display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding-top: 26px; border-top: 1px dashed var(--line); }
.brief-result span { color: #6e7469; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.brief-result p { margin: 5px 0 0; font-weight: 700; }

.uses { padding-top: 130px; }
.use-list { border-top: 1px solid var(--line); }
.use-list article { display: grid; grid-template-columns: .2fr .75fr 1fr; gap: 30px; align-items: center; padding: 28px 10px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.use-list article:hover { padding-inline: 25px; background: var(--paper-2); }
.use-list article > span { color: var(--orange); font-weight: 800; }
.use-list h3, .use-list p { margin: 0; }
.use-list p { color: #5b6156; }

.process { background: var(--kraft); border-radius: 24px 70px 24px 70px; }
.process-steps { padding: 0; margin: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-steps li { padding: 20px 28px; min-height: 270px; border-left: 1px dashed rgba(32,37,29,.4); display: flex; flex-direction: column; }
.process-steps li:first-child { border-left: 0; }
.process-steps b { color: var(--orange); font-size: 2.4rem; font-family: "Roboto Slab"; }
.process-steps div { margin-top: auto; }
.process-steps p { margin-bottom: 0; font-size: .86rem; }

.prepress { display: grid; grid-template-columns: .45fr 1.55fr; gap: 7%; align-items: stretch; }
.prepress-label { min-height: 420px; background: var(--orange); color: white; border-radius: 16px 16px 70px 16px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; transform: rotate(-2deg); }
.prepress-label span { writing-mode: vertical-rl; text-transform: uppercase; font-weight: 800; letter-spacing: .2em; }
.prepress-label b { font-family: "Roboto Slab"; font-size: 4rem; }
.prepress-content { align-self: center; max-width: 770px; }
.prepress-content > p:not(.eyebrow) { color: #555b50; font-size: 1.05rem; }
.text-link { display: inline-block; margin-top: 20px; font-weight: 800; text-decoration-color: var(--orange); text-underline-offset: 7px; }

.files { background: var(--paper-2); border-radius: 70px 20px; }
.file-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.file-card { min-height: 250px; padding: 25px; border: 1px solid var(--line); background: var(--paper); border-radius: 12px 12px 35px 12px; }
.file-card b { display: inline-grid; place-content: center; width: 54px; height: 54px; border-radius: 50% 50% 50% 10px; background: var(--green); color: white; font-size: .7rem; }
.file-card h3 { margin-top: 45px; margin-bottom: 8px; }
.file-card p { font-size: .83rem; color: #5c6257; }
.notice { margin: 22px 0 0; padding: 22px; border: 1px dashed var(--orange); border-radius: 10px; font-size: .86rem; }

.activity-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.activity-tags div { padding: 22px; border: 1px solid var(--line); border-radius: 12px 12px 28px 12px; display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 16px; background: #fffaf1; }
.activity-tags b { color: var(--orange); font-family: "Roboto Slab"; }

.company { background: var(--green); color: white; border-radius: 70px 20px 70px 20px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; }
.company-title .eyebrow { color: #ffa17f; }
.company-title > p:not(.eyebrow) { font-size: .78rem; color: #cfdcd4; margin-bottom: 8px; }
.company-data { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.company-data div { padding: 18px; background: rgba(255,255,255,.08); border-radius: 8px 8px 20px 8px; }
.company-data .wide { grid-column: 1 / -1; }
.company-data dt { font-size: .63rem; color: #adc2b5; text-transform: uppercase; letter-spacing: .08em; }
.company-data dd { margin: 7px 0 0; font-weight: 700; font-size: .9rem; }

.people-grid { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 12px; }
.people-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 15px 15px 40px 15px; }
.people-grid article:nth-child(2) { background: var(--orange-light); }
.people-grid article:nth-child(3) { background: var(--green-light); }
.people-grid article > span { display: block; min-height: 45px; color: #61675d; font-size: .68rem; text-transform: uppercase; font-weight: 800; }
.people-grid h3 { font-size: 1.15rem; }
.people-grid p { margin: 0; font-size: .82rem; color: #5e6459; }

.timeline { background: var(--kraft); border-radius: 22px 70px; }
.timeline-track { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.timeline-track::before { content: ""; position: absolute; height: 2px; top: 42px; left: 5%; right: 5%; background: var(--ink); }
.timeline-track article { position: relative; padding: 0 30px; }
.timeline-track article::before { content: ""; display: block; width: 16px; height: 16px; border: 5px solid var(--kraft); background: var(--orange); border-radius: 50%; position: absolute; top: 33px; left: 28px; z-index: 2; }
.timeline-track time { display: block; margin-bottom: 56px; font-weight: 800; }
.timeline-track p { font-size: .84rem; }

.accordion { max-width: 960px; margin-left: auto; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 22px 50px 22px 0; cursor: pointer; font-weight: 800; list-style: none; position: relative; }
summary::after { content: "+"; position: absolute; right: 10px; top: 13px; color: var(--orange); font-size: 1.8rem; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 780px; color: #585e53; padding-bottom: 20px; }

.contact { width: 100%; max-width: none; padding-inline: max(20px, calc((100vw - 1380px) / 2)); }
.contact-panel { background: var(--paper-2); padding: clamp(28px, 5vw, 75px); border-radius: 70px 20px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8%; }
.contact-copy .contact-email { display: block; font-family: "Roboto Slab"; font-size: clamp(1.4rem, 3vw, 2.8rem); color: var(--green); text-decoration-color: var(--orange); text-underline-offset: 8px; margin: 35px 0; }
address { max-width: 520px; font-style: normal; font-size: .83rem; color: #555b50; }
.contact-form { background: var(--paper); border: 1px solid var(--line); padding: clamp(20px, 3vw, 40px); border-radius: 16px 16px 45px 16px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label span { display: block; margin-bottom: 7px; font-size: .72rem; font-weight: 800; }
textarea { resize: vertical; }
.form-note { font-size: .7rem; color: #676d62; margin: 12px 0 0; }
.form-success { padding: 13px; background: var(--green-light); color: var(--green); border-radius: 8px; margin: 15px 0 0; font-size: .82rem; font-weight: 700; }

.site-footer { width: min(1380px, calc(100% - 40px)); margin: 0 auto; padding: 35px 20px 45px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; font-size: .72rem; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: #686e63; }
.footer-links { display: flex; gap: 25px; }
.footer-links a { font-weight: 700; }
.site-footer > p { margin: 0; text-align: right; }

@media (max-width: 1000px) {
  .desktop-nav, .mini-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: absolute; top: 72px; left: 0; right: 0; padding: 16px;
    background: var(--paper); border: 1px solid var(--line); border-radius: 12px 12px 30px 12px;
    box-shadow: var(--shadow); flex-direction: column; gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 13px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-object { min-height: 420px; max-width: 550px; width: 100%; justify-self: center; }
  .section-heading, .section-heading.compact, .brief-heading { grid-template-columns: 1fr; gap: 4px; }
  .section-heading h2, .section-heading.compact h2, .section-heading > p:last-child { grid-column: 1; }
  .service-grid, .file-board { grid-template-columns: 1fr 1fr; }
  .materials { gap: 4%; }
  .choice-row { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps li:nth-child(3) { border-left: 0; border-top: 1px dashed rgba(32,37,29,.4); }
  .process-steps li:nth-child(4) { border-top: 1px dashed rgba(32,37,29,.4); }
  .company, .contact-panel { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; height: 70px; padding: 0 13px; top: 7px; }
  .brand strong { font-size: .78rem; }
  .brand small { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .section { width: calc(100% - 20px); padding: 75px 14px; }
  .hero { min-height: auto; padding-top: 70px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero-actions { margin-bottom: 38px; }
  .hero-actions .button { width: 100%; }
  .fact-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .fact-strip li { min-width: 0; padding: 13px; }
  .fact-strip li:first-child, .fact-strip li:last-child { border-radius: 10px 10px 20px 10px; }
  .fact-strip li:last-child { grid-column: 1 / -1; }
  .hero-object { min-height: 330px; }
  .round-tag { width: 80px; font-size: .75rem; }
  .intro, .brief, .process, .files, .company, .timeline, .contact-panel { border-radius: 35px 12px; }
  .service-grid, .materials, .brief-selects, .activity-tags, .people-grid, .timeline-track, .company-data { grid-template-columns: 1fr; }
  .service-card:nth-child(even) { transform: none; }
  .service-card { min-height: 240px; }
  .swatch-stack { min-height: 420px; }
  .swatch { height: 260px; }
  .brief { width: 100%; padding-inline: 20px; }
  .choice-row { grid-template-columns: 1fr; }
  .brief-result { grid-template-columns: 1fr; }
  .use-list article { grid-template-columns: 45px 1fr; gap: 8px; }
  .use-list article p { grid-column: 2; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li { min-height: 210px; border-left: 0; border-top: 1px dashed rgba(32,37,29,.4); }
  .process-steps li:first-child { border-top: 0; }
  .prepress { grid-template-columns: 1fr; }
  .prepress-label { min-height: 160px; transform: none; }
  .prepress-label span { writing-mode: horizontal-tb; }
  .file-board { grid-template-columns: 1fr; }
  .file-card { min-height: 210px; }
  .activity-tags div { grid-template-columns: 65px 1fr; }
  .company-data .wide { grid-column: auto; }
  .timeline-track::before { width: 2px; height: auto; left: 8px; top: 5px; bottom: 5px; }
  .timeline-track article { padding: 0 0 32px 38px; }
  .timeline-track article::before { left: 0; top: 3px; }
  .timeline-track time { margin-bottom: 12px; }
  .contact { width: 100%; padding-inline: 10px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .site-footer > p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
