html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: hidden;
}

.df-home-premium {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ===============================
   NAV PREMIUM
   =============================== */

.df-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transition:
    transform 2.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s ease;
}

.df-nav.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.df-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 102px;
  width: 100%;
  padding: 18px 34px;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.46) 0%, rgba(0,0,0,0.20) 100%);
  backdrop-filter: blur(18px) saturate(1.02);
  -webkit-backdrop-filter: blur(18px) saturate(1.02);
  box-shadow: none;
}

.df-nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 140px;
  text-decoration: none !important;
  color: #3f3f3f;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.df-nav__logo:hover,
.df-nav__logo:focus,
.df-nav__logo:active {
  text-decoration: none !important;
}

.df-nav__logo img {
  display: block;
  max-height: 64px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

.df-nav__desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.df-nav__link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #3f3f3f;
  text-decoration: none !important;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.df-nav__link:hover,
.df-nav__link:focus-visible,
.df-nav__brands.is-open .df-nav__brands-trigger {
  background: rgba(255,255,255,0.08);
  color: #5a5a5a;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  text-decoration: none !important;
}

.df-nav__brands {
  position: relative;
}

.df-nav__brands-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.df-nav__caret {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.df-nav__caret::before,
.df-nav__caret::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.df-nav__caret::before {
  left: 0;
  transform: rotate(45deg);
}

.df-nav__caret::after {
  right: 0;
  transform: rotate(-45deg);
}

.df-nav__brands.is-open .df-nav__caret::before,
.df-nav-drawer__brands.is-open .df-nav__caret::before {
  transform: rotate(0deg);
}

.df-nav__brands.is-open .df-nav__caret::after,
.df-nav-drawer__brands.is-open .df-nav__caret::after {
  transform: rotate(0deg);
}

.df-nav__brands-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 360px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(18,18,18,0.96) 0%, rgba(10,10,10,0.94) 100%);
  backdrop-filter: blur(20px) saturate(1.02);
  -webkit-backdrop-filter: blur(20px) saturate(1.02);
  box-shadow:
    0 24px 54px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.985);
  transform-origin: top right;
  transition:
    opacity 0.26s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.26s ease;
}

.df-nav__brands.is-open .df-nav__brands-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.df-nav__brand-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-decoration: none !important;
  color: #d8d8d8;
  padding: 12px 12px;
  border-radius: 16px;
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
  border: 1px solid transparent;
}

.df-nav__brand-item:hover,
.df-nav__brand-item:focus-visible {
  background: rgba(255,255,255,0.06);
  transform: translateX(2px);
  border-color: rgba(255,255,255,0.05);
  text-decoration: none !important;
}

.df-nav__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  overflow: hidden;
}

.df-nav__brand-mark img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
}

.df-nav__brand-fallback {
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 900;
}

.df-nav__brand-label {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #d8d8d8;
  text-transform: uppercase;
}

/* ===============================
   HAMBURGUESA Y DRAWER
   =============================== */

.df-nav-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1250;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18,18,18,0.92) 0%, rgba(10,10,10,0.88) 100%);
  backdrop-filter: blur(18px) saturate(1.02);
  -webkit-backdrop-filter: blur(18px) saturate(1.02);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s ease;
  box-shadow: 0 22px 42px rgba(0,0,0,0.22);
}

.df-nav-toggle.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.df-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #d8d8d8;
}

.df-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1280;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.df-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.df-nav-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  z-index: 1290;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(10,10,10,0.94) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 26px 58px rgba(0,0,0,0.34);
  transform: translateY(-14px) translateX(14px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s ease;
}

.df-nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0) scale(1);
}

.df-nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.df-nav-drawer__brand {
  color: #d8d8d8;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.df-nav-drawer__brand img {
  display: block;
  max-height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.df-nav-drawer__close {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #d8d8d8;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.df-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.df-nav-drawer__link,
.df-nav-drawer__brands-trigger {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: #d8d8d8;
  text-decoration: none !important;
  padding: 16px 16px;
  border-radius: 20px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.df-nav-drawer__brands-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.df-nav-drawer__brands-menu {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.df-nav-drawer__brands.is-open .df-nav-drawer__brands-menu {
  max-height: 520px;
}

.df-nav__brand-item--mobile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}

/* ===============================
   HEROES
   =============================== */

.df-hero {
  position: relative;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
  background: #000;
}

.df-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.df-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  filter: none;
  transition:
    opacity 3.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 4.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.df-hero__bg--a {
  opacity: 1;
}

.df-hero__bg--b {
  opacity: 0;
}

.df-hero__bg.is-visible {
  opacity: 1;
  transform: scale(1.01);
}

.df-hero__bg:not(.is-visible) {
  opacity: 0;
  transform: scale(1.05);
}

.df-hero.is-hovered .df-hero__bg.is-visible {
  transform: scale(1.02);
}

.df-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.01) 0%,
      rgba(0, 0, 0, 0.03) 30%,
      rgba(0, 0, 0, 0.08) 68%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.02) 28%,
      rgba(0, 0, 0, 0.00) 60%
    );
  transition:
    background 0.35s ease,
    opacity 0.35s ease;
}

.df-hero__content {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: 24px;
  bottom: clamp(28px, 7vh, 72px);
  z-index: 2;
  max-width: 820px;
}

.df-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.df-hero__eyebrow--instagram {
  cursor: pointer;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.df-hero__eyebrow--instagram:hover,
.df-hero__eyebrow--instagram:focus-visible,
.df-hero--instagram-hover .df-hero__eyebrow--instagram {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.96);
  color: #121212;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.df-hero--has-instagram:hover .df-hero__overlay,
.df-hero--has-instagram:focus-visible .df-hero__overlay,
.df-hero--instagram-hover .df-hero__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.01) 0%,
      rgba(0, 0, 0, 0.03) 30%,
      rgba(0, 0, 0, 0.08) 68%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.02) 28%,
      rgba(0, 0, 0, 0.00) 60%
    );
}

.df-hero--has-instagram:hover .df-hero__cta,
.df-hero--has-instagram:focus-visible .df-hero__cta,
.df-hero--instagram-hover .df-hero__cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  background: #fff;
}

.df-hero__content h2 {
  margin: 0;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.df-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.df-hero__arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.df-hero:hover .df-hero__cta,
.df-hero:focus-visible .df-hero__cta,
.df-hero.is-hovered .df-hero__cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  background: #fff;
}

.df-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
}

.df-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   FOOTER
   =============================== */

.df-footer {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.96) 0%, rgba(0,0,0,1) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #d8d8d8;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.df-footer__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 34px 28px;
}

.df-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 64px;
  align-items: start;
}

.df-footer__block {
  min-width: 0;
}

.df-footer__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.df-footer__links {
  display: grid;
  gap: 12px;
}

.df-footer__modal-trigger,
.df-footer__email,
.df-footer__phone {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: #d8d8d8;
  text-decoration: none;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.df-footer__modal-trigger:hover,
.df-footer__email:hover,
.df-footer__phone:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.df-footer__contact {
  display: grid;
  gap: 14px;
}

.df-footer__address {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  color: #bcbcbc;
  font-size: 14px;
  line-height: 1.5;
}

.df-footer__address strong {
  color: #ffffff;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.df-footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #8f8f8f;
  font-size: 13px;
}

/* ===============================
   MODAL LEGAL
   =============================== */

.df-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.df-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.df-modal {
  position: fixed;
  inset: 0;
  z-index: 1410;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}

.df-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.df-modal__panel {
  width: min(860px, 100%);
  max-height: min(80vh, 760px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(10,10,10,0.96) 100%);
  box-shadow: 0 26px 58px rgba(0,0,0,0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.df-modal.is-open .df-modal__panel {
  transform: translateY(0) scale(1);
}

.df-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.df-modal__title {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.df-modal__close {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #d8d8d8;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.df-modal__body {
  padding: 24px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

.df-modal__body p {
  margin: 0 0 16px;
}

.df-modal__body p:last-child {
  margin-bottom: 0;
}

.df-hero:focus-visible,
.df-nav__link:focus-visible,
.df-nav__brand-item:focus-visible,
.df-nav-toggle:focus-visible,
.df-nav-drawer__link:focus-visible,
.df-nav-drawer__brands-trigger:focus-visible,
.df-nav-drawer__close:focus-visible,
.df-footer__modal-trigger:focus-visible,
.df-footer__email:focus-visible,
.df-footer__phone:focus-visible,
.df-modal__close:focus-visible,
.df-hero__eyebrow--instagram:focus-visible {
  outline: none;
}

@media (max-width: 1180px) {
  .df-nav__desktop {
    display: none;
  }
}

@media (max-width: 991px) {
  .df-nav {
    display: none;
  }

  .df-nav-toggle {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .df-nav-drawer__brand img {
    max-height: 48px;
    max-width: 220px;
  }

  .df-hero__content {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .df-hero__content h2 {
    font-size: clamp(34px, 10vw, 68px);
  }

  .df-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .df-nav-toggle {
    top: 14px;
    right: 14px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .df-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .df-hero__content {
    left: 20px;
    right: 20px;
    bottom: 22px;
    max-width: none;
  }

  .df-hero__eyebrow {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .df-hero__content h2 {
    font-size: clamp(30px, 12vw, 52px);
    line-height: 0.94;
  }

  .df-hero__cta {
    margin-top: 18px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .df-footer__inner {
    padding: 44px 20px 24px;
  }

  .df-modal {
    padding: 14px;
  }

  .df-modal__header,
  .df-modal__body {
    padding: 18px;
  }

  .df-modal__title {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .df-nav,
  .df-nav-toggle,
  .df-nav-backdrop,
  .df-nav-drawer,
  .df-nav__brands-menu,
  .df-nav-drawer__brands-menu,
  .df-hero__bg,
  .df-reveal,
  .df-hero__cta,
  .df-hero__overlay,
  .df-hero__eyebrow,
  .df-nav__caret::before,
  .df-nav__caret::after,
  .df-footer__modal-trigger,
  .df-footer__email,
  .df-footer__phone,
  .df-modal,
  .df-modal-backdrop,
  .df-modal__panel {
    transition: none !important;
  }
}