/* =========================================================
   PREMIER PAINT & CONSTRUCTION LLC
   Main Stylesheet
   File: main.css

   Description:
   Central stylesheet that connects the complete
   digital design system and global site styles.
   ========================================================= */


/* =========================================================
   1. DESIGN SYSTEM
   ========================================================= */

@import url("./variables.css");
@import url("./reset.css");
@import url("./typography.css");
@import url("./utilities.css");


/* =========================================================
   2. COMPONENTS
   ========================================================= */

@import url("./components/header.css");
@import url("./components/hero.css");
@import url("./components/layout.css");
@import url("./components/reveal.css");
@import url("./components/shared-components.css");

/* =========================================================
   3. PAGE SECTIONS
   ========================================================= */

@import url("./sections/about.css");
@import url("./sections/services.css");
@import url("./sections/brands.css");
@import url("./sections/projects.css");
@import url("./sections/spotlight.css");
@import url("./sections/benefits.css");
@import url("./sections/process.css");
@import url("./sections/contact.css");
@import url("./sections/footer.css");


/* =========================================================
   2. GLOBAL DOCUMENT STYLES
   ========================================================= */

html {
  background-color: var(--color-background);
  color-scheme: light;
}

body {
  min-width: 20rem;
  overflow-x: hidden;
  background-color: var(--color-background);
  color: var(--color-text-primary);
}


/* =========================================================
   3. GLOBAL PAGE STRUCTURE
   ========================================================= */

.site-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: clip;
}

main {
  display: block;
}


/* =========================================================
   4. GLOBAL MEDIA BEHAVIOR
   ========================================================= */

img,
video {
  height: auto;
}

img {
  font-style: italic;
}

svg {
  flex-shrink: 0;
}


/* =========================================================
   5. GLOBAL FORM BEHAVIOR
   ========================================================= */

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   6. GLOBAL FOCUS STYLES
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 4px;
}


/* =========================================================
   7. GLOBAL SCROLLBAR
   ========================================================= */

html {
  scrollbar-color:
    var(--color-gold-warm)
    var(--color-neutral-900);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background-color: var(--color-neutral-900);
}

::-webkit-scrollbar-thumb {
  border: 0.1875rem solid var(--color-neutral-900);
  border-radius: var(--radius-pill);
  background-color: var(--color-gold-warm);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-gold-400);
}


/* =========================================================
   8. TEMPORARY DESIGN SYSTEM PREVIEW
   Remove this section when component development begins.
   ========================================================= */

.design-preview {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-block: var(--section-space-medium);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgb(244 163 0 / 14%),
      transparent 28rem
    ),
    var(--color-background-dark);
}

.design-preview__content {
  width: min(
    calc(100% - (var(--page-padding) * 2)),
    var(--container-main)
  );
  margin-inline: auto;
}

.design-preview__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(
      145deg,
      rgb(255 255 255 / 8%),
      rgb(255 255 255 / 2%)
    );
  box-shadow: var(--shadow-xl);
  padding: clamp(2rem, 6vw, 5rem);
}

.design-preview__panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(14rem, 40%);
  height: 0.25rem;
  background: var(--gradient-gold);
  content: "";
}

.design-preview__title {
  max-width: 14ch;
  margin-top: var(--space-5);
  color: var(--color-text-light);
}

.design-preview__description {
  max-width: 62ch;
  margin-top: var(--space-6);
  color: var(--color-neutral-300);
  font-size: var(--font-size-md);
}

.design-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height-md);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  padding-inline: var(--button-padding-inline-md);
  transition:
    transform var(--duration-normal) var(--ease-smooth),
    background-color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-normal) var(--ease-standard);
}

.preview-button:hover {
  transform: translateY(-0.1875rem);
}

.preview-button--primary {
  background: var(--gradient-gold);
  color: var(--color-black-deep);
  box-shadow: var(--shadow-gold);
}

.preview-button--primary:hover {
  box-shadow: 0 16px 38px rgb(244 163 0 / 32%);
  color: var(--color-black-deep);
}

.preview-button--secondary {
  border-color: rgb(255 255 255 / 35%);
  color: var(--color-text-light);
}

.preview-button--secondary:hover {
  border-color: var(--color-gold-warm);
  color: var(--color-gold-warm);
}

.design-preview__palette {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(min(100%, 10rem), 1fr)
    );
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.color-swatch {
  min-height: 7rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-lg);
  background-color: rgb(255 255 255 / 5%);
}

.color-swatch__color {
  height: 4rem;
}

.color-swatch__information {
  padding: var(--space-3);
}

.color-swatch__name {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.color-swatch__code {
  color: var(--color-neutral-400);
  font-size: var(--font-size-xs);
}

.color-swatch__color--black {
  background-color: var(--color-black-deep);
}

.color-swatch__color--graphite {
  background-color: var(--color-gray-graphite);
}

.color-swatch__color--gold {
  background-color: var(--color-gold-warm);
}

.color-swatch__color--light {
  background-color: var(--color-gray-light);
}


/* =========================================================
   9. RESPONSIVE PREVIEW
   ========================================================= */

@media (max-width: 47.999rem) {
  .design-preview__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-button {
    width: 100%;
  }
}
/* =========================================================
   3. CINEMATIC HERO
   Premier Paint & Construction LLC.
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 7rem);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(245, 166, 0, 0.16),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      #090a0c 0%,
      #0c0d0f 44%,
      #17130c 100%
    );
  color: var(--color-text-light, #ffffff);
}

/* ---------------------------------------------------------
   HERO MEDIA
   Video, poster and visual background.
   --------------------------------------------------------- */

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(6, 7, 8, 0.98) 0%,
      rgba(6, 7, 8, 0.86) 42%,
      rgba(6, 7, 8, 0.36) 72%,
      rgba(6, 7, 8, 0.18) 100%
    );
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
}

/*
  Cuando incorporemos el video definitivo,
  cambiaremos la opacidad mediante JavaScript.
*/

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.98) 0%,
      rgba(5, 6, 7, 0.92) 31%,
      rgba(5, 6, 7, 0.68) 54%,
      rgba(5, 6, 7, 0.30) 76%,
      rgba(5, 6, 7, 0.20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 35%,
      rgba(0, 0, 0, 0.48) 100%
    );
}

.hero__glow {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  z-index: -3;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(246, 169, 0, 0.19) 0%,
    rgba(246, 169, 0, 0.07) 34%,
    transparent 69%
  );
  filter: blur(12px);
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 4rem 4rem;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82),
    transparent 73%
  );
}

/* Decorative golden light near the lower edge */

.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -7rem;
  z-index: -1;
  width: 68%;
  height: 12rem;
  pointer-events: none;
  border-top: 1px solid rgba(255, 181, 0, 0.78);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 174, 0, 0.17),
    transparent 67%
  );
  box-shadow:
    0 -1px 0 rgba(255, 186, 0, 0.22),
    0 -1.25rem 4rem rgba(245, 166, 0, 0.08);
  transform: rotate(-2deg);
}

/* Subtle vignette */

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 11rem rgba(0, 0, 0, 0.48);
}

/* ---------------------------------------------------------
   HERO CONTAINER
   --------------------------------------------------------- */

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(5rem, 9vh, 8rem);
  padding-bottom: clamp(8rem, 14vh, 11rem);
}

.hero__content {
  width: min(100%, 57rem);
}

/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
  color: var(--color-gold, #f5a600);
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.95rem);
  font-weight: var(--font-weight-medium, 500);
  line-height: 1.4;
  letter-spacing: 0.035em;
  animation: hero-reveal 800ms 120ms both;
}

.hero__eyebrow-line {
  flex: 0 0 clamp(2.4rem, 4vw, 3.7rem);
  height: 2px;
  background: var(--gradient-gold, linear-gradient(90deg, #f5a600, #ffc943));
  box-shadow: 0 0 1rem rgba(245, 166, 0, 0.34);
}

/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.hero__title {
  max-width: 13ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.45rem, 6.1vw, 7.15rem);
  font-weight: var(--font-weight-bold, 700);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 0.3rem 1.6rem rgba(0, 0, 0, 0.28);
  animation: hero-reveal 900ms 240ms both;
}

.hero__title-accent {
  display: inline;
  color: var(--color-gold, #f5a600);
  background: var(
    --gradient-gold,
    linear-gradient(135deg, #f29b00, #ffc52f)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0.5rem 1.4rem rgba(245, 166, 0, 0.08));
}

/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.hero__description {
  max-width: 45rem;
  margin-top: clamp(1.6rem, 3vh, 2.4rem);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.94rem + 0.32vw, 1.32rem);
  font-weight: var(--font-weight-regular, 400);
  line-height: 1.75;
  text-wrap: balance;
  animation: hero-reveal 900ms 360ms both;
}

/* ---------------------------------------------------------
   HERO ACTIONS
   --------------------------------------------------------- */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vh, 3rem);
  animation: hero-reveal 900ms 480ms both;
}

.hero__primary-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 3.8rem;
  padding: 0.9rem 1.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 74, 0.5);
  border-radius: var(--radius-md, 0.75rem);
  background: var(
    --gradient-gold,
    linear-gradient(135deg, #f5a600, #ffc72c)
  );
  color: #090a0c;
  font-size: 0.98rem;
  font-weight: var(--font-weight-bold, 700);
  line-height: 1;
  box-shadow:
    0 0.9rem 2.4rem rgba(245, 166, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.hero__primary-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -55%;
  z-index: -1;
  width: 34%;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(8px);
  transform: skewX(-20deg);
  transition: left 600ms ease;
}

.hero__primary-cta:hover {
  color: #090a0c;
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow:
    0 1.25rem 3rem rgba(245, 166, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero__primary-cta:hover::before {
  left: 125%;
}

.hero__primary-cta:active {
  transform: translateY(-1px);
}

.hero__primary-cta .btn__icon {
  flex-shrink: 0;
  transition: transform 260ms ease;
}

.hero__primary-cta:hover .btn__icon {
  transform: translateX(0.3rem);
}

/* Secondary action */

.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: var(--font-weight-semibold, 600);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.hero__secondary-link:hover {
  color: var(--color-gold, #f5a600);
  transform: translateX(0.2rem);
}

.hero__play-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255, 193, 37, 0.75);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(10, 10, 10, 0.34);
  box-shadow:
    inset 0 0 0 0 rgba(245, 166, 0, 0.12),
    0 0 0 rgba(245, 166, 0, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    color 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.hero__secondary-link:hover .hero__play-icon {
  color: #090a0c;
  background: var(--color-gold, #f5a600);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 2rem rgba(245, 166, 0, 0.24);
  transform: scale(1.06);
}

/* ---------------------------------------------------------
   TRUST INDICATORS
   --------------------------------------------------------- */

.hero__trust {
  display: flex;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(2.5rem, 5vh, 4.2rem);
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg, 1rem);
  background:
    linear-gradient(
      110deg,
      rgba(18, 18, 18, 0.78),
      rgba(37, 28, 12, 0.5)
    );
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: hero-reveal 900ms 600ms both;
}

.hero__trust-item {
  display: grid;
  align-content: center;
  min-width: 10.5rem;
  padding-inline: 1rem;
}

.hero__trust-item:first-child {
  padding-left: 0;
}

.hero__trust-item:last-child {
  padding-right: 0;
}

.hero__trust-item strong {
  color: #ffffff;
  font-size: clamp(0.82rem, 0.78rem + 0.13vw, 0.96rem);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.35;
}

.hero__trust-item span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.7rem, 0.67rem + 0.12vw, 0.82rem);
  line-height: 1.4;
}

.hero__trust-divider {
  width: 1px;
  min-height: 2.8rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.27),
    transparent
  );
}

/* ---------------------------------------------------------
   SIDE LABEL
   --------------------------------------------------------- */

.hero__side-label {
  position: absolute;
  top: 50%;
  left: clamp(0.8rem, 2vw, 2.2rem);
  z-index: 3;
  margin: 0;
  color: var(--color-gold, #f5a600);
  font-size: 0.66rem;
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  animation: hero-side-reveal 1s 800ms both;
}

.hero__side-label::before,
.hero__side-label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 4.2rem;
  margin-block: 1rem;
  background: linear-gradient(
    transparent,
    rgba(245, 166, 0, 0.76),
    transparent
  );
}

/* ---------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------- */

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.66);
  transform: translateX(-50%);
  transition: color 220ms ease;
  animation: hero-reveal 900ms 850ms both;
}

.hero__scroll:hover {
  color: #ffffff;
}

.hero__scroll-text {
  font-size: 0.68rem;
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 2.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero__scroll-dot {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--color-gold, #f5a600);
  box-shadow: 0 0 0.8rem rgba(245, 166, 0, 0.8);
  transform: translateX(-50%);
  animation: hero-scroll-dot 2.1s ease-in-out infinite;
}

/* ---------------------------------------------------------
   KEYFRAMES
   --------------------------------------------------------- */

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }

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

@keyframes hero-side-reveal {
  from {
    opacity: 0;
    transform: translateY(-46%) rotate(180deg);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
  }
}

@keyframes hero-scroll-dot {
  0% {
    top: -0.5rem;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    top: calc(100% + 0.2rem);
    opacity: 0;
  }
}

/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
  .hero__content {
    width: min(100%, 50rem);
  }

  .hero__title {
    font-size: clamp(3.35rem, 6.7vw, 6rem);
  }

  .hero__side-label {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__container {
    padding-top: 6rem;
    padding-bottom: 8.5rem;
  }

  .hero__content {
    width: 100%;
    max-width: 46rem;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(3.1rem, 10vw, 5.3rem);
  }

  .hero__trust {
    width: 100%;
  }

  .hero__trust-item {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - 5rem);
    background:
      radial-gradient(
        circle at 75% 30%,
        rgba(245, 166, 0, 0.12),
        transparent 30%
      ),
      #090a0c;
  }

  .hero__container {
    padding-top: 4.75rem;
    padding-bottom: 7.5rem;
  }

  .hero__eyebrow {
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.74rem;
  }

  .hero__eyebrow-line {
    flex-basis: 2rem;
    margin-top: 0.48rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.91;
  }

  .hero__description {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    gap: 1rem;
  }

  .hero__primary-cta {
    width: 100%;
  }

  .hero__secondary-link {
    width: fit-content;
  }

  .hero__trust {
    display: grid;
    width: 100%;
    padding: 0.4rem 1.1rem;
  }

  .hero__trust-item {
    padding: 1rem 0;
  }

  .hero__trust-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
  }

  .hero__scroll {
    bottom: 1.3rem;
  }

  .hero__scroll-text {
    display: none;
  }

  .hero__scroll-line {
    height: 2.2rem;
  }

  .hero::before {
    right: -32%;
    bottom: -7.5rem;
    width: 125%;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: clamp(2.75rem, 14.4vw, 3.8rem);
    letter-spacing: -0.06em;
  }

  .hero__actions {
    display: grid;
  }

  .hero__secondary-link {
    margin-top: 0.35rem;
  }
}

/* ---------------------------------------------------------
   ACCESSIBILITY
   Respect reduced-motion user preferences.
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__description,
  .hero__actions,
  .hero__trust,
  .hero__side-label,
  .hero__scroll {
    animation: none;
  }

  .hero__scroll-dot {
    animation: none;
    top: 0.3rem;
  }

  .hero__primary-cta,
  .hero__primary-cta::before,
  .hero__primary-cta .btn__icon,
  .hero__secondary-link,
  .hero__play-icon {
    transition-duration: 0.01ms;
  }
}

