/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy-900: #0c1c2e;
  --navy-800: #0d2845;
  --navy-700: #1d4570;
  --gold:     #b8962e;
  --gold-lt:  #c9a84c;
  --white:    #ffffff;
  --gray-50:  #f8f9fb;
  --gray-100: #f0f3f7;
  --gray-200: #e0e7ef;
  --gray-400: #8096ab;
  --gray-600: #5f7285;
  --text:     #141e2c;
  --radius:   8px;
  --radius-lg:14px;
  --shadow:   0 8px 32px rgba(12,28,46,.11);
  --shadow-sm:0 3px 14px rgba(12,28,46,.07);
  --container:1160px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; line-height: 1.1; overflow-wrap: break-word; }
p { overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--navy-800);
  color: var(--white);
  padding: 10px 16px;
  font-size: .875rem;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.navbar {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 13px;
  color: var(--gray-600);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--navy-800); background: var(--gray-50); }

.nav-cta {
  background: var(--navy-800) !important;
  color: var(--white) !important;
  margin-left: 8px;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--navy-700) !important; }

.nav-mail {
  border: 1px solid var(--gray-200) !important;
  margin-left: 4px !important;
  color: var(--navy-700) !important;
}
.nav-mail:hover { border-color: var(--navy-700) !important; background: var(--gray-50) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 12px 11px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ── WhatsApp button ────────────────────────────────────────── */
.btn-whatsapp {
  background: #1c6b3a;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(28,107,58,.28);
}
.btn-whatsapp:hover { background: #175530; box-shadow: 0 8px 24px rgba(28,107,58,.35); }
.btn-whatsapp svg { flex-shrink: 0; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 72px;
  scroll-margin-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,28,46,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12,28,46,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 50%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 14px;
  background: rgba(12,28,46,.07);
  border-radius: 999px;
  color: var(--navy-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.04em;
  line-height: 1;
}

.hero-tagline {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.45;
  max-width: 520px;
}

.hero-desc {
  margin: 16px 0 0;
  color: var(--gray-600);
  font-size: .98rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13,40,69,.28);
}
.btn-primary:hover { background: var(--navy-700); box-shadow: 0 8px 24px rgba(13,40,69,.35); }

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: var(--navy-700); background: var(--gray-50); }

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.stat { flex: 1; }
.stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.stat-value {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy-900);
}
.stat-div {
  width: 1px; height: 34px;
  background: var(--gray-200);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Hero visual – image panel */
.hero-visual { position: relative; }

.hero-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #071624 0%, #0c2540 100%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-img-main:hover .hero-img { transform: scale(1.025); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(7,22,36,.75) 0%,
    rgba(12,40,72,.45) 50%,
    rgba(7,22,36,.65) 100%
  );
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 15px 18px;
  background: rgba(7,18,32,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
}
.badge-label {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 3px;
}
.badge-text {
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

/* Hero mini-cards below the image */
.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.hero-mini-card {
  padding: 15px 13px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hero-mini-card--dark {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.hero-mini-card span {
  display: block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 5px;
}
.hero-mini-card strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
}
.hero-mini-card--dark strong { color: var(--white); }

/* ── Statement band ─────────────────────────────────────────── */
.statement-band {
  background: var(--navy-900);
  border-top: 3px solid var(--gold);
  padding: 16px 0;
}
.statement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.band-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ── Section base ───────────────────────────────────────────── */
.section { padding: 100px 0; scroll-margin-top: 76px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 26px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label.light { color: rgba(201,168,76,.9); }

/* ── Nosotros ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}

.about-img-col {
  display: flex;
}

.about-img-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 440px;
  background: linear-gradient(135deg, #071624 0%, #0d2845 100%);
  border: 1px solid var(--gray-200);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: luminosity;
  opacity: .72;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,28,46,.48) 0%, rgba(29,69,112,.16) 100%);
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.025em;
  margin-top: 8px;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray-600);
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-content p:last-of-type { margin-bottom: 0; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.pillar:last-child { border-bottom: none; }

.pillar-num {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
}
.pillar strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

/* ── Actividad Comercial (dark) ─────────────────────────────── */
.section-dark {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}
.section-dark-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,28,46,.76);
}
.section-dark > .container { position: relative; z-index: 1; }

.dark-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.dark-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  margin-top: 6px;
}
.dark-desc {
  color: rgba(255,255,255,.55);
  margin: 14px 0 0;
  font-size: .98rem;
}

.activity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.activity-item {
  display: flex;
  gap: 26px;
  padding: 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.activity-item:hover { background: rgba(255,255,255,.03); }
.activity-item:nth-child(even)         { border-right: none; }
.activity-item:nth-child(3),
.activity-item:nth-child(4)            { border-bottom: none; }

.activity-num {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
}
.activity-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.activity-body p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin: 0;
  line-height: 1.7;
}

/* ── Soluciones ─────────────────────────────────────────────── */
.section-head {
  max-width: 580px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.025em;
  margin-top: 6px;
}
.section-head p {
  color: var(--gray-600);
  margin: 12px 0 0;
  font-size: .98rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--navy-900);
  border-radius: 10px;
  color: var(--white);
  margin-bottom: 28px;
  flex-shrink: 0;
}
.solution-icon svg { width: 22px; height: 22px; }

.solution-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.35;
}
.solution-card p {
  color: var(--gray-600);
  font-size: .9rem;
  margin: 0;
  line-height: 1.72;
}

/* ── Contacto ───────────────────────────────────────────────── */
.section-contact {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.025em;
  margin-top: 4px;
}
.contact-intro {
  color: var(--gray-600);
  margin: 14px 0 32px;
  font-size: .97rem;
  line-height: 1.72;
}

.contact-items {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s;
}
a.contact-item:hover { border-color: var(--navy-700); }

.ci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--navy-900);
  border-radius: 6px;
  color: var(--white);
  flex-shrink: 0;
}
.ci-icon svg { width: 17px; height: 17px; }

.ci-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.ci-value {
  display: block;
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy-900);
}
.ci-sub {
  display: block;
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* WhatsApp CTA in contact section */
.contact-wa-btn {
  display: flex;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-label {
  display: grid;
  gap: 3px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.map-label span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--gold);
}
.map-label strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-900);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: var(--white); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 48px;
  padding: 64px 0 52px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-brand-link .brand-logo { filter: brightness(0) invert(1); opacity: .9; }

.footer-tagline {
  color: rgba(255,255,255,.45);
  font-size: .86rem;
  line-height: 1.65;
  margin: 0;
  max-width: 310px;
}

.footer-col-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-col a {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-col:last-child a,
.footer-col:last-child address {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.6;
}
.footer-col:last-child a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.footer-bottom-inner p {
  margin: 0;
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}
.footer-bottom-inner a {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 600;
  transition: color .15s;
}
.footer-bottom-inner a:hover { color: var(--white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { min-height: auto; padding: 72px 0 64px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { min-height: auto; aspect-ratio: 16 / 7; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 32px, var(--container)); }

  /* Mobile nav */
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 80;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-cta, .nav-mail { margin-left: 0 !important; margin-top: 4px; }

  /* Hero */
  h1 { font-size: 3.4rem; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .stat-div { display: none; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }

  /* Sections */
  .section { padding: 72px 0; }

  /* Activity: single column */
  .activity-list { grid-template-columns: 1fr; border-radius: var(--radius); }
  .activity-item { border-right: none !important; }
  .activity-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.08) !important; }
  .activity-item:last-child { border-bottom: none !important; }
  .activity-item { padding: 30px 24px; }

  /* Hero mini-cards: stack on mobile */
  .hero-mini-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr; }

  /* Map */
  .contact-map iframe { height: 280px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.8rem; }
  .hero { padding: 56px 0 52px; }
  .statement-inner { font-size: .7rem; gap: 12px; }
  .solution-card { padding: 28px 22px; }
  .contact-item { padding: 16px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
