@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --bg: #0d0d0d;
  --panel: #1a1a1a;
  --ink: #f5f2ee;
  --muted: #8a8a8a;
  --muted-2: #555;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c49a3c;
  --accent-2: #d4aa4c;
  --glass: rgba(13, 13, 13, 0.92);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(196, 154, 60, 0.28);
  color: #fff;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 154, 60, 0.15), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.36;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-nav--mobile,
.section {
  width: min(100%, 80rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.brand svg {
  color: var(--accent);
}

.brand__wordmark,
.brand--footer {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.brand__wordmark {
  font-size: 1.25rem;
}

.brand__wordmark span,
.brand--footer span,
.hero__title span,
.hero__subtitle,
.price,
.section__footer,
.stats-grid strong,
.art-card__dot {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(196, 154, 60, 0.85);
  outline-offset: 2px;
}

.site-nav--mobile {
  display: none;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  background: var(--glass);
  border-bottom: 1px solid var(--line);
}

.site-nav--mobile .site-nav__link {
  display: block;
  padding-block: 0.65rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
}

.menu-toggle:hover {
  color: white;
}

.menu-toggle__icon--close {
  display: none;
}

.site-header.is-open .menu-toggle__icon--open {
  display: none;
}

.site-header.is-open .menu-toggle__icon--close {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__fallback {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__media.is-fallback .hero__fallback {
  opacity: 0.35;
}

.hero__media.is-fallback .hero__video {
  opacity: 0;
}

.hero__media {
  inset: 4.5rem 2rem calc(3.25rem + 16px);
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero__media img,
.hero__media video {
  object-fit: cover;
  opacity: 0.35;
}

.hero__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__overlay--vertical {
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.45), transparent 45%, var(--bg));
  z-index: 2;
}

.hero__overlay--horizontal {
  background: linear-gradient(to right, rgba(13, 13, 13, 0.25), transparent, rgba(13, 13, 13, 0.25));
  z-index: 2;
}

.film-strip {
  position: absolute;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  opacity: 0.2;
}

.film-strip span {
  width: 0.75rem;
  height: 1.25rem;
  flex: 0 0 auto;
  border-radius: 0.125rem;
  background: rgba(255, 255, 255, 0.3);
}

.film-strip--top {
  top: 2rem;
}

.film-strip--bottom {
  bottom: 2rem;
}

.hero__content,
.reveal {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(100%, 56rem);
  animation: rise 0.8s ease both;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.hero__title,
.section__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hero__title {
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 1.08;
  margin-bottom: 0;
  padding-bottom: 0.3em;
}

.hero__subtitle {
  margin: 0.85rem 0 1.15rem;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #c8c8c8;
}

.rule {
  width: min(20rem, 100%);
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero__copy,
.section__lede,
.copy-stack p,
.process-card p,
.art-card__body p {
  color: var(--muted);
  line-height: 1.8;
}

.hero__copy {
  width: min(100%, 34rem);
  margin: 0 auto 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

.hero__actions,
.contact-grid,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.95rem 2rem;
}

.button--solid:hover {
  background: var(--accent-2);
}

.button--outline,
.button--ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.button--ghost {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}

.button--outline {
  padding: 0.95rem 2rem;
  font-size: 0.75rem;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.button--ghost.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196, 154, 60, 0.08);
}

.button--small {
  padding: 0.4rem 0.75rem;
  font-size: 0.625rem;
  color: var(--bg);
}

.button--block {
  width: 100%;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.625rem;
}

.scroll-hint:hover {
  color: white;
}

.scroll-hint__line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

.section {
  padding: 6rem 1.5rem;
}

.section--divider {
  border-top: 1px solid var(--line);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section__head--center {
  justify-content: center;
  text-align: center;
}

.section__title {
  font-size: clamp(3rem, 6vw, 3.75rem);
  color: white;
}

.section__title--split em {
  font-style: italic;
}

.filter-bar__button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--muted);
  padding: 0.6rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.filter-bar__button:hover,
.filter-bar__button.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196, 154, 60, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.art-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}

.art-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 60, 0.3);
}

.art-card__media {
  position: relative;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  background: #111;
}

.art-card__media img,
.process-card__image img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card__media img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.art-card:hover .art-card__media img {
  transform: scale(1.05);
}

.art-card__badge,
.art-card__sold,
.about-media__bar span,
.process-card__index {
  position: absolute;
  z-index: 1;
}

.art-card__badge {
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(196, 154, 60, 0.2);
  background: rgba(13, 13, 13, 0.8);
  color: var(--accent);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.art-card__dot {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}

.art-card__sold {
  inset: -20%;
  display: grid;
  place-items: center;
  background: rgba(13, 13, 13, 0.72);
  color: #c8c8c8;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  transform: rotate(-15deg);
}

.art-card__body {
  padding: 1.25rem;
}

.art-card__body h3,
.process-card__body h3 {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  transition: color 0.2s ease;
}

.art-card:hover .art-card__body h3 {
  color: var(--accent);
}

.art-card__body p {
  margin: 0 0 1rem;
  font-size: 0.75rem;
}

.art-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 300;
}

.section__cta {
  margin-top: 3rem;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.process-card__image {
  position: relative;
  margin-bottom: 1.25rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.process-card__image img {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.7s ease, opacity 0.7s ease, transform 0.9s var(--ease-out);
}

.process-card:hover .process-card__image img {
  filter: grayscale(0);
  opacity: 0.85;
  transform: scale(1.02);
}

.gallery-grid .art-card,
.process-grid .process-card {
  opacity: 0;
  animation: rise 0.7s var(--ease-out) both;
}

.gallery-grid .art-card:nth-child(1),
.process-grid .process-card:nth-child(1) {
  animation-delay: 0.08s;
}

.gallery-grid .art-card:nth-child(2),
.process-grid .process-card:nth-child(2) {
  animation-delay: 0.16s;
}

.gallery-grid .art-card:nth-child(3),
.process-grid .process-card:nth-child(3) {
  animation-delay: 0.24s;
}

.gallery-grid .art-card:nth-child(4) {
  animation-delay: 0.32s;
}

.gallery-grid .art-card:nth-child(5) {
  animation-delay: 0.4s;
}

.process-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
}

.process-card__index {
  right: 1rem;
  bottom: 0.75rem;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 3.75rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}

.process-card__body {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(196, 154, 60, 0.4);
  transition: border-color 0.2s ease;
}

.process-card:hover .process-card__body {
  border-color: var(--accent);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  aspect-ratio: 4 / 5;
  filter: grayscale(100%);
}

.about-media__frame {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(196, 154, 60, 0.2);
}

.about-media__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(8px);
}

.about-media__bar span {
  position: static;
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.copy-stack {
  margin-top: 0.5rem;
  display: grid;
  gap: 1rem;
}

.stats-grid {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-weight: 300;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section--contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 5rem;
  padding-bottom: 1.5rem;
}

.section--process {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--contact .section__head {
  margin-bottom: 1.25rem;
}

.section--contact .section__lede {
  width: min(100%, 28rem);
  margin: 0.75rem auto 0;
}

.section--contact .contact-grid {
  margin-top: 0.25rem;
}

.button--contact {
  min-width: 12rem;
}

.section__footer {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
}

.section--contact .section__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.brand--footer {
  font-size: 1rem;
}

.admin-button {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel);
  color: var(--muted-2);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-button:hover {
  color: var(--accent);
  border-color: rgba(196, 154, 60, 0.3);
  transform: translateY(-1px);
}

.is-hidden {
  display: none !important;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .site-nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header.is-open .site-nav--mobile {
    display: grid;
    gap: 0.25rem;
  }

  .process-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding-inline: 1rem;
    min-height: 100svh;
    padding-top: 6.25rem;
    padding-bottom: 3rem;
  }

  .site-header__inner,
  .site-nav--mobile,
  .section {
    padding-inline: 1rem;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 4.25rem;
  }

  .section__head {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .hero__copy,
  .section__lede,
  .art-card__body p,
  .process-card p,
  .copy-stack p {
    font-size: 0.8125rem;
    line-height: 1.75;
  }

  .film-strip {
    display: none;
  }

  .hero__media {
    inset: 0 0 16px;
  }

  .gallery-grid,
  .process-grid,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section__head,
  .section__footer,
  .about-media__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-layout {
    gap: 2.25rem;
  }

  .art-card__body {
    padding: 1rem;
  }

  .process-card__body {
    padding-left: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__title {
    line-height: 1.12;
    padding-bottom: 0.34em;
  }

  .hero__subtitle {
    margin-top: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .button,
  .button--contact {
    width: 100%;
    min-height: 2.9rem;
  }

  .section--process,
  .section--about,
  .section--contact {
    min-height: 100svh;
  }

  .section--contact {
    padding-top: 4.5rem;
    padding-bottom: 1rem;
  }
}

/* Ultra-small phone optimization (360px and below) */
@media (max-width: 360px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.1;
    padding-bottom: 0.25em;
    margin-bottom: 0;
  }

  .hero__subtitle {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero__actions {
    gap: 0.625rem;
  }

  .section {
    padding-top: 4.75rem;
    padding-bottom: 3.75rem;
  }

  .section__head,
  .section__footer {
    gap: 0.875rem;
  }

  h2 {
    font-size: clamp(1.125rem, 6vw, 1.5rem);
    margin-bottom: 1rem;
  }

  p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .button,
  .button--contact {
    width: 100%;
    min-height: 2.75rem;
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }

  .button--ghost {
    padding: 0.5rem 0.75rem;
  }

  .art-card {
    border-radius: 0.5rem;
  }

  .art-card__body {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .art-card__title {
    font-size: 0.8125rem;
  }

  .art-card__meta {
    font-size: 0.625rem;
  }

  .art-card__price {
    font-size: 0.75rem;
  }

  .process-card {
    border-radius: 0.5rem;
  }

  .process-card__head {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .process-card__body {
    padding-left: 0.75rem;
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .about-layout {
    gap: 1.75rem;
  }

  .about-media {
    height: 240px;
  }

  .about-media__frame {
    inset: 1rem;
  }

  .about-media__bar {
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .about-media__bar span {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }

  .copy-stack {
    gap: 0.75rem;
  }

  .stats-grid {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 1rem;
  }

  .stat {
    text-align: center;
  }

  .stats-grid strong {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
  }

  .stats-grid em {
    font-size: 0.625rem;
  }

  .section--process,
  .section--about,
  .section--contact {
    min-height: 100svh;
  }

  .section--contact {
    padding-top: 4rem;
    padding-bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
