:root {
  --ink: #0d0d0c;
  --charcoal: #141311;
  --charcoal-soft: #1b1916;
  --paper: #f0e8d8;
  --paper-muted: #bdb3a2;
  --gold: #c4a46b;
  --gold-pale: #dcc694;
  --rust: #6f4a31;
  --line: rgba(196, 164, 107, 0.24);
  --line-light: rgba(240, 232, 216, 0.13);
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-pale);
}

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(13, 13, 12, 0.94), rgba(13, 13, 12, 0));
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-light);
  background: rgba(13, 13, 12, 0.93);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.16rem;
  letter-spacing: 0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #d8cfbf;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.72rem;
}

.button-gold {
  color: #16130e;
  background: var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-pale);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fffaf1;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 830px;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 90px;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.98) 0%, rgba(13, 13, 12, 0.84) 47%, rgba(13, 13, 12, 0.4) 100%),
    radial-gradient(circle at 80% 38%, rgba(196, 164, 107, 0.13), transparent 31%),
    linear-gradient(145deg, #211b16 0%, #0e0e0d 58%, #1b1612 100%);
}

.hero-atmosphere::after {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), rgba(255, 255, 255, 0.07) 20%);
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 6.5vw, 6.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hero h1 em {
  color: var(--gold-pale);
  font-weight: 400;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 38px;
  color: #c8c0b3;
  font-size: clamp(1.05rem, 1.45vw, 1.23rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.hero-artwork {
  position: relative;
  aspect-ratio: 4 / 5;
  width: min(100%, 470px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(220, 198, 148, 0.36);
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.18) 0%, rgba(10, 9, 8, 0.68) 100%),
    url("image/story-01.jpg") center / cover;
  box-shadow: 30px 32px 80px rgba(0, 0, 0, 0.38);
}

.hero-artwork::before {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(240, 232, 216, 0.18);
  content: "";
}

.hero-artwork::after {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 20%;
  width: 1px;
  background: linear-gradient(transparent, rgba(220, 198, 148, 0.32), transparent);
  content: "";
}

.archive-card {
  position: absolute;
  right: 7%;
  bottom: 18%;
  left: 27%;
  display: flex;
  min-height: 38%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #2b241b;
  background: #cbbd9e;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.archive-number {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.archive-rule {
  height: 1px;
  margin-bottom: 16px;
  background: rgba(43, 36, 27, 0.35);
}

.archive-title {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.archive-meta {
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  bottom: 32px;
  left: max(24px, calc((100vw - 1180px) / 2));
  color: rgba(240, 232, 216, 0.35);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.section {
  padding: clamp(88px, 10vw, 145px) 0;
}

.about-section {
  background: var(--charcoal);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(54px, 10vw, 150px);
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.about-copy {
  padding-top: 46px;
  color: var(--paper-muted);
}

.about-copy .lead {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  line-height: 1.52;
}

.disclosure-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 38px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure-note p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.disclosure-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-icon {
  color: var(--gold);
}

.stories-section {
  background: #100f0e;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading-row > p {
  max-width: 340px;
  margin-bottom: 7px;
  color: var(--paper-muted);
}

.section-heading-row.compact {
  margin-bottom: 44px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.story-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: #131210;
  transition: background-color 220ms ease, transform 220ms ease;
}

.story-card:hover {
  position: relative;
  z-index: 1;
  background: #191713;
  transform: translateY(-4px);
}

.story-image {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  color: rgba(240, 232, 216, 0.56);
  background-color: #2a241e;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-image::before,
.story-image::after {
  position: absolute;
  content: "";
}

.story-image::before {
  inset: 0;
  opacity: 0.9;
  background: linear-gradient(130deg, transparent 18%, rgba(218, 190, 137, 0.11) 18.2%, transparent 18.7%, transparent 70%, rgba(0, 0, 0, 0.38));
}

.story-image::after {
  inset: 12px;
  border: 1px solid rgba(240, 232, 216, 0.12);
}

.story-number {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 12px;
  color: rgba(240, 232, 216, 0.88);
  font-family: var(--serif);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}

.story-content {
  display: flex;
  min-height: 285px;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.story-content h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 400;
  line-height: 1.16;
}

.story-content p {
  margin-bottom: 26px;
  color: var(--paper-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.story-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line-light);
  color: var(--gold-pale);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-link span {
  transition: transform 180ms ease;
}

.story-link:hover span {
  transform: translate(3px, -3px);
}

.themes-section {
  color: #201b15;
  background: #d5c9b2;
}

.themes-section .eyebrow {
  color: #785f35;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(32, 27, 21, 0.3);
  border-left: 1px solid rgba(32, 27, 21, 0.3);
}

.theme-card {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid rgba(32, 27, 21, 0.3);
  border-bottom: 1px solid rgba(32, 27, 21, 0.3);
}

.theme-index {
  display: block;
  margin-bottom: 82px;
  color: #735c3c;
  font-family: var(--serif);
  font-size: 1rem;
}

.theme-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.1;
}

.theme-card p {
  margin-bottom: 0;
  color: #564b3e;
  font-size: 0.92rem;
  line-height: 1.62;
}

.youtube-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0;
  color: var(--paper);
  background: #764225;
}

.youtube-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    radial-gradient(circle at 18% 25%, rgba(240, 232, 216, 0.16), transparent 22%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(240, 232, 216, 0.08) 25%);
  content: "";
}

.youtube-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.youtube-mark {
  display: grid;
  aspect-ratio: 1;
  width: min(100%, 340px);
  place-items: center;
  border: 1px solid rgba(240, 232, 216, 0.34);
  border-radius: 50%;
}

.youtube-mark::before,
.youtube-mark::after {
  position: absolute;
  width: min(24vw, 340px);
  height: min(24vw, 340px);
  border: 1px solid rgba(240, 232, 216, 0.12);
  border-radius: 50%;
  content: "";
  transform: scale(0.75);
}

.youtube-mark::after {
  transform: scale(0.46);
}

.youtube-mark span {
  width: 0;
  height: 0;
  margin-left: 18px;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 44px solid var(--paper);
}

.youtube-copy {
  max-width: 690px;
}

.youtube-copy .eyebrow {
  color: #f0d8ae;
}

.youtube-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #eadac8;
  font-size: 1.05rem;
}

.social-section {
  background: #11100f;
}

.social-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(50px, 9vw, 130px);
}

.social-links {
  border-top: 1px solid var(--line-light);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 4px;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 1.38rem;
  transition: color 180ms ease, padding 180ms ease;
}

.social-links a:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--gold-pale);
}

.social-links a span:last-child {
  font-family: var(--sans);
  font-size: 1rem;
}

.contact-section {
  border-top: 1px solid var(--line-light);
  background: var(--charcoal-soft);
}

.contact-inner {
  max-width: 900px;
  text-align: center;
}

.contact-inner .eyebrow {
  margin-bottom: 18px;
}

.contact-inner > p:not(.eyebrow) {
  margin: 28px auto 20px;
  color: var(--paper-muted);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.site-footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--line);
  background: #0a0a09;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 45px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-nav a {
  position: relative;
  color: var(--paper-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  color: #817a6e;
  font-size: 0.75rem;
  line-height: 1.65;
}

.footer-bottom p {
  margin-bottom: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.js .story-card.reveal.is-visible:hover,
.js .story-card.reveal.is-visible:focus-within {
  transform: translateY(-4px);
}

@media (max-width: 980px) {
  .js .nav-toggle {
    display: block;
  }

  .site-nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  .js .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px;
    overflow-y: auto;
    background: rgba(13, 13, 12, 0.98);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms ease;
  }

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

  .js .site-nav > a:not(.button) {
    padding: 19px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 1.4rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .js .site-nav .button {
    margin-top: 26px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-artwork {
    aspect-ratio: 16 / 10;
    width: 72%;
    justify-self: end;
    margin-top: -30px;
  }

  .archive-card {
    min-height: 44%;
  }

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

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

  .youtube-inner {
    grid-template-columns: 0.45fr 1fr;
    gap: 60px;
  }

  .youtube-mark::before,
  .youtube-mark::after {
    width: min(30vw, 340px);
    height: min(30vw, 340px);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

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

  .header-inner {
    min-height: 72px;
  }

  .js .site-nav {
    top: 72px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero {
    padding: 118px 0 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-artwork {
    width: 93%;
    margin-top: -8px;
  }

  .archive-card {
    right: 6%;
    bottom: 15%;
    left: 25%;
    min-height: 48%;
    padding: 22px;
  }

  .hero-index {
    display: none;
  }

  .two-column,
  .social-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-copy {
    padding-top: 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
  }

  .story-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    min-height: auto;
  }

  .theme-card {
    min-height: 230px;
  }

  .theme-index {
    margin-bottom: 45px;
  }

  .youtube-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .youtube-mark {
    width: 180px;
  }

  .youtube-mark::before,
  .youtube-mark::after {
    width: 180px;
    height: 180px;
  }

  .youtube-copy .button {
    width: 100%;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    gap: 18px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .archive-card {
    left: 19%;
  }

  .email-link {
    gap: 10px;
    font-size: 1.25rem;
  }
}

@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;
  }

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