:root {
  color-scheme: dark;
  --bg: #101112;
  --bg-elevated: #151617;
  --bg-soft: #1b1d1c;
  --panel: rgba(245, 239, 230, 0.04);
  --panel-strong: rgba(245, 239, 230, 0.08);
  --line: rgba(244, 239, 230, 0.14);
  --line-strong: rgba(244, 239, 230, 0.22);
  --text: #f4efe6;
  --text-soft: rgba(244, 239, 230, 0.78);
  --text-dim: rgba(244, 239, 230, 0.62);
  --moss: #6e7f5b;
  --moss-hover: #5c6b4a;
  --amber: #c98c39;
  --stone: #b6ab97;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --gutter: clamp(1rem, 2.8vw, 2rem);
  --section-y: clamp(4.5rem, 8vw, 7.5rem);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: radial-gradient(circle at top, rgba(110, 127, 91, 0.08), transparent 32%), var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 140, 57, 0.06), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(110, 127, 91, 0.12), transparent 26%),
    linear-gradient(180deg, #131415 0%, #101112 46%, #0d0e0f 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(201, 140, 57, 0.32);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #111;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(16, 17, 18, 0.72);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.site-header__inner,
.site-footer__inner,
.section,
.hero {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 4.9rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__mark {
  flex: none;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(110, 127, 91, 0.32), rgba(201, 140, 57, 0.22));
  border: 1px solid rgba(244, 239, 230, 0.12);
  color: var(--text);
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 700;
}

.brand__copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand__copy strong {
  font-size: 0.97rem;
  line-height: 1.1;
}

.brand__copy span {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  flex-wrap: wrap;
  padding: 0.32rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: rgba(245, 239, 230, 0.03);
}

.site-nav a {
  position: relative;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(244, 239, 230, 0.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(244, 239, 230, 0.12);
  color: var(--text);
  background: rgba(245, 239, 230, 0.03);
  border-radius: 999px;
  padding: 0.76rem 1rem;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.92rem;
}

.nav-toggle__icon {
  width: 1.1rem;
  height: 0.85rem;
  position: relative;
  display: inline-block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after,
.nav-toggle__icon {
  background: transparent;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 180ms ease, top 180ms ease, bottom 180ms ease;
}

.nav-toggle__icon::before {
  top: 0.1rem;
}

.nav-toggle__icon::after {
  bottom: 0.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.94rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--moss), #80956a);
  color: #101112;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 34px rgba(110, 127, 91, 0.22);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--moss-hover), var(--moss));
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(244, 239, 230, 0.14);
  box-shadow: none;
}

.button--secondary:hover {
  background: rgba(244, 239, 230, 0.06);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(244, 239, 230, 0.14);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(244, 239, 230, 0.06);
}

.button--compact {
  padding-inline: 1rem;
  white-space: nowrap;
}

.button--full {
  width: 100%;
}

:focus-visible {
  outline: 2px solid rgba(201, 140, 57, 0.95);
  outline-offset: 3px;
}

.hero {
  min-height: calc(100svh - 4.9rem);
  padding: clamp(1.2rem, 2.4vw, 2rem) 0 clamp(3rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.hero__content {
  max-width: 42rem;
  padding: clamp(0.4rem, 1vw, 0.8rem) 0;
}

.eyebrow,
.section__eyebrow,
.gallery__kicker,
.hero__note-label {
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.hero h1,
.section h2,
.case__copy h2,
.testimonials__intro h2,
.contact__copy h2,
.process__intro h2,
.gallery-shell__intro h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.6rem, 10vw, 7.2rem);
  max-width: 9ch;
  margin-top: 0.35rem;
}

.hero__lede,
.lede {
  margin: 1.15rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.72;
  max-width: 44rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.55rem;
}

.hero__facts {
  margin: 1.7rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
}

.hero__facts div {
  min-width: 0;
}

.hero__facts dt {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.hero__facts dd {
  margin: 0.48rem 0 0;
  line-height: 1.35;
  color: var(--text);
}

.hero__visual {
  align-self: stretch;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.hero-image,
.media-block,
.case__media,
.gallery__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 239, 230, 0.1);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.05), rgba(244, 239, 230, 0.02));
  box-shadow: var(--shadow);
}

.hero-image {
  min-height: clamp(31rem, 72vh, 46rem);
}

.hero-image img,
.media-block img,
.case__media img,
.gallery__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: center top;
}

.hero-image::after,
.media-block::after,
.case__media::after,
.gallery__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 18, 0.05) 0%, rgba(16, 17, 18, 0.18) 54%, rgba(16, 17, 18, 0.56) 100%);
  pointer-events: none;
}

.hero-image figcaption,
.gallery__caption,
.case__media figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(16, 17, 18, 0.66);
  border: 1px solid rgba(244, 239, 230, 0.12);
  color: var(--text-soft);
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.hero__note {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.08);
}

.hero__note p {
  margin: 0;
  line-height: 1.55;
  color: var(--text-soft);
}

.section {
  padding: var(--section-y) 0;
}

.section__eyebrow {
  margin-bottom: 1rem;
}

.split,
.proof,
.process,
.case,
.testimonials,
.contact,
.gallery-shell {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.split {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.split__media {
  position: sticky;
  top: 6.6rem;
}

.media-block--story {
  min-height: 42rem;
}

.media-block--story img {
  object-position: center center;
}

.split__content h2,
.proof__copy h2,
.process__intro h2,
.case__copy h2,
.testimonials__intro h2,
.contact__copy h2,
.gallery-shell__intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

.story-copy {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
  max-width: 55rem;
}

.story-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.highlights {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight {
  padding: 1.1rem 1.1rem 1.2rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.04), rgba(244, 239, 230, 0.02));
}

.highlight h3,
.process-list h3,
.case__details h3 {
  margin: 0 0 0.45rem;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.highlight p,
.process-list p,
.case__details p,
.testimonial footer span,
.contact__note,
.site-footer p,
.gallery-meta,
.metrics dd {
  color: var(--text-soft);
  line-height: 1.6;
}

.gallery-shell__intro,
.process__intro,
.testimonials__intro,
.contact__copy,
.case__copy,
.proof__copy {
  max-width: 56rem;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.gallery-meta span {
  padding-left: 0.8rem;
  border-left: 1px solid rgba(244, 239, 230, 0.14);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.gallery__tabs {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.gallery__tab {
  width: 100%;
  text-align: left;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 239, 230, 0.1);
  background: rgba(245, 239, 230, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gallery__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 230, 0.2);
}

.gallery__tab span,
.process-list__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, 0.14);
  color: var(--stone);
  font-family: var(--mono);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.gallery__tab strong,
.gallery__tab em {
  display: block;
}

.gallery__tab strong {
  font-size: 1.06rem;
  margin-bottom: 0.24rem;
}

.gallery__tab em {
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.gallery__tab.is-active {
  border-color: rgba(201, 140, 57, 0.6);
  background: linear-gradient(180deg, rgba(201, 140, 57, 0.12), rgba(245, 239, 230, 0.03));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.gallery__stage {
  min-height: 38rem;
}

.gallery__figure {
  height: 100%;
  min-height: 38rem;
}

.gallery__figure img {
  object-position: center center;
  transition: opacity 180ms ease, transform 280ms ease;
}

.gallery__figure.is-swapping img {
  opacity: 0.3;
  transform: scale(1.02);
}

.gallery__caption {
  display: grid;
  gap: 0.35rem;
}

.gallery__caption h3,
.case__media figcaption,
.testimonial p {
  margin: 0;
}

.gallery__caption h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.gallery__result {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-weight: 600;
}

.proof {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: end;
}

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

.metric {
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 239, 230, 0.1);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.05), rgba(244, 239, 230, 0.025));
}

.metric dt {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.metric dd {
  margin: 0;
}

.process {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.process-list li {
  padding: 1.05rem 1.1rem 1.15rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  background: rgba(244, 239, 230, 0.025);
}

.process-list h3 {
  font-size: 1.1rem;
}

.case {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.case__copy p {
  line-height: 1.75;
}

.case__details {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.case__details > div {
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}

.case__media {
  min-height: 42rem;
}

.case__media img {
  object-position: center center;
}

.case__media figcaption {
  max-width: 30rem;
}

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

.testimonial {
  margin: 0;
  padding: 1.25rem 1.15rem 1.2rem;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.045), rgba(244, 239, 230, 0.02));
}

.testimonial p {
  font-size: 1.03rem;
  line-height: 1.72;
}

.testimonial footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.22rem;
}

.testimonial footer strong {
  font-size: 0.95rem;
}

.contact {
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.92fr);
  align-items: start;
}

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

.contact__meta dt {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--stone);
}

.contact__meta dd {
  margin: 0.45rem 0 0;
}

.contact__note {
  margin-top: 1.25rem;
  max-width: 44rem;
}

.form {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.05), rgba(244, 239, 230, 0.03));
  box-shadow: var(--shadow);
}

.form__row {
  display: grid;
  gap: 0.48rem;
  margin-bottom: 1rem;
}

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

label {
  font-size: 0.92rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: rgba(12, 13, 14, 0.62);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 239, 230, 0.34);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(201, 140, 57, 0.7);
  background: rgba(12, 13, 14, 0.84);
  box-shadow: 0 0 0 4px rgba(201, 140, 57, 0.12);
}

textarea {
  resize: vertical;
  min-height: 9rem;
}

.form__status {
  margin: 0.9rem 0 0;
  min-height: 1.4rem;
  color: var(--text-soft);
}

.form__status.is-success {
  color: #cce3b6;
}

.form__status.is-error {
  color: #ffccbc;
}

.site-footer {
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  padding: 2.2rem 0 2.6rem;
  background: rgba(8, 9, 10, 0.7);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem 2rem;
  align-items: start;
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.site-footer nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: var(--text-soft);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--text);
}

.site-footer__location {
  margin: 0;
  color: var(--text-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1060px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .hero,
  .split,
  .gallery,
  .proof,
  .process,
  .case,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .split__media {
    position: static;
  }

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

  .hero-image,
  .media-block--story,
  .gallery__figure,
  .case__media {
    min-height: 28rem;
  }

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

  .testimonial-rail {
    grid-template-columns: 1fr;
  }

  .contact__meta,
  .highlights,
  .metrics {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --gutter: 1rem;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .brand__copy span {
    max-width: 16ch;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .button--compact {
    display: none;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    padding: 0.45rem;
    margin-top: 0.4rem;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero__facts,
  .form__row--split,
  .gallery__tabs {
    grid-template-columns: 1fr;
  }

  .gallery__stage,
  .gallery__figure,
  .hero-image,
  .media-block--story,
  .case__media {
    min-height: 24rem;
  }

  .hero-image figcaption,
  .gallery__caption,
  .case__media figcaption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.9rem 0.95rem;
  }

  .section {
    padding: 4rem 0;
  }

  .gallery__caption h3 {
    font-size: 1.6rem;
  }

  .split__content h2,
  .proof__copy h2,
  .process__intro h2,
  .case__copy h2,
  .testimonials__intro h2,
  .contact__copy h2,
  .gallery-shell__intro h2 {
    font-size: clamp(1.95rem, 11vw, 2.8rem);
  }
}

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

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

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

  .gallery__figure img {
    transition: none;
  }
}