:root {
  --bg: #040404;
  --panel: #0b0b0e;
  --text: #f5f5f5;
  --muted: #c7c7c7;
  --red: #d31f26;
  --red-bright: #ff3434;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --nav-offset: 132px;
}

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

html {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background: #030303;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.04), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(255, 49, 49, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
  transition: background 400ms ease;
}

body.theme-about::before {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 49, 49, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
}

body.theme-services::before {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 49, 49, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
}

body.theme-realizations::before {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(255, 49, 49, 0.12), transparent 26%);
}

body.theme-contact::before {
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 49, 49, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
}

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

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

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.footer h2,
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.snap-panel {
  position: relative;
  min-height: 100dvh;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding-top: 1.5rem;
  padding-bottom: 0.55rem;
  padding-left: max(0.75rem, calc((100vw - 1120px) / 2));
  padding-right: max(0.75rem, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 65%, rgba(0, 0, 0, 0));
}

.nav__drawer {
  display: contents;
}

.nav__group {
  display: flex;
  gap: 0.35rem;
}

.nav__group--left { justify-content: flex-end; }
.nav__group--right { justify-content: flex-start; }

.nav__brand {
  justify-self: center;
  width: clamp(96px, 10vw, 132px);
  transition: transform 180ms ease;
}

.nav__brand:hover { transform: scale(1.06); }

.nav__toggle {
  display: none;
}

@media (min-width: 641px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }

  .nav__drawer {
    display: contents;
  }

  .nav__group--left {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    width: auto;
  }

  .nav__group--right {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-start;
    width: auto;
  }

  .nav__brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: start;
  }

  .nav__toggle {
    display: none;
  }
}

.nav__link {
  min-width: 196px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.25rem;
  background: linear-gradient(180deg, #b31a20 0%, #931217 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.nav__link:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b4181f, var(--red-bright));
}

.nav__link--left {
  clip-path: polygon(0 0, 74% 0, 100% 100%, 26% 100%);
}

.nav__link--right {
  clip-path: polygon(26% 0, 100% 0, 74% 100%, 0 100%);
}

.panel-indicator {
  position: fixed;
  right: 1.35rem;
  top: 50%;
  z-index: 15;
  display: grid;
  gap: 0.8rem;
  transform: translateY(-50%);
}

.panel-indicator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

body.panel-0 .panel-indicator__dot:nth-child(1),
body.panel-1 .panel-indicator__dot:nth-child(2),
body.panel-2 .panel-indicator__dot:nth-child(3),
body.panel-3 .panel-indicator__dot:nth-child(4) {
  transform: scale(1.35);
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.hero {
  position: relative;
  min-height: 100dvh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.9) 100%),
    url("pics/BG.png") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 75%);
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.95) 100%);
}

.hero__mobile-media {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0;
  padding: 8.2rem 0 1rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__copy .eyebrow {
  font-size: clamp(1.5rem, 3.6vw, 2.55rem);
  letter-spacing: 0.14em;
}

.hero__copy .eyebrow,
.hero__lead,
.hero__actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.hero__copy .eyebrow {
  transition-delay: 90ms;
}

.hero__lead {
  max-width: 640px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  text-align: center;
  transition-delay: 220ms;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  transition-delay: 350ms;
}

.hero__chips {
  display: none;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.button {
  min-width: 180px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button--primary {
  background: linear-gradient(90deg, #a5141b, var(--red-bright));
  box-shadow: 0 18px 40px rgba(211, 31, 38, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.showcase-card,
.process-card,
.service-card,
.service-bubble,
.result-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.95), rgba(6, 6, 8, 0.95));
  box-shadow: var(--shadow);
}

.showcase-card__label,
.result-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card strong,
.result-card strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__badge {
  display: none;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero__badge span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__badge strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.about,
.services,
.realizations,
.footer {
  display: flex;
  align-items: stretch;
}

.about {
  overflow: hidden;
}

.about__inner,
.services__inner,
.realizations__inner,
.footer__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  min-height: 100dvh;
  margin: 0 auto;
}

.about__inner,
.realizations__inner,
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-offset) + 5rem);
  padding-bottom: 4rem;
}

.services__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-offset) + 0.35rem);
  padding-bottom: 4rem;
}

.about__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 49, 49, 0.18), transparent 30%);
}

.about__foam-wipe {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.about__foam-sheet,
.about__foam-spray {
  position: absolute;
  opacity: 0;
  transform: rotate(-5deg);
  transform-origin: 82% 18%;
}

.about__foam-sheet {
  top: -66%;
  right: -40%;
  width: min(1720px, 150vw);
  aspect-ratio: 1;
  background: url("pics/Piana.png") center/contain no-repeat;
  filter: drop-shadow(0 12px 30px rgba(255, 255, 255, 0.06));
  mask-image:
    radial-gradient(circle at 50% 50%, #000 0 64%, transparent 88%),
    linear-gradient(135deg, transparent 0 6%, #000 18% 82%, transparent 94%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.about__foam-sheet::before {
  content: none;
}

.about__foam-spray {
  display: none;
}

.foam-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.polisher-flight {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.polisher-flight__trail {
  position: absolute;
  top: -4%;
  left: -38%;
  width: 88vw;
  max-width: 1500px;
  height: 240px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.44) 40%, rgba(255, 255, 255, 0.12) 74%, rgba(255, 255, 255, 0));
  filter: blur(22px);
  opacity: 0;
  transform: rotate(24deg);
}

.polisher-flight__foam {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
}

.polisher-flight__bubble {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.22) 62%, rgba(255, 255, 255, 0) 100%);
  filter: blur(0.6px);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.14);
  opacity: 0;
  mix-blend-mode: screen;
}

.polisher-flight__bubble--1 { width: 52px; height: 52px; top: 18%; left: 18%; }
.polisher-flight__bubble--2 { width: 24px; height: 24px; top: 28%; left: 30%; }
.polisher-flight__bubble--3 { width: 38px; height: 38px; top: 34%; left: 40%; }
.polisher-flight__bubble--4 { width: 20px; height: 20px; top: 46%; left: 50%; }
.polisher-flight__bubble--5 { width: 34px; height: 34px; top: 54%; left: 60%; }
.polisher-flight__bubble--6 { width: 18px; height: 18px; top: 62%; left: 72%; }
.polisher-flight__bubble--7 { width: 44px; height: 44px; top: 70%; left: 82%; }
.polisher-flight__bubble--8 { width: 16px; height: 16px; top: 16%; left: 52%; }
.polisher-flight__bubble--9 { width: 28px; height: 28px; top: 24%; left: 70%; }
.polisher-flight__bubble--10 { width: 22px; height: 22px; top: 44%; left: 24%; }
.polisher-flight__bubble--11 { width: 30px; height: 30px; top: 60%; left: 40%; }
.polisher-flight__bubble--12 { width: 18px; height: 18px; top: 78%; left: 58%; }
.polisher-flight__bubble--13 { width: 26px; height: 26px; top: 10%; left: 6%; }
.polisher-flight__bubble--14 { width: 18px; height: 18px; top: 22%; left: 88%; }
.polisher-flight__bubble--15 { width: 32px; height: 32px; top: 82%; left: 10%; }
.polisher-flight__bubble--16 { width: 20px; height: 20px; top: 86%; left: 92%; }
.polisher-flight__bubble--17 { width: 14px; height: 14px; top: 50%; left: 94%; }
.polisher-flight__bubble--18 { width: 24px; height: 24px; top: 6%; left: 52%; }
.polisher-flight__bubble--19 { width: 12px; height: 12px; top: 14%; left: 26%; }
.polisher-flight__bubble--20 { width: 16px; height: 16px; top: 32%; left: 12%; }
.polisher-flight__bubble--21 { width: 14px; height: 14px; top: 38%; left: 86%; }
.polisher-flight__bubble--22 { width: 18px; height: 18px; top: 74%; left: 26%; }
.polisher-flight__bubble--23 { width: 12px; height: 12px; top: 68%; left: 90%; }
.polisher-flight__bubble--24 { width: 16px; height: 16px; top: 12%; left: 74%; }
.polisher-flight__bubble--25 { width: 10px; height: 10px; top: 88%; left: 46%; }
.polisher-flight__bubble--26 { width: 14px; height: 14px; top: 8%; left: 18%; }
.polisher-flight__bubble--27 { width: 22px; height: 22px; top: 18%; left: 42%; }
.polisher-flight__bubble--28 { width: 12px; height: 12px; top: 26%; left: 58%; }
.polisher-flight__bubble--29 { width: 16px; height: 16px; top: 34%; left: 78%; }
.polisher-flight__bubble--30 { width: 20px; height: 20px; top: 48%; left: 8%; }
.polisher-flight__bubble--31 { width: 14px; height: 14px; top: 56%; left: 28%; }
.polisher-flight__bubble--32 { width: 18px; height: 18px; top: 66%; left: 52%; }
.polisher-flight__bubble--33 { width: 12px; height: 12px; top: 74%; left: 72%; }
.polisher-flight__bubble--34 { width: 16px; height: 16px; top: 84%; left: 84%; }

.polisher {
  position: absolute;
  top: -72%;
  left: -56%;
  width: 1800px;
  height: 1800px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  opacity: 0;
  transform: rotate(-8deg);
}

.polisher__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.about__story {
  display: grid;
  gap: 1.2rem;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
  text-align: center;
}

.process-card {
  padding: 1.1rem 1.15rem;
}

.process-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.process-card h3,
.service-card h3,
.service-bubble h3,
.contact-card a:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-card p,
.service-card p,
.service-bubble p,
.contact-card span,
.footer__copy p {
  color: var(--muted);
  line-height: 1.45;
}

.about__social-wrap {
  display: grid;
  justify-items: center;
  margin-top: auto;
  padding-top: 1.6rem;
}

.about__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-chip {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 49, 49, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--red-bright);
  font-size: 1.4rem;
  transition: transform 180ms ease, background 180ms ease;
}

.social-chip:hover {
  transform: translateY(-4px);
  background: rgba(255, 49, 49, 0.08);
}

.about__divider {
  width: min(520px, 100%);
  margin-top: 0.65rem;
  opacity: 0.9;
}

.services {
  overflow: hidden;
}

.services__sweep {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(120deg, transparent 20%, rgba(255, 49, 49, 0.14) 50%, transparent 80%);
  transform: translateX(-18%);
  animation: stageSweep 8s ease-in-out infinite;
  opacity: 0.45;
}

.services__intro {
  max-width: 760px;
  margin: 0 auto 1.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

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

.services__grid--featured {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(7, 7, 9, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 35%),
    radial-gradient(circle at 100% 0, rgba(255, 49, 49, 0.18), transparent 36%);
  pointer-events: none;
}

.service-tile:nth-child(1),
.service-tile:nth-child(2),
.service-tile:nth-child(3) {
  grid-column: span 4;
}

.service-tile:nth-child(4),
.service-tile:nth-child(5) {
  grid-column: span 6;
}

.service-tile__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 49, 49, 0.35);
  border-radius: 999px;
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 49, 49, 0.08);
}

.service-tile h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-tile p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.45;
}

.services__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.services__offer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 66px;
  padding: 0 2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #b31a20 0%, #931217 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  transition: transform 180ms ease, background 180ms ease;
}

.services__offer-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b4181f, var(--red-bright));
}

.realizations__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  clip-path: inset(0 100% 0 0);
}

.before-after {
  position: relative;
}

.before-after__surface {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(6, 6, 8, 0.96));
  box-shadow: var(--shadow);
}

.before-after__dirty,
.before-after__clean {
  position: absolute;
  inset: 0;
}

.before-after__dirty {
  background: url("pics/ford1.png") center/cover no-repeat;
}

.before-after__clean {
  width: 100%;
  background: url("pics/ford2.png") center/cover no-repeat;
  clip-path: inset(0 0 0 56%);
  animation: revealClean 5.8s ease-in-out infinite;
}

.before-after__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.55);
  animation: revealHandle 5.8s ease-in-out infinite;
}

.before-after__label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.5rem 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.before-after__label--before { left: 1rem; }
.before-after__label--after { right: 1rem; }

.realizations__copy {
  display: grid;
  gap: 1rem;
}

.result-card {
  padding: 1.15rem 1.15rem 1.25rem;
}

.footer {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 49, 49, 0.2), rgba(255, 49, 49, 0)),
    linear-gradient(90deg, #8c1116 0%, #d31f26 42%, #7a0d11 100%);
}

.footer__spotlight {
  position: absolute;
  inset: auto 10% -8% 10%;
  height: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
  filter: blur(30px);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.footer h2 {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
}

.footer__copy p:last-child {
  margin-top: 1rem;
  max-width: 520px;
}

.contact-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-card .button {
  margin-top: 0.8rem;
}

.snap-panel .hero__copy,
.snap-panel .hero__badge,
.snap-panel .section-heading,
.snap-panel .about__layout,
.snap-panel .about__social-wrap,
.snap-panel .services__grid,
.snap-panel .services__intro,
.snap-panel .services__cta,
.snap-panel .realizations__grid,
.snap-panel .footer__copy,
.snap-panel .contact-card {
  opacity: 0.18;
  transform: translateY(36px) scale(0.98);
  transition: transform 650ms ease, opacity 650ms ease;
}

.snap-panel.is-active .hero__copy,
.snap-panel.is-active .hero__badge,
.snap-panel.is-active .section-heading,
.snap-panel.is-active .about__layout,
.snap-panel.is-active .about__social-wrap,
.snap-panel.is-active .services__grid,
.snap-panel.is-active .services__intro,
.snap-panel.is-active .services__cta,
.snap-panel.is-active .realizations__grid,
.snap-panel.is-active .footer__copy,
.snap-panel.is-active .contact-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.snap-panel.is-active .hero__copy .eyebrow,
.snap-panel.is-active .hero__lead,
.snap-panel.is-active .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.realizations.is-active .realizations__grid {
  animation: stingerReveal 0.7s ease-out 0.28s forwards;
}

.realizations.is-active .polisher-flight__trail {
  animation: polisherTrailFly 1.25s ease-out forwards;
}

.realizations.is-active .polisher-flight__foam {
  animation: foamRemain 1.8s ease-out 0.55s forwards;
}

.realizations.is-active .polisher {
  animation: polisherFly 1.25s ease-out forwards;
}

.realizations.is-active .polisher-flight__bubble--1 { animation: bubbleStay 1.4s ease-out 0.62s forwards; }
.realizations.is-active .polisher-flight__bubble--2 { animation: bubbleStay 1.4s ease-out 0.72s forwards; }
.realizations.is-active .polisher-flight__bubble--3 { animation: bubbleStay 1.4s ease-out 0.82s forwards; }
.realizations.is-active .polisher-flight__bubble--4 { animation: bubbleStay 1.4s ease-out 0.9s forwards; }
.realizations.is-active .polisher-flight__bubble--5 { animation: bubbleStay 1.4s ease-out 1s forwards; }
.realizations.is-active .polisher-flight__bubble--6 { animation: bubbleStay 1.4s ease-out 1.08s forwards; }
.realizations.is-active .polisher-flight__bubble--7 { animation: bubbleStay 1.4s ease-out 1.16s forwards; }
.realizations.is-active .polisher-flight__bubble--8 { animation: bubbleStay 1.4s ease-out 0.86s forwards; }
.realizations.is-active .polisher-flight__bubble--9 { animation: bubbleStay 1.4s ease-out 0.96s forwards; }
.realizations.is-active .polisher-flight__bubble--10 { animation: bubbleStay 1.4s ease-out 1.04s forwards; }
.realizations.is-active .polisher-flight__bubble--11 { animation: bubbleStay 1.4s ease-out 1.12s forwards; }
.realizations.is-active .polisher-flight__bubble--12 { animation: bubbleStay 1.4s ease-out 1.2s forwards; }
.realizations.is-active .polisher-flight__bubble--13 { animation: bubbleStay 1.4s ease-out 0.76s forwards; }
.realizations.is-active .polisher-flight__bubble--14 { animation: bubbleStay 1.4s ease-out 0.88s forwards; }
.realizations.is-active .polisher-flight__bubble--15 { animation: bubbleStay 1.4s ease-out 0.98s forwards; }
.realizations.is-active .polisher-flight__bubble--16 { animation: bubbleStay 1.4s ease-out 1.06s forwards; }
.realizations.is-active .polisher-flight__bubble--17 { animation: bubbleStay 1.4s ease-out 1.14s forwards; }
.realizations.is-active .polisher-flight__bubble--18 { animation: bubbleStay 1.4s ease-out 0.7s forwards; }
.realizations.is-active .polisher-flight__bubble--19 { animation: bubbleStay 1.6s ease-out 0.74s forwards; }
.realizations.is-active .polisher-flight__bubble--20 { animation: bubbleStay 1.6s ease-out 0.82s forwards; }
.realizations.is-active .polisher-flight__bubble--21 { animation: bubbleStay 1.6s ease-out 0.9s forwards; }
.realizations.is-active .polisher-flight__bubble--22 { animation: bubbleStay 1.6s ease-out 1s forwards; }
.realizations.is-active .polisher-flight__bubble--23 { animation: bubbleStay 1.6s ease-out 1.08s forwards; }
.realizations.is-active .polisher-flight__bubble--24 { animation: bubbleStay 1.6s ease-out 0.78s forwards; }
.realizations.is-active .polisher-flight__bubble--25 { animation: bubbleStay 1.6s ease-out 1.16s forwards; }
.realizations.is-active .polisher-flight__bubble--26 { animation: bubbleStay 1.7s ease-out 0.66s forwards; }
.realizations.is-active .polisher-flight__bubble--27 { animation: bubbleStay 1.7s ease-out 0.74s forwards; }
.realizations.is-active .polisher-flight__bubble--28 { animation: bubbleStay 1.7s ease-out 0.82s forwards; }
.realizations.is-active .polisher-flight__bubble--29 { animation: bubbleStay 1.7s ease-out 0.9s forwards; }
.realizations.is-active .polisher-flight__bubble--30 { animation: bubbleStay 1.7s ease-out 0.98s forwards; }
.realizations.is-active .polisher-flight__bubble--31 { animation: bubbleStay 1.7s ease-out 1.06s forwards; }
.realizations.is-active .polisher-flight__bubble--32 { animation: bubbleStay 1.7s ease-out 1.14s forwards; }
.realizations.is-active .polisher-flight__bubble--33 { animation: bubbleStay 1.7s ease-out 1.22s forwards; }
.realizations.is-active .polisher-flight__bubble--34 { animation: bubbleStay 1.7s ease-out 1.3s forwards; }

.snap-panel .hero__badge { transition-delay: 120ms; }
.snap-panel .about__layout { transition-delay: 110ms; }
.snap-panel .about__social-wrap { transition-delay: 240ms; }
.snap-panel .services__intro { transition-delay: 120ms; }
.snap-panel .services__grid { transition-delay: 220ms; }
.snap-panel .services__cta { transition-delay: 320ms; }
.snap-panel .realizations__grid { transition-delay: 140ms; }
.snap-panel .contact-card { transition-delay: 180ms; }

.about .section-heading {
  margin-inline: auto;
  text-align: center;
  transition-delay: 430ms;
}
.about .about__layout { transition-delay: 520ms; }
.about .about__social-wrap { transition-delay: 650ms; }

.about.is-active .about__foam-sheet {
  animation: aboutFoamWipe 1.55s cubic-bezier(0.22, 0.78, 0.18, 1) forwards;
}

.about.is-active .about__foam-spray {
  animation: none;
}

@keyframes floatCar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@keyframes sweepOne {
  0%, 100% { transform: translateX(-12vw) rotate(-12deg); opacity: 0; }
  18% { opacity: 0.9; }
  50% { transform: translateX(46vw) rotate(8deg); opacity: 0.92; }
}

@keyframes sweepTwo {
  0%, 100% { transform: translateX(18vw) rotate(12deg); opacity: 0; }
  18% { opacity: 0.8; }
  54% { transform: translateX(-44vw) rotate(-6deg); opacity: 0.82; }
}

@keyframes stageSweep {
  0%, 100% { transform: translateX(-18%); opacity: 0.2; }
  50% { transform: translateX(20%); opacity: 0.86; }
}

@keyframes aboutFoamWipe {
  0% {
    opacity: 0;
    transform: translate(20vw, -36vh) rotate(-5deg) scale(1.1);
  }
  8% {
    opacity: 0.98;
  }
  26% {
    opacity: 1;
  }
  72% {
    opacity: 0.98;
    transform: translate(-42vw, 15vh) rotate(-5deg) scale(1.04);
  }
  100% {
    opacity: 0;
    transform: translate(-86vw, 48vh) rotate(-5deg) scale(1.01);
  }
}

@keyframes stingerReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes revealClean {
  0%, 100% { clip-path: inset(0 0 0 26%); }
  50% { clip-path: inset(0 0 0 72%); }
}

@keyframes revealHandle {
  0%, 100% { left: 26%; }
  50% { left: 72%; }
}

@keyframes polisherFly {
  0% {
    opacity: 0;
    transform: translate(-34vw, -24vh) rotate(-8deg);
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate(96vw, 66vh) rotate(-8deg);
  }
  100% {
    opacity: 0;
    transform: translate(116vw, 84vh) rotate(-8deg);
  }
}

@keyframes polisherTrailFly {
  0% {
    opacity: 0;
    transform: translate(-38vw, -24vh) rotate(-8deg);
  }
  12% {
    opacity: 0.7;
  }
  82% {
    opacity: 0.18;
    transform: translate(90vw, 62vh) rotate(-8deg);
  }
  100% {
    opacity: 0;
    transform: translate(110vw, 80vh) rotate(-8deg);
  }
}

@keyframes padSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes foamRemain {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes bubbleStay {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  65% {
    opacity: 0.26;
    transform: scale(1);
  }
  100% {
    opacity: 0.16;
    transform: scale(0.96);
  }
}

@media (max-width: 980px) {
  :root {
    --nav-offset: 150px;
  }

  .nav {
    grid-template-columns: auto 1fr;
    justify-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 0.65rem;
    align-items: center;
  }

  .nav__drawer {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nav__group {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .panel-indicator {
    display: none;
  }

  .hero__content,
  .about__layout,
  .services__grid,
  .realizations__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__content {
    align-items: center;
    align-content: center;
    padding: 7rem 0 0.9rem;
  }

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

  .service-tile:nth-child(1),
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4),
  .service-tile:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-offset: 88px;
  }

  html {
    scroll-snap-type: none;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    -webkit-overflow-scrolling: touch;
  }

  body {
    scroll-snap-type: none;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body::before {
    display: none;
  }

  .snap-panel {
    min-height: 100svh;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .shell {
    width: min(100% - 1rem, 1180px);
  }

  .hero__content,
  .about__inner,
  .services__inner,
  .realizations__inner,
  .footer__inner {
    min-height: 100svh;
    box-sizing: border-box;
    padding-bottom: 1.35rem;
  }

  .hero {
    min-height: 100svh;
    background: #040404;
  }

  .hero::before {
    opacity: 0;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0.84) 72%, rgba(0, 0, 0, 0.96) 100%);
  }

  .hero::after {
    content: none;
  }

  .hero__mobile-media {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-offset);
    bottom: 0;
    height: auto;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background: #050505;
    box-shadow: none;
  }

  .hero__mobile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.08) 26%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
  }

  .hero__mobile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.34);
    transform-origin: center center;
  }

  .nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    background: rgba(5, 5, 7, 0.92);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  body.nav-open .nav {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .nav__brand {
    grid-column: auto;
    width: 72px;
    margin: 0;
  }

  .nav__toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 32;
  }

  .nav__toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.nav-open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__drawer {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
    width: 100dvw;
    min-width: 100dvw;
    min-height: 100svh;
    padding: 5.8rem 1.15rem 1.4rem;
    background:
      linear-gradient(180deg, rgba(185, 22, 29, 0.98) 0%, rgba(129, 13, 18, 0.98) 100%);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-101%);
    transition: opacity 260ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 260ms ease;
    z-index: 31;
    overflow-y: auto;
    will-change: transform;
    backface-visibility: hidden;
  }

  body.nav-open .nav__drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav__group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
  }

  .nav__link {
    min-width: 0;
    width: 100%;
    min-height: 64px;
    padding: 0 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    border-radius: 22px;
    clip-path: none !important;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 28px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(-28px);
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 320ms ease;
  }

  .nav__link:hover {
    transform: none;
  }

  body.nav-open .nav__link {
    transform: translateX(0);
    opacity: 1;
  }

  body.nav-open .nav__group:nth-of-type(1) .nav__link:nth-child(1) { transition-delay: 90ms; }
  body.nav-open .nav__group:nth-of-type(1) .nav__link:nth-child(2) { transition-delay: 140ms; }
  body.nav-open .nav__group:nth-of-type(2) .nav__link:nth-child(1) { transition-delay: 190ms; }
  body.nav-open .nav__group:nth-of-type(2) .nav__link:nth-child(2) { transition-delay: 240ms; }

  .button {
    width: 100%;
  }

  .hero__content {
    flex: 1;
    align-items: center;
    align-content: end;
    padding: calc(var(--nav-offset) + 1.4rem) 0 3.05rem;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    padding: 0 0.95rem;
    border: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hero__copy .eyebrow {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 49, 49, 0.95);
    text-shadow: 0 0 16px rgba(255, 49, 49, 0.14);
    position: relative;
    top: -4.8rem;
    margin-top: 0;
    margin-bottom: 3.2rem;
  }

  .hero__copy .eyebrow,
  .hero__lead,
  .hero__actions {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .hero__lead {
    max-width: 300px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.42;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }

  .hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.25rem;
  }

  .hero__chip {
    min-height: 32px;
    padding: 0.4rem 0.7rem;
    font-size: 0.74rem;
    background: rgba(8, 8, 10, 0.58);
    backdrop-filter: blur(8px);
  }

  .hero__actions {
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  .button {
    min-width: 0;
    min-height: 52px;
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    border-radius: 18px;
  }

  .about__inner,
  .services__inner,
  .realizations__inner,
  .footer__inner {
    width: min(100% - 1rem, 1180px);
  }

  .about__inner {
    justify-content: center;
    padding-top: calc(var(--nav-offset) + 0.9rem);
  }

  .about__foam-wipe {
    display: none;
  }

  .about .section-heading,
  .services .section-heading,
  .realizations .section-heading,
  .footer__copy {
    max-width: none;
  }

  .about .section-heading h2,
  .services .section-heading h2,
  .realizations .section-heading h2,
  .footer h2 {
    font-size: clamp(1.75rem, 8.7vw, 2.45rem);
    line-height: 0.94;
  }

  .about__layout {
    gap: 0.95rem;
  }

  .about__story {
    padding: 0.95rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18, 18, 20, 0.88), rgba(8, 8, 10, 0.74));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .about__story p {
    margin: 0;
  }

  .about__social-wrap {
    width: 100%;
    margin-top: 0.8rem;
    padding-top: 0;
    padding-bottom: 0.25rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.78), rgba(8, 8, 10, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about__socials {
    gap: 0.8rem;
    padding-top: 0.8rem;
  }

  .social-chip {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .about__divider {
    width: min(260px, 88%);
    margin-top: 0.4rem;
  }

  .services__inner {
    justify-content: center;
    padding-top: calc(var(--nav-offset) - 1rem);
  }

  .services__intro {
    margin-bottom: 0.85rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(16, 16, 18, 0.88), rgba(8, 8, 10, 0.7));
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .services__grid--featured {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.35rem;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .services__grid--featured::-webkit-scrollbar {
    display: none;
  }

  .service-tile:nth-child(1),
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4),
  .service-tile:nth-child(5) {
    grid-column: auto;
  }

  .service-tile {
    min-height: 0;
    padding: 0.95rem 0.9rem 1rem;
    border-radius: 22px;
    scroll-snap-align: center;
  }

  .service-tile__tag {
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
  }

  .service-tile h3 {
    font-size: clamp(1.2rem, 6.3vw, 1.55rem);
  }

  .service-tile p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .services__offer-link {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0.95rem 0.9rem;
    font-size: 0.92rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
    border-radius: 18px;
    clip-path: none;
  }

  .services__cta {
    margin-top: 0.9rem;
  }

  .realizations {
    overflow: hidden;
  }

  .realizations .foam-layer,
  .realizations .polisher-flight {
    display: none;
  }

  .snap-panel .hero__copy,
  .snap-panel .hero__badge,
  .snap-panel .section-heading,
  .snap-panel .about__layout,
  .snap-panel .about__social-wrap,
  .snap-panel .services__grid,
  .snap-panel .services__intro,
  .snap-panel .services__cta,
  .snap-panel .realizations__grid,
  .snap-panel .footer__copy,
  .snap-panel .contact-card {
    opacity: 1;
    transform: translateY(28px) scale(0.98);
    transition: transform 650ms ease;
  }

  .snap-panel.is-active .hero__copy,
  .snap-panel.is-active .hero__badge,
  .snap-panel.is-active .section-heading,
  .snap-panel.is-active .about__layout,
  .snap-panel.is-active .about__social-wrap,
  .snap-panel.is-active .services__grid,
  .snap-panel.is-active .services__intro,
  .snap-panel.is-active .services__cta,
  .snap-panel.is-active .realizations__grid,
  .snap-panel.is-active .footer__copy,
  .snap-panel.is-active .contact-card {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .snap-panel.is-active .hero__copy .eyebrow,
  .snap-panel.is-active .hero__lead,
  .snap-panel.is-active .hero__actions {
    opacity: 1;
    transform: translateY(0);
  }

  .realizations__inner {
    justify-content: flex-start;
    padding-top: calc(var(--nav-offset) + 0.1rem);
  }

  .realizations__grid {
    gap: 0.85rem;
    align-content: start;
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
    animation: none !important;
  }

  .before-after {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 16, 18, 0.88), rgba(8, 8, 10, 0.72));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  }

  .before-after__surface {
    min-height: 212px;
    border-radius: 18px;
  }

  .before-after,
  .before-after__dirty,
  .realizations__copy,
  .result-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .before-after__clean {
    opacity: 1 !important;
    transform: none !important;
    animation: revealClean 5.8s ease-in-out infinite !important;
  }

  .before-after__slider {
    opacity: 1 !important;
    transform: none !important;
    animation: revealHandle 5.8s ease-in-out infinite !important;
  }

  .before-after__dirty,
  .before-after__clean {
    background-position: center center;
  }

  .before-after__label {
    top: 1.2rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
  }

  .before-after__label--before { left: 1.2rem; }
  .before-after__label--after { right: 1.2rem; }

  .realizations__copy {
    gap: 0.65rem;
    font-size: 0.88rem;
  }

  .result-card {
    padding: 1rem 0.95rem 1.05rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(18, 18, 20, 0.92), rgba(7, 7, 9, 0.92));
  }

  .result-card strong {
    font-size: 1.2rem;
    line-height: 1.02;
  }

  .footer__inner {
    justify-content: center;
    padding-top: calc(var(--nav-offset) + 0.9rem);
    gap: 0.85rem;
  }

  .footer__copy {
    padding: 0.9rem 0.9rem;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-card {
    padding: 1rem 0.95rem;
    border-radius: 24px;
    gap: 0.75rem;
  }

  .contact-card a:first-child {
    font-size: 1.45rem;
  }
}

@media (max-width: 430px) {
  :root {
    --nav-offset: 84px;
  }

  .nav {
    gap: 0.45rem;
    padding: 0.65rem 0.75rem 0.8rem;
  }

  .nav__brand {
    grid-column: auto;
    width: 66px;
  }

  .nav__drawer {
    left: 0;
    right: auto;
    padding: 0.75rem;
  }

  .nav__link {
    min-height: 48px;
    font-size: 0.8rem;
    padding: 0 0.75rem;
  }

  .hero__content {
    padding-top: calc(var(--nav-offset) + 0.65rem);
  }

  .hero__lead {
    max-width: 262px;
    font-size: 0.86rem;
  }

  .hero__actions {
    max-width: 272px;
  }

  .hero__content {
    padding-top: calc(var(--nav-offset) + 1rem);
    padding-bottom: 2.5rem;
  }

  .hero__mobile-media {
    top: var(--nav-offset);
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
  }

  .hero__mobile-video {
    object-position: center 40%;
    transform: scale(1.42);
  }

  .button {
    min-height: 50px;
    font-size: 0.84rem;
  }

  .hero__chip {
    font-size: 0.7rem;
    padding: 0.38rem 0.64rem;
  }

  .about__inner,
  .services__inner,
  .realizations__inner,
  .footer__inner {
    padding-bottom: 1.1rem;
  }

  .about__story,
  .services__intro,
  .service-tile,
  .result-card,
  .footer__copy,
  .contact-card {
    border-radius: 20px;
  }

  .before-after {
    padding: 0.45rem;
    border-radius: 20px;
  }

  .before-after__surface {
    min-height: 196px;
    border-radius: 16px;
  }

  .services__grid--featured {
    grid-auto-columns: 88%;
  }

  .hero__copy {
    padding: 0.82rem 0.78rem 0;
    border-radius: 24px;
  }
}
