:root {
  --bg: #080808;
  --panel: #121212;
  --panel-2: #1a1715;
  --text: #f5f0e8;
  --muted: #b8aea0;
  --line: rgba(245, 240, 232, 0.16);
  --gold: #c9a75c;
  --red: #c93535;
  --cyan: #67c7d4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  --hero-bg-fallback:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3)),
    url("assets/hero-rock-metal-lamp-real.gif") center / cover no-repeat,
    #080808;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  animation: page-in 180ms ease-out both;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.is-leaving {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 130ms ease-out, transform 130ms ease-out;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.menu-button {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  background:
    linear-gradient(135deg, rgba(201, 53, 53, 0.16), rgba(8, 8, 8, 0.82) 48%),
    rgba(8, 8, 8, 0.78);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 0 24px rgba(201, 53, 53, 0.12);
  transition: border-color 140ms ease-out, background 140ms ease-out, transform 140ms ease-out;
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: rgba(245, 240, 232, 0.46);
  transform: translateY(-1px);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 45;
  width: min(380px, 88vw);
  padding: 28px;
  background:
    linear-gradient(110deg, rgba(201, 53, 53, 0.2), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(201, 53, 53, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(24, 16, 13, 0.98), rgba(6, 6, 6, 0.98) 58%, rgba(8, 8, 8, 0.99)),
    #080808;
  border-right: 1px solid rgba(201, 53, 53, 0.34);
  transform: translateX(-102%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    24px 0 72px rgba(0, 0, 0, 0.62),
    inset -1px 0 0 rgba(245, 240, 232, 0.08);
  will-change: transform;
  overflow: hidden;
}

.side-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(102deg, transparent 0 24%, rgba(255, 255, 255, 0.035) 25%, transparent 26% 100%),
    linear-gradient(78deg, transparent 0 54%, rgba(201, 53, 53, 0.06) 55%, transparent 56% 100%),
    radial-gradient(circle at 24% 18%, rgba(245, 240, 232, 0.08), transparent 18%);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.side-nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201, 53, 53, 0.9) 22%, rgba(201, 53, 53, 0.26) 68%, transparent);
  box-shadow: 0 0 26px rgba(201, 53, 53, 0.48);
  pointer-events: none;
}

.side-nav.is-open {
  transform: translateX(0);
}

.nav-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 52px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(201, 53, 53, 0.22);
}

.nav-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.close-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: rgba(8, 8, 8, 0.44);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  transition: border-color 140ms ease-out, background 140ms ease-out, transform 140ms ease-out;
}

.close-button:hover,
.close-button:focus-visible {
  border-color: rgba(245, 240, 232, 0.46);
  background: rgba(201, 53, 53, 0.14);
}

.nav-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.13);
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 140ms ease-out, background 140ms ease-out, transform 140ms ease-out;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(201, 53, 53, 0.8);
  transform: translateX(-50%);
  transition: width 140ms ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  padding-left: 0;
  background: linear-gradient(90deg, rgba(201, 53, 53, 0.16), transparent 64%);
  color: #fff8ef;
  transform: translateX(4px);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  width: 82px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 190ms ease-out;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 96px clamp(20px, 5vw, 76px) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg-fallback);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 30px);
  justify-items: center;
  text-align: center;
}

.brand-block {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.logo {
  width: min(430px, 78vw);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.8));
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6.8vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.intro {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 140ms ease-out, background 140ms ease-out, color 140ms ease-out, transform 140ms ease-out, box-shadow 140ms ease-out;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(8, 8, 8, 0.45);
  color: var(--text);
}

.button-red {
  border-color: rgba(201, 53, 53, 0.86);
  background:
    linear-gradient(135deg, rgba(201, 53, 53, 0.95), rgba(91, 16, 16, 0.92)),
    var(--red);
  color: #fff8ef;
  box-shadow: 0 0 24px rgba(201, 53, 53, 0.22);
}

.hero-side {
  width: min(820px, 100%);
}

.spotify-panel {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotify-panel iframe {
  display: block;
  width: 100%;
  height: clamp(420px, 52vh, 560px);
  border: 0;
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vh, 70px);
}

.social-dock {
  position: fixed;
  right: 22px;
  top: 24px;
  z-index: 35;
  display: flex;
  gap: 10px;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.72);
  color: var(--text);
  transition: border-color 140ms ease-out, background 140ms ease-out, transform 140ms ease-out;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: rgba(245, 240, 232, 0.38);
  background: rgba(8, 8, 8, 0.88);
  transform: translateY(-2px);
}

.social-dock .icon-link:nth-child(1) {
  color: #1db954;
}

.social-dock .icon-link:nth-child(2) {
  color: #d6249f;
}

.social-dock .icon-link:nth-child(3) {
  color: #25d366;
}

.social-dock .icon-link:nth-child(4) {
  color: #ea4335;
}

.icon-link svg {
  width: 20px;
  height: 20px;
}

.icon-link svg path {
  fill: currentColor;
}

.social-dock .icon-link:nth-child(2) svg path {
  fill: url("#instagram-gradient");
}

.contact-section {
  padding: clamp(76px, 11vw, 132px) clamp(20px, 5vw, 76px) 88px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.88), var(--bg));
}

.contact-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 38px);
}

.contact-copy {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-copy p {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
}

.contact-copy .contact-location {
  width: auto;
  display: inline-block;
  margin-top: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(201, 53, 53, 0.34);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(201, 53, 53, 0.09);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(12, 12, 12, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.contact-status {
  padding: 12px 14px;
  border: 1px solid rgba(245, 240, 232, 0.16);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-status.is-success {
  border-color: rgba(103, 199, 116, 0.55);
  background: rgba(103, 199, 116, 0.1);
}

.contact-status.is-error {
  border-color: rgba(201, 53, 53, 0.68);
  background: rgba(201, 53, 53, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back-to-top {
  justify-self: center;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(8, 8, 8, 0.58);
  color: var(--text);
  box-shadow: 0 0 22px rgba(201, 53, 53, 0.14);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(201, 53, 53, 0.76);
  background: rgba(201, 53, 53, 0.18);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 14px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form textarea[name="budget"] {
  min-height: 96px;
}

.service-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-field legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.service-grid label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.service-grid input {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-page {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.58), rgba(8, 8, 8, 0.94) 62%, #080808),
    var(--hero-bg-fallback);
  color: var(--text);
  overflow: hidden;
}

.bio-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 14%, rgba(201, 53, 53, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(201, 167, 92, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 46%, rgba(0, 0, 0, 0.56));
}

.bio-hero,
.bio-services,
.bio-final-cta,
.bio-gallery,
.photos-page {
  position: relative;
  z-index: 1;
}

.bio-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 5vw, 76px) 72px;
}

.bio-services,
.bio-gallery {
  padding: 26px clamp(20px, 5vw, 76px) 72px;
}

.bio-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bio-title {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.bio-title h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.bio-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.bio-copy {
  display: grid;
  gap: 20px;
}

.bio-copy .lead {
  color: #fff8ef;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.bio-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
}

.bio-copy .button {
  justify-self: start;
  margin-top: 10px;
}

.bio-media,
.bio-gallery figure {
  margin: 0;
  border: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(8, 8, 8, 0.64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.bio-media img,
.bio-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-media {
  aspect-ratio: 4 / 5;
}

.bio-section-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

.bio-section-head h2 {
  width: min(820px, 100%);
  font-size: clamp(34px, 5vw, 66px);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 240, 232, 0.14);
  border-left: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(7, 7, 7, 0.46);
}

.bio-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 30px);
  border-right: 1px solid rgba(245, 240, 232, 0.14);
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(201, 53, 53, 0.07), transparent 44%),
    rgba(10, 10, 10, 0.56);
}

.bio-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.bio-card h3 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.bio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.bio-final-cta {
  padding: 18px clamp(20px, 5vw, 76px) 92px;
  text-align: center;
}

.bio-final-cta .bio-shell {
  display: flex;
  justify-content: center;
}

.photos-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.96)),
    var(--hero-bg-fallback);
  overflow: hidden;
}

.photos-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 5vw, 76px) 86px;
}

.photos-title {
  width: min(760px, 100%);
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}

.photos-title h1 {
  font-size: clamp(52px, 8vw, 96px);
}

.photos-title p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
}

.photos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.photos-grid figure {
  margin: 0;
  min-height: 430px;
  border: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(8, 8, 8, 0.62);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.photos-grid figure:nth-child(2) {
  transform: translateY(34px);
}

.photos-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
}

.bio-gallery figure {
  aspect-ratio: 4 / 3;
}

.bio-gallery figure:nth-child(2) {
  transform: translateY(36px);
}

.placeholder-main {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 104px clamp(20px, 5vw, 76px) 70px;
  isolation: isolate;
  overflow: hidden;
}

.placeholder-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-bg-fallback);
}

.placeholder-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(8, 8, 8, 0.88));
}

.placeholder-panel {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(10, 10, 10, 0.68);
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.placeholder-panel h1 {
  margin: 0;
}

.placeholder-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero,
  .contact-section,
  .placeholder-main,
  .bio-hero,
  .bio-services,
  .bio-gallery,
  .bio-final-cta,
  .photos-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content,
  .contact-inner,
  .field-grid,
  .service-grid,
  .bio-intro,
  .bio-grid,
  .bio-gallery-grid,
  .photos-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

  .bio-page,
  .photos-page {
    background-attachment: scroll;
  }

  .bio-hero {
    min-height: auto;
    padding-top: 108px;
  }

  .bio-title {
    margin-bottom: 28px;
  }

  .bio-media {
    aspect-ratio: 1 / 1;
  }

  .bio-card {
    min-height: 0;
  }

  .bio-gallery figure:nth-child(2) {
    transform: none;
  }

  .photos-grid figure,
  .photos-grid figure:nth-child(2) {
    min-height: 320px;
    transform: none;
  }

  .logo {
    width: min(330px, 80vw);
  }

  .spotify-panel iframe {
    height: 420px;
  }

  .social-dock {
    right: 14px;
    top: 18px;
  }

  .menu-button {
    top: 18px;
    left: 14px;
  }
}

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

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