:root {
  --bg: #05070b;
  --bg-soft: #0b1018;
  --surface: rgba(14, 19, 28, 0.8);
  --surface-strong: #111824;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(247, 181, 0, 0.24);
  --text: #f4f7fb;
  --muted: #aab4c4;
  --gold: #f7b500;
  --gold-soft: rgba(247, 181, 0, 0.12);
  --blue: #4e6cf7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Recoleta", serif;
  --font-body: "Space Grotesk", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247, 181, 0, 0.12), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(78, 108, 247, 0.14), transparent 30%),
    linear-gradient(180deg, #05070b 0%, #070b11 54%, #05070b 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
  pointer-events: none;
  opacity: 0.35;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid rgba(247, 181, 0, 0.9);
  outline-offset: 3px;
}

button,
a {
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

h1,
h2,
h3,
.eyebrow,
.brand-lockup__copy span,
.nav-cta,
.button,
.highlight-row__label {
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.ambient-orb--gold {
  width: 52vw;
  height: 52vw;
  left: -12vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(247, 181, 0, 0.95), transparent 68%);
}

.ambient-orb--blue {
  width: 48vw;
  height: 48vw;
  right: -12vw;
  top: 8vw;
  background: radial-gradient(circle, rgba(78, 108, 247, 0.9), transparent 68%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 10, 15, 0.94), rgba(5, 7, 11, 0.84));
  border-bottom: 1px solid rgba(247, 181, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-lockup__logo {
  width: 120px;
  height: 48px;
  object-fit: contain;
  flex: none;
}

.brand-lockup__copy {
  display: grid;
  gap: 0.1rem;
}

.brand-lockup__copy span {
  font-weight: 700;
  font-size: 0.98rem;
}

.brand-lockup__copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav__links {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav__links a:hover,
.site-footer__links a:hover,
.site-footer__legal-links a:hover {
  color: var(--gold);
}

.nav-cta {
  margin-left: auto;
  border: 1px solid rgba(247, 181, 0, 0.38);
  background: rgba(247, 181, 0, 0.12);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover,
.button:hover,
.gallery-tile:hover,
.feed-grid__feature:hover,
.feed-grid__tile:hover,
.highlight-row:hover {
  transform: translateY(-3px);
}

.hero {
  padding: clamp(1rem, 2vw, 1.5rem) var(--gutter) 0;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero__copy {
  max-width: 42rem;
  position: relative;
}

.hero__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 181, 0, 0.95), transparent);
}

.hero__lede {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd35a 100%);
  color: #09111a;
  box-shadow: 0 16px 32px rgba(247, 181, 0, 0.2);
}

.button--primary:hover {
  box-shadow: 0 18px 44px rgba(247, 181, 0, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero__facts {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.hero__facts li {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.93rem;
  position: relative;
}

.hero__facts li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 0.55rem;
  vertical-align: middle;
}

.hero__media {
  position: relative;
}

.hero-shot {
  margin: 0;
  position: relative;
  border-radius: clamp(24px, 3vw, 36px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-strong);
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.08) 0%, rgba(5, 7, 11, 0.62) 100%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 7, 11, 0.2) 100%);
  z-index: 1;
}

.hero-shot__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(9, 13, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-shot img {
  width: 100%;
  height: clamp(28rem, 62vw, 44rem);
  object-fit: cover;
  transform: scale(1.02);
  animation: heroFloat 10s var(--ease-out) infinite alternate;
}

.hero-shot figcaption {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(9, 13, 20, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-shot figcaption .material-symbols-rounded {
  color: var(--gold);
  font-size: 2rem;
}

.hero-shot figcaption strong {
  display: block;
  margin-bottom: 0.15rem;
}

.hero-shot figcaption p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.section-shell--soft {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.section-shell--soft::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter);
  background:
    radial-gradient(circle at top left, rgba(247, 181, 0, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 80%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: -1;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2.2rem;
  position: relative;
}

.section-heading--left {
  margin-left: 0;
}

.section-heading::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, rgba(247, 181, 0, 0.9), transparent);
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.highlights__list {
  display: grid;
  gap: 1rem;
}

.highlight-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(247, 181, 0, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.highlight-row img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.highlight-row__label {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.highlight-row p:last-child {
  margin-top: 0.65rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-tile {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  grid-column: span 12;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.gallery-tile--wide {
  min-height: 22rem;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 7, 11, 0.8) 100%);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.gallery-tile:hover img,
.feed-grid__feature:hover img,
.feed-grid__tile:hover img {
  transform: scale(1.04);
}

.gallery-tile span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
}

.gallery-tile strong {
  font-size: 1.05rem;
}

.gallery-tile small {
  color: var(--muted);
}

.feed-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feed-grid__feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 24rem;
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feed-grid__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 7, 11, 0.82) 100%);
}

.feed-grid__feature img,
.feed-grid__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.feed-grid__feature span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--text);
  max-width: 22rem;
}

.feed-grid__tile {
  min-height: 14rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.location {
  display: grid;
  gap: 1.2rem;
}

.location__copy {
  max-width: 40rem;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.location-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
}

.location-list .material-symbols-rounded {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.location__map {
  height: 22rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) brightness(0.92) contrast(0.98);
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq__button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.2rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq__button .material-symbols-rounded {
  color: var(--gold);
  transition: transform 240ms var(--ease-out);
}

.faq__item.is-open .faq__button .material-symbols-rounded {
  transform: rotate(180deg);
}

.faq__content {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.cta__box {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(247, 181, 0, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(247, 181, 0, 0.16) 0%, rgba(247, 181, 0, 0.06) 42%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(247, 181, 0, 0.22);
  box-shadow: var(--shadow);
}

.cta__box p:last-of-type {
  max-width: 42rem;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.trust-strip {
  padding-top: 0;
}

.trust-strip__heading {
  margin-bottom: 1.5rem;
}

.trust-strip__grid {
  display: grid;
  gap: 1rem;
}

.compliance-grid {
  display: grid;
  gap: 1rem;
}

.trust-card,
.legal-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.trust-card h3,
.legal-card h2 {
  margin-bottom: 0.65rem;
}

.trust-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.trust-card a,
.legal-card a {
  color: var(--gold);
}

.legal-main {
  padding-bottom: 3rem;
}

.legal-hero {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: 2rem;
}

.legal-meta {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-intro {
  max-width: 54rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.legal-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 10, 15, 0.92);
}

.site-footer__inner,
.site-footer__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-footer__inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: grid;
  gap: 2rem;
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 0.75rem;
}

.site-footer__logo {
  width: 168px;
  height: 64px;
  object-fit: contain;
}

.site-footer p,
.site-footer span {
  color: var(--muted);
}

.site-footer__links strong,
.site-footer__contact strong {
  color: var(--text);
  margin-bottom: 0.25rem;
}

.site-footer__legal {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: rgba(170, 180, 196, 0.9);
}

.site-footer__legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
}

.cookie-banner__content {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(9, 13, 20, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.cookie-banner__content p {
  color: var(--muted);
}

.cookie-banner__content a {
  color: var(--gold);
}

.cookie-banner__button {
  width: 100%;
}

.fab-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.35);
  z-index: 60;
}

.fab-whatsapp:hover {
  transform: scale(1.06) rotate(4deg);
}

.fab-whatsapp:focus-visible {
  outline-color: rgba(255, 255, 255, 0.95);
}

.reveal-up,
.reveal-from-top,
.reveal-right {
  opacity: 0;
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal-up {
  transform: translateY(24px);
}

.reveal-from-top {
  transform: translateY(-16px);
}

.reveal-right {
  transform: translateX(26px);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero__inner .is-visible .hero-shot img {
  animation-play-state: running;
}

@keyframes heroFloat {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-10px);
  }
}

@media (min-width: 760px) {
  .site-nav__links {
    display: flex;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight-row {
    grid-template-columns: 0.98fr 1.02fr;
    padding: 1.15rem;
  }

  .highlight-row--reverse img {
    order: 2;
  }

  .highlight-row--reverse div {
    order: 1;
  }

  .gallery-tile {
    grid-column: span 6;
  }

  .gallery-tile--wide {
    grid-column: span 12;
  }

  .feed-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .feed-grid__feature {
    grid-column: span 7;
  }

  .feed-grid__tile {
    grid-column: span 5;
    min-height: 11rem;
  }

  .location {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .location__map {
    height: 100%;
    min-height: 26rem;
  }

  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }

  .trust-strip__grid,
  .compliance-grid,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cookie-banner__button {
    width: auto;
  }
}

@media (min-width: 1100px) {
  .hero__inner {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero__media {
    margin-top: 2rem;
  }

  .hero__copy {
    padding-top: 1rem;
  }

  .gallery-tile--wide {
    grid-column: span 7;
  }

  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(4) {
    grid-column: span 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
