/* =========================================================
   DABBIES — COLLECT
   Monograph Editorial System
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {
  --black: #090909;
  --white: #f3f1eb;
  --gray: #a5a39d;
  --muted: #6f6d68;
  --line: rgba(243, 241, 235, 0.16);
  --line-strong: rgba(243, 241, 235, 0.32);

  --sans: "Inter", sans-serif;
  --mono: "DM Mono", monospace;

  --page-padding: clamp(20px, 4vw, 64px);
  --header-height: 84px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  outline: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--white);
  color: var(--black);
}


/* =========================================================
   LOADER
========================================================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--black);

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  width: calc(100% - (var(--page-padding) * 2));

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}


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

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: var(--header-height);

  padding: 0 var(--page-padding);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  z-index: 1000;

  mix-blend-mode: normal;

  border-bottom: 1px solid var(--line);

  background: rgba(9, 9, 9, 0.88);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 28px;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
  white-space: nowrap;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.connection-status i {
  width: 5px;
  height: 5px;

  display: block;

  border-radius: 50%;
  background: var(--white);
}

.menu-trigger {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 12px;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.menu-lines {
  width: 22px;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 1px;

  background: var(--white);

  transition:
    transform 0.35s ease,
    width 0.35s ease;
}

.menu-trigger:hover .menu-lines i:last-child {
  width: 65%;
}


/* =========================================================
   FULL MENU
========================================================= */

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;

  padding:
    calc(var(--header-height) + 25px)
    var(--page-padding)
    30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--black);

  transform: translateY(-100%);
  visibility: hidden;

  transition:
    transform 0.65s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0.65s ease;
}

.site-menu.open {
  transform: translateY(0);
  visibility: visible;
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.menu-close {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.main-navigation {
  width: min(100%, 1100px);
}

.main-navigation a {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid var(--line);

  transition: padding-left 0.35s ease;
}

.main-navigation a:first-child {
  border-top: 1px solid var(--line);
}

.main-navigation a:hover {
  padding-left: 15px;
}

.main-navigation a span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}

.main-navigation a strong {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.main-navigation a::after {
  content: "→";

  font-family: var(--mono);
  font-size: 13px;

  color: var(--gray);
}

.menu-bottom {
  display: flex;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}


/* =========================================================
   GLOBAL SECTION
========================================================= */

.collect-hero,
.collection-types,
.collection-process,
.context-section,
.quality-section,
.collect-cta {
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.collect-hero {
  padding-top: calc(var(--header-height) + 80px);
}

.collection-types,
.collection-process,
.context-section,
.quality-section {
  padding-top: 120px;
}

.section-label {
  display: grid;
  grid-template-columns: 55px 1fr;

  padding-bottom: 18px;

  border-bottom: 1px solid var(--line);

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.section-label span:first-child {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 20px;

  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.09em;

  color: var(--gray);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


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

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 50px;

  padding-top: 90px;
}

.hero-title h1 {
  max-width: 1000px;

  font-size: clamp(72px, 10.5vw, 170px);
  line-height: 0.84;
  font-weight: 500;

  letter-spacing: -0.075em;
}

.hero-title h1 em {
  font-style: normal;
  color: var(--gray);
}

.hero-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 280px;
}

.coordinates,
.collection-index {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.65;
  letter-spacing: 0.07em;
  color: var(--gray);
}

.collection-index {
  padding-top: 35px;

  border-top: 1px solid var(--line);
}

.collection-index span {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
}

.collection-index p {
  color: var(--gray);
}

.hero-description {
  max-width: 800px;

  margin-top: 100px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.hero-description p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.hero-description .large-copy {
  font-size: clamp(20px, 2.1vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--white);
}


/* =========================================================
   VISUAL SPACE
========================================================= */

.visual-space {
  position: relative;

  min-height: min(52vw, 650px);

  margin-top: 100px;

  overflow: hidden;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  background:
    radial-gradient(
      circle at center,
      rgba(243, 241, 235, 0.055),
      transparent 38%
    );
}

.visual-space::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      transparent 49.9%,
      rgba(243, 241, 235, 0.08) 50%,
      transparent 50.1%
    ),
    linear-gradient(
      0deg,
      transparent 49.9%,
      rgba(243, 241, 235, 0.08) 50%,
      transparent 50.1%
    );

  background-size: 80px 80px;

  opacity: 0.35;
}

.visual-space::after {
  content: "";

  position: absolute;

  width: 36vw;
  height: 36vw;

  max-width: 420px;
  max-height: 420px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid var(--line-strong);

  border-radius: 50%;
}

.visual-space-inner {
  position: relative;
  z-index: 2;

  height: 100%;

  min-height: inherit;

  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.visual-top,
.visual-bottom {
  display: flex;
  justify-content: space-between;
}

.visual-center {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  font-family: var(--sans);
  font-size: 30px;
  color: var(--white);
}


/* =========================================================
   TYPES INTRO
========================================================= */

.types-introduction {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;

  padding-top: 90px;
  padding-bottom: 90px;
}

.types-introduction h2,
.process-heading h2,
.context-heading h2,
.quality-heading h2,
.cta-content h2 {
  font-size: clamp(58px, 8vw, 125px);
  line-height: 0.87;
  font-weight: 500;

  letter-spacing: -0.07em;
}

.types-introduction h2 em,
.process-heading h2 em,
.context-heading h2 em,
.quality-heading h2 em,
.cta-content h2 em {
  font-style: normal;
  color: var(--gray);
}

.types-introduction-copy {
  padding-top: 45px;
}

.types-introduction-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.types-introduction-copy .large-copy {
  margin-bottom: 25px;

  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--white);
}


/* =========================================================
   COLLECTION LIST
========================================================= */

.collection-list {
  border-top: 1px solid var(--line);
}

.collection-row {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) 50px;
  gap: 25px;
  align-items: center;

  min-height: 180px;

  border-bottom: 1px solid var(--line);

  transition:
    padding-left 0.4s ease,
    background 0.4s ease;
}

.collection-row:hover {
  padding-left: 18px;
}

.row-number {
  align-self: start;

  padding-top: 27px;

  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}

.row-content {
  padding: 28px 0;
}

.row-content h3 {
  margin-bottom: 12px;

  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.row-content p {
  max-width: 500px;

  font-size: 13px;
  line-height: 1.6;

  color: var(--gray);
}

.row-arrow {
  justify-self: end;

  font-family: var(--mono);
  font-size: 18px;

  color: var(--gray);

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.collection-row:hover .row-arrow {
  transform: translateX(7px);
  color: var(--white);
}


/* =========================================================
   PROCESS
========================================================= */

.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;

  padding-top: 90px;
}

.process-copy {
  padding-top: 50px;
}

.process-copy p {
  max-width: 580px;

  margin-bottom: 28px;

  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

.process-copy .large-copy {
  margin-bottom: 40px;

  font-size: clamp(21px, 2.3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--white);
}


/* =========================================================
   CONTEXT
========================================================= */

.context-heading {
  padding-top: 90px;
}

.context-copy {
  max-width: 760px;

  margin-left: auto;
  margin-top: 80px;
}

.context-copy p {
  margin-bottom: 30px;

  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

.context-copy .large-copy {
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--white);
}

.context-line {
  margin-top: 100px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.context-line span {
  padding: 22px 15px;

  border-right: 1px solid var(--line);

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.context-line span:first-child {
  padding-left: 0;
}

.context-line span:last-child {
  border-right: 0;
}


/* =========================================================
   QUALITY
========================================================= */

.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  padding-top: 90px;
}

.quality-list {
  border-top: 1px solid var(--line);
}

.quality-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;

  padding: 28px 0;

  border-bottom: 1px solid var(--line);
}

.quality-row > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gray);
}

.quality-row h3 {
  margin-bottom: 12px;

  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.quality-row p {
  max-width: 460px;

  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}


/* =========================================================
   CTA
========================================================= */

.collect-cta {
  margin-top: 150px;

  padding-top: 100px;
  padding-bottom: 150px;

  border-top: 1px solid var(--line);
}

.cta-content {
  max-width: 1000px;

  padding-top: 90px;
}

.cta-content > p:not(.eyebrow) {
  max-width: 470px;

  margin-top: 45px;

  font-size: 15px;
  line-height: 1.7;

  color: var(--gray);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;

  margin-top: 45px;
  padding-bottom: 10px;

  border-bottom: 1px solid var(--white);

  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;

  transition: gap 0.35s ease;
}

.cta-link:hover {
  gap: 38px;
}


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

.site-footer {
  padding:
    80px
    var(--page-padding)
    30px;

  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;

  padding-bottom: 80px;

  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.footer-description {
  align-self: end;

  max-width: 300px;
}

.footer-description p {
  margin-bottom: 15px;

  font-size: 16px;
  color: var(--white);
}

.footer-description span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  padding: 55px 0;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 12px;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.footer-links a {
  width: fit-content;

  font-size: 12px;
  color: var(--white);

  border-bottom: 1px solid transparent;

  transition: border-color 0.25s ease;
}

.footer-links a:hover {
  border-color: var(--white);
}

.footer-bottom {
  padding-top: 25px;

  display: flex;
  justify-content: space-between;

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.footer-bottom > div {
  display: flex;
  gap: 25px;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  :root {
    --page-padding: 30px;
  }

  .hero-layout {
    grid-template-columns: 1fr 190px;
    gap: 30px;
  }

  .hero-title h1 {
    font-size: clamp(65px, 10vw, 110px);
  }

  .hero-description {
    gap: 40px;
  }

  .types-introduction,
  .process-layout,
  .quality-layout {
    gap: 55px;
  }

  .types-introduction h2,
  .process-heading h2,
  .context-heading h2,
  .quality-heading h2,
  .cta-content h2 {
    font-size: clamp(55px, 7.5vw, 85px);
  }

  .collection-row {
    min-height: 155px;
  }

  .row-content h3 {
    font-size: clamp(36px, 5vw, 60px);
  }

  .visual-space {
    min-height: 55vw;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  :root {
    --page-padding: 17px;
    --header-height: 68px;
  }


  /* HEADER */

  .site-header {
    grid-template-columns: 1fr auto;

    height: var(--header-height);

    padding: 0 var(--page-padding);
  }

  .header-meta {
    display: none;
  }

  .brand {
    font-size: 15px;
  }


  /* MENU */

  .site-menu {
    padding:
      calc(var(--header-height) + 20px)
      var(--page-padding)
      20px;
  }

  .main-navigation a {
    grid-template-columns: 35px 1fr auto;

    padding: 16px 0;
  }

  .main-navigation a strong {
    font-size: clamp(31px, 10vw, 55px);
  }

  .menu-bottom {
    flex-direction: column;
    gap: 8px;
  }


  /* SECTIONS */

  .collect-hero {
    padding-top: calc(var(--header-height) + 55px);
  }

  .collection-types,
  .collection-process,
  .context-section,
  .quality-section {
    padding-top: 85px;
  }

  .section-label {
    grid-template-columns: 42px 1fr;
  }


  /* HERO */

  .hero-layout {
    display: block;

    padding-top: 55px;
  }

  .hero-title h1 {
    font-size: clamp(49px, 15vw, 75px);
    line-height: 0.86;
  }

  .hero-information {
    min-height: auto;

    margin-top: 50px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .collection-index {
    padding-top: 0;
    padding-left: 25px;

    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .hero-description {
    display: block;

    margin-top: 65px;
  }

  .hero-description .large-copy {
    margin-bottom: 25px;

    font-size: 20px;
    line-height: 1.3;
  }

  .hero-description p {
    font-size: 13px;
    line-height: 1.7;
  }


  /* VISUAL */

  .visual-space {
    min-height: 105vw;

    margin-top: 65px;
  }

  .visual-space::after {
    width: 55vw;
    height: 55vw;
  }

  .visual-space-inner {
    padding: 16px;

    font-size: 8px;
  }

  .visual-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }


  /* TYPE INTRO */

  .types-introduction {
    display: block;

    padding-top: 60px;
    padding-bottom: 60px;
  }

  .types-introduction h2,
  .process-heading h2,
  .context-heading h2,
  .quality-heading h2,
  .cta-content h2 {
    font-size: clamp(44px, 13.5vw, 70px);
    line-height: 0.88;
  }

  .types-introduction-copy {
    padding-top: 50px;
  }

  .types-introduction-copy .large-copy {
    font-size: 19px;
  }

  .types-introduction-copy p {
    font-size: 13px;
  }


  /* COLLECTION LIST */

  .collection-row {
    grid-template-columns: 32px minmax(0, 1fr) 25px;
    gap: 10px;

    min-height: 145px;
  }

  .row-number {
    padding-top: 21px;
  }

  .row-content {
    padding: 23px 0;
  }

  .row-content h3 {
    margin-bottom: 9px;

    font-size: clamp(34px, 10vw, 52px);
  }

  .row-content p {
    max-width: 290px;

    font-size: 11px;
    line-height: 1.55;
  }

  .row-arrow {
    font-size: 14px;
  }

  .collection-row:hover {
    padding-left: 5px;
  }


  /* PROCESS */

  .process-layout {
    display: block;

    padding-top: 60px;
  }

  .process-copy {
    padding-top: 50px;
  }

  .process-copy p {
    font-size: 13px;
  }

  .process-copy .large-copy {
    font-size: 20px;
  }


  /* CONTEXT */

  .context-heading {
    padding-top: 60px;
  }

  .context-copy {
    margin-top: 55px;
  }

  .context-copy p {
    font-size: 13px;
  }

  .context-copy .large-copy {
    font-size: 20px;
  }

  .context-line {
    margin-top: 65px;

    grid-template-columns: 1fr 1fr;
  }

  .context-line span {
    padding: 15px 10px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .context-line span:first-child {
    padding-left: 10px;
  }

  .context-line span:nth-child(even) {
    border-right: 0;
  }

  .context-line span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  /* QUALITY */

  .quality-layout {
    display: block;

    padding-top: 60px;
  }

  .quality-list {
    margin-top: 60px;
  }

  .quality-row {
    grid-template-columns: 32px 1fr;
  }

  .quality-row h3 {
    font-size: 17px;
  }

  .quality-row p {
    font-size: 12px;
  }


  /* CTA */

  .collect-cta {
    margin-top: 90px;

    padding-top: 70px;
    padding-bottom: 90px;
  }

  .cta-content {
    padding-top: 60px;
  }

  .cta-content > p:not(.eyebrow) {
    margin-top: 30px;

    font-size: 13px;
  }


  /* FOOTER */

  .site-footer {
    padding-top: 60px;
  }

  .footer-top {
    display: block;

    padding-bottom: 55px;
  }

  .footer-brand {
    font-size: clamp(45px, 16vw, 75px);
  }

  .footer-description {
    margin-top: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;

    gap: 45px 25px;

    padding: 45px 0;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 15px 22px;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  :root {
    --page-padding: 14px;
  }

  .hero-title h1 {
    font-size: 47px;
  }

  .types-introduction h2,
  .process-heading h2,
  .context-heading h2,
  .quality-heading h2,
  .cta-content h2 {
    font-size: 42px;
  }

  .collection-row {
    grid-template-columns: 27px minmax(0, 1fr) 20px;
  }

  .row-content h3 {
    font-size: 32px;
  }

  .row-content p {
    font-size: 10px;
  }

  .visual-space {
    min-height: 115vw;
  }

  .footer-links {
    gap: 40px 18px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}