:root {
  --ocean: #063f68;
  --ocean-deep: #082536;
  --ink: #122032;
  --muted: #607184;
  --paper: #fffaf2;
  --white: #ffffff;
  --sand: #efe4d0;
  --sand-soft: #f8f0e1;
  --lagoon: #008e9b;
  --sun: #f6c344;
  --coral: #f27457;
  --whatsapp: #25d366;
  --line: rgba(18, 32, 50, 0.13);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 26px 70px rgba(7, 37, 54, 0.18);
  --container: 1180px;
  --header-height: 74px;
  --radius: 8px;
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body: Manrope, Verdana, sans-serif;
}

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

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(246, 195, 68, 0.75);
  outline-offset: 4px;
}

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

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  color: var(--white);
  font-size: 3rem;
  max-width: 10ch;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: 2.35rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.line-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 3000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.72rem 1rem;
  color: var(--ocean-deep);
  background: var(--sun);
  border-radius: 999px;
  font-weight: 800;
}

.section-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: 5rem;
}

.eyebrow {
  color: var(--lagoon);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  padding: 0.86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-hero {
  color: #092417;
  background: var(--sun);
  box-shadow: 0 18px 44px rgba(246, 195, 68, 0.3);
}

.button-hero .icon {
  color: #0d6d36;
}

.button-dark {
  color: var(--white);
  background: var(--ocean-deep);
  box-shadow: 0 18px 42px rgba(8, 37, 54, 0.22);
}

.button-light {
  color: var(--ocean-deep);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 24, 36, 0.34), rgba(5, 24, 36, 0));
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(18, 32, 50, 0.09);
  box-shadow: 0 14px 40px rgba(7, 37, 54, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 1003;
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.brand img {
  width: 148px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.nav-active .brand img {
  filter: none;
}

.menu-toggle {
  position: relative;
  z-index: 1004;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  padding: 11px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.nav-active .menu-toggle {
  background: var(--white);
  border-color: var(--line);
}

.menu-line {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  min-height: 100svh;
  padding: calc(var(--header-height) + 1rem) 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.55rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 260ms ease, visibility 0s linear 260ms;
}

.site-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.site-nav a {
  width: min(100%, 520px);
  min-height: 54px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(18, 32, 50, 0.1);
  font-size: 1.28rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lagoon);
}

.nav-whatsapp {
  display: none;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ocean-deep);
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 16, 25, 0.2) 0%, rgba(3, 16, 25, 0.34) 46%, rgba(3, 16, 25, 0.72) 100%),
    linear-gradient(90deg, rgba(3, 16, 25, 0.78) 0%, rgba(3, 16, 25, 0.44) 42%, rgba(3, 16, 25, 0.14) 100%);
}

.hero-content {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 0 5.8rem;
  display: grid;
  justify-items: start;
  gap: 1.05rem;
}

.hero-line {
  max-width: 13ch;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  font-weight: 700;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.routes {
  position: relative;
  z-index: 2;
  margin-top: -2.8rem;
  padding-bottom: 3.2rem;
}

.routes-inner {
  display: grid;
  gap: 1.6rem;
  padding: 1.35rem;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.routes-copy {
  display: grid;
  gap: 0.55rem;
}

.routes-copy h2 {
  font-size: 1.72rem;
}

.route-actions {
  display: grid;
  gap: 0;
}

.route-link {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition: color 180ms ease, transform 180ms ease;
}

.route-link:first-child {
  border-top: 0;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--lagoon);
  transform: translateX(4px);
}

.route-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ocean);
  background: var(--sand-soft);
  border-radius: 50%;
}

.route-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.route-link strong,
.route-link small {
  display: block;
}

.route-link strong {
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 800;
  line-height: 1.1;
}

.route-link small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.proof {
  background:
    radial-gradient(circle at 14% 0%, rgba(246, 195, 68, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--sand-soft));
}

.proof-inner {
  display: grid;
  gap: 2.6rem;
}

.proof-copy {
  display: grid;
  gap: 1rem;
}

.proof-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.02rem;
}

.proof-list {
  display: grid;
  gap: 0;
  margin-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.proof-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  color: var(--ink);
  font-weight: 800;
}

.proof-list span {
  color: var(--muted);
  font-size: 0.93rem;
}

.proof-media-grid {
  display: grid;
  gap: 1rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ocean-deep);
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-tall {
  aspect-ratio: 4 / 3;
}

.video-frame {
  aspect-ratio: 16 / 10;
}

.video-frame figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.48);
}

.program {
  padding-block: 5.5rem;
}

.program-inner,
.skate-inner {
  display: grid;
  gap: 2.3rem;
  align-items: center;
}

.program-copy {
  display: grid;
  gap: 1.05rem;
}

.program-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.03rem;
}

.program-lines,
.place-lines {
  display: grid;
  gap: 0;
  margin-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.program-lines div,
.place-lines div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.16rem 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.line-icon {
  grid-row: span 2;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: 0.14rem;
  color: var(--lagoon);
}

.program-lines strong,
.place-lines strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.program-lines span,
.place-lines span {
  color: var(--muted);
  font-size: 0.94rem;
}

.program-image-wrap {
  display: grid;
  gap: 1rem;
}

.program-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.included-strip {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.included-strip span {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--ocean-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.included-strip .icon {
  color: var(--lagoon);
  width: 1.45rem;
  height: 1.45rem;
}

.program-skate {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(246, 195, 68, 0.26), transparent 24rem),
    linear-gradient(135deg, #071f31 0%, #063f68 58%, #0a6f76 100%);
}

.program-skate h2,
.program-skate .program-copy p:not(.eyebrow),
.program-skate .place-lines strong,
.program-skate .place-lines span {
  color: var(--white);
}

.program-skate .eyebrow,
.program-skate .line-icon {
  color: var(--sun);
}

.program-skate .place-lines {
  border-top-color: var(--line-light);
}

.program-skate .place-lines div {
  border-bottom-color: var(--line-light);
}

.skate-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.skate-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.final-cta {
  position: relative;
  padding-block: 5.2rem;
  color: var(--white);
  background-color: var(--ocean);
  background-image:
    linear-gradient(90deg, rgba(7, 31, 49, 0.92), rgba(7, 31, 49, 0.58), rgba(242, 116, 87, 0.42)),
    url("assets/media/images/mockup-cta-beach.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto -8% -54px -8%;
  height: 92px;
  background: var(--ocean-deep);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 520px;
  margin-top: 0.7rem;
}

.site-footer {
  color: var(--white);
  background: var(--ocean-deep);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  padding-block: 1.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-info {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-info + .footer-info {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-info .icon {
  width: 2.1rem;
  height: 2.1rem;
}

.footer-info span {
  display: grid;
  gap: 0.12rem;
}

.footer-info strong {
  font-size: 0.94rem;
}

.footer-info small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.copyright {
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js .hero-media img {
  animation: hero-drift 18s ease-out both;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 560px) {
  h1 {
    font-size: 4.2rem;
  }

  .hero-line {
    font-size: 2.55rem;
  }

  .cta-actions,
  .included-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    flex-direction: row;
  }

  .button {
    width: fit-content;
  }

  .button-hero,
  .button-ghost {
    min-width: 190px;
  }
}

@media (min-width: 760px) {
  .section-inner,
  .header-inner,
  .hero-content {
    width: min(100% - 72px, var(--container));
  }

  h1 {
    font-size: 6.2rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .section-pad {
    padding-block: 6.2rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-bottom: 7rem;
  }

  .hero-line {
    max-width: 15ch;
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .routes-inner {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 1.7rem;
  }

  .route-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .route-link {
    padding: 0 1rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .route-link:first-child {
    border-left: 0;
  }

  .proof-inner {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 3rem;
  }

  .proof-media-grid {
    grid-template-columns: 1.05fr 0.72fr;
    align-items: end;
  }

  .media-frame-tall {
    aspect-ratio: 3 / 4;
  }

  .video-frame {
    aspect-ratio: 4 / 5;
    margin-bottom: 2.2rem;
  }

  .program {
    padding-block: 6.6rem;
  }

  .program-inner,
  .skate-inner {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4rem;
  }

  .program-surf .program-copy {
    order: 1;
  }

  .program-surf .program-image-wrap {
    order: 2;
  }

  .program-image {
    aspect-ratio: 3 / 4;
  }

  .included-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .skate-inner {
    grid-template-columns: 1.06fr 0.94fr;
  }

  .skate-media img {
    aspect-ratio: 4 / 5;
  }

  .final-cta {
    padding-block: 6.3rem;
  }

  .footer-grid {
    grid-template-columns: 0.85fr 1.1fr 1fr 1.1fr;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-info + .footer-info {
    padding-top: 0;
    padding-left: 1rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    min-height: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.45rem;
    color: currentColor;
    background: transparent;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .site-nav a {
    width: auto;
    min-height: 36px;
    padding: 0;
    border-bottom: 0;
    font-size: 0.88rem;
    font-weight: 800;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--sun);
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    color: var(--lagoon);
  }

  .nav-whatsapp {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    padding: 0.62rem 1.08rem;
    color: #0a2b17;
    background: var(--whatsapp);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.2);
  }

  body.nav-open {
    overflow: auto;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 8.1rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  .hero-line {
    font-size: 3.35rem;
  }

  .routes-inner {
    margin-inline: 2rem;
  }
}

@media (max-width: 680px) {
  .hero-media img {
    object-position: 56% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(3, 16, 25, 0.04) 0%, rgba(3, 16, 25, 0.18) 34%, rgba(3, 16, 25, 0.78) 100%),
      linear-gradient(90deg, rgba(3, 16, 25, 0.28), rgba(3, 16, 25, 0.18));
  }

  .hero-content {
    padding-bottom: 5.2rem;
  }

  .proof-list li,
  .program-lines div,
  .place-lines div {
    grid-template-columns: 1fr;
  }

  .line-icon {
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-line {
    font-size: 1.72rem;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .routes-inner {
    padding: 1rem;
  }

  .route-link {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
