:root {
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.003 230);
  --ink: oklch(0.12 0.008 230);
  --muted: oklch(0.43 0.012 230);
  --primary: oklch(0.47 0.11 230);
  --accent: oklch(0.88 0.09 78);
  --dark: oklch(0.075 0 0);
  --on-dark: oklch(0.97 0 0);
  --line: oklch(0.87 0.004 230);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.15rem, 3.2vw, 3.75rem);
  --section-space: clamp(6rem, 12vw, 11rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  min-width: 20rem;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 50;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: calc(5rem + env(safe-area-inset-top));
  border-bottom: 1px solid transparent;
  padding: max(1.65rem, env(safe-area-inset-top)) var(--gutter) 1.65rem;
  mix-blend-mode: difference;
  color: white;
  transition: background-color 280ms ease, border-color 280ms ease, color 280ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  color: var(--ink);
  background: var(--bg);
  mix-blend-mode: normal;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.nav-links {
  position: absolute;
  right: calc(43vw + var(--gutter));
  display: flex;
  gap: clamp(1rem, 2.7vw, 2.75rem);
  font-size: 0.77rem;
  font-weight: 600;
}

.nav-links a,
.site-footer a,
.text-link {
  position: relative;
}

.nav-links a::after,
.site-footer a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.nav-links a:hover::after,
.site-footer a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.lang-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  opacity: 0.5;
}

.lang-button.is-active {
  opacity: 1;
}

.mobile-language {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--surface);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--gutter);
  width: min(55rem, 60vw);
  transform: translateY(-45%);
}

.hero-location,
.section-note,
.scroll-note {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.2rem 0 1.5rem;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(2rem, 9vw, 9rem);
}

.hero-intro {
  max-width: 35rem;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1vw + 0.6rem, 1.4rem);
  line-height: 1.4;
  text-wrap: pretty;
}

.text-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-images {
  position: absolute;
  inset: 0;
}

.hero-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--line);
  animation: image-reveal 1.15s var(--ease-out) both;
}

.hero-frame-main {
  top: 0;
  right: 0;
  width: 43vw;
  height: 78svh;
}

.hero-frame-detail {
  right: 18vw;
  bottom: 0;
  width: 31vw;
  height: 31svh;
  animation-delay: 160ms;
}

.hero-frame-detail img {
  object-position: 55% 46%;
}

.scroll-note {
  position: absolute;
  bottom: 1.75rem;
  left: var(--gutter);
  color: var(--muted);
  writing-mode: horizontal-tb;
  transform: none;
}

@keyframes image-reveal {
  from {
    clip-path: inset(0 0 100% 0);
    transform: scale(1.035);
  }
  to {
    clip-path: inset(0);
    transform: scale(1);
  }
}

.statement {
  display: grid;
  grid-template-columns: 3fr 8fr 1fr;
  gap: 2rem;
  padding: var(--section-space) var(--gutter);
}

.statement .section-note {
  padding-top: 0.7rem;
  color: var(--muted);
}

.statement h2 {
  grid-column: 2;
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.portfolio {
  padding: 0 var(--gutter) var(--section-space);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--ink);
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  font-weight: 500;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.6rem, 1vw, 1rem);
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 0 solid white;
  content: "";
  transition: border-width 450ms var(--ease-out);
  pointer-events: none;
}

.gallery-item:hover::after {
  border-width: 0.65rem;
}

.gallery-item img {
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-tall {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.gallery-wide {
  grid-column: span 7;
  align-self: end;
  aspect-ratio: 7 / 5;
}

.gallery-standard {
  grid-column: span 6;
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(7) {
  margin-top: clamp(3rem, 8vw, 9rem);
}

.gallery-item:nth-child(6) {
  align-self: center;
}

.reveal {
  clip-path: inset(0);
  transform: translateY(0);
  transition: clip-path 900ms var(--ease-out), transform 900ms var(--ease-out);
}

.reveal.is-pending {
  clip-path: inset(0 0 12% 0);
  transform: translateY(2.5rem);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 90svh;
  background: var(--dark);
  color: var(--on-dark);
}

.about-portrait {
  min-height: 75svh;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.about-copy .section-note {
  color: oklch(0.72 0.02 230);
}

.about-copy h2 {
  max-width: 15ch;
  margin: 1.5rem 0 2rem;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.about-copy > p:not(.section-note) {
  max-width: 43rem;
  margin: 0;
  color: oklch(0.82 0.008 230);
  text-wrap: pretty;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: clamp(3rem, 8vw, 7rem) 0 0;
}

.experience div {
  padding-top: 1rem;
  border-top: 1px solid oklch(0.35 0.006 230);
}

.experience dt {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.experience dd {
  margin: 0;
  color: oklch(0.7 0.008 230);
  font-size: 0.78rem;
  line-height: 1.4;
}

.contact {
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--section-space) var(--gutter);
  background: var(--primary);
  color: white;
}

.contact h2 {
  max-width: 14ch;
  margin: 1.25rem 0 2.5rem;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
}

.email-link {
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  font-size: clamp(1.05rem, 2.4vw, 2.25rem);
  overflow-wrap: anywhere;
  transition: opacity 250ms ease;
}

.email-link:hover {
  opacity: 0.68;
}

.contact-meta {
  display: flex;
  gap: 3rem;
  margin-top: clamp(4rem, 10vw, 8rem);
  font-size: 0.8rem;
}

.contact-meta p {
  margin: 0;
}

.social-link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem var(--gutter) max(1.25rem, env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.services-page {
  background: var(--surface);
}

.services-page .site-header {
  mix-blend-mode: normal;
}

.services-nav {
  position: static;
  justify-self: center;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  min-height: 100svh;
  padding: calc(8rem + env(safe-area-inset-top)) var(--gutter) var(--gutter);
  background: var(--surface);
}

.services-hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 50rem;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 7rem) clamp(3rem, 7vw, 7rem) 0;
}

.services-hero h1 {
  max-width: 12ch;
  margin: 1.25rem 0 2rem;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
}

.services-hero-copy > p:not(.hero-location) {
  width: 100%;
  max-width: 38rem;
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.45;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.services-hero-image {
  min-height: calc(100svh - 2 * var(--gutter) - 8rem);
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.services-hero-image img {
  object-position: 50% 42%;
  animation: image-reveal 1.1s var(--ease-out) both;
}

.services-intro {
  display: grid;
  grid-template-columns: 3fr 8fr 1fr;
  gap: 2rem;
  padding: var(--section-space) var(--gutter);
  background: var(--bg);
}

.services-intro .section-note {
  padding-top: 0.7rem;
  color: var(--muted);
}

.services-intro h2 {
  grid-column: 2;
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.3vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.service-list {
  background: var(--bg);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  min-height: 85svh;
  border-top: 1px solid var(--line);
}

.service-row-reverse {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.service-row-reverse .service-copy {
  grid-column: 2;
}

.service-row-reverse .service-image {
  grid-column: 1;
  grid-row: 1;
}

.service-copy {
  padding: clamp(3rem, 7vw, 8rem);
}

.service-index {
  margin: 0 0 1.4rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-copy h2 {
  margin: 0 0 1.6rem;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.service-copy > p:not(.service-index) {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  text-wrap: pretty;
}

.service-copy ul {
  max-width: 38rem;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-copy li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.service-image {
  align-self: stretch;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.service-image-portrait img {
  object-position: 50% 35%;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: var(--section-space) var(--gutter);
  color: var(--on-dark);
  background: var(--dark);
}

.service-process h2 {
  max-width: 13ch;
  margin: 1.25rem 0 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.service-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process li {
  display: grid;
  grid-template-columns: 3rem 9rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid oklch(0.35 0.006 230);
}

.service-process li:last-child {
  border-bottom: 1px solid oklch(0.35 0.006 230);
}

.service-process span,
.service-process strong {
  font-size: 0.85rem;
}

.service-process p {
  max-width: 35rem;
  margin: 0;
  color: oklch(0.76 0.008 230);
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  color: white;
  background: oklch(0.04 0 0 / 0.96);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: minmax(3.5rem, 1fr) minmax(0, 12fr) minmax(3.5rem, 1fr);
  align-items: center;
}

.lightbox::backdrop {
  background: oklch(0.04 0 0 / 0.82);
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 3.5rem 0 1.5rem;
}

.lightbox figure img {
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.7rem;
  color: oklch(0.72 0 0);
  font-size: 0.72rem;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  font-weight: 300;
}

.lightbox-nav {
  height: 100%;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.lightbox-nav:hover {
  opacity: 1;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(3.5rem, 6.3vw, 4.5rem);
  }

  .hero h1 span:last-child {
    margin-left: clamp(2rem, 5vw, 4rem);
  }
}

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

  .language-switch {
    display: none;
  }

  .mobile-language {
    position: fixed;
    z-index: 21;
    top: max(1rem, env(safe-area-inset-top));
    right: var(--gutter);
    display: inline-grid;
    min-width: 2.75rem;
    min-height: 2.75rem;
    place-items: center;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: max(46rem, 105svh);
  }

  .hero-copy {
    top: 15svh;
    width: calc(100% - 2 * var(--gutter));
    transform: none;
  }

  .hero h1 span:last-child {
    margin-left: 0;
  }

  .hero-intro {
    max-width: 28rem;
  }

  .hero-frame-main {
    top: auto;
    right: 0;
    bottom: 0;
    width: min(76vw, 38rem);
    height: 60svh;
  }

  .hero-frame-detail {
    right: auto;
    bottom: 9svh;
    left: 0;
    width: 39vw;
    height: 28svh;
  }

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

  .statement h2 {
    grid-column: 1;
  }

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

  .about-portrait {
    min-height: 70svh;
  }

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

  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(7rem + env(safe-area-inset-top));
  }

  .services-hero-copy {
    padding: 4rem 0 5rem;
  }

  .services-hero-image {
    min-height: 70svh;
  }

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

  .services-intro h2 {
    grid-column: 1;
  }

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row-reverse .service-copy,
  .service-row-reverse .service-image {
    grid-column: 1;
  }

  .service-row-reverse .service-copy {
    grid-row: 1;
  }

  .service-row-reverse .service-image {
    grid-row: 2;
  }

  .service-image {
    min-height: 65svh;
  }

  .service-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.5rem);
    --section-space: clamp(4.5rem, 20vw, 7rem);
  }

  .site-header {
    min-height: calc(4.5rem + env(safe-area-inset-top));
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: 1rem;
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .wordmark {
    font-size: 0.68rem;
  }

  .language-switch {
    min-height: 2.75rem;
    gap: 0.2rem;
  }

  .lang-button {
    display: inline-grid;
    min-width: 2.25rem;
    min-height: 2.75rem;
    place-items: center;
    margin: 0;
    opacity: 1;
  }

  .hero {
    min-height: max(43rem, 100svh);
  }

  .hero-copy {
    top: calc(6rem + env(safe-area-inset-top));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11.8vw, 3.4rem);
    line-height: 0.9;
  }

  .hero-intro {
    max-width: 85%;
    font-size: 1rem;
  }

  .scroll-note {
    display: none;
  }

  .statement h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-item,
  .gallery-tall,
  .gallery-wide,
  .gallery-standard {
    grid-column: 1;
    margin-top: 0 !important;
  }

  .gallery-wide {
    aspect-ratio: 5 / 4;
  }

  .about-copy {
    padding: 4rem var(--gutter) 5rem;
  }

  .about-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .contact-meta {
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-footer {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .lightbox[open] {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  }

  .lightbox figure {
    padding: calc(4rem + env(safe-area-inset-top)) 0 max(1rem, env(safe-area-inset-bottom));
  }

  .lightbox-close {
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    width: 2.75rem;
    height: 2.75rem;
  }

  .lightbox-nav {
    min-width: 2.75rem;
  }
}

@media (max-width: 420px) {
  .hero-intro {
    max-width: 100%;
  }

  .hero-frame-main {
    width: 88vw;
  }

  .hero-frame-detail {
    width: 46vw;
  }

  .contact h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .services-hero {
    padding-right: 0;
    padding-left: 0;
  }

  .services-hero-copy {
    width: 100%;
    padding: 3rem var(--gutter) 4rem;
  }

  .services-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .services-hero-image {
    min-height: 72svh;
  }

  .services-intro {
    gap: 1.5rem;
  }

  .services-intro h2,
  .service-copy h2,
  .service-process h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .service-copy {
    padding: 4.5rem var(--gutter);
  }

  .service-image {
    min-height: 62svh;
  }

  .service-process li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem 1rem;
  }

  .service-process p {
    grid-column: 2;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 42rem;
  }

  .hero-copy {
    top: 6rem;
  }

  .hero-frame-main {
    height: 32rem;
  }
}

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

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

  .reveal,
  .reveal.is-pending {
    clip-path: none;
    transform: none;
  }
}
