:root {
  --ink: #0d1a07;
  --paper: #f4efe6;
  --bone: #ebe4d6;
  --mute: #8b857b;
  --line: rgba(244, 239, 230, 0.12);
  --line-dark: rgba(11, 11, 13, 0.1);
  --signal: #e34a1d;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Syne", system-ui, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 11vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
}

@media (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor select,
  body.has-cursor input,
  body.has-cursor textarea {
    cursor: none;
  }

  .cursor {
    display: block;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 200;
  }

  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    translate: -50% -50%;
  }

  .cursor__dot {
    width: 5px;
    height: 5px;
    background: var(--signal);
  }

  .cursor__ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(227, 74, 29, 0.7);
    transition: width 0.35s var(--ease), height 0.35s var(--ease);
  }

  body.is-hovering .cursor__ring {
    width: 58px;
    height: 58px;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  font-family: var(--sans);
  font-size: 1.1rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.loader__line {
  position: absolute;
  bottom: 18%;
  width: min(220px, 50vw);
  height: 1px;
  background: rgba(244, 239, 230, 0.12);
  overflow: hidden;
}

.loader__line::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--signal);
  animation: load 1.2s var(--ease) infinite;
}

@keyframes load {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(320%);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1.2rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(13, 26, 7, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav__logo {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__links a[aria-current="page"] {
  color: var(--signal);
}

.nav__cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid currentColor;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  margin-left: auto;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.btn--signal {
  background: var(--signal);
  color: var(--paper);
}

.form .btn {
  justify-self: start;
  min-width: 14rem;
}

.btn--ghost {
  border-color: currentColor;
  background: transparent;
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  display: inline-block;
  margin-top: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--signal);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.32s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 4vw, 4rem) 4.5rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__portrait {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(54vw, 48rem);
  margin: 0;
  z-index: 1;
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0d1a07 0%,
    rgba(13, 26, 7, 0.38) 16%,
    rgba(13, 26, 7, 0.1) 28%,
    transparent 38%
  );
  pointer-events: none;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.hero__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dba6d;
  box-shadow: 0 0 0 4px rgba(61, 186, 109, 0.15);
}

.hero__lede {
  max-width: 34rem;
  margin-top: 1.3rem;
  color: rgba(244, 239, 230, 0.68);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.86rem;
}

.hero__meta strong {
  display: block;
  color: var(--paper);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--mute);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 4rem);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--paper .eyebrow {
  color: var(--signal);
}

.section--paper .text-link,
.section--paper .nav__logo {
  color: var(--ink);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section__head h2,
.page h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.page {
  padding: calc(var(--nav-h) + 2.6rem) clamp(1.2rem, 4vw, 4rem) 4rem;
}

.page__lede {
  max-width: 38rem;
  margin-top: 1rem;
  color: var(--mute);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  margin-top: 2.6rem;
}

.about__portrait {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.about__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.about__story p {
  color: rgba(244, 239, 230, 0.72);
  max-width: 40rem;
}

.about__story p + p {
  margin-top: 1.15rem;
}

.grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.8rem;
}

.grid + .grid {
  margin-top: 0.8rem;
}

.card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #161616;
  color: var(--paper);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(0.85);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 13, 0.88));
}

.card:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

.card__meta {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  z-index: 2;
}

.card__meta p {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0b199;
}

.card__meta h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.card--tall {
  min-height: 460px;
  grid-row: span 2;
}

.stack {
  display: grid;
  gap: 0.8rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.process article {
  padding: 2.5rem 2.15rem 2.6rem;
  border-right: 1px solid var(--line-dark);
}

.process article:first-child {
  padding-left: 0;
}

.process article:last-child {
  border-right: 0;
  padding-right: 0;
}

.process span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

.process h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0.7rem 0 0.6rem;
}

.process p {
  color: #5c564e;
}

.band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(3.4rem, 8vw, 6rem) clamp(1.2rem, 4vw, 4rem);
  background: var(--signal);
  color: var(--paper);
}

.band h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.band p {
  color: rgba(244, 239, 230, 0.82);
  margin: 1rem 0 1.5rem;
  max-width: 28rem;
}

.filters-wrap {
  margin: 2rem 0 1.6rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filters button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 0.5rem 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.filters button.is-active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.case__index {
  font-family: var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--signal);
}

.case h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0.5rem 0 0.7rem;
}

.case__copy {
  color: var(--mute);
  max-width: 30rem;
}

.case ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
}

.case li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.chrome {
  background: #161616;
  border: 1px solid var(--line);
  overflow: hidden;
}

.chrome__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.chrome__dots {
  display: flex;
  gap: 0.35rem;
}

.chrome__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d3d3f;
}

.chrome__dots i:first-child {
  background: #e34a1d;
}

.chrome iframe {
  display: block;
  width: 100%;
  height: min(68vh, 640px);
  border: 0;
  background: var(--paper);
}

.inquire {
  display: grid;
  grid-template-columns: minmax(0, 34rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: stretch;
  margin-top: 2.2rem;
}

.inquire:has(.form.is-sent) {
  display: none;
}

.form {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: none;
  margin-top: 0;
}

.build {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.build__chrome {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #0a1406;
  border: 1px solid var(--line);
  overflow: hidden;
}

.build__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.build__dots {
  display: flex;
  gap: 0.35rem;
}

.build__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d3d3f;
}

.build__dots i:first-child {
  background: var(--signal);
}

.build__url {
  flex: 1;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.build__stage {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 1.1rem 1.1rem 1.2rem;
}

.build__nav,
.build__hero,
.build__row,
.build__mark,
.build__link,
.build__cta,
.build__media,
.build__headline,
.build__chip,
.build__card {
  animation: build-piece 12s var(--ease) infinite;
}

.build__nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.build__mark {
  width: 3.2rem;
  height: 0.55rem;
  background: var(--paper);
  animation-delay: 0.4s;
}

.build__link {
  width: 2.1rem;
  height: 0.34rem;
  background: rgba(244, 239, 230, 0.28);
  margin-left: auto;
  animation-delay: 0.7s;
}

.build__link + .build__link {
  margin-left: 0;
  animation-delay: 0.85s;
}

.build__cta {
  width: 2.4rem;
  height: 0.7rem;
  border: 1px solid var(--signal);
  animation-delay: 1s;
}

.build__hero {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.08);
  animation-delay: 1.2s;
}

.build__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 20, 6, 0.72)),
    linear-gradient(135deg, #1a3a10 0%, #0d1a07 55%, #2a1810 100%);
  animation-delay: 1.8s;
}

.build__headline,
.build__headline--short,
.build__chip {
  position: absolute;
  left: 0.9rem;
  z-index: 1;
}

.build__headline {
  bottom: 3.2rem;
  width: 62%;
  height: 0.9rem;
  background: var(--paper);
  animation-delay: 2.5s;
}

.build__headline--short {
  bottom: 2rem;
  width: 38%;
  height: 0.9rem;
  background: var(--signal);
  animation-delay: 2.85s;
}

.build__chip {
  bottom: 0.9rem;
  width: 4rem;
  height: 0.7rem;
  background: var(--paper);
  animation-delay: 3.2s;
}

.build__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  animation: none;
}

.build__card {
  height: 4.4rem;
  background: rgba(244, 239, 230, 0.07);
  border: 1px solid rgba(244, 239, 230, 0.1);
}

.build__card:nth-child(1) {
  animation-delay: 3.7s;
}

.build__card:nth-child(2) {
  animation-delay: 4.05s;
}

.build__card:nth-child(3) {
  animation-delay: 4.4s;
}

.build__caption {
  position: absolute;
  left: 0;
  top: calc(100% + 0.75rem);
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

@keyframes build-piece {
  0%,
  4% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  10%,
  78% {
    opacity: 1;
    transform: none;
  }
  88%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

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

.form__error {
  margin: 0;
  color: #f0b199;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.form .btn:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.form input,
.form select,
.form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  outline: none;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-bottom-color: var(--signal);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__success {
  display: none;
  max-width: 36rem;
}

.form.is-sent {
  display: none;
}

.form__success.is-on {
  display: block;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem clamp(1.2rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--mute);
}

.footer .nav__logo {
  color: var(--paper);
  margin-bottom: 0.3rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  color: var(--paper);
  opacity: 0.78;
}

.footer__social a:hover {
  color: var(--signal);
  opacity: 1;
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__contact {
  justify-self: end;
  text-align: right;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__logo {
    letter-spacing: 0.2em;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem 1.3rem 1.5rem;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .display {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
    line-height: 0.96;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h);
    padding-bottom: 2.4rem;
  }

  .hero__portrait {
    position: relative;
    order: -1;
    width: 100vw;
    max-width: 100vw;
    height: min(72vw, 24rem);
    min-height: 18rem;
    margin: 0 calc(50% - 50vw) 1.6rem;
  }

  .hero__portrait::after {
    background: linear-gradient(180deg, transparent 52%, #0d1a07 100%);
  }

  .hero__portrait img {
    object-position: center 14%;
  }

  .hero__lede {
    max-width: none;
    font-size: 1.02rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    flex-direction: column;
    gap: 1rem;
  }

  .section__head {
    flex-direction: column;
    align-items: start;
  }

  .section__head h2,
  .page h1,
  .band h2,
  .case h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .about__portrait {
    aspect-ratio: auto;
    min-height: 0;
    justify-self: center;
    width: 100%;
  }

  .about__portrait img {
    position: static;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .about,
  .inquire,
  .grid,
  .process,
  .band,
  .case,
  .form__row {
    grid-template-columns: 1fr;
  }

  .card,
  .card--tall {
    grid-row: auto;
    min-height: 280px;
  }

  .process article,
  .process article:first-child,
  .process article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 1.6rem 0;
  }

  .form .btn {
    min-width: 0;
    width: 100%;
  }

  .chrome iframe {
    height: min(52vh, 420px);
  }

  .chrome__bar {
    gap: 0.45rem;
    font-size: 0.6rem;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.2rem;
  }

  .footer__social,
  .footer__contact {
    justify-self: start;
    text-align: left;
  }

  .build {
    order: -1;
    min-height: 18rem;
    margin-bottom: 0.6rem;
  }

  .build__caption {
    position: static;
    margin-top: 0.9rem;
  }

  .build__card {
    height: 3.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
