:root {
  color-scheme: dark;
  --ink: #0b0908;
  --ink-soft: #12100e;
  --espresso: #1a130f;
  --panel: #15110e;
  --paper: #eee8df;
  --muted: #aaa097;
  --bronze: #b78959;
  --bronze-pale: #d4b18a;
  --line: rgba(238, 232, 223, 0.13);
  --line-strong: rgba(183, 137, 89, 0.35);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 10%, rgba(111, 72, 43, 0.13), transparent 28rem),
    radial-gradient(circle at 10% 42%, rgba(78, 48, 29, 0.08), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 20;
  width: var(--shell);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wordmark-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--bronze-pale);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.wordmark-text {
  display: grid;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.025em;
}

.wordmark-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  color: #c9c1b9;
  font-size: 13px;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-contact {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  width: var(--shell);
  min-height: calc(100svh - 92px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 118px) 0 clamp(84px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(56px, 8vw, 122px);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bronze-pale);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--bronze);
}

.hero h1,
.section-intro h2,
.showreel-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(72px, 7.7vw, 120px);
}

.hero h1 span {
  display: block;
  margin: 0 0 0.2em 0.04em;
  color: var(--bronze-pale);
  font-family: var(--sans);
  font-size: 0.13em;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: #c6beb6;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 17px;
  fill: currentColor;
}

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

.button-primary {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #100b08;
}

.button-primary:hover {
  background: #c69a6d;
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.button-quiet:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.audio-player-main {
  width: min(100%, 630px);
  margin-top: 46px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.audio-play {
  width: 54px;
  height: 54px;
  padding: 0;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.audio-play:hover,
.audio-play:focus-visible {
  border-color: var(--bronze-pale);
  background: rgba(183, 137, 89, 0.1);
}

.audio-play svg {
  width: 20px;
  fill: currentColor;
}

.icon-pause,
.is-playing .icon-play {
  display: none;
}

.is-playing .icon-pause {
  display: block;
}

.audio-meta {
  min-width: 0;
}

.audio-title-row {
  margin-bottom: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.audio-kicker,
.audio-title-row strong {
  display: block;
}

.audio-kicker {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audio-title-row strong {
  font-size: 15px;
  font-weight: 500;
}

.audio-time {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.waveform {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  opacity: 0.75;
  pointer-events: none;
}

.waveform i {
  width: 2px;
  height: var(--h);
  flex: 1 1 auto;
  border-radius: 2px;
  background: #82786f;
}

.audio-progress {
  width: 100%;
  height: 16px;
  margin: -3px 0 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.audio-progress::-webkit-slider-runnable-track {
  height: 1px;
  background: linear-gradient(to right, var(--bronze) var(--progress, 0%), var(--line) var(--progress, 0%));
}

.audio-progress::-moz-range-track {
  height: 1px;
  background: var(--line);
}

.audio-progress::-moz-range-progress {
  height: 1px;
  background: var(--bronze);
}

.audio-progress::-webkit-slider-thumb {
  width: 8px;
  height: 8px;
  margin-top: -3.5px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--bronze-pale);
}

.audio-progress::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--bronze-pale);
}

.hero-visual {
  width: min(100%, 650px);
  justify-self: end;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(212, 177, 138, 0.24);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48), 0 0 0 9px rgba(255, 255, 255, 0.018);
}

.video-frame::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  pointer-events: none;
  content: "";
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03) brightness(0.9);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.video-frame:not(.is-video-playing):hover video {
  transform: scale(1.018);
}

.video-frame.is-video-playing .video-shade {
  opacity: 0;
}

.video-shade {
  transition: opacity 220ms ease;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 6, 5, 0.08), transparent 42%, rgba(8, 6, 5, 0.12));
}

.video-play {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  width: 68px;
  height: 68px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 232, 223, 0.58);
  border-radius: 50%;
  background: rgba(11, 9, 8, 0.46);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.video-play:hover,
.video-play:focus-visible {
  transform: scale(1.05);
  background: rgba(183, 137, 89, 0.38);
}

.video-play svg {
  width: 25px;
  fill: currentColor;
}

.visual-note {
  margin: 22px 4px 0;
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.visual-note span {
  color: var(--bronze);
}

.trust-strip {
  padding: 34px max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 34px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.trust-strip > p {
  margin: 0;
  color: #82786f;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #b7aea5;
  font-family: var(--serif);
  font-size: clamp(16px, 1.55vw, 21px);
  white-space: nowrap;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.focus {
  padding-block: clamp(110px, 14vw, 190px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: end;
  column-gap: 80px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.showreel-copy h2 {
  font-size: clamp(56px, 7vw, 102px);
}

.section-intro h2 em,
.showreel-copy h2 em {
  color: var(--bronze-pale);
  font-weight: 400;
}

.section-intro > p:last-child,
.showreel-copy > p {
  margin: 0 0 4px;
  color: #aaa198;
  font-size: 17px;
  line-height: 1.75;
}

.focus-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.focus-card {
  min-height: 265px;
  padding: 26px 28px 32px 0;
  border-right: 1px solid var(--line);
}

.focus-card:not(:first-child) {
  padding-left: 28px;
}

.focus-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.focus-card > span {
  color: var(--bronze);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.focus-card h3 {
  margin: 78px 0 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.focus-card p {
  margin: 0;
  color: #998f86;
  font-size: 14px;
  line-height: 1.65;
}

.showreel {
  padding-block: clamp(108px, 13vw, 178px);
  display: grid;
  grid-template-columns: minmax(310px, 0.64fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.showreel-copy {
  position: sticky;
  top: 70px;
  align-self: start;
}

.showreel-copy > p {
  max-width: 460px;
  margin-top: 32px;
}

.showreel-index {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.showreel-index div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.showreel-index span {
  color: #776e67;
}

.showreel-index strong {
  color: #bdb5ad;
  font-weight: 400;
}

.reel-list {
  display: grid;
  gap: 64px;
}

.reel-card {
  min-width: 0;
}

.reel-art {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #100d0b;
}

.reel-art > span {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: #83786f;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reel-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: rgba(11, 9, 8, 0.52);
  backdrop-filter: blur(7px);
}

.reel-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(183, 137, 89, 0.26);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(183, 137, 89, 0.075),
    0 0 0 51px rgba(183, 137, 89, 0.14),
    0 0 0 100px rgba(183, 137, 89, 0.035),
    0 0 0 101px rgba(183, 137, 89, 0.09),
    0 0 70px rgba(183, 137, 89, 0.13);
}

.reel-art-broadcast::before,
.reel-art-broadcast::after {
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 137, 89, 0.48));
  content: "";
}

.reel-art-broadcast::before {
  left: 0;
}

.reel-art-broadcast::after {
  right: 0;
  transform: rotate(180deg);
}

.reel-art-dry {
  background: linear-gradient(145deg, #15110e, #0c0a09);
}

.dry-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dry-lines i {
  width: 1px;
  height: 30%;
  background: rgba(212, 177, 138, 0.24);
}

.dry-lines i:nth-child(2),
.dry-lines i:nth-child(6) {
  height: 52%;
}

.dry-lines i:nth-child(3),
.dry-lines i:nth-child(5) {
  height: 72%;
}

.dry-lines i:nth-child(4) {
  height: 86%;
  background: rgba(212, 177, 138, 0.42);
}

.reel-info {
  padding-top: 22px;
}

.reel-info > span {
  color: var(--bronze);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.reel-info h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.reel-info > p {
  max-width: 620px;
  margin: 0;
  color: #938a82;
  font-size: 14px;
}

.reel-control {
  margin-top: 22px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.text-play {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #c9c0b8;
  font-size: 11px;
}

.text-play-icon {
  color: var(--bronze-pale);
  font-size: 9px;
}

.contact {
  position: relative;
  padding: clamp(110px, 16vw, 220px) 32px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(118, 75, 43, 0.22), transparent 27rem),
    #0d0a09;
  text-align: center;
}

.contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(183, 137, 89, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(183, 137, 89, 0.025), 0 0 0 111px rgba(183, 137, 89, 0.045);
  pointer-events: none;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin-inline: auto;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  font-size: clamp(64px, 9vw, 128px);
}

.contact-inner > p:not(.eyebrow) {
  margin: 34px auto 0;
  color: #a1988f;
  font-size: 17px;
}

.contact-links {
  width: min(600px, 100%);
  margin: 44px auto 0;
  border-top: 1px solid var(--line);
}

.contact-links a {
  padding: 17px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #cbc3ba;
  font-size: 15px;
  transition: color 180ms ease, padding 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-inline: 10px;
  color: var(--paper);
}

.contact-links span {
  color: var(--bronze);
}

.site-footer {
  width: var(--shell);
  min-height: 130px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #756d66;
  font-size: 11px;
}

.site-footer > a:nth-child(2) {
  color: #9c938b;
}

.site-footer p {
  margin: 0;
  justify-self: end;
}

.footer-wordmark .wordmark-text {
  color: #aaa198;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease var(--delay, 0ms), transform 650ms ease var(--delay, 0ms);
}

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

:focus-visible {
  outline: 1px solid var(--bronze-pale);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 44px, 940px);
  }

  .hero {
    grid-template-columns: minmax(400px, 0.86fr) minmax(0, 1.14fr);
    gap: 48px;
  }

  .brand-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
    white-space: normal;
  }

  .section-intro {
    column-gap: 44px;
  }

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

  .focus-card:nth-child(2) {
    border-right: 0;
  }

  .focus-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .focus-card:nth-child(3) {
    padding-left: 0;
  }

  .showreel {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 74px;
  }

  .nav-links a:not(.nav-contact) {
    display: none;
  }

  .nav-contact {
    padding: 8px 14px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 92px;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero h1 {
    font-size: clamp(70px, 20vw, 102px);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 17px;
  }

  .audio-player-main {
    margin-top: 38px;
  }

  .hero-visual {
    width: 100%;
    justify-self: center;
  }

  .trust-strip {
    padding: 30px 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-list {
    grid-template-columns: repeat(2, 1fr);
    font-size: 17px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child {
    max-width: 540px;
    margin-top: 30px;
  }

  .focus-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .focus-card,
  .focus-card:not(:first-child) {
    min-height: auto;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-card:nth-child(n + 3) {
    border-top: 0;
  }

  .focus-card h3 {
    margin-top: 44px;
  }

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

  .showreel-copy {
    position: static;
  }

  .showreel-copy > p {
    max-width: 580px;
  }

  .reel-list {
    gap: 58px;
  }

  .site-footer {
    min-height: 190px;
    padding-block: 36px;
    grid-template-columns: 1fr auto;
    align-content: center;
  }

  .site-footer p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .wordmark-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(63px, 19vw, 88px);
    line-height: 0.87;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .audio-player-main {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .audio-play {
    width: 46px;
    height: 46px;
  }

  .waveform {
    gap: 2px;
  }

  .video-frame {
    border-radius: 18px;
  }

  .video-frame::after {
    border-radius: 11px;
  }

  .visual-note {
    line-height: 1.5;
  }

  .brand-list {
    column-gap: 16px;
    font-size: 15px;
  }

  .section-intro h2,
  .showreel-copy h2 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .reel-art {
    aspect-ratio: 4 / 3;
  }

  .reel-info h3 {
    font-size: 32px;
  }

  .reel-control {
    grid-template-columns: auto 1fr;
  }

  .reel-control .audio-time {
    display: none;
  }

  .contact {
    padding-inline: 18px;
  }

  .contact h2 {
    font-size: clamp(56px, 18vw, 84px);
  }

  .contact-links a {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > a:nth-child(2),
  .site-footer p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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