:root {
  --ink: #1d1f22;
  --muted: #5f6368;
  --paper: #eef0f2;
  --paper-1: #f7f8f9;
  --paper-2: #e6e9ec;
  --paper-3: #d9dee3;
  --paper-4: #cfd5da;
  --charcoal: #25292d;
  --graphite: #343a40;
  --slate: #4f5a64;
  --accent: #8b2e34;
  --gold: #b79a63;
  --line: rgba(29, 31, 34, 0.15);
  --white: #fbfbfa;
  --shadow: 0 22px 56px rgba(29, 31, 34, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
}

.cursor-dot,
.cursor-ring {
  border-radius: 50%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 90ms ease, width 110ms ease, height 110ms ease, border-color 110ms ease;
  z-index: 1000;
}

.cursor-dot {
  background: var(--ink);
  height: 5px;
  width: 5px;
}

.cursor-ring {
  border: 1px solid rgba(79, 90, 100, 0.72);
  height: 24px;
  width: 24px;
}

.has-custom-cursor.cursor-ready .cursor-dot,
.has-custom-cursor.cursor-ready .cursor-ring {
  opacity: 1;
}

.has-custom-cursor.cursor-active .cursor-ring {
  border-color: rgba(139, 46, 52, 0.76);
  height: 34px;
  width: 34px;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(238, 240, 242, 0.9);
  border-bottom: 1px solid rgba(29, 31, 34, 0.12);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand-cluster {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.brand span {
  color: var(--accent);
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0;
}

nav {
  align-items: flex-end;
  background: rgba(207, 213, 218, 0.52);
  border: 1px solid rgba(29, 31, 34, 0.13);
  border-bottom-color: rgba(29, 31, 34, 0.28);
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-end;
  padding: 0.28rem 0.28rem 0;
  position: relative;
}

nav::after {
  background: linear-gradient(90deg, transparent, rgba(29, 31, 34, 0.28), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0.5rem;
  position: absolute;
  right: 0.5rem;
}

nav a {
  background: rgba(247, 248, 249, 0.74);
  border: 1px solid rgba(29, 31, 34, 0.14);
  border-bottom-color: rgba(29, 31, 34, 0.24);
  border-radius: 9px 9px 0 0;
  box-shadow: none;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  margin-left: -1px;
  min-height: 37px;
  min-width: 86px;
  padding: 0.66rem 1rem 0.58rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
  z-index: 1;
}

nav a::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 0.9rem;
  opacity: 0;
  position: absolute;
  right: 0.9rem;
  top: 0.28rem;
  transform: scaleX(0.45);
  transition: opacity 120ms ease, transform 120ms ease;
}

nav a:hover,
nav a.is-active {
  background: var(--white);
  border-color: rgba(79, 90, 100, 0.34);
  color: var(--ink);
  transform: translateY(-3px);
  z-index: 2;
}

nav a:hover::before,
nav a.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

nav a.is-active {
  font-weight: 700;
}

.flag-pair {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  gap: 0.45rem;
  padding-left: 1rem;
}

.flag {
  border: 1px solid rgba(29, 31, 34, 0.18);
  box-shadow: 0 4px 14px rgba(29, 31, 34, 0.1);
  display: inline-block;
  height: 16px;
  overflow: hidden;
  width: 24px;
}

.flag-colombia {
  background: linear-gradient(to bottom, #fcd116 0 33.333%, #003893 33.333% 66.666%, #ce1126 66.666% 100%);
}

.flag-spain {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.hero {
  background: var(--paper-3);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  min-height: calc(100vh - 74px);
}

.hero-media {
  align-items: center;
  background:
    linear-gradient(rgba(37, 41, 45, 0.2), rgba(37, 41, 45, 0.42)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1200&q=80") center / cover;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 5vw;
}

.portrait-mark {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(247, 248, 249, 0.56);
  border: 10px solid rgba(247, 248, 249, 0.72);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  max-width: 320px;
  overflow: hidden;
  padding: 0.35rem;
  width: 68%;
  animation: portraitIn 900ms var(--ease) both;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.portrait-mark:hover {
  border-color: rgba(251, 251, 250, 0.94);
  box-shadow: 0 30px 78px rgba(29, 31, 34, 0.22);
  transform: translateY(-3px);
}

.portrait-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  width: 100%;
}

.hero-copy {
  align-self: center;
  padding: 8vw 7vw;
  animation: copyIn 780ms var(--ease) 120ms both;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.4vw, 6.9rem);
  font-weight: 600;
  line-height: 0.96;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 1.02rem;
  line-height: 1.68;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  border: 1px solid var(--ink);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  justify-content: center;
  min-width: 168px;
  padding: 0.95rem 1.2rem;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
}

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

.button.primary:hover {
  background: var(--graphite);
  border-color: var(--graphite);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.intro-band {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-band article {
  border-right: 1px solid rgba(251, 251, 250, 0.16);
  padding: 2rem 5vw;
}

.intro-band span {
  color: #d1c3a2;
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.intro-band p {
  color: rgba(251, 251, 250, 0.74);
  margin-bottom: 0;
}

.section {
  padding: 5.5rem 5vw;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: calc(var(--reveal-index, 0) * 50ms);
}

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

.section {
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(29, 31, 34, 0.18), transparent);
  content: "";
  height: 1px;
  left: 7vw;
  position: absolute;
  right: 7vw;
  top: 0;
}

.profile {
  background: var(--paper-1);
}

.profile-grid,
.archive {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.8fr);
}

.profile p {
  font-size: 1.08rem;
  max-width: 850px;
}

.highlight-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-list li {
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-family: var(--font-main);
  line-height: 1.55;
  padding: 1.1rem 0;
}

.recognitions {
  background: var(--graphite);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 0.55fr) minmax(320px, 1.45fr);
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.recognitions .section-kicker {
  color: #d1c3a2;
}

.recognitions h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  margin-bottom: 0;
}

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

.recognition-card {
  align-items: center;
  background: rgba(251, 251, 250, 0.07);
  border: 1px solid rgba(251, 251, 250, 0.16);
  display: grid;
  gap: 1rem;
  grid-template-columns: 84px 1fr;
  min-height: 150px;
  padding: 1.15rem;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.recognition-card:hover {
  background: rgba(251, 251, 250, 0.11);
  border-color: rgba(209, 195, 162, 0.48);
  transform: translateY(-3px);
}

.recognition-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.recognition-card p {
  color: rgba(251, 251, 250, 0.76);
  font-size: 0.96rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.recognition-symbol {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(251, 251, 250, 0.1);
  border: 1px solid rgba(251, 251, 250, 0.2);
  display: flex;
  justify-content: center;
  position: relative;
}

.recognition-symbol-medal span {
  background: #d1c3a2;
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(52, 58, 64, 0.22);
  height: 44px;
  position: relative;
  width: 44px;
}

.recognition-symbol-medal span::before {
  background: linear-gradient(90deg, #8b2e34 0 40%, #e6e9ec 40% 60%, #4f5a64 60% 100%);
  content: "";
  height: 30px;
  left: 12px;
  position: absolute;
  top: -30px;
  width: 20px;
}

.recognition-symbol-medal span::after {
  background: var(--graphite);
  border-radius: 999px 999px 60% 60%;
  content: "";
  height: 18px;
  left: 18px;
  position: absolute;
  top: 13px;
  width: 8px;
}

.recognition-symbol-cross span {
  height: 54px;
  position: relative;
  width: 54px;
}

.recognition-symbol-cross span::before,
.recognition-symbol-cross span::after {
  background: var(--accent);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.recognition-symbol-cross span::before {
  height: 54px;
  width: 14px;
}

.recognition-symbol-cross span::after {
  height: 14px;
  width: 54px;
}

.legacy {
  background: var(--paper-2);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 860px;
}

.legacy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.legacy-card {
  background: rgba(251, 251, 250, 0.68);
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 1.5rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.legacy-card:hover,
.book-card:hover,
.archive-item:hover {
  border-color: rgba(79, 90, 100, 0.34);
  box-shadow: 0 18px 38px rgba(29, 31, 34, 0.1);
  transform: translateY(-3px);
}

.legacy-card .label,
.book-card .year {
  color: var(--slate);
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}

.books {
  background: var(--paper-4);
}

.book-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.book-card {
  background: rgba(251, 251, 250, 0.76);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.book-cover {
  aspect-ratio: 3 / 4.25;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  display: grid;
  overflow: hidden;
  place-items: stretch;
}

.book-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cover-placeholder {
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(251, 251, 250, 0.08), transparent 42%),
    linear-gradient(180deg, #3a4046, #202327);
  color: var(--white);
  display: grid;
  min-height: 100%;
  padding: 1.2rem;
}

.cover-placeholder span {
  color: #d1c3a2;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.cover-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
}

.book-copy {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
}

.book-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0;
}

.book-card p {
  margin-bottom: 0;
}

.synopsis-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  justify-content: center;
  justify-self: start;
  min-width: 118px;
  padding: 0.6rem 0.85rem;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.synopsis-toggle:hover,
.synopsis-toggle[aria-expanded="true"] {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.synopsis-panel {
  border-left: 3px solid var(--accent);
  margin-top: 0.2rem;
  padding-left: 0.9rem;
}

.synopsis-panel[hidden] {
  display: none;
}

.archive {
  background:
    linear-gradient(90deg, rgba(217, 222, 227, 0.96) 0%, rgba(217, 222, 227, 0.84) 48%, rgba(217, 222, 227, 0.58) 100%),
    url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1400&q=80") center / cover;
  background-color: var(--paper-3);
}

.archive-list {
  display: grid;
  gap: 1rem;
}

.archive-item {
  background: rgba(251, 251, 250, 0.86);
  border: 1px solid rgba(29, 31, 34, 0.1);
  border-left: 5px solid var(--slate);
  padding: 1.25rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.archive-item span {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.archive-entry-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.archive-entry-list em {
  color: var(--muted);
  font-style: italic;
}

.archive-entry {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(29, 31, 34, 0.1);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 92px 1fr;
  padding: 0.85rem;
}

.archive-entry.archive-entry-no-image,
.archive-entry.image-failed {
  grid-template-columns: 1fr;
}

.archive-entry img {
  aspect-ratio: 1;
  background: var(--paper-4);
  height: 92px;
  object-fit: cover;
  width: 92px;
}

.archive-entry h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.archive-entry p {
  font-size: 0.96rem;
  margin-bottom: 0.35rem;
}

.entry-type {
  color: var(--accent);
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.entry-link {
  color: var(--accent);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 0.35rem;
  text-decoration: none;
}

.archive-entry audio {
  margin-top: 0.4rem;
  max-width: 100%;
  width: 100%;
}

.contact {
  background: var(--paper-2);
  padding-bottom: 5rem;
}

.contact-panel {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1080px;
  padding: 4rem;
}

.contact-panel h2 {
  max-width: 720px;
}

.contact-panel p,
.contact-panel small {
  color: rgba(251, 251, 250, 0.76);
  font-family: var(--font-main);
}

.email-link {
  color: #d1c3a2;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 120ms ease;
}

.email-link:hover {
  color: var(--white);
}

.site-footer {
  align-items: start;
  background: var(--paper-1);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr auto;
  padding: 3rem 5vw;
}

.source-links {
  display: grid;
  gap: 0.6rem;
}

.source-links a,
.site-footer > a {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 0.94rem;
  transition: color 120ms ease;
}

.source-links a:hover,
.site-footer > a:hover {
  color: var(--accent);
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recognitions,
  .recognition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem 5vw 0.8rem;
    position: static;
  }

  .brand-cluster {
    justify-content: space-between;
    width: 100%;
  }

  nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.2rem 0.2rem 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    width: 100%;
  }

  nav a {
    flex: 0 0 auto;
    font-size: 0.82rem;
    min-height: 32px;
    min-width: 82px;
    padding: 0.5rem 0.65rem 0.46rem;
    white-space: nowrap;
  }

  nav a:hover,
  nav a.is-active {
    transform: translateY(-2px);
  }

  .brand-cluster {
    gap: 0.65rem;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .flag-pair {
    gap: 0.32rem;
    padding-left: 0.7rem;
  }

  .flag {
    height: 13px;
    width: 20px;
  }

  .hero,
  .profile-grid,
  .archive,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 285px;
    padding: 2rem 6vw;
  }

  .portrait-mark {
    border-width: 7px;
    max-width: 235px;
    width: 64%;
  }

  .hero-copy {
    padding: 2.25rem 7vw 3rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.55rem);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 1.45rem;
  }

  .button {
    min-width: 142px;
    padding: 0.82rem 1rem;
  }

  .intro-band,
  .legacy-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .intro-band article {
    border-bottom: 1px solid rgba(251, 251, 250, 0.16);
    border-right: 0;
  }

  .section {
    padding: 4rem 6vw;
  }

  .recognitions {
    gap: 1.5rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .recognition-card {
    grid-template-columns: 72px 1fr;
    min-height: 0;
  }

  .archive-entry {
    grid-template-columns: 1fr;
  }

  .archive-entry img {
    height: auto;
    max-height: 220px;
    width: 100%;
  }

  .contact-panel {
    padding: 2rem;
  }
}

@media (hover: none), (pointer: coarse) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

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

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

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto;
  }
}
