/* ==========================================================================
   SL NATURAL — Maqueta HTML/CSS
   Fuente: Montserrat (Google Fonts)
   ========================================================================== */

:root {
  --naranja: #f39b1a;
  --naranja-oscuro: #e08a0d;
  --verde-oscuro: #01633b;
  --verde-oscuro-2: #024a2c;
  --amarillo: #f8ba09;
  --verde-salvia: #b4c48a;
  --verde-oliva: #79845d;
  --gris-oscuro: #6e6c6c;
  --gris-oscuro-2: #5a5858;
  --gris-texto: #4a4a4a;
  --gris-claro-bg: #f4f4f2;
  --blanco: #ffffff;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --pad-inline: clamp(20px, 5vw, 80px);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gris-texto);
  line-height: 1.55;
  background: var(--blanco);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section {
  padding-block: clamp(48px, 7vw, 96px);
}

.eyebrow-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--naranja);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-block;
  background: var(--naranja);
  color: var(--blanco);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 1em 1.8em;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--naranja-oscuro);
  transform: translateY(-2px);
}

.btn.is-disabled {
  background: #c9c9c9;
  color: #6e6e6e;
  cursor: not-allowed;
}

.btn.is-disabled:hover {
  background: #c9c9c9;
  transform: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #ffffff 0%, #eef3e5 100%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.5rem;
}

.site-header__logo img {
  height: clamp(44px, 4.5vw, 58px);
  width: auto;
}

.site-nav {
  position: relative;
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.site-nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 10px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--amarillo),
    var(--verde-oscuro),
    var(--amarillo)
  );
}

.site-nav a {
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  color: #2c2c2c;
  white-space: nowrap;
}

.site-nav a.is-active {
  color: var(--verde-oscuro);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}

.nav-toggle span {
  height: 3px;
  border-radius: 2px;
  background: var(--verde-oscuro);
}

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

.hero {
  background: var(--verde-salvia);
  position: relative;
  padding-block: clamp(40px, 6vw, 70px);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.hero__card {
  background: var(--verde-oliva);
  color: var(--blanco);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 42px);
}

.hero__card h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero__card p {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.95;
}

.hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.2rem;
  z-index: 5;
  line-height: 1;
}

.hero__arrow--prev {
  left: clamp(8px, 2vw, 24px);
}

.hero__arrow--next {
  right: clamp(8px, 2vw, 24px);
}

/* ==========================================================================
   DECORACIONES (confetti)
   ========================================================================== */

.orbit-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.deco {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.deco img {
  display: block;
  width: 100%;
  height: auto;
  animation: deco-float 7s ease-in-out infinite, deco-spin 18s linear infinite;
}

@keyframes deco-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes deco-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco img {
    animation: none;
  }
  .deco {
    transition: none;
  }
}

/* ==========================================================================
   QUIENES SOMOS
   ========================================================================== */

.somos {
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 8vw, 110px) clamp(30px, 5vw, 60px);
}

.somos__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.somos__text p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: #333;
  max-width: 46ch;
  padding-left: clamp(40px, 5.5vw, 78px);
}

.somos__media {
  display: flex;
  justify-content: center;
}

.somos__media img {
  width: clamp(220px, 26vw, 340px);
  height: clamp(220px, 26vw, 340px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   QUE HACEMOS (franja oscura)
   ========================================================================== */

.hacemos {
  background: var(--gris-oscuro);
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.hacemos .eyebrow-title {
  color: var(--naranja);
}

.hacemos p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  max-width: 80ch;
  position: relative;
  z-index: 1;
  padding-left: clamp(40px, 5.5vw, 78px);
}

.hacemos p + p {
  margin-top: 1rem;
}

/* ==========================================================================
   CERTIFICACIONES
   ========================================================================== */

.cert p {
  font-size: 1rem;
  color: #333;
  max-width: 90ch;
  margin-bottom: 1rem;
  padding-left: clamp(40px, 5.5vw, 78px);
}

.cert__grid {
  width: min(1380px, calc(100vw - 40px));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.cert__card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #e9e9e9);
  border-radius: 14px 14px 5px 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.cert__card::after {
  content: '';
  position: absolute;
  inset: 15px;
  padding: 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #e0e0e0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.cert__card img {
  position: relative;
  z-index: 2;
  height: 56px;
  width: auto;
  object-fit: contain;
}

.cert__card span {
  position: relative;
  z-index: 2;
  padding-inline: 0.6rem;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.35;
}

/* ==========================================================================
   LOGISTICA
   ========================================================================== */

.logistica {
  padding-block: 0;
}

.logistica__inner {
  display: grid;
  grid-template-columns: 28% 1fr;
  height: clamp(200px, 18vw, 290px);
  border-top: 3px solid var(--naranja);
  border-bottom: 3px solid var(--naranja);
}

.logistica__media {
  height: 100%;
  overflow: hidden;
}

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

.logistica__panel {
  background: var(--gris-oscuro);
  color: var(--blanco);
  padding: clamp(14px, 1.8vw, 24px) clamp(24px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logistica__panel h2 {
  color: var(--naranja);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}

.logistica__lists {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: 0.15rem;
}

.logistica__lists li {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.25;
  margin-bottom: 0.12rem;
}

.logistica__lists a {
  color: #8fd6d6;
  font-style: italic;
  font-weight: 600;
}

/* ==========================================================================
   QUE NOS DIFERENCIA
   ========================================================================== */

.diferencia {
  padding-block: 0;
}

.diferencia .eyebrow-title {
  margin-bottom: 0;
  padding-block: clamp(32px, 5vw, 64px) clamp(24px, 3.5vw, 40px);
}

.diferencia__band-wrap {
  position: relative;
  padding-block: clamp(20px, 3vw, 32px);
}

.diferencia__band {
  width: 100vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* top/height los fija js/diferencia.js midiendo los íconos */
  z-index: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f0f0f0 12%,
    #f0f0f0 88%,
    #ffffff 100%
  );
}

.diferencia__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 2rem;
  gap: 1.5rem;
  text-align: center;
}

.diferencia__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diferencia__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(87px, 8.6vw, 120px);
  height: clamp(87px, 8.6vw, 120px);
  margin-bottom: 1rem;
}

.diferencia__item img {
  width: 100%;
  height: 100%;
}

.diferencia__item p {
  font-weight: 400;
  font-size: 0.82rem;
  color: #706f6f;
}

/* ==========================================================================
   PRODUCTOS
   ========================================================================== */

.productos__band-wrap {
  position: relative;
  margin-top: clamp(24px, 3vw, 40px);
}

.productos__band {
  width: 100vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 55%;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f0f0f0 12%,
    #f0f0f0 88%,
    #ffffff 100%
  );
}

.productos__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.2rem;
  row-gap: 2.6rem;
}

.producto-card {
  position: relative;
  background: linear-gradient(180deg, #cfcfcf 50%, #ffffff);
  border-radius: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.producto-card::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 4px solid #cfcfcf;
  border-radius: 13px;
  pointer-events: none;
  z-index: 1;
}

.producto-card__img {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  aspect-ratio: 1.5;
  overflow: hidden;
}

.producto-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-card__body {
  padding: 1.2rem 35px 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}

.producto-card__body h3 {
  color: #555;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.producto-card__body p {
  font-size: 0.88rem;
  color: #666;
  flex: 1;
  margin-bottom: 1.4rem;
}

.producto-card__body .btn {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: -20px;
}

/* ==========================================================================
   UBICACION + FORMULARIO
   ========================================================================== */

.ubicacion {
  padding-top: 0;
}

.ubicacion__banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 390px;
}

.ubicacion__map {
  position: relative;
  background: #b9b9b9;
  overflow: hidden;
}

.ubicacion__map #ubicacionMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ubicacion__map .leaflet-tile-pane {
  filter: grayscale(0.9) brightness(1.08) contrast(1.05);
}

.ubicacion__map-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
  color: var(--blanco);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.ubicacion__map-label h3 {
  font-size: 1.8rem;
  font-weight: 800;
}

.ubicacion__map-label .pin {
  display: inline-block;
  margin-bottom: 0.3rem;
}

.ubicacion__map-label .pin img {
  width: 1.8rem;
  height: auto;
}

.ubicacion__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formulario {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: start;
  margin-top: 1.5rem;
}

.formulario h2 {
  color: var(--naranja);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  align-self: center;
}

.formulario__grid {
  background: var(--naranja);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  margin-top: clamp(-120px, -7vw, -70px);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

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

.formulario input,
.formulario textarea {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1rem;
  font-family: var(--font);
  font-size: 0.85rem;
  color: #444;
}

.formulario textarea {
  height: 100%;
  min-height: 140px;
  resize: vertical;
}

.formulario__msg-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
}

.formulario__msg-wrap textarea {
  flex: 1;
  min-height: 100px;
}

.formulario__submit {
  flex: none;
  align-self: flex-start;
  margin-top: 12px;
  background: var(--verde-oscuro);
}

.formulario__submit:hover {
  background: var(--verde-oscuro-2);
}

.formulario__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.formulario__status {
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 1.2em;
  color: #fff;
}

.formulario__status.is-error {
  color: #3a0d0d;
}

/* ==========================================================================
   PAGINA DE PRODUCTO
   ========================================================================== */

.producto-hero {
  padding-top: clamp(40px, 6vw, 70px);
}

.producto-hero__title {
  color: var(--naranja);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.producto-hero__panel {
  background: linear-gradient(90deg, #f2f2f2, #ffffff 55%);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(20px, 3vw, 40px);
  align-items: center;
}

.producto-hero__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.producto-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-hero__desc h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #444;
  margin-bottom: 1rem;
}

.producto-hero__desc p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.6rem;
}

.producto-hero__sellos {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.producto-hero__sellos img {
  height: 56px;
  width: auto;
}

.producto-breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.producto-breadcrumb a {
  color: var(--naranja);
  font-weight: 700;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer__top {
  background: var(--gris-oscuro);
  padding-block: 1.6rem;
}

.site-footer__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__logo img {
  height: 46px;
}

.site-footer__social {
  display: flex;
  gap: 0.7rem;
}

.site-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blanco);
  color: var(--gris-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.site-footer__bottom {
  background-image: linear-gradient(
      90deg,
      #f9a51a 0%,
      #f9a51a 22%,
      rgba(249, 165, 26, 0.55) 40%,
      rgba(249, 165, 26, 0.55) 60%,
      #f4c534 78%,
      #f4c534 100%
    ),
    url('../assets/img/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--verde-oscuro-2);
  padding-block: 2.2rem;
}

.site-footer__bottom .container {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr;
  gap: 1.5rem;
}

.site-footer__bottom h4 {
  font-weight: 800;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.site-footer__bottom p,
.site-footer__bottom address {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-icon {
  display: inline-block;
  width: 0.75rem;
  height: auto;
  vertical-align: middle;
  margin-bottom: 0.15rem;
}

.site-footer__bottom a {
  font-style: italic;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .site-footer__nav {
    align-items: flex-start;
  }
}

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

@media (max-width: 1024px) {
  .cert__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diferencia__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .productos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--blanco);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }

  .site-nav::after {
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .somos__inner {
    grid-template-columns: 1fr;
  }

  .somos__media {
    order: -1;
  }

  .logistica__inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .logistica__media {
    height: 240px;
  }

  .ubicacion__banner {
    grid-template-columns: 1fr;
  }

  .formulario {
    grid-template-columns: 1fr;
  }

  .formulario h2 {
    margin-top: 0;
  }

  .formulario__grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .site-footer__bottom .container {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .site-footer__nav {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .cert__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferencia__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.75rem;
  }

  .productos__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__top .container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   REVEAL AL SCROLLEAR (Intersection Observer + CSS transitions)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.is-visible {
  transform: none;
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.is-visible {
  transform: none;
}

.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.is-visible {
  transform: none;
}

.reveal-stagger .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible .reveal-item {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible .reveal-item:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible .reveal-item:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible .reveal-item:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible .reveal-item:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal-stagger .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
