/* ────────────────────────────────────────────────────────────
   Victoria Tissée — sistema de diseño v2
   "Tissée" = tejida. Marfil cálido / olivo PANTONE 5747C /
   verde profundo PANTONE 5535C. Firma: motivo de espiga tejida.
   Serif: Fraunces (cuerpo y calidez, nunca hairline).
   ──────────────────────────────────────────────────────────── */
:root {
  --ivory:    #FAF7F2;
  --ivory-2:  #F2EDE3;
  --ivory-3:  #E8E1D2;
  --olive:    #3D441E;   /* PANTONE 5747 C */
  --olive-2:  #59622E;
  --sage:     #C9CFB2;
  --sage-2:   #E7EAD8;
  --forest:   #183028;   /* PANTONE 5535 C */
  --forest-2: #0F211B;
  --ink:      #20241A;
  --stone:    #6E6D5F;
  --line:      rgba(61,68,30,.16);
  --line-dark: rgba(250,247,242,.14);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Archivo', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(.25,.1,.25,1);
  --spring: cubic-bezier(.34,1.4,.64,1);

  /* Espiga tejida (herringbone) como textura de marca */
  --weave-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cg fill='none' stroke='%23FAF7F2' stroke-opacity='.06' stroke-width='1.2'%3E%3Cpath d='M0 11 11 2l11 9M22 11 33 2l11 9'/%3E%3Cpath d='M0 24l11-9 11 9M22 24l11-9 11 9'/%3E%3C/g%3E%3C/svg%3E");
  --weave-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cg fill='none' stroke='%233D441E' stroke-opacity='.08' stroke-width='1.2'%3E%3Cpath d='M0 11 11 2l11 9M22 11 33 2l11 9'/%3E%3Cpath d='M0 24l11-9 11 9M22 24l11-9 11 9'/%3E%3C/g%3E%3C/svg%3E");
  --weave-sage: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cg fill='none' stroke='%233D441E' stroke-opacity='.05' stroke-width='1.2'%3E%3Cpath d='M0 11 11 2l11 9M22 11 33 2l11 9'/%3E%3Cpath d='M0 24l11-9 11 9M22 24l11-9 11 9'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x en ambos: si solo body lo declara, algunos motores igual dejan
   scrollear el html raíz — los sangrados decorativos (ver .hero-weave) quedan
   alcanzables con un swipe en mobile en vez de quedar recortados. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: var(--sans); border: none; background: none; cursor: pointer; color: inherit; font-size: inherit; }
svg { display: block; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 2px; }

/* ─── Reveal on scroll ─────────────────────── */
.r {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.r.on { opacity: 1; transform: none; }

/* ─── Utilidades tipográficas ──────────────── */
.eyebrow {
  font-size: .66rem; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--olive);
}
.display {
  font-family: var(--serif); font-weight: 540; line-height: 1.08;
  letter-spacing: 0; color: var(--ink);
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 40;
}
.display em { font-style: italic; font-weight: 480; color: var(--olive); }

/* Divisor de espiga — firma de sección */
.weave-rule { display: inline-block; margin-top: 1.1rem; color: var(--olive); }
.weave-rule svg { width: 72px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.3; }

/* ─── Botones ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.05rem 2.1rem; border-radius: 999px;
  background: var(--olive); color: var(--ivory);
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  transition: background .35s, gap .35s, transform .35s;
}
.btn:hover { background: var(--forest); gap: 1rem; }
.btn:active { transform: scale(.97); }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.btn svg.wa { fill: currentColor; stroke: none; width: 16px; height: 16px; }
.btn-ghost { background: transparent; color: var(--olive); box-shadow: inset 0 0 0 1.5px var(--olive); }
.btn-ghost:hover { background: var(--olive); color: var(--ivory); }
.btn-light { background: var(--ivory); color: var(--forest); }
.btn-light:hover { background: var(--sage); color: var(--forest); }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--olive); padding-bottom: .35rem;
  border-bottom: 1px solid var(--line);
  transition: gap .3s, border-color .3s, color .3s;
}
.link-arrow:hover { gap: 1.1rem; border-color: var(--olive); color: var(--forest); }
.link-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* ─── NAV ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: padding .4s, background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.solid {
  padding: 1rem 4rem;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-logo { display: flex; flex-direction: column; align-items: center; gap: .1rem; }
.nav-logo-vt {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  letter-spacing: .3em; color: var(--olive); line-height: 1; margin-right: -.3em;
}
.nav-logo-name {
  font-size: .54rem; font-weight: 600; letter-spacing: .38em;
  text-transform: uppercase; color: var(--stone); margin-right: -.38em;
}
.nav-side { display: flex; align-items: center; gap: 2.6rem; flex: 1; }
.nav-side.right { justify-content: flex-end; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--stone); position: relative; transition: color .3s;
  padding: .3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--olive);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.current { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.current::after { transform: scaleX(1); transform-origin: left; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); transition: color .3s; padding: .4rem 0;
}
.cart-btn:hover { color: var(--olive); }
.cart-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-count {
  position: absolute; top: -4px; right: -14px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--olive); color: var(--ivory);
  border-radius: 999px; font-size: .58rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .35s var(--spring);
}
.cart-count.show { transform: scale(1); }

/* ─── Menú móvil ───────────────────────────── */
.menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
}
.menu-btn span { display: block; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s, width .35s; }
.menu-btn span:nth-child(2) { width: 70%; }
.mmenu {
  position: fixed; inset: 0; z-index: 250;
  background: var(--forest); background-image: var(--weave-dark);
  display: flex; flex-direction: column; justify-content: center; padding: 2rem 2rem 3rem;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.mmenu.open { opacity: 1; visibility: visible; }
.mmenu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.mmenu-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.mmenu-brand { position: absolute; top: 1.6rem; left: 2rem; }
.mmenu-brand .nav-logo-vt { color: var(--sage); }
.mmenu-brand .nav-logo-name { color: rgba(250,247,242,.4); }
.mmenu-links { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.mmenu-links a {
  display: inline-flex; align-items: baseline; gap: 1rem;
  font-family: var(--serif); font-weight: 480; font-style: italic;
  font-size: clamp(2.1rem, 9vw, 2.8rem); color: var(--ivory);
  padding: .55rem 0; line-height: 1.15;
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.mmenu-links a small { font-family: var(--sans); font-style: normal; font-size: .6rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--sage); }
.mmenu.open .mmenu-links a { opacity: 1; transform: none; }
.mmenu.open .mmenu-links li:nth-child(1) a { transition-delay: .12s; }
.mmenu.open .mmenu-links li:nth-child(2) a { transition-delay: .2s; }
.mmenu.open .mmenu-links li:nth-child(3) a { transition-delay: .28s; }
.mmenu-foot {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start;
  opacity: 0; transform: translateY(14px); transition: opacity .55s .36s var(--ease), transform .55s .36s var(--ease);
}
.mmenu.open .mmenu-foot { opacity: 1; transform: none; }
.mmenu-foot .btn { background: var(--ivory); color: var(--forest); }
.mmenu-foot p { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(250,247,242,.35); }

/* ─── Card de producto ─────────────────────── */
.p-card { position: relative; }
.p-card-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--ivory-2); border-radius: 3px;
}
.p-card-img img { transition: transform .8s var(--ease); }
.p-card:hover .p-card-img img { transform: scale(1.06); }
.p-card-badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--forest); color: var(--sage);
  font-size: .54rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  padding: .38rem .85rem; border-radius: 999px;
}
.p-card-badge svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.p-quick {
  position: absolute; right: .8rem; bottom: .8rem; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--ivory); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(24,48,40,.18);
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s, transform .35s var(--spring), background .3s, color .3s;
}
.p-card:hover .p-quick, .p-quick:focus-visible { opacity: 1; transform: none; }
.p-quick:hover { background: var(--olive); color: var(--ivory); }
.p-quick:active { transform: scale(.92); }
.p-quick svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
/* En pantallas táctiles el quick-add SIEMPRE visible (no hay hover) */
@media (hover: none) {
  .p-quick { opacity: 1; transform: none; width: 40px; height: 40px; }
}
.p-card-info { padding: 1.1rem .2rem 0; }
.p-card-cat {
  font-size: .58rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--olive-2); margin-bottom: .35rem;
}
.p-card-name {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 560;
  line-height: 1.3; color: var(--ink); margin-bottom: .35rem;
  transition: color .3s;
}
.p-card:hover .p-card-name { color: var(--olive); }
.p-card-price { font-size: .86rem; font-weight: 600; letter-spacing: .03em; color: var(--forest); }

/* Skeleton */
.sk { pointer-events: none; }
.sk-box {
  aspect-ratio: 4/5; border-radius: 3px;
  background: linear-gradient(90deg, var(--ivory-2) 25%, var(--ivory-3) 50%, var(--ivory-2) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
}
.sk-line { height: 11px; margin: .8rem .2rem 0; border-radius: 4px; background: var(--ivory-2); }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.shop-empty {
  grid-column: 1 / -1; text-align: center; padding: 4.5rem 1rem;
  color: var(--stone); font-size: .85rem; letter-spacing: .04em; line-height: 2;
}
.shop-empty .display { font-size: 1.6rem; margin-bottom: .6rem; }

/* ─── Chips de categoría ───────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.2rem; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); transition: all .3s; white-space: nowrap;
}
.chip svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.chip:hover { color: var(--ink); border-color: var(--olive-2); }
.chip.active { background: var(--olive); color: var(--ivory); border-color: var(--olive); }

/* ─── Drawer del carrito ───────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,33,27,.4);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: 430px; max-width: 94vw;
  background: var(--ivory); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .5s var(--ease);
  box-shadow: -24px 0 70px rgba(15,33,27,.2);
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 560; color: var(--ink); }
.cart-head span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-left: .7rem; font-family: var(--sans); font-weight: 500; }
.cart-close { color: var(--stone); transition: color .3s, transform .3s; padding: .5rem; margin: -.5rem; }
.cart-close:hover { color: var(--olive); transform: rotate(90deg); }
.cart-close svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cart-body { flex: 1; overflow-y: auto; padding: .4rem 1.8rem; }
.cart-empty { text-align: center; color: var(--stone); font-size: .84rem; letter-spacing: .03em; padding: 3.5rem 1rem 2.5rem; line-height: 2; }
.cart-empty svg { width: 42px; height: 42px; stroke: var(--ivory-3); fill: none; stroke-width: 1.2; margin: 0 auto 1.2rem; }
.cart-empty .btn { margin-top: 1.6rem; }
.cart-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.ci-img { width: 74px; height: 92px; flex: 0 0 auto; overflow: hidden; background: var(--ivory-2); border-radius: 3px; }
.ci-mid { flex: 1; min-width: 0; }
.ci-name { font-family: var(--serif); font-size: 1rem; font-weight: 560; color: var(--ink); line-height: 1.25; margin-bottom: .2rem; }
.ci-price { font-size: .74rem; color: var(--stone); margin-bottom: .6rem; }
.ci-qty { display: inline-flex; align-items: center; gap: .7rem; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .65rem; }
.ci-qty button { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--olive); }
.ci-qty button svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ci-qty span { font-size: .78rem; font-weight: 600; min-width: 16px; text-align: center; }
.ci-remove { align-self: flex-start; color: var(--stone); padding: .4rem; margin: -.2rem; transition: color .3s; }
.ci-remove:hover { color: var(--olive); }
.ci-remove svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-foot { padding: 1.4rem 1.8rem 1.8rem; border-top: 1px solid var(--line); background: var(--ivory-2); }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.1rem; }
.cart-total span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.cart-total strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 560; color: var(--forest); }
.cart-checkout { width: 100%; }
.cart-checkout svg.wa { fill: currentColor; stroke: none; width: 16px; height: 16px; }
.cart-note { text-align: center; font-size: .66rem; color: var(--stone); margin-top: .8rem; letter-spacing: .04em; }

/* ─── Toast ────────────────────────────────── */
.toast {
  position: fixed; bottom: calc(1.6rem + var(--toast-lift, 0px)); left: 50%; z-index: 300;
  transform: translate(-50%, 160%);
  display: flex; align-items: center; gap: .6rem;
  background: var(--forest); color: var(--ivory);
  padding: .9rem 1.6rem; border-radius: 999px;
  font-size: .74rem; letter-spacing: .06em; white-space: nowrap; max-width: 92vw;
  overflow: hidden; text-overflow: ellipsis;
  box-shadow: 0 14px 44px rgba(15,33,27,.35);
  transition: transform .5s var(--spring);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 14px; height: 14px; flex: 0 0 auto; stroke: var(--sage); fill: none; stroke-width: 2; }

/* ─── FOOTER ───────────────────────────────── */
.footer {
  background: var(--forest-2); background-image: var(--weave-dark);
  padding: 4.5rem 4rem 2.5rem; color: rgba(250,247,242,.45);
}
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand .nav-logo-vt { color: var(--sage); font-size: 1.8rem; }
.footer-brand .nav-logo-name { color: rgba(250,247,242,.4); }
.footer-tagline { font-family: var(--serif); font-style: italic; font-weight: 460; font-size: 1rem; color: rgba(250,247,242,.5); margin-top: 1rem; }
.footer-col h4 { font-size: .6rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .8rem; letter-spacing: .04em; color: rgba(250,247,242,.5); transition: color .3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-base {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
  font-size: .64rem; letter-spacing: .08em; color: rgba(250,247,242,.3);
}

/* ─── Intro (la marca se dibuja al entrar) ── */
.intro {
  position: fixed; inset: 0; z-index: 400;
  background: var(--forest); background-image: var(--weave-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform .85s cubic-bezier(.72,0,.28,1), visibility .85s;
}
.intro.done { transform: translateY(-101%); visibility: hidden; }
.intro-inner { display: flex; flex-direction: column; align-items: center; }
.intro-icon svg { width: 120px; height: 120px; stroke: var(--sage); fill: none; stroke-width: .7; }
.intro-icon path {
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: introDraw 1.4s .1s var(--ease) forwards;
}
@keyframes introDraw { to { stroke-dashoffset: 0; } }
.intro-brand {
  margin-top: 1.6rem; text-align: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.intro.brand-in .intro-brand { opacity: 1; transform: none; }
.intro-vt {
  display: block; font-family: var(--serif); font-size: 2rem; font-weight: 560;
  letter-spacing: .32em; margin-right: -.32em; color: var(--ivory); line-height: 1;
}
.intro-name {
  display: block; margin-top: .5rem;
  font-size: .56rem; font-weight: 600; letter-spacing: .42em; margin-right: -.42em;
  text-transform: uppercase; color: rgba(201,207,178,.75);
}

/* ─── Keyframes comunes ────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 1.3rem 2.2rem; }
  .nav.scrolled, .nav.solid { padding: .9rem 2.2rem; }
  .footer { padding: 3.5rem 2.2rem 2rem; }
}
@media (max-width: 768px) {
  .nav { padding: .9rem 1.1rem; }
  .nav.scrolled, .nav.solid { padding: .75rem 1.1rem; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .cart-btn > span:not(.cart-count) { display: none; }
  .cart-btn { padding: .5rem; }
  .cart-count { right: -4px; }
  .footer { padding: 3rem 1.3rem 1.8rem; }
  .footer-grid { flex-direction: column; gap: 2.2rem; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* ─── Movimiento reducido ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .r { opacity: 1; transform: none; }
  .intro { display: none; }
}
