:root {
  --ink: #000000;
  --panel: #101012;
  --panel-hover: #17171a;
  --hairline: rgba(245, 245, 247, 0.14);
  --paper: #f5f5f7;
  --mute: #86868b;
  --red: #f5330f;
  --red-deep: #d02a0b;

  --font-ui: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --font-brand: "Saira", "Arial Narrow", sans-serif;

  --radius: 22px;
  --container: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 100% - 2 * var(--pad));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}

.eyebrow__slashes {
  color: var(--red);
  margin-right: 0.45em;
}

.section__title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.section__sub {
  color: var(--mute);
  font-size: 1.08rem;
  max-width: 50ch;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 0.72em 1.5em;
  border-radius: 980px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn--solid {
  background: var(--red);
  color: #fff;
}

.btn--solid:hover { background: var(--red-deep); }

.btn--ghost {
  background: rgba(245, 245, 247, 0.1);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover { background: rgba(245, 245, 247, 0.18); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: var(--hairline);
}

.nav__inner {
  width: min(var(--container), 100% - 2 * var(--pad));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
}

.brand__logo {
  height: 2.6rem;
  width: auto;
  display: block;
}

.brand__logo--footer { height: 2.9rem; }

.brand__slashes {
  color: var(--red);
  font-family: var(--font-brand);
  font-stretch: 125%;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(1px);
}

.brand__stack { display: flex; flex-direction: column; }

.brand__name {
  font-family: var(--font-brand);
  font-stretch: 125%;
  font-weight: 200;
  font-size: 1.18rem;
  letter-spacing: 0.16em;
  line-height: 1.08;
  color: var(--paper);
}

.brand__tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.1rem);
}

.nav__links a:not(.btn) {
  font-size: 0.86rem;
  font-weight: 450;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: rgba(245, 245, 247, 0.78);
  transition: color 0.2s ease;
}

.nav__links a:not(.btn):hover { color: #fff; }

.btn--nav {
  font-size: 0.82rem;
  padding: 0.5em 1.15em;
}

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translateX(7%) translateY(9%) scale(1.3);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 38%, transparent 64%),
    linear-gradient(to top, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.62) 28%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-top: 4.5rem;
  padding-bottom: clamp(2.75rem, 7vh, 5rem);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero__lead {
  color: rgba(245, 245, 247, 0.85);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  max-width: 44ch;
  margin-top: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hairline);
  padding-block: 0.9rem;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--mute);
}

.hero__scroll-line {
  width: 2.6rem;
  height: 1px;
  background: var(--red);
  animation: pulse-line 2.4s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleX(0.4); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.hero__ig {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--mute);
  transition: color 0.2s ease;
}

.hero__ig:hover { color: var(--paper); }

.ppf {
  height: 340vh;
  background: #000;
  padding-block: clamp(3rem, 8vh, 6rem);
}

.ppf__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.5rem, 5vh, 4rem) 0 clamp(2rem, 6vh, 4rem);
}

.ppf__video {
  flex: 0 0 auto;
  width: 100%;
  height: 68svh;
  object-fit: contain;
}

.ppf__copy {
  flex: 0 0 auto;
  width: 100%;
  margin-top: clamp(0.75rem, 2vh, 1.5rem);
  text-align: center;
  padding-inline: var(--pad);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

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

.ppf__sub {
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0.9rem auto 0;
}

.ppf.is-static {
  height: auto;
}
.ppf.is-static .ppf__sticky {
  position: static;
  height: auto;
  padding-block: clamp(1.75rem, 5vh, 3.5rem);
}
.ppf.is-static .ppf__video {
  height: auto;
  max-height: 80svh;
}

@media (max-width: 825px) {
  .ppf { height: auto; }
  .ppf__sticky { position: static; height: auto; }
  .ppf__video { height: auto; max-height: 80svh; }
  .ppf__copy { opacity: 1; transform: none; }
}

.section {
  padding-block: clamp(4.5rem, 10vh, 7.5rem);
}

.section--panel {
  background: #060607;
}

.section__head {
  margin-bottom: clamp(2.25rem, 5vh, 3.5rem);
}

.why__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.why__media {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-rows: clamp(220px, 19vw, 300px);
  gap: 1rem;
}

.why__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  margin: 0;
}

.why__photo--tall { grid-row: span 2; }

.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why__photo:hover img { transform: scale(1.04); }

.why__desc {
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-top: 1rem;
}

.why__points {
  list-style: none;
  margin-top: 1.9rem;
  display: grid;
  gap: 1.25rem;
}

.why__points h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.25rem;
  padding-left: 1.35rem;
  position: relative;
}

.why__points h3::before {
  content: "//";
  position: absolute;
  left: 0;
  font-family: var(--font-brand);
  font-stretch: 125%;
  font-weight: 500;
  font-size: 0.95em;
  color: var(--red);
}

.why__points p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--mute);
  padding-left: 1.35rem;
}

.why__copy .btn { margin-top: 2rem; }

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@property --svc-ov {
  syntax: "<number>";
  inherits: false;
  initial-value: 0.9;
}

.service {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 245, 247, 0.16);
  min-height: clamp(320px, 40vh, 440px);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--panel);
  background-image:
    linear-gradient(to top,
      rgba(0, 0, 0, var(--svc-ov, 0.9)) 0%,
      rgba(0, 0, 0, calc(var(--svc-ov, 0.9) - 0.35)) 48%,
      rgba(0, 0, 0, calc(var(--svc-ov, 0.9) - 0.5)) 100%),
    var(--svc-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, --svc-ov 0.3s ease;
}

.service:nth-child(1) { --svc-img: url("../assets/svc-color.webp"); }
.service:nth-child(2) { --svc-img: url("../assets/svc-ppf.webp"); }
.service:nth-child(3) { --svc-img: url("../assets/svc-tint.webp"); }
.service:nth-child(4) { --svc-img: url("../assets/svc-correction.webp"); }

.service::before {
  content: "//";
  display: block;
  font-family: var(--font-brand);
  font-stretch: 125%;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.service:hover {
  --svc-ov: 0.72;
  transform: translateY(-5px);
  border-color: rgba(245, 51, 15, 0.6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.service__name {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.cover {
  position: relative;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  width: 100%;
}

.cover__stage {
  position: relative;
  height: clamp(440px, 74vh, 700px);
  perspective: 1700px;
  transform-style: preserve-3d;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.cover.is-dragging .cover__stage { cursor: grabbing; }

.cover__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(290px, 32.5vw, 468px);
  height: clamp(400px, 68vh, 640px);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);

  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease,
    filter 0.6s ease;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.cover__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.cover__item.is-active {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.cover__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: var(--paper);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.cover__nav:hover {
  background: var(--red);
  border-color: var(--red);
}

.cover__nav--prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.cover__nav--next { right: clamp(0.75rem, 3vw, 2.5rem); }

.cover__nav svg {
  width: 40%;
  height: 40%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cover__item.is-active { cursor: zoom-in; }

.gallery__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
  text-align: center;
}

.gallery__more-text {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  color: var(--mute);
  letter-spacing: -0.01em;
}

.gallery__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.gallery__ig-icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

body.lightbox-open { overflow: hidden; }

.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.2s ease;
}

.lightbox__img.is-swapping { opacity: 0; }

.lightbox__nav--prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(0.75rem, 3vw, 2.5rem); }

.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 3vh, 2rem);
  right: clamp(0.75rem, 3vw, 2rem);
  z-index: 210;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--paper);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.lightbox__close:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox__close svg {
  width: 40%;
  height: 40%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.lightbox__count {
  position: absolute;
  bottom: clamp(0.75rem, 3vh, 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--mute);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.section--cta {
  background:
    radial-gradient(80rem 36rem at 80% -10%, rgba(245, 51, 15, 0.12), transparent 60%),
    var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__pitch .btn { margin-top: 1.9rem; }

.contact__rows {
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.contact__rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.98rem;
}

.contact__rows a {
  text-decoration: none;
  color: var(--paper);
  transition: color 0.2s ease;
}

.contact__rows a:hover { color: var(--red); }

.contact__label {
  font-size: 0.85rem;
  font-weight: 450;
  color: var(--mute);
}

.footer {
  border-top: 1px solid var(--hairline);
  padding-block: 1.9rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__note {
  font-size: 0.8rem;
  color: var(--mute);
}

.footer__ig {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--mute);
  transition: color 0.2s ease;
}

.footer__ig:hover { color: var(--paper); }

.footer__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.4rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--mute);
  transition: color 0.2s ease;
}

.footer__link:hover { color: var(--paper); }

.cookie {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vh, 2rem);
  transform: translateX(-50%) translateY(160%);
  z-index: 300;
  width: min(680px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(16, 16, 18, 0.92);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cookie[hidden] { display: none; }

.cookie.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie__text {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--mute);
}

.cookie__text a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__text a:hover { color: var(--red); }

.cookie__actions { flex: 0 0 auto; }

.cookie__btn { white-space: nowrap; }

@media (max-width: 560px) {
  .cookie {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
  .cookie__actions { display: flex; }
  .cookie__btn { width: 100%; text-align: center; }
}

.legal {
  padding-block: clamp(6rem, 13vh, 9rem) clamp(4rem, 10vh, 7rem);
}

.legal__head { margin-bottom: clamp(2rem, 5vh, 3rem); }

.legal__meta {
  color: var(--mute);
  font-size: 0.9rem;
  margin-top: 0.85rem;
}

.legal__body { max-width: 64ch; }

.legal__body h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.018em;
  margin-top: 2.75rem;
  margin-bottom: 0.8rem;
}

.legal__body h2::before {
  content: "// ";
  color: var(--red);
  font-family: var(--font-brand);
  font-stretch: 125%;
  font-weight: 500;
}

.legal__body h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--paper);
}

.legal__body p,
.legal__body li {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal__body p { margin-bottom: 1rem; }

.legal__body ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.legal__body li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
}

.legal__body li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--red);
}

.legal__body a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__body a:hover { color: var(--red); }

.legal__body strong { color: var(--paper); font-weight: 600; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 920px) {
  .why__grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; grid-auto-rows: clamp(240px, 52vw, 420px); }
}

@media (max-width: 680px) {
  .services { grid-template-columns: 1fr; }

  .hero__video { transform: none; }

  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav__links a:not(.btn) { font-size: 1.2rem; }

  body.nav-open .nav__links {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open { overflow: hidden; }

  body.nav-open .nav__burger span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  body.nav-open .nav__burger span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }
}

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

  .hero__scroll-line { animation: none; }

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

  .showcase__item img,
  .service {
    transition: none;
  }
}
