@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #141714;
  --paper: #f4f1e8;
  --acid: #f3f63c;
  --sage: #849381;
  --line: rgba(20, 23, 20, 0.18);
  --max-width: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

.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;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.25rem var(--gutter);
  transition: background-color 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.8rem;
  background: rgba(244, 241, 232, 0.9);
  box-shadow: 0 1px rgba(20, 23, 20, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.05em;
}

.brand__mark {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-size: 0.8rem;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.72rem 0.85rem 0.72rem 1rem;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 100vh;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(8.5rem, 14vh, 11rem) var(--gutter) var(--gutter);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.35fr);
  align-items: end;
  padding-bottom: clamp(2rem, 5vw, 4.5rem);
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.eyebrow {
  position: absolute;
  top: -1.4rem;
  left: 0.25rem;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.79;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(5.1rem, 12vw, 11.5rem);
}

h1 em,
h2 em {
  font-weight: 400;
}

.hero__intro {
  max-width: 24rem;
  padding-bottom: 0.8rem;
}

.hero__intro p {
  margin-bottom: 2rem;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid;
  font-size: 0.78rem;
  font-weight: 600;
}

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

.text-link:hover span {
  transform: translateY(4px);
}

.hero__visual {
  position: relative;
  width: 100%;
  height: clamp(20rem, 46vw, 41rem);
  margin: 0;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 23, 20, 0.06), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__visual:hover img {
  transform: scale(1.025);
}

.hero__visual figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  right: clamp(2rem, 7vw, 7rem);
  top: 49%;
  z-index: 3;
  width: clamp(6.5rem, 11vw, 10.5rem);
  aspect-ratio: 1;
  padding: 0.45rem;
  border-radius: 50%;
  background: var(--acid);
  transform: translateY(-12%);
}

.hero__stamp svg {
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}

.hero__stamp text {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.25px;
}

.hero__stamp .stamp-sun {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1.4;
  transform-origin: center;
  animation: counter-spin 22s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes counter-spin {
  to { transform: rotate(-360deg); }
}

.section-pad {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(6rem, 11vw, 11rem) var(--gutter);
}

.manifesto {
  padding-top: clamp(7rem, 13vw, 13rem);
}

.manifesto > .section-index {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.manifesto__content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  gap: 4rem;
  align-items: end;
  padding-top: clamp(3rem, 6vw, 6rem);
}

.manifesto__content h2,
.section-heading h2,
.process h2,
.cta h2 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}

.manifesto__content > p {
  max-width: 34rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 2.25rem 0;
}

.stat + .stat {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.stat strong {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.stat small {
  margin: 0.35rem 0 0 0.45rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.stat p {
  margin-bottom: 0;
  color: #4e514d;
  font-size: 0.75rem;
}

.projects {
  padding-top: 3rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.section-heading h2 {
  justify-self: end;
}

.project {
  overflow: hidden;
}

.project__image {
  position: relative;
  height: clamp(22rem, 55vw, 50rem);
  overflow: hidden;
}

.project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project:hover .project__image img {
  transform: scale(1.02);
}

.project__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-size: 0.7rem;
  font-weight: 600;
}

.project__info {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0;
}

.project__info p {
  margin-bottom: 0.6rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.project__info h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.project__info dl {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 0;
}

.project__info dt {
  margin-bottom: 0.35rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.project__info dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.project-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
  margin-top: clamp(5rem, 11vw, 10rem);
}

.metric-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 37rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  background: #d9d8c4;
}

.metric-art::before {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.metric-art__sun {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1.6rem rgba(243, 246, 60, 0.18), 0 0 0 3.2rem rgba(243, 246, 60, 0.08);
}

.metric-art__line {
  position: absolute;
  right: -15%;
  bottom: 27%;
  left: -15%;
  height: 36%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.metric-art strong,
.metric-art small {
  position: relative;
  z-index: 1;
}

.metric-art strong {
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.06em;
}

.metric-art small {
  padding-left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project__arrow {
  font-size: 1.75rem;
}

.project--dark {
  margin-top: clamp(4rem, 8vw, 9rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--paper);
}

.project-dark__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-dark__top > span {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.66rem;
}

.project-dark__top svg {
  width: clamp(5rem, 9vw, 8.5rem);
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.5;
}

.project-dark__energy {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: clamp(16rem, 30vw, 27rem);
  padding-bottom: 3rem;
}

.project-dark__energy span {
  flex: 1;
  height: 20%;
  background: var(--acid);
  transition: height 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-dark__energy span:nth-child(2) { height: 32%; }
.project-dark__energy span:nth-child(3) { height: 47%; }
.project-dark__energy span:nth-child(4) { height: 63%; }
.project-dark__energy span:nth-child(5) { height: 82%; }
.project-dark__energy span:nth-child(6) { height: 100%; }
.project--dark:hover .project-dark__energy span { height: 100%; }

.project--dark .project__info {
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project--dark .project__info strong {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.7;
  text-align: right;
}

.project--dark .project__info small {
  font-family: var(--sans);
  font-size: 0.65rem;
}

.services {
  max-width: none;
  margin-top: 3rem;
  padding-right: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--paper);
}

.section-heading--light {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service {
  position: relative;
  min-height: 25rem;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem) 2.5rem 0;
}

.service + .service {
  padding-left: clamp(1.2rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service > span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service h3 {
  margin: 4rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.service p {
  max-width: 20rem;
  color: rgba(244, 241, 232, 0.65);
  font-size: 0.82rem;
  line-height: 1.7;
}

.service svg {
  position: absolute;
  right: 1.5rem;
  bottom: 2.5rem;
  width: 4rem;
  fill: none;
  stroke: var(--acid);
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(400px, 1fr);
  gap: clamp(4rem, 11vw, 11rem);
}

.process__intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.process__intro .section-index {
  margin-bottom: clamp(3rem, 8vw, 7rem);
}

.process__intro > p:last-child {
  max-width: 23rem;
  margin: 2.5rem 0 0;
  color: #50534f;
  font-size: 0.9rem;
  line-height: 1.7;
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 14rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}

.process__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process__steps li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.65rem;
}

.process__steps h3 {
  margin-bottom: 1.1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.process__steps p {
  max-width: 30rem;
  margin: 0;
  color: #50534f;
  font-size: 0.85rem;
  line-height: 1.7;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88vh;
  padding: 8rem var(--gutter);
  overflow: hidden;
  background: var(--acid);
  text-align: center;
}

.cta__sun {
  position: absolute;
  width: min(72vw, 62rem);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 23, 20, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(20, 23, 20, 0.025), 0 0 0 16vw rgba(20, 23, 20, 0.018);
}

.cta::before,
.cta::after {
  position: absolute;
  z-index: 0;
  background: rgba(20, 23, 20, 0.2);
  content: "";
}

.cta::before { width: 1px; height: 100%; }
.cta::after { width: 100%; height: 1px; }

.cta > *:not(.cta__sun) {
  position: relative;
  z-index: 1;
}

.cta .section-index {
  margin-bottom: 3rem;
}

.cta h2 {
  font-size: clamp(5rem, 12vw, 12rem);
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 21rem);
  margin-top: 4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cta__button:hover {
  background: var(--ink);
  color: var(--acid);
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  padding: 4rem max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter))) 2rem;
  background: var(--ink);
  color: var(--paper);
}

.brand--footer {
  align-self: start;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(7rem, 1fr));
  gap: 1rem 4rem;
  font-size: 0.8rem;
}

.footer__links a:hover {
  color: var(--acid);
}

.footer__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(244, 241, 232, 0.55);
  font-size: 0.65rem;
}

.footer__meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--delay-1 { transition-delay: 110ms; }
.reveal--delay-2 { transition-delay: 220ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  body.menu-open .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: var(--gutter);
    background: var(--acid);
    font-family: var(--display);
    font-size: clamp(3rem, 11vw, 6rem);
    transform: translateX(100%);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.is-open { transform: translateX(0); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 1.2rem; font-family: var(--sans); font-size: 0.8rem; }

  .hero__copy,
  .manifesto__content,
  .section-heading,
  .process {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero__copy { gap: 2.5rem; }
  .hero__intro { justify-self: end; }
  .hero__visual { height: 58vw; min-height: 23rem; }
  .hero__stamp { top: 56%; }
  .manifesto__content { gap: 3rem; }
  .manifesto__content > p { justify-self: end; }
  .section-heading { gap: 3rem; }
  .section-heading h2 { justify-self: end; }
  .project__info dl { display: none; }
  .service-list { grid-template-columns: 1fr; }
  .service { min-height: auto; padding: 2.2rem 0 7rem; }
  .service + .service { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.22); border-left: 0; }
  .service h3 { margin-top: 2.5rem; }
  .process__intro { position: static; }
  .process__steps { margin-left: min(12vw, 7rem); }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(4rem, 18vw, 5.2rem);
    letter-spacing: -0.05em;
  }
  .hero__intro { justify-self: start; max-width: 18rem; }
  .hero__visual { height: 31rem; }
  .hero__visual img { object-position: 60% center; }
  .hero__visual figcaption { flex-direction: column; gap: 0.25rem; }
  .hero__stamp { top: 50%; right: 0.65rem; width: 6.8rem; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .project-grid { grid-template-columns: 1fr; }
  .project--dark { margin-top: 0; }
  .metric-art { min-height: 29rem; }
  .project__info h3 { font-size: 2.1rem; }
  .project--featured .project__info { flex-direction: column; }
  .project__image { height: 26rem; }
  .project__image img { object-position: 58% center; }
  .section-heading h2 { justify-self: start; }
  .process__steps { margin-left: 0; }
  .process__steps li { grid-template-columns: 2.5rem 1fr; gap: 1.2rem; min-height: 12rem; }
  .cta { min-height: 42rem; }
  .cta__sun { width: 92vw; }
  .site-footer { grid-template-columns: 1fr; gap: 3rem; }
  .footer__links { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
