:root {
  --color-primary:  #e0481f;
  --color-primary-light: #ff7a52;
  --color-primary-dark: #b8350f;
  --color-brand:    #ff5f3c;
  --color-accent:   #4adb73;
  --color-svg:      #3fc164;
  --color-bg:       #ffffff;
  --color-bg-alt:   #f1f1f1;
  --color-surface:  #ffffff;
  --color-border:   #e4e3e1;
  --color-text:     #3e403f;
  --color-muted:    #5b5b5f;
  --color-dark:     #3e403f;
  --color-footer:   #a7a6a4;
  --font-header:    'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:      'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --shadow-sm:      0 1px 2px rgba(40,30,25,.04), 0 2px 8px rgba(40,30,25,.05);
  --shadow-md:      0 4px 12px rgba(40,30,25,.07), 0 12px 28px rgba(40,30,25,.07);
  --shadow-lg:      0 10px 24px rgba(40,30,25,.10), 0 24px 56px rgba(40,30,25,.10);
  --ease:           cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--color-brand); color: #fff; }

h1, h2, h3, h4, h5 { font-family: var(--font-header); }

a { color: var(--color-primary); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--color-primary-light); text-decoration: underline; }

/* ── Botones (cuadrados, como la web original) ────── */
.btn--red,
.btn--green {
  display: inline-block;
  border: 0;
  border-radius: 0;
  font-family: var(--font-header);
  font-weight: 900;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 38px;
  transition: all .3s var(--ease);
  cursor: pointer;
}

.btn--red { background-color: var(--color-brand); color: #fff; }
.btn--red:hover { background-color: var(--color-dark); color: #fff; text-decoration: none; }

.btn--green { background-color: var(--color-accent); color: #3b3e3d; }
.btn--green:hover { background-color: var(--color-dark); color: #fff; text-decoration: none; }

/* ── Navegación fija ──────────────────────────────── */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}

.masthead.shrink {
  background-color: rgba(62, 64, 63, .95);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.masthead__wrapper {
  max-width: 1191px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead__brand img {
  height: 34px;
  width: auto;
  display: block;
  transition: height .3s var(--ease);
}

.masthead.shrink .masthead__brand img { height: 28px; }

.masthead__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.masthead__nav a {
  color: #f1f1f1;
  font-family: var(--font-header);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .35rem .7rem;
  transition: color .3s var(--ease);
}

.masthead__nav a:hover {
  color: var(--color-brand);
  text-decoration: none;
  text-shadow: 2px 2px 2px rgba(0,0,0,.9);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: url('../images/home-main-bg.jpg') center top no-repeat #222;
  background-size: cover;
  aspect-ratio: 1935 / 1090;
  min-height: 540px;
  overflow: hidden;
}

.hero__content {
  position: absolute;
  top: 44%;
  left: 0; right: 0;
  text-align: center;
  padding: 0 1.25rem;
}

/* La palabra BESTIAS ya forma parte de la imagen de fondo en escritorio */
.hero__bestias { display: none; }

.hero h1 {
  color: #f1f1f1;
  font-size: clamp(1.1rem, 2.7vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: clamp(.4rem, 1.2vw, 1.25rem);
  animation: rise .7s var(--ease) both;
}

.hero__typewriter {
  color: #f1f1f1;
  font-weight: 300;
  font-size: clamp(.9rem, 1.6vw, 1.45rem);
  min-height: 2.4em;
  margin: 0 auto;
  max-width: 720px;
}

.hero__caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--color-accent);
  margin-left: 3px;
  vertical-align: -0.12em;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.typewriter__message { display: none; }

.hero__memorial {
  margin-top: clamp(.75rem, 2.4vw, 2.5rem);
  animation: rise .7s var(--ease) .25s both;
}

.badge-years {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .3rem 1rem;
  text-transform: uppercase;
  font-family: var(--font-header);
  backdrop-filter: blur(4px);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero-social a {
  color: rgba(255,255,255,.94);
  font-size: .76rem;
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  padding: .45rem 1rem;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.hero-social a:hover {
  color: #fff;
  text-decoration: none;
  background: var(--color-brand);
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.hero-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hero en pantallas estrechas: la imagen pierde la palabra, la pintamos en HTML */
@media (max-width: 767.98px) {
  .hero {
    background: linear-gradient(160deg, #232524 0%, #3e403f 60%, #2c2e2d 100%);
    aspect-ratio: auto;
    min-height: 0;
    padding: 7.5rem 0 4.5rem;
  }
  .hero__content { position: static; }
  .hero__bestias {
    display: block;
    color: var(--color-brand);
    font-family: var(--font-header);
    font-size: clamp(3rem, 16vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: .5rem;
  }
  .hero h1 { font-size: clamp(1rem, 4.6vw, 1.4rem); }
  .hero__typewriter { font-size: 1rem; min-height: 3.5em; }
}

/* ── Títulos de sección gigantes (como la web original) ── */
.giant-title {
  display: block;
  width: 100%;
  max-width: min(580px, 100%);
  margin: 0 0 1.5rem;
  overflow: visible;
}

.giant-title text {
  fill: var(--color-svg);
  font-family: var(--font-header);
  font-weight: 900;
  text-transform: uppercase;
}

/* ── Secciones ────────────────────────────────────── */
section { padding: 4.5rem 0 5rem; scroll-margin-top: 64px; }

section:nth-of-type(even) { background: var(--color-bg-alt); }

h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 1.1rem;
  color: var(--color-text);
}

p { color: var(--color-muted); margin-bottom: 1rem; }

code {
  font-size: .9em;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  padding: .1em .4em;
  border: 1px solid var(--color-border);
}

/* ── Servicios ────────────────────────────────────── */
.services__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.service {
  position: relative;
  overflow: hidden;
  aspect-ratio: 335 / 460;
  background: var(--color-dark);
}

.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,36,35,.88) 0%, rgba(34,36,35,.25) 45%, rgba(34,36,35,0) 70%);
  transition: background .3s var(--ease);
}

.service__info {
  position: absolute;
  left: 0; right: 0; bottom: 1.4rem;
  z-index: 2;
  text-align: center;
  color: #fff;
  transition: opacity .3s var(--ease);
}

.service__info h4 {
  font-size: .8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0;
  color: rgba(255,255,255,.85);
}

.service__info h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.service__hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.25rem;
  background: rgba(255,95,60,.92);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.service__hover p {
  color: #fff;
  font-size: .86rem;
  line-height: 1.6;
  margin: 0;
}

.service:hover img,
.service:focus-within img { transform: scale(1.06); }

.service:hover .service__hover,
.service:focus-within .service__hover { opacity: 1; }

.services__resume { margin-bottom: 1.5rem; }

.services__resume h2 { margin-bottom: 0; }

.services__resume p { margin-bottom: 0; }

/* ── Stats ────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.9rem 1rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card .number {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-header);
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-card .label {
  font-size: .72rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  font-family: var(--font-header);
}

/* ── Proyectos ────────────────────────────────────── */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 1.1rem;
  aspect-ratio: 600 / 440;
  background: var(--color-dark);
}

.project figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,42,41,.92) 0%, rgba(40,42,41,.55) 100%);
  transition: opacity .3s var(--ease);
}

.project figure:hover::after { opacity: 0; }

.project figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(255,95,60,.6);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.project figure:hover::before { opacity: 1; }

.project figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.project figcaption h3 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  text-transform: uppercase;
  margin: 0 0 .9rem;
  line-height: 1.15;
}

.project__separator {
  height: 30px;
  width: 2px;
  background-color: var(--color-brand);
  margin-bottom: .9rem;
  display: block;
}

.project figcaption h4 {
  color: #fff;
  font-weight: 400;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0;
}

.project > p {
  font-size: .92rem;
  margin: 0;
}

.projects__others {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}

.projects__others strong {
  display: block;
  width: 100%;
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--color-text);
  margin-bottom: .25rem;
}

.tag {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: .32rem .9rem;
  font-size: .82rem;
  color: var(--color-muted);
  font-family: var(--font-header);
  font-weight: 500;
  letter-spacing: .03em;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
  border-color: rgba(255,95,60,.35);
}

/* ── Lema «muy salvajes» ─────────────────────────── */
.solutions {
  background: url('../images/jungle.jpg') center 65% no-repeat #fff;
  background-size: cover;
  min-height: clamp(320px, 42vw, 560px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  text-align: center;
}

.solutions__wrapper {
  max-width: 1192px;
  margin: auto;
  width: 100%;
  padding: 0 1.25rem;
}

.solutions__wrapper h3 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  margin: 0 0 .25rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.solutions__wrapper h4 {
  color: #fff;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  z-index: 1;
  margin: 0;
  padding: 0 .2em;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.solutions__wrapper h4::before {
  content: " ";
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: .32em;
  background: var(--color-brand);
  z-index: -1;
}

/* ── Párrafos introductorios de sección ───────────── */
.academy__intro,
.history__intro,
.projects__intro { max-width: 760px; }

.projects__intro { margin-bottom: 2rem; }

.academy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.25rem 0 2.5rem;
}

.academy__pillar {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.academy__pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
}

.academy__pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.academy__pillar svg {
  width: 30px;
  height: 30px;
  fill: var(--color-brand);
  margin-bottom: .8rem;
}

.academy__pillar h4 {
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text);
  margin-bottom: .5rem;
}

.academy__pillar p {
  font-size: .86rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Línea de tiempo ──────────────────────────────── */
.timeline {
  position: relative;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brand), var(--color-accent), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 2.25rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.57rem;
  top: .5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 2px solid var(--color-surface);
  box-shadow: 0 0 0 3px rgba(255,95,60,.18);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.timeline-item:hover::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(74,219,115,.22);
}

.timeline-item .year {
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-header);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.timeline-item .event {
  font-weight: 900;
  font-family: var(--font-header);
  color: var(--color-text);
  margin: .2rem 0 .3rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.timeline-item p {
  font-size: .92rem;
  margin: 0;
}

/* Decoración diagonal de la web original */
.history {
  position: relative;
  overflow: hidden;
}

.history::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 60px;
  width: 50%;
  height: 630px;
  background: url('../images/decoration-2.svg') center left no-repeat;
  pointer-events: none;
  opacity: .5;
}

.history .container { position: relative; z-index: 1; }

/* ── Equipo ───────────────────────────────────────── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin-bottom: 3rem;
}

.team__member {
  margin: 0;
  text-align: center;
}

.team__member img {
  width: 100%;
  max-width: 270px;
  aspect-ratio: 270 / 372;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  filter: grayscale(18%);
  transition: filter .3s var(--ease), transform .3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.team__member:hover img { filter: grayscale(0); transform: translateY(-4px); }

.team__member h4 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-text);
}

.team__member h5 {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-brand);
  margin: .15rem 0 .3rem;
}

.team__member figcaption p {
  font-size: .88rem;
  font-style: italic;
  margin: 0;
}

.team__after h2 { font-size: 1.25rem; }

/* ── Archivo ──────────────────────────────────────── */
.archive .row { align-items: center; }

/* ── Cierre ───────────────────────────────────────── */
.closing-card {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(110% 120% at 0% 0%, var(--color-primary-light) 0%, rgba(255,122,82,0) 55%),
    linear-gradient(135deg, var(--color-brand) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.closing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 20px 20px;
}

.closing-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .85rem;
  color: #fff;
}

.closing-card p {
  max-width: 600px;
  margin: 0 auto;
  font-size: .98rem;
  color: rgba(255,255,255,.92);
}

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--color-dark);
  padding: 3.5rem 0 2rem;
  color: var(--color-footer);
  font-size: .88rem;
}

.footer__brand img { margin-bottom: 1rem; }

.footer__brand p { color: var(--color-footer); font-size: .85rem; max-width: 360px; }

.footer__col h5 {
  color: var(--color-brand);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .9rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li { margin-bottom: .35rem; }

.footer__col a { color: var(--color-footer); }

.footer__col a:hover { color: #fff; text-decoration: none; }

.footer__copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  text-align: center;
  font-size: .8rem;
  color: var(--color-footer);
}

.footer__copyright a { color: var(--color-footer); }

.footer__copyright a:hover { color: #fff; }

/* ── Scroll progress bar ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
  box-shadow: 0 0 8px rgba(255,95,60,.5);
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Reveal on scroll ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

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

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991.98px) {
  .services__blocks { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: 1fr; }
  .project figure { aspect-ratio: 600 / 320; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .academy__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .services__blocks { grid-template-columns: 1fr; }
  .service { aspect-ratio: 335 / 300; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .academy__grid { grid-template-columns: 1fr; }
  .masthead__nav a { font-size: .7rem; padding: .25rem .45rem; }
  .masthead__wrapper { flex-direction: column; gap: .4rem; padding: 10px 12px; }
  .masthead { background-color: rgba(62,64,63,.95); }
}

/* ── Accesibilidad ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none; }
  .hero__caret { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
