@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600&display=swap");

:root {
  --ink: #f5f2ee;
  --muted: #aaa4a0;
  --line: rgba(255, 255, 255, 0.12);
  --panel: #1b191a;
  --panel-light: #272324;
  --burgundy: #a92331;
  --burgundy-hover: color-mix(in srgb, var(--burgundy), white 10%);
  --burgundy-soft: rgba(169, 35, 49, .08);
  --burgundy-border: rgba(169, 35, 49, .24);
  --beige: #f7f5f0;
  --beige-border: color-mix(in srgb, var(--beige), #111011 15%);
  --card: #fff;
  --red: var(--burgundy);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #111011;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #111011;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 0 clamp(24px, 5vw, 84px);
  background:
    radial-gradient(circle at 83% 42%, rgba(169, 35, 49, 0.2), transparent 29%),
    radial-gradient(circle at 15% 90%, rgba(86, 24, 31, 0.11), transparent 30%),
    linear-gradient(125deg, #171516 0%, #111011 52%, #171314 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  display: flex;
  width: 100%;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-mark::after {
  position: absolute;
  width: 8px;
  height: 58px;
  left: 17px;
  top: -8px;
  background: #111011;
  content: "";
  transform: rotate(40deg);
}

.brand-mark i {
  border-radius: 8px 3px;
}

.brand-mark i:nth-child(1) { background: #00a7df; }
.brand-mark i:nth-child(2) { background: #ef1b2d; }
.brand-mark i:nth-child(3) { background: #ffdf00; }
.brand-mark i:nth-child(4) { background: #f4f1ed; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
}

.brand-copy small {
  margin-top: 7px;
  color: #817b78;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.phone {
  color: #c9c4c0;
  font-size: 13px;
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 24px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.header-cta:active,
.button:active {
  transform: scale(.97);
}

.hero-content {
  display: grid;
  width: 100%;
  max-width: 1540px;
  flex: 1;
  grid-template-columns: minmax(430px, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  align-self: center;
  gap: clamp(36px, 5vw, 90px);
  padding: clamp(44px, 7vh, 84px) 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(24px, 4vh, 42px);
  color: #c6bfbb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 31px;
  height: 2px;
  background: var(--red);
}

h1 {
  max-width: 740px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(44px, 5.1vw, 82px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.06;
}

h1 em {
  color: var(--burgundy);
  font-style: normal;
}

.lead {
  max-width: 590px;
  margin: clamp(23px, 3vh, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vh, 44px);
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.button-primary {
  background: var(--burgundy);
}

.button-secondary {
  border-color: rgba(255,255,255,.16);
  color: #d4cfcb;
}

.play {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: 7px;
}

.trust-row {
  display: flex;
  margin-top: clamp(38px, 6vh, 72px);
  gap: clamp(24px, 4vw, 48px);
}

.trust-row div {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.trust-row span {
  margin-top: 7px;
  color: #77716e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.production-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1.07;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(165deg, rgba(255,255,255,.055), transparent 42%),
    #171516;
  box-shadow: 0 35px 90px rgba(0,0,0,.33);
}

.production-scene::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.scene-glow {
  position: absolute;
  z-index: 1;
  width: 68%;
  height: 45%;
  top: 11%;
  left: 25%;
  border-radius: 50%;
  background: rgba(169, 35, 49, .24);
  filter: blur(70px);
  opacity: .15;
  animation: ambient-glow 10s var(--ease-in-out) infinite;
}

.scene-label {
  position: absolute;
  z-index: 5;
  display: flex;
  top: 18px;
  right: 19px;
  left: 19px;
  justify-content: space-between;
  color: #797371;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scene-label span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 8px var(--burgundy);
  content: "";
}

.facade {
  position: absolute;
  z-index: 2;
  width: 74%;
  height: 59%;
  top: 11%;
  right: 5%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(110deg, #211e1f, #171516);
  box-shadow: 0 16px 42px rgba(0,0,0,.32);
}

.facade-topline {
  display: flex;
  height: 27px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #565150;
  font-size: 6px;
  letter-spacing: .12em;
}

.facade-grid {
  position: absolute;
  inset: 27px 0 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.035) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255,255,255,.035) 50%, transparent 50.2%);
  background-size: 48px 48px;
}

.windows {
  position: absolute;
  display: grid;
  top: 21%;
  right: 7%;
  left: 7%;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.windows i {
  height: clamp(45px, 6vw, 79px);
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(115deg, transparent 49%, rgba(255,255,255,.035) 50%, transparent 51%),
    #1b1a1a;
}

.sign-rail {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 92%;
  height: 19%;
  right: 4%;
  bottom: 20%;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, .35vw, 6px);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(10,9,10,.58);
}

.sign-rail span {
  color: #6d6866;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(12px, 1.65vw, 24px);
  font-weight: 600;
  line-height: 1;
  text-shadow: none;
  animation: sign-on 10s var(--ease-out) infinite;
}

.sign-rail span:nth-of-type(2) { animation-delay: 70ms; }
.sign-rail span:nth-of-type(3) { animation-delay: 140ms; }
.sign-rail span:nth-of-type(4) { animation-delay: 210ms; }
.sign-rail span:nth-of-type(5) { animation-delay: 280ms; }
.sign-rail span:nth-of-type(6) { animation-delay: 350ms; }
.sign-rail span:nth-of-type(7) { animation-delay: 420ms; }
.sign-rail span:nth-of-type(8) { animation-delay: 490ms; }
.sign-rail span:nth-of-type(9) { animation-delay: 560ms; }
.sign-rail span:nth-of-type(10) { animation-delay: 630ms; }

.sign-rail b {
  width: clamp(3px, .5vw, 9px);
}

.door {
  position: absolute;
  width: 18%;
  height: 18%;
  right: 9%;
  bottom: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-bottom: 0;
}

.printer {
  position: absolute;
  z-index: 4;
  width: 38%;
  height: 22%;
  left: 4%;
  bottom: 15%;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, #353132 0 33%, #1d1a1b 34% 100%);
  box-shadow: 0 18px 30px rgba(0,0,0,.42);
}

.printer::before {
  position: absolute;
  width: 84%;
  height: 8%;
  top: 32%;
  left: 8%;
  background: #0d0c0d;
  content: "";
}

.printer-head {
  display: flex;
  height: 32%;
  align-items: center;
  padding: 0 9px;
  color: #8e8986;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .14em;
}

.printer-head i {
  width: 3px;
  height: 3px;
  margin-left: 5px;
  border-radius: 50%;
  background: #60605d;
}

.printer-head i:first-of-type {
  margin-left: auto;
  background: var(--burgundy);
  box-shadow: 0 0 6px var(--burgundy);
}

.print-slot {
  position: absolute;
  width: 84%;
  height: 2px;
  top: 39%;
  left: 8%;
  background: #090909;
}

.carriage {
  position: absolute;
  z-index: 3;
  width: 14%;
  height: 28%;
  top: 27%;
  left: 10%;
  border: 1px solid rgba(255,255,255,.18);
  background: #151314;
  box-shadow: 0 4px 8px rgba(0,0,0,.4);
  animation: carriage 3.2s var(--ease-in-out) infinite alternate;
}

.carriage i {
  position: absolute;
  width: 60%;
  height: 2px;
  bottom: 4px;
  left: 20%;
  background: var(--burgundy);
  box-shadow: 0 0 5px rgba(169,35,49,.65);
}

.banner {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 76%;
  height: 108%;
  top: 41%;
  left: 12%;
  align-items: flex-start;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(135deg, rgba(169,35,49,.95), rgba(169,35,49,.96)),
    var(--burgundy);
  box-shadow: 0 14px 25px rgba(0,0,0,.28);
  clip-path: inset(0 0 34% 0);
  transform-origin: top;
  animation: banner-feed 10s var(--ease-in-out) infinite;
}

.banner span {
  color: rgba(255,255,255,.84);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(5px, .65vw, 9px);
  line-height: 1.3;
}

.banner span b {
  color: #fff;
  font-size: 1.24em;
}

.crop-marks {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,.14);
}

.printer-leg {
  position: absolute;
  width: 7%;
  height: 46%;
  top: 100%;
  background: #242122;
}

.printer-leg.left { left: 8%; }
.printer-leg.right { right: 8%; }

.lift {
  position: absolute;
  z-index: 5;
  width: 30%;
  height: 48%;
  right: 2%;
  bottom: 5%;
}

.lift-basket {
  position: absolute;
  width: 40%;
  height: 15%;
  top: 22%;
  right: 7%;
  border: 2px solid #736e6b;
  border-top: 0;
  background: rgba(28,26,27,.78);
  animation: lift-rise 10s var(--ease-in-out) infinite;
}

.lift-basket::before {
  position: absolute;
  width: calc(100% + 4px);
  height: 2px;
  left: -2px;
  top: 0;
  background: #736e6b;
  content: "";
}

.worker {
  position: absolute;
  z-index: 2;
  width: 23%;
  height: 23%;
  top: 5%;
  right: 17%;
  transform-origin: center bottom;
  animation: worker-rise 10s var(--ease-in-out) infinite;
}

.worker i {
  position: absolute;
  display: block;
  background: #151314;
}

.worker .head {
  width: 14px;
  height: 14px;
  top: 0;
  left: 50%;
  border: 2px solid #8b8581;
  border-radius: 50%;
  transform: translateX(-50%);
}

.worker .head::before {
  position: absolute;
  width: 15px;
  height: 5px;
  top: -3px;
  left: -2px;
  border-radius: 5px 5px 1px 1px;
  background: var(--burgundy);
  content: "";
}

.worker .body {
  width: 16px;
  height: 38px;
  top: 13px;
  left: 50%;
  border: 2px solid #827c79;
  border-radius: 4px 4px 0 0;
  transform: translateX(-50%);
}

.worker .arm {
  width: 32px;
  height: 3px;
  top: 23px;
  left: 47%;
  background: #827c79;
  transform: rotate(-22deg);
  transform-origin: left;
}

.lift-arm {
  position: absolute;
  width: 66%;
  height: 4px;
  right: 18%;
  bottom: 26%;
  background: #5f5a58;
  transform-origin: right;
  animation: arm-rise 10s var(--ease-in-out) infinite;
}

.lift-arm.one { transform: rotate(-47deg); }
.lift-arm.two {
  transform: rotate(-125deg);
  transform-origin: left;
}

.lift-base {
  position: absolute;
  width: 64%;
  height: 11%;
  right: 6%;
  bottom: 7%;
  border: 1px solid #5b5654;
  background: #242122;
}

.lift-base i {
  position: absolute;
  width: 16%;
  aspect-ratio: 1;
  bottom: -48%;
  border: 2px solid #5e5956;
  border-radius: 50%;
  background: #151314;
}

.lift-base i:first-child { left: 10%; }
.lift-base i:last-child { right: 10%; }

.scene-progress {
  position: absolute;
  z-index: 7;
  right: 5%;
  bottom: 4%;
  left: 5%;
}

.scene-progress > span {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.scene-progress > span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--burgundy);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: progress 10s linear infinite;
}

.scene-progress div {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.scene-progress b {
  color: #625d5a;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Full facade production scene */
.production-scene {
  aspect-ratio: 1.07;
  min-height: 520px;
}

.production-scene::after {
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  background: #171516;
  content: "";
  opacity: 0;
  animation: scene-reset 12s linear infinite;
}

.facade {
  width: 90%;
  height: 72%;
  top: 9%;
  right: 5%;
  overflow: hidden;
  background: #1d1b1c;
}

.facade-grid {
  z-index: 0;
  opacity: .45;
}

.brickwork {
  position: absolute;
  z-index: 1;
  height: 26%;
  top: 27px;
  right: 0;
  left: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.045) 50%, transparent 51%) 0 0 / 54px 18px,
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.045) 50%, transparent 51%) 27px 9px / 54px 18px,
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 100% 9px,
    #211e1f;
}

.fascia {
  position: absolute;
  z-index: 4;
  width: 94%;
  height: 22%;
  top: 15%;
  left: 3%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(105deg, var(--burgundy), var(--burgundy) 52%, var(--burgundy));
  box-shadow: 0 12px 28px rgba(0,0,0,.38);
  clip-path: inset(0 100% 0 0);
  animation: fascia-build 12s var(--ease-in-out) infinite;
}

.fascia::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.13), transparent 21%, transparent 72%, rgba(0,0,0,.17)),
    linear-gradient(90deg, transparent 33%, rgba(255,255,255,.09) 33.2%, transparent 33.4%, transparent 66%, rgba(0,0,0,.1) 66.2%, transparent 66.4%);
  content: "";
}

.fascia-seams {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0,0,0,.35);
}

.fascia .sign-rail {
  width: 94%;
  height: 100%;
  right: 3%;
  bottom: 0;
  gap: clamp(2px, .42vw, 7px);
  border: 0;
  background: transparent;
}

.fascia .sign-rail span {
  color: transparent;
  font-size: clamp(12px, 1.65vw, 24px);
  opacity: 0;
  text-shadow: none;
  transform: translateY(18px);
  animation: sign-install 12s var(--ease-out) infinite;
}

.fascia .sign-rail span:nth-of-type(1) { animation-delay: 0ms; }
.fascia .sign-rail span:nth-of-type(2) { animation-delay: 70ms; }
.fascia .sign-rail span:nth-of-type(3) { animation-delay: 140ms; }
.fascia .sign-rail span:nth-of-type(4) { animation-delay: 210ms; }
.fascia .sign-rail span:nth-of-type(5) { animation-delay: 280ms; }
.fascia .sign-rail span:nth-of-type(6) { animation-delay: 350ms; }
.fascia .sign-rail span:nth-of-type(7) { animation-delay: 420ms; }
.fascia .sign-rail span:nth-of-type(8) { animation-delay: 490ms; }
.fascia .sign-rail span:nth-of-type(9) { animation-delay: 560ms; }
.fascia .sign-rail span:nth-of-type(10) { animation-delay: 630ms; }

.shopfront {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 88%;
  height: 56%;
  right: 6%;
  bottom: 5%;
  grid-template-columns: 1fr .48fr 1fr;
  gap: 5px;
  border: 5px solid #0e0d0e;
  background: #0d0c0d;
  box-shadow: 0 13px 25px rgba(0,0,0,.36);
}

.window,
.entrance {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203,214,215,.19);
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 25%, transparent 67%, rgba(255,255,255,.04)),
    linear-gradient(180deg, #273033, #171c1e);
}

.window::before,
.entrance::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.11) 50%, transparent 50.3%),
    linear-gradient(115deg, transparent 43%, rgba(255,255,255,.07) 44%, transparent 45%);
  content: "";
}

.glass-reflection {
  position: absolute;
  width: 35%;
  height: 140%;
  top: -20%;
  left: -45%;
  background: linear-gradient(90deg, transparent, rgba(230,245,246,.12), transparent);
  transform: skewX(-16deg);
  animation: glass-pass 12s var(--ease-in-out) infinite;
}

.oracal {
  position: absolute;
  z-index: 2;
  display: flex;
  inset: 24% 0 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9% 8%;
  overflow: hidden;
  background:
    linear-gradient(145deg, transparent 0 24%, rgba(160,32,46,.9) 24.4% 100%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent);
  clip-path: inset(0 100% 0 0);
  animation: oracal-apply 12s var(--ease-in-out) infinite;
}

.oracal::before {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  top: -32%;
  right: -25%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.oracal span,
.oracal small {
  position: relative;
  color: rgba(255,255,255,.61);
  font-size: clamp(4px, .42vw, 7px);
  font-weight: 700;
  letter-spacing: .13em;
}

.oracal strong {
  position: relative;
  margin: 4px 0 5px;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(7px, .9vw, 14px);
  font-weight: 600;
  line-height: 1.12;
}

.oracal-right {
  background:
    linear-gradient(215deg, transparent 0 22%, rgba(131,25,38,.92) 22.4% 100%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent);
  animation-delay: 420ms;
}

.entrance {
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 35%),
    #20282a;
}

.door-line {
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  background: rgba(255,255,255,.15);
}

.door-handle {
  position: absolute;
  z-index: 3;
  width: 2px;
  height: 22%;
  top: 44%;
  left: 56%;
  background: #8c8784;
  box-shadow: -12px 0 #8c8784;
}

.entrance span {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 50%;
  color: rgba(255,255,255,.55);
  font-size: 5px;
  letter-spacing: .18em;
  transform: translateX(-50%);
}

.facade-sill {
  position: absolute;
  z-index: 5;
  height: 3%;
  right: 4%;
  bottom: 1.5%;
  left: 4%;
  border-top: 1px solid rgba(255,255,255,.12);
  background: #111011;
  box-shadow: 0 5px 10px rgba(0,0,0,.35);
}

.promo-stand {
  position: absolute;
  z-index: 7;
  width: 13%;
  height: 35%;
  left: 3.2%;
  bottom: 11%;
  opacity: 0;
  transform: translateY(16px);
  animation: promo-place 12s var(--ease-out) infinite;
}

.promo-screen {
  display: flex;
  height: 88%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #1d1a1b;
  background: linear-gradient(155deg, rgba(255,255,255,.08), transparent 24%), var(--burgundy);
  box-shadow: 0 11px 22px rgba(0,0,0,.38);
  text-align: center;
}

.promo-screen small {
  color: rgba(255,255,255,.61);
  font-size: clamp(3px, .34vw, 6px);
  font-weight: 800;
  letter-spacing: .12em;
}

.promo-screen strong {
  margin: 8px 0 3px;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(10px, 1.5vw, 23px);
}

.promo-screen span {
  color: rgba(255,255,255,.72);
  font-size: clamp(4px, .4vw, 7px);
  line-height: 1.35;
}

.promo-base {
  width: 70%;
  height: 8%;
  margin: 0 auto;
  border-radius: 1px;
  background: #242122;
  box-shadow: 0 5px 8px rgba(0,0,0,.4);
}

.lift {
  width: 24%;
  height: 46%;
  right: -2%;
  bottom: 5%;
  animation: lift-exit 12s var(--ease-in-out) infinite;
}

.lift-basket {
  width: 45%;
  top: 8%;
  right: 3%;
  animation: lift-facade 12s var(--ease-in-out) infinite;
}

.worker-lift {
  top: -10%;
  right: 14%;
  animation: worker-facade 12s var(--ease-in-out) infinite;
}

.lift-arm {
  animation: lift-arm-facade 12s var(--ease-in-out) infinite;
}

.ground-installer {
  position: absolute;
  z-index: 8;
  width: 11%;
  height: 28%;
  left: 29%;
  bottom: 12%;
  opacity: 0;
  animation: installer-work 12s var(--ease-in-out) infinite;
}

.ground-installer .worker {
  position: absolute;
  width: 68%;
  height: 72%;
  top: 0;
  left: 7%;
}

.worker-ground {
  transform: rotate(-5deg);
}

.worker-ground .arm {
  top: 26px;
  transform: rotate(-32deg);
  animation: squeegee-arm 1.1s var(--ease-in-out) infinite alternate;
}

.squeegee {
  position: absolute;
  width: 18px;
  height: 3px;
  top: 21%;
  right: 4%;
  border-radius: 2px;
  background: var(--burgundy);
  transform: rotate(-22deg);
  animation: squeegee 1.1s var(--ease-in-out) infinite alternate;
}

.toolcase {
  position: absolute;
  width: 45%;
  height: 13%;
  right: 0;
  bottom: 3%;
  border: 1px solid #5e5956;
  background: #262324;
}

.toolcase::before {
  position: absolute;
  width: 36%;
  height: 35%;
  top: -40%;
  left: 32%;
  border: 1px solid #5e5956;
  border-bottom: 0;
  content: "";
}

.scene-progress > span::after {
  animation-duration: 12s;
}

.hero-foot {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #716c69;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-foot a {
  color: #a7a09d;
}

.hero-foot-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes carriage {
  from { transform: translateX(0); }
  to { transform: translateX(490%); }
}

@keyframes banner-feed {
  0%, 9% { transform: scaleY(.28); opacity: .7; }
  35%, 100% { transform: scaleY(1); opacity: 1; }
}

@keyframes lift-rise {
  0%, 34% { transform: translateY(42%); }
  55%, 100% { transform: translateY(0); }
}

@keyframes worker-rise {
  0%, 34% { transform: translateY(22%); }
  55%, 100% { transform: translateY(0); }
}

@keyframes arm-rise {
  0%, 34% { opacity: .32; }
  55%, 100% { opacity: 1; }
}

@keyframes sign-on {
  0%, 54% {
    color: #625e5c;
    text-shadow: none;
  }
  60%, 64% {
    color: #f7dfe1;
    text-shadow: 0 0 5px var(--burgundy), 0 0 16px var(--burgundy);
  }
  62% {
    color: #716b69;
    text-shadow: none;
  }
  70%, 100% {
    color: #fff5f4;
    text-shadow:
      0 0 4px #fff,
      0 0 11px var(--burgundy),
      0 0 28px rgba(169,35,49,.9);
  }
}

@keyframes ambient-glow {
  0%, 54% { opacity: .08; transform: scale(.94); }
  70%, 100% { opacity: .85; transform: scale(1); }
}

@keyframes progress {
  to { transform: scaleX(1); }
}

@keyframes fascia-build {
  0%, 7% { clip-path: inset(0 100% 0 0); }
  23%, 100% { clip-path: inset(0 0 0 0); }
}

@keyframes oracal-apply {
  0%, 21% { clip-path: inset(0 100% 0 0); }
  43%, 100% { clip-path: inset(0 0 0 0); }
}

@keyframes sign-install {
  0%, 39% {
    color: transparent;
    opacity: 0;
    text-shadow: none;
    transform: translateY(18px);
  }
  53% {
    color: #f0ece9;
    opacity: 1;
    text-shadow: 0 5px 7px rgba(0,0,0,.42);
    transform: translateY(0);
  }
  58% {
    color: #f0ece9;
    opacity: 1;
    text-shadow: 0 5px 7px rgba(0,0,0,.42);
    transform: translateY(0);
  }
  64%, 100% {
    color: #fff8f5;
    opacity: 1;
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 10px rgba(255,222,220,.72),
      0 5px 12px rgba(0,0,0,.4);
    transform: translateY(0);
  }
}

@keyframes glass-pass {
  0%, 62% { transform: translateX(0) skewX(-16deg); }
  78%, 100% { transform: translateX(470%) skewX(-16deg); }
}

@keyframes promo-place {
  0%, 66% { opacity: 0; transform: translateY(16px); }
  75%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes lift-facade {
  0%, 25% { transform: translateY(38%); }
  40%, 72% { transform: translateY(0); }
  86%, 100% { transform: translateY(45%); }
}

@keyframes worker-facade {
  0%, 25% { transform: translateY(18%); }
  40%, 72% { transform: translateY(0); }
  86%, 100% { transform: translateY(24%); }
}

@keyframes lift-arm-facade {
  0%, 25% { opacity: .28; }
  40%, 72% { opacity: 1; }
  86%, 100% { opacity: .28; }
}

@keyframes lift-exit {
  0%, 82% { opacity: 1; transform: translateX(0); }
  96%, 100% { opacity: .15; transform: translateX(32%); }
}

@keyframes installer-work {
  0%, 18% { opacity: 0; transform: translateX(-8px); }
  24%, 48% { opacity: 1; transform: translateX(0); }
  58%, 100% { opacity: 0; transform: translateX(12px); }
}

@keyframes squeegee-arm {
  from { transform: rotate(-38deg); }
  to { transform: rotate(-15deg); }
}

@keyframes squeegee {
  from { transform: translate(-5px, 8px) rotate(-22deg); }
  to { transform: translate(5px, -8px) rotate(-22deg); }
}

@keyframes scene-reset {
  0% { opacity: .62; }
  4%, 94% { opacity: 0; }
  100% { opacity: .62; }
}

@media (hover: hover) and (pointer: fine) {
  .header-cta:hover,
  .button-secondary:hover {
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.045);
  }

  .button-primary:hover {
    background: var(--burgundy-hover);
  }

  .phone:hover,
  .hero-foot a:hover {
    color: #fff;
  }
}

@media (max-width: 1120px) {
  .hero-content {
    grid-template-columns: minmax(380px, .85fr) minmax(480px, 1.15fr);
    gap: 28px;
  }

  h1 {
    font-size: clamp(40px, 5.3vw, 64px);
  }

  .production-scene {
    min-height: 450px;
  }

  .trust-row {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

  h1 {
    font-size: clamp(45px, 8vw, 72px);
  }

  .production-scene {
    width: min(720px, 100%);
    min-height: 0;
    justify-self: end;
  }

  .hero-foot {
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 18px;
  }

  .site-header {
    min-height: 76px;
  }

  .brand-copy small,
  .phone {
    display: none;
  }

  .header-cta {
    height: 40px;
    gap: 12px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero-content {
    gap: 42px;
    padding: 52px 0 42px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 58px);
    line-height: 1.08;
  }

  .lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    justify-content: space-between;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 38px;
  }

  .trust-row strong {
    font-size: 14px;
  }

  .trust-row span {
    font-size: 6px;
    line-height: 1.4;
  }

  .production-scene {
    aspect-ratio: .87;
  }

  .facade {
    width: 94%;
    height: 70%;
    right: 3%;
  }

  .shopfront {
    width: 92%;
    right: 4%;
    grid-template-columns: 1fr .56fr 1fr;
    border-width: 3px;
    gap: 3px;
  }

  .promo-stand {
    width: 16%;
    left: 1%;
  }

  .lift {
    width: 35%;
    right: -5%;
  }

  .ground-installer {
    width: 16%;
    left: 27%;
  }

  .sign-rail span {
    font-size: clamp(9px, 3vw, 15px);
  }

  .hero-foot-center {
    display: none;
  }
}

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

  .scene-glow,
  .sign-rail span,
  .production-scene::after,
  .fascia,
  .oracal,
  .glass-reflection,
  .promo-stand,
  .ground-installer,
  .squeegee,
  .lift-basket,
  .worker,
  .lift-arm,
  .lift,
  .scene-progress > span::after {
    animation: none;
  }

  .scene-glow {
    opacity: .72;
  }

  .sign-rail span {
    color: #fff5f4;
    opacity: 1;
    text-shadow: 0 0 4px #fff, 0 0 11px var(--burgundy), 0 0 28px rgba(169,35,49,.9);
    transform: none;
  }

  .fascia,
  .oracal {
    clip-path: inset(0);
  }

  .promo-stand {
    opacity: 1;
    transform: none;
  }

  .ground-installer {
    display: none;
  }

  .scene-progress > span::after {
    transform: scaleX(1);
  }
}

/* Portfolio */
.portfolio-hero {
  display: flex;
  min-height: 72svh;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(20px, 6vw, 96px) 70px;
  background:
    radial-gradient(circle at 84% 28%, rgba(150,30,43,.26), transparent 28%),
    linear-gradient(125deg, #171516, #0f0e0f);
  color: #f5f2ee;
}

.portfolio-hero h1 {
  max-width: 1100px;
  font-size: clamp(50px, 7.5vw, 122px);
}

.portfolio-hero h1 em {
  color: var(--burgundy);
}

.portfolio-hero > p {
  max-width: 720px;
  margin: 32px 0 0;
  color: #aaa4a0;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.7;
}

.portfolio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 38px;
  margin-top: 46px;
  color: #6f6966;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portfolio-gallery {
  padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 84px);
  background: var(--beige);
}

.portfolio-filters {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-filter {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--beige-border);
  border-radius: 6px;
  background: #fff;
  color: #171515;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.portfolio-filter:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.portfolio-filter.is-active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
}

.portfolio-filter:active {
  transform: scale(.98);
}

.portfolio-filter-status {
  width: 100%;
  max-width: 1450px;
  min-height: 1.4em;
  margin: -30px auto 24px;
  color: #77706b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.masonry-grid {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  columns: 3;
  column-gap: 18px;
}

.project-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--beige-border);
  background: #fff;
}

.project-card[hidden] {
  display: none !important;
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #1b191a;
}

.project-card > div {
  padding: 24px 24px 27px;
}

.project-card > div > span {
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 12px 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.project-card p {
  margin: 0;
  color: #77706b;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 760px) {
  .portfolio-hero {
    min-height: 670px;
    padding: 110px 20px 56px;
  }

  .portfolio-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .portfolio-gallery {
    padding-right: 14px;
    padding-left: 14px;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .portfolio-filter {
    flex: 0 0 auto;
  }

  .portfolio-filter-status {
    margin-top: -18px;
  }

  .masonry-grid {
    columns: 1;
  }

}

/* Requested refinements */
.brand-image {
  width: 104px;
  height: 64px;
}

.brand-image img {
  height: 57px;
}

.header-contact {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap;
  text-transform: uppercase;
  transition:
    background-color 160ms var(--ease-out),
    border-color 160ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.header-contact:active {
  transform: scale(.96);
}

.language-link[aria-label="Русский язык"] {
  background: linear-gradient(to bottom, #fff 0 33.33%, #2858bd 33.33% 66.66%, #d73843 66.66%);
}

.language-link[aria-label="O‘zbek tili"] {
  background:
    linear-gradient(
      to bottom,
      #24a7dc 0 30%,
      #d83445 30% 35%,
      #fff 35% 65%,
      #d83445 65% 70%,
      #20a45c 70% 100%
    );
}

.language-link[aria-label="O‘zbek tili"]::before {
  display: none;
}

.hero-foot-simple {
  justify-content: center;
  text-align: center;
}

.service-card {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(44,35,31,.07);
  transition:
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.service-card img {
  border-radius: 17px 17px 0 0;
}

.site-footer {
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
}

.footer-logo img {
  width: 118px;
  height: 80px;
}

.footer-nav {
  align-self: center;
  margin-top: 0;
}

.footer-contacts {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.footer-contacts a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  color: #d5cfcc;
  font-size: 11px;
}

.footer-contacts a > span:not(.instagram-icon) {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: var(--burgundy);
  font-size: 12px;
}

.footer-contacts b {
  font-weight: 700;
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #d5cfcc;
  border-radius: 7px;
}

.instagram-icon::before {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 6px;
  left: 6px;
  border: 2px solid #d5cfcc;
  border-radius: 50%;
  content: "";
}

.instagram-icon::after {
  position: absolute;
  width: 3px;
  height: 3px;
  top: 3px;
  right: 3px;
  border-radius: 50%;
  background: #d5cfcc;
  content: "";
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 26px;
}

@media (hover: hover) and (pointer: fine) {
  .header-contact:hover {
    border-color: var(--burgundy-hover);
    background: var(--burgundy-hover);
  }

  .service-card:hover {
    box-shadow: 0 22px 48px rgba(44,35,31,.13);
    transform: translateY(-5px);
  }

  .footer-contacts a:hover {
    color: #fff;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 12px;
  }

  .desktop-nav {
    gap: 10px;
  }

  .header-contact {
    padding: 0 11px;
    font-size: 8px;
  }
}

@media (max-width: 900px) {
  .brand-image {
    width: 88px;
  }

  .desktop-nav {
    gap: 7px;
  }

  .desktop-nav a {
    font-size: 7px;
  }

  .header-contact {
    min-height: 35px;
    padding: 0 9px;
    letter-spacing: 0;
  }
}

@media (max-width: 760px) {
  .brand-image {
    width: 88px;
  }

  .header-contact {
    display: none;
  }

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

  .footer-logo img {
    width: 105px;
    height: 72px;
  }

  .footer-contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }
}

/* Complete site */
body {
  background: var(--beige);
  color: #181718;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 76px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  background: #fff;
  color: #181718;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 76px;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(17,16,17,.86);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(17,16,17,.97);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.brand-image {
  display: flex;
  width: 132px;
  height: 69px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-image img {
  display: block;
  width: 100%;
  height: 66px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 27px);
}

.desktop-nav a {
  position: relative;
  color: #c8c2bf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .055em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 160ms var(--ease-out);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--burgundy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: #f0ece9;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-link {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  filter: saturate(.8);
  color: transparent;
  font-size: 0;
  line-height: 1;
  transition:
    border-color 160ms var(--ease-out),
    filter 160ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.language-link[aria-label="Русский язык"] {
  background: linear-gradient(to bottom, #fff 0 33.33%, #1f57c8 33.33% 66.66%, #d92f3d 66.66%);
}

.language-link[aria-label="O‘zbek tili"] {
  background:
    linear-gradient(
      to bottom,
      #29a8df 0 30%,
      #db2638 30% 34%,
      #fff 34% 64%,
      #db2638 64% 68%,
      #24a65a 68% 100%
    );
}

.language-link[aria-label="O‘zbek tili"]::before {
  width: 8px;
  height: 8px;
  margin-top: -12px;
  margin-left: -8px;
  border-radius: 50%;
  box-shadow: -2px 0 0 1px #fff;
  content: "";
}

.language-link.is-current {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 2px rgba(169,35,49,.18);
  filter: saturate(1);
}

.language-link:active {
  transform: scale(.94);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.menu-backdrop {
  position: fixed;
  z-index: 48;
  inset: 0;
  border: 0;
  background: rgba(8,7,8,.7);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 220ms var(--ease-out);
}

.menu-backdrop.is-open {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  display: flex;
  width: min(88vw, 390px);
  top: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  padding: 18px 22px 28px;
  background: #171516;
  color: #fff;
  box-shadow: -24px 0 70px rgba(0,0,0,.38);
  transform: translateX(100%);
  transition: transform 340ms var(--ease-out);
}

.mobile-menu[hidden],
.menu-backdrop[hidden] {
  display: none;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-menu-top img {
  width: 112px;
  height: 58px;
  object-fit: contain;
}

.menu-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.mobile-menu nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: #e9e4e1;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
}

.mobile-menu nav a::after {
  width: 14px;
  height: 14px;
  background: url("/assets/brand/arrow-up-right.svg") center / contain no-repeat;
  content: "";
  opacity: .55;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--burgundy);
}

.mobile-menu nav a[aria-current="page"]::after {
  opacity: 1;
}

.mobile-menu-cta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  padding-top: 76px;
  color: var(--ink);
}

.section {
  padding: clamp(86px, 10vw, 148px) clamp(20px, 5vw, 84px);
}

.section-heading {
  display: flex;
  width: 100%;
  max-width: 1450px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto clamp(42px, 6vw, 78px);
}

.section-heading > div {
  max-width: 900px;
}

.section-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 4.4vw, 70px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 7px;
  color: #68635f;
  font-size: 15px;
  line-height: 1.7;
}

.services-section,
.prices-section,
.faq-section {
  background: var(--beige);
}

.services-grid {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--beige-border);
  background: #fff;
}

.service-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 21vw, 340px);
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.service-card > div {
  position: relative;
  min-height: 190px;
  padding: 27px 28px 30px;
}

.service-card > div > span {
  position: absolute;
  top: 31px;
  right: 28px;
  color: #aaa39e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  font-weight: 500;
}

.service-card p {
  max-width: 330px;
  margin: 17px 0 0;
  color: #706a66;
  font-size: 13px;
  line-height: 1.65;
}

.portfolio-preview,
.process-section {
  background: #171516;
  color: #f5f2ee;
}

.home-equipment-section {
  overflow: hidden;
  background: var(--beige);
}

.home-equipment-intro {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(44px, 7vw, 120px);
  margin: 0 auto clamp(44px, 6vw, 76px);
}

.home-equipment-intro h2 {
  max-width: 940px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 4.4vw, 70px);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: 1.08;
}

.home-equipment-summary p {
  margin: 0 0 26px;
  color: #5f5a56;
  font-size: 15px;
  line-height: 1.7;
}

.home-equipment-summary .button {
  width: fit-content;
}

.home-equipment-summary .button-primary,
.home-equipment-summary .button-primary:visited {
  color: #fff;
}

.home-equipment-layout {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: minmax(0, 1.17fr) minmax(390px, .83fr);
  gap: 18px;
  margin: 0 auto;
}

.home-equipment-photo {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #1b191a;
}

.home-equipment-photo::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(10, 9, 9, .8));
  content: "";
}

.home-equipment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.equipment-photo-label {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.equipment-photo-label small,
.home-equipment-list small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.equipment-photo-label small {
  color: var(--burgundy);
}

.equipment-photo-label strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: 500;
  text-align: right;
}

.home-equipment-list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-top: 1px solid var(--beige-border);
  background: var(--beige);
}

.home-equipment-list a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-right: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
  transition: background-color 220ms ease, color 220ms ease;
}

.home-equipment-list a > span {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
}

.home-equipment-list a > div {
  display: grid;
  gap: 7px;
}

.home-equipment-list small {
  color: #918a84;
}

.home-equipment-list strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.25vw, 19px);
  font-weight: 500;
}

.home-equipment-list b {
  color: #77706b;
  font-size: 10px;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}

@media (hover: hover) {
  .home-equipment-photo:hover img {
    transform: scale(1.025);
  }

  .home-equipment-list a:hover {
    background: var(--burgundy-hover);
    color: #fff;
  }

  .home-equipment-list a:hover > span,
  .home-equipment-list a:hover small,
  .home-equipment-list a:hover b {
    color: rgba(255, 255, 255, .72);
  }
}

@media (max-width: 980px) {
  .home-equipment-intro,
  .home-equipment-layout {
    grid-template-columns: 1fr;
  }

  .home-equipment-summary {
    max-width: 600px;
  }

  .home-equipment-photo {
    min-height: clamp(390px, 65vw, 600px);
  }
}

@media (max-width: 620px) {
  .home-equipment-intro {
    gap: 28px;
  }

  .home-equipment-intro h2 br {
    display: none;
  }

  .home-equipment-photo {
    min-height: 360px;
  }

  .equipment-photo-label {
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
  }

  .equipment-photo-label strong {
    text-align: left;
  }

  .home-equipment-list a {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 19px 18px;
  }

  .home-equipment-list b {
    grid-column: 2;
    text-align: left;
  }
}

.section-heading-dark > p {
  color: #9e9894;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-grid {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
  margin: 0 auto;
}

.preview-item {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #242122;
}

.preview-wide {
  grid-row: span 2;
  min-height: 656px;
}

.preview-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.preview-item::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(8,7,8,.88));
  content: "";
}

.preview-item > span {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.preview-item b {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
}

.preview-item small {
  color: #b5afab;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.prices-list {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid var(--beige-border);
}

.price-row {
  display: grid;
  min-height: 96px;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--beige-border);
}

.price-row > span {
  color: #a69f99;
  font-size: 9px;
  font-weight: 800;
}

.price-row h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 1.6vw, 23px);
  font-weight: 500;
}

.price-row p {
  margin: 0;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
}

.price-note {
  max-width: 1450px;
  margin: 22px auto 0;
  color: #817a75;
  font-size: 11px;
  line-height: 1.6;
}

.clients-section {
  background: #fff;
}

.compact-heading {
  margin-bottom: 48px;
}

.clients-grid {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
}

.client-logo {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  background:
    linear-gradient(140deg, rgba(247,245,240,.42), transparent),
    #fff;
}

.client-logo img {
  display: block;
  width: min(180px, 80%);
  max-height: 82px;
  object-fit: contain;
  filter: saturate(.86);
  transition:
    filter 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.client-text-logo {
  flex-direction: column;
  color: #153d35;
  text-align: center;
}

.client-text-logo b {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
}

.client-text-logo small {
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: .18em;
}

.process-grid {
  display: grid;
  width: 100%;
  max-width: 1450px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
  list-style: none;
}

.process-grid li {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.process-grid li > span {
  color: var(--burgundy);
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
}

.process-grid h3 {
  max-width: 300px;
  margin: 55px 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.process-grid p {
  max-width: 310px;
  margin: 0;
  color: #96908d;
  font-size: 13px;
  line-height: 1.65;
}

.faq-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--beige-border);
}

.faq-list details {
  border-bottom: 1px solid var(--beige-border);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--beige-border);
  border-radius: 50%;
  color: var(--burgundy);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 0 28px;
  color: #6e6863;
  font-size: 14px;
  line-height: 1.75;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(380px, .72fr) minmax(520px, 1.28fr);
  background: #1b191a;
  color: #fff;
}

.contact-panel {
  padding: clamp(70px, 8vw, 120px) clamp(28px, 6vw, 92px);
}

.contact-panel h2 {
  font-size: clamp(34px, 4vw, 62px);
}

.contact-panel > p {
  max-width: 520px;
  margin: 26px 0 45px;
  color: #9e9894;
  font-size: 14px;
  line-height: 1.7;
}

.contact-links {
  border-top: 1px solid rgba(255,255,255,.13);
}

.contact-links a,
.contact-links > div {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.contact-links span {
  color: #7d7774;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-links b {
  color: #e9e4e1;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.contact-links .telegram-contact-button {
  display: inline-flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #229ed9;
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 158, 217, .24);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-links .telegram-contact-button:hover,
.contact-links .telegram-contact-button:focus-visible {
  background: #168ac3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 158, 217, .32);
}

.telegram-contact-button .telegram-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-links .telegram-contact-button b {
  color: inherit;
  font-size: 13px;
  text-align: left;
}

.map-wrap {
  min-height: 680px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
  filter: saturate(.72) contrast(1.02);
}

.site-footer {
  position: static;
  display: grid;
  padding: 70px clamp(20px, 5vw, 84px) 25px;
  background: #111011;
  color: #fff;
}

.footer-logo img {
  display: block;
  width: 170px;
  height: 114px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 38px;
  justify-self: end;
  margin-top: -65px;
}

.footer-nav a {
  color: #aaa4a0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #625d5a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: #fff;
  }

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

  .language-link:hover {
    border-color: rgba(255,255,255,.5);
    filter: saturate(1);
  }

  .service-card:hover img,
  .preview-item:hover img {
    transform: scale(1.035);
  }

  .client-logo:hover img {
    filter: saturate(1);
    transform: scale(1.04);
  }

  .contact-links a:hover b,
  .footer-nav a:hover {
    color: #fff;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .header-phone {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .brand-image {
    width: 110px;
  }

  .desktop-nav {
    gap: 9px;
  }

  .desktop-nav a {
    font-size: 8px;
  }

  .header-tools {
    gap: 10px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

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

  .preview-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-section {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    min-height: 70px;
    padding: 0 16px;
  }

  .brand-image {
    width: 112px;
    height: 64px;
  }

  .brand-image img {
    height: 62px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-button span {
    position: absolute;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  .menu-button span:first-child {
    top: 14px;
  }

  .menu-button span:last-child {
    bottom: 14px;
  }

  .menu-button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1px;
    background: #fff;
    content: "";
    transform: translate(-50%, -50%);
  }

  .language-link {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding-top: 70px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(31px, 9.5vw, 47px);
  }

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

  .service-card img {
    height: auto;
    max-height: 470px;
    object-fit: cover;
  }

  .service-card > div {
    min-height: 165px;
    padding: 24px 22px;
  }

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

  .preview-wide,
  .preview-item {
    grid-column: auto;
    min-height: 420px;
  }

  .price-row {
    min-height: 92px;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .price-row p {
    grid-column: 2;
    font-size: 12px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo {
    min-height: 125px;
    padding: 20px;
  }

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

  .process-grid li {
    min-height: 230px;
    padding: 27px 24px;
  }

  .process-grid h3 {
    margin-top: 38px;
  }

  .faq-list summary {
    min-height: 74px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
  }

  .contact-panel {
    padding: 72px 20px;
  }

  .contact-links a,
  .contact-links > div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 13px 0;
  }

  .contact-links .telegram-contact-button {
    width: 100%;
    min-height: 46px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
  }

  .contact-links b {
    text-align: left;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-logo img {
    width: 145px;
  }

  .footer-nav {
    justify-content: flex-start;
    justify-self: auto;
    margin-top: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Final refinement overrides */
.brand-image {
  width: 104px;
  height: 64px;
}

.brand-image img {
  height: 57px;
}

.language-link[aria-label="Русский язык"] {
  background: linear-gradient(to bottom, #fff 0 33.33%, #2858bd 33.33% 66.66%, #d73843 66.66%);
}

.language-link[aria-label="O‘zbek tili"] {
  background:
    linear-gradient(
      to bottom,
      #24a7dc 0 30%,
      #d83445 30% 35%,
      #fff 35% 65%,
      #d83445 65% 70%,
      #20a45c 70% 100%
    );
}

.language-link[aria-label="O‘zbek tili"]::before {
  display: none;
}

.hero-foot-simple {
  justify-content: center;
  text-align: center;
}

.service-card {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(44,35,31,.07);
}

.service-card img {
  border-radius: 17px 17px 0 0;
}

.site-footer {
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
}

.footer-logo img {
  width: 118px;
  height: 80px;
}

.footer-nav {
  align-self: center;
  margin-top: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .brand-image {
    width: 88px;
  }
}

@media (max-width: 760px) {
  .brand-image {
    width: 88px;
  }

  .header-contact {
    display: none;
  }

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

  .footer-logo img {
    width: 105px;
    height: 72px;
  }

  .footer-nav {
    margin-top: 30px;
  }
}

/* Contact and footer polish */
.contacts-section,
.site-footer {
  background: #111011;
}

.brand-image {
  width: 52px;
  height: 48px;
}

.brand-image img {
  width: 52px;
  height: 36px;
}

.header-contact {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(169, 35, 49, .24);
}

.site-footer {
  grid-template-columns: 74px minmax(250px, 1fr) auto;
  column-gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding-top: 48px;
}

.footer-logo img {
  width: 59px;
  height: 40px;
}

.footer-nav {
  justify-self: start;
  margin: 0;
}

.footer-contacts {
  justify-self: end;
  margin: 0;
  padding: 0;
  border: 0;
}

.footer-contacts a {
  min-height: 36px;
}

.footer-bottom {
  grid-column: 1 / -1;
}

@media (hover: hover) and (pointer: fine) {
  .header-contact:hover {
    border-color: var(--burgundy-hover);
    background: var(--burgundy-hover);
    color: #fff;
    transform: translateY(-1px);
  }
}

@media (max-width: 1100px) {
  .site-footer {
    grid-template-columns: 74px 1fr;
  }

  .footer-contacts {
    grid-column: 2;
    justify-self: start;
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  .brand-image {
    width: 44px;
  }

  .brand-image img {
    width: 44px;
    height: 31px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 53px;
    height: 36px;
  }

  .footer-nav,
  .footer-contacts {
    grid-column: 1;
    justify-self: start;
  }

  .footer-nav {
    margin-top: 24px;
  }
}

/* Wide-format printing */
.button-print {
  border-color: var(--burgundy);
  color: var(--ink);
  background: var(--burgundy-soft);
}

.instagram-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  overflow: visible;
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.instagram-icon .instagram-dot {
  fill: var(--burgundy);
  stroke: none;
}

.instagram-icon::before {
  display: none;
}

.instagram-icon::after {
  display: none;
}

/* Consistent interface icons across iOS, Android and desktop browsers */
.ui-icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  overflow: visible;
  vertical-align: -.14em;
}

.header-contact,
.mobile-menu-cta,
.button,
.text-link {
  gap: 8px;
}

.contact-links b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-contacts .phone-icon .ui-icon {
  width: 15px;
  height: 15px;
}

.print-hero {
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(480px, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
  padding: 150px clamp(24px, 6vw, 92px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(169, 35, 49, .15), transparent 29%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #111011;
  background-size: auto, 54px 54px, 54px 54px, auto;
  color: #f6f2ef;
}

.print-hero-copy {
  position: relative;
  z-index: 2;
}

.print-hero h1 {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(42px, 3.5vw, 52px);
  line-height: .96;
}

.print-hero h1 em {
  color: var(--burgundy);
  font-style: normal;
}

.print-hero-copy > p {
  max-width: 620px;
  margin-top: 30px;
  color: #a7a09c;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
}

.print-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  color: #736d69;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.printer-stage {
  position: relative;
  min-height: 550px;
  transform: scale(.9);
  transform-origin: center;
}

.printer-shadow {
  position: absolute;
  width: 76%;
  height: 74px;
  left: 12%;
  bottom: 25px;
  border-radius: 50%;
  background: rgba(0,0,0,.62);
  filter: blur(22px);
}

.solvent-printer {
  position: absolute;
  width: min(720px, 96%);
  height: 325px;
  top: 64px;
  left: 2%;
  border: 1px solid #393537;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(155deg, #2b2829 0 13%, #171617 40% 100%);
  box-shadow: 0 35px 70px rgba(0,0,0,.48);
}

.printer-lid {
  position: absolute;
  height: 62px;
  inset: 0 0 auto;
  border-bottom: 1px solid #3c3739;
  border-radius: inherit;
  background: linear-gradient(180deg, #343032, #201e1f);
}

.printer-brand {
  position: absolute;
  top: 23px;
  left: 32px;
  color: var(--burgundy);
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
}

.printer-controls {
  position: absolute;
  display: flex;
  top: 20px;
  right: 24px;
  align-items: center;
  gap: 8px;
}

.printer-screen {
  width: 66px;
  height: 25px;
  border: 1px solid #4d4a45;
  border-radius: 3px;
  background: #9dbaaa;
  box-shadow: inset 0 0 10px rgba(23,50,36,.45);
}

.printer-controls i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 11px rgba(169,35,49,.85);
}

.printer-window {
  position: absolute;
  height: 142px;
  inset: 88px 28px auto;
  overflow: hidden;
  border: 1px solid #423e40;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #0d0d0e;
  background-size: 36px 100%;
}

.printer-rail {
  position: absolute;
  height: 5px;
  top: 25px;
  right: 16px;
  left: 16px;
  background: #5e595b;
  box-shadow: 0 27px 0 #292729;
}

.printer-carriage {
  position: absolute;
  width: 76px;
  height: 57px;
  top: 8px;
  left: 7%;
  border: 1px solid #494548;
  border-radius: 3px;
  background: linear-gradient(135deg, #393638, #191819);
  box-shadow: 0 10px 18px rgba(0,0,0,.35);
  animation: print-carriage 3.4s ease-in-out infinite alternate;
}

.printer-carriage::after {
  position: absolute;
  height: 2px;
  right: 9px;
  bottom: -7px;
  left: 9px;
  background: var(--burgundy);
  box-shadow: 0 0 8px var(--burgundy);
  content: "";
}

.printer-progress {
  position: absolute;
  height: 3px;
  right: 16px;
  bottom: 18px;
  left: 16px;
  overflow: hidden;
  background: #282527;
}

.printer-progress::after {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--burgundy);
  box-shadow: 0 0 10px rgba(169,35,49,.8);
  content: "";
  animation: print-progress 3.4s ease-in-out infinite;
}

.printer-slot {
  position: absolute;
  height: 16px;
  right: 52px;
  bottom: 55px;
  left: 52px;
  border-radius: 0 0 5px 5px;
  background: #060607;
}

.printed-media {
  position: absolute;
  z-index: 2;
  width: calc(100% - 126px);
  height: 255px;
  left: 63px;
  top: 290px;
  overflow: hidden;
  border: 1px solid #302d2f;
  background: #d6d2cc;
  transform: perspective(650px) rotateX(7deg);
  transform-origin: top;
  box-shadow: 0 25px 35px rgba(0,0,0,.32);
}

.printed-art {
  position: absolute;
  inset: -70px 0 0;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255,255,255,.28) 22% 23%, transparent 23%),
    linear-gradient(135deg, var(--burgundy) 0 28%, #191719 28% 56%, #d5d0ca 56%);
  animation: media-feed 4.8s linear infinite;
}

.printed-art::before {
  position: absolute;
  left: 8%;
  bottom: 16%;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -.05em;
  content: "WORLD PRINT";
}

.printed-art::after {
  position: absolute;
  right: 7%;
  top: 19%;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  content: "WIDE FORMAT / 1440 DPI";
}

.printer-leg {
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 154px;
  top: 378px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #171617, #363234, #151415);
}

.printer-leg-left { left: 16%; }
.printer-leg-right { right: 18%; }

.print-prices {
  padding: clamp(76px, 9vw, 130px) clamp(20px, 6vw, 92px);
  background: var(--beige);
}

.print-prices-header {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
}

.print-prices h2 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
}

.print-prices-header > p {
  max-width: 520px;
  color: #6e6863;
  font-size: 14px;
  line-height: 1.75;
}

.print-price-grid {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  border-top: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
}

.print-price-card {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  background: rgba(255,255,255,.2);
}

.print-price-card span {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.print-price-card h3 {
  min-height: 64px;
  margin-top: 44px;
  font-size: clamp(17px, 1.5vw, 23px);
}

.print-price-card strong {
  display: block;
  margin-top: 30px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 600;
  color: #1d1a1b;
}

.print-price-card small {
  display: block;
  margin-top: 8px;
  color: #817a75;
  font-size: 10px;
  text-transform: uppercase;
}

.print-note {
  margin-top: 26px;
  color: #77706b;
  font-size: 12px;
}

@keyframes print-carriage {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100% + 420px)); }
}

@keyframes print-progress {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(245%); }
}

@keyframes media-feed {
  from { transform: translateY(-28px); }
  to { transform: translateY(38px); }
}

@media (hover: hover) and (pointer: fine) {
  .button-print:hover {
    border-color: var(--burgundy-hover);
    background: var(--burgundy-hover);
    color: #fff;
  }

  .print-price-card {
    transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .print-price-card:hover {
    position: relative;
    z-index: 1;
    background: #fff;
    transform: translateY(-5px);
  }
}

@media (max-width: 1050px) {
  .print-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .printer-stage {
    width: min(760px, 100%);
    margin: 0 auto;
    transform-origin: top center;
  }

  .print-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .hero-actions .button {
    width: 100%;
  }

  .print-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 112px 18px 60px;
  }

  .print-hero h1 {
    font-size: clamp(28px, 7.5vw, 34px);
    letter-spacing: -.065em;
  }

  .printer-stage {
    width: 100%;
    min-width: 0;
    min-height: 390px;
    transform: scale(.78);
    transform-origin: top center;
    margin-bottom: -88px;
  }

  .solvent-printer {
    width: 118%;
    left: -9%;
  }

  .print-prices-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .print-price-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .print-price-card {
    min-height: 190px;
  }

  .print-price-card h3 {
    min-height: 0;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .printer-carriage,
  .printer-progress::after,
  .printed-art {
    animation: none;
  }
}

/* Equipment page */
.equipment-page {
  overflow: hidden;
  background: var(--beige);
}

.equipment-hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 48px;
  padding: 170px clamp(24px, 6vw, 96px) 120px;
  background: #111011;
  color: #f7f3ef;
}

.equipment-hero-copy {
  max-width: 980px;
}

.equipment-hero h1 {
  max-width: 940px;
  margin: 28px 0 30px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: .91;
  letter-spacing: -.075em;
}

.equipment-hero h1 em {
  color: var(--burgundy);
  font-style: normal;
}

.equipment-hero-copy > p {
  max-width: 650px;
  margin-bottom: 38px;
  color: #a9a19c;
  font-size: 17px;
  line-height: 1.75;
}

.equipment-quick-nav {
  display: flex;
  max-width: 920px;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-quick-nav a,
.equipment-quick-nav button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .055);
  color: #f7f3ef;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .015em;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.equipment-quick-nav a:hover,
.equipment-quick-nav a:focus-visible {
  border-color: var(--burgundy-hover);
  background: var(--burgundy-hover);
  transform: translateY(-2px);
}

.equipment-quick-nav button:disabled {
  cursor: default;
  opacity: .52;
}

.equipment-page .button {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(169, 35, 49, .2);
}

.equipment-page .button-primary {
  background: var(--burgundy);
  border-color: rgba(255, 255, 255, .08);
}

@media (hover: hover) {
  .equipment-page .button:hover {
    transform: translateY(-2px);
  }

  .equipment-page .button-primary:hover {
    background: var(--burgundy-hover);
    box-shadow: 0 18px 42px rgba(169, 35, 49, .3);
  }
}

.equipment-hero-index {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 8px;
  color: #706a67;
  text-transform: uppercase;
}

.equipment-hero-index strong {
  color: #f7f3ef;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(66px, 7vw, 108px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.08em;
}

.equipment-hero-index span {
  width: 82px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .12em;
}

.machine-showcase {
  scroll-margin-top: 92px;
  padding: clamp(72px, 8vw, 128px) clamp(20px, 5vw, 78px);
}

.machine-photo {
  position: relative;
  max-width: 1540px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  background: var(--beige-border);
  box-shadow: 0 34px 80px rgba(32, 25, 23, .16);
}

.machine-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.machine-photo-caption {
  position: absolute;
  display: none;
  right: 24px;
  bottom: 22px;
  left: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 13px;
  background: rgba(17, 16, 17, .82);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.machine-photo-caption span {
  color: #aaa29d;
}

.machine-content {
  display: grid;
  max-width: 1380px;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  gap: 52px clamp(48px, 7vw, 118px);
  margin: clamp(58px, 7vw, 108px) auto 0;
}

.machine-heading {
  align-self: start;
}

.machine-number,
.machine-type {
  display: inline-block;
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.machine-heading h2 {
  margin: 24px 0 26px;
  color: #171416;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .88;
  letter-spacing: -.075em;
}

.machine-type {
  padding: 13px 18px;
  border: 1px solid rgba(169, 35, 49, .32);
  border-radius: 999px;
  background: rgba(169, 35, 49, .06);
  color: var(--burgundy);
  font-size: clamp(14px, 1.35vw, 17px);
  letter-spacing: .1em;
}

.machine-lead {
  align-self: end;
  max-width: 760px;
  margin: 0;
  color: #59524e;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.52;
  letter-spacing: -.025em;
}

.machine-specs {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  border-top: 1px solid var(--beige-border);
}

.machine-specs > div {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) 1.35fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--beige-border);
}

.machine-specs dt {
  color: #817872;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.machine-specs dd {
  margin: 0;
  color: #211d1f;
  font-size: 16px;
  font-weight: 700;
}

.machine-prices {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
}

.machine-prices-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.machine-prices-six,
.machine-prices-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.machine-subsection-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 18px;
  padding-top: 34px;
  border-top: 1px solid var(--beige-border);
}

.machine-subsection-heading > span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.machine-subsection-heading h3 {
  max-width: 760px;
  margin: 0;
  color: #211d1f;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.machine-subsection-heading p {
  max-width: 680px;
  margin: 0;
  color: #746c67;
  font-size: 14px;
  line-height: 1.65;
}

.machine-prices-materials article {
  min-height: 210px;
}

.machine-showcase-alt {
  border-top: 1px solid var(--beige-border);
}

.machine-photo-contain img {
  object-fit: contain;
}

.machine-prices article {
  min-height: 228px;
  padding: 24px;
  border-right: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  background: var(--card);
}

.machine-prices article > span {
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.machine-prices h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-height: 48px;
  margin: 42px 0 20px;
  color: #211d1f;
  font-size: 15px;
  line-height: 1.35;
}

.machine-prices .price-process {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(169, 35, 49, .22);
  border-radius: 999px;
  background: rgba(169, 35, 49, .07);
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.machine-prices strong {
  display: block;
  color: var(--burgundy);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -.055em;
}

.machine-prices small {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(169, 35, 49, .22);
  border-radius: 4px;
  background: rgba(169, 35, 49, .07);
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.machine-cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px 34px;
  border-radius: 18px;
  background: #171416;
  color: #fff;
}

.machine-cta p {
  max-width: 580px;
  margin: 0;
  color: #b9b1ac;
  font-size: 14px;
  line-height: 1.65;
}

.equipment-next,
.laser-service {
  padding: clamp(76px, 9vw, 136px) clamp(24px, 8vw, 130px);
  background: #1a1719;
  color: #f7f3ef;
}

.equipment-next h2 {
  max-width: 1000px;
  margin: 30px 0;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

.equipment-next p {
  max-width: 680px;
  margin: 0;
  color: #9f9792;
  font-size: 16px;
  line-height: 1.75;
}

.laser-service {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.laser-service-copy h2 {
  max-width: 920px;
  margin: 30px 0;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

.laser-service-copy p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #aaa19c;
  font-size: 16px;
  line-height: 1.75;
}

.laser-price-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(169, 35, 49, .2), transparent 58%),
    #111012;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.laser-price-card > span,
.laser-price-card small {
  display: block;
  color: #a79d98;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.laser-price-card strong {
  display: block;
  margin: 92px 0 12px;
  color: #f7f3ef;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: .9;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.laser-price-card small {
  color: var(--burgundy);
}

@media (hover: hover) and (pointer: fine) {
  .machine-photo img {
    transition: transform 700ms var(--ease-out);
  }

  .machine-photo:hover img {
    transform: scale(1.012);
  }

  .machine-prices article {
    transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .machine-prices article:hover {
    z-index: 1;
    background: color-mix(in srgb, var(--beige), var(--burgundy) 5%);
    transform: translateY(-5px);
  }
}

@media (max-width: 980px) {
  .equipment-hero {
    min-height: 590px;
    grid-template-columns: 1fr;
  }

  .equipment-hero-index {
    display: none;
  }

  .machine-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .machine-lead {
    max-width: 820px;
  }

  .machine-specs,
  .machine-prices,
  .machine-cta {
    grid-column: 1;
  }

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

@media (max-width: 620px) {
  .equipment-hero {
    min-height: 610px;
    align-items: center;
    padding: 112px 18px 64px;
  }

  .equipment-hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .equipment-hero-copy > p {
    font-size: 14px;
  }

  .equipment-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-quick-nav a,
  .equipment-quick-nav button {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .machine-showcase {
    padding: 54px 14px 68px;
  }

  .machine-photo {
    border-radius: 16px;
  }

  .machine-photo-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px 12px;
    border-radius: 9px;
  }

  .machine-photo-caption span {
    display: none;
  }

  .machine-content {
    gap: 30px;
    margin-top: 44px;
  }

  .machine-heading h2 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .machine-lead {
    font-size: 18px;
  }

  .machine-specs > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .machine-prices {
    grid-template-columns: 1fr;
  }

  .machine-prices article {
    min-height: 180px;
  }

  .machine-prices h3 {
    min-height: auto;
    margin-top: 28px;
  }

  .machine-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .machine-cta .button {
    width: 100%;
  }

  .equipment-next {
    padding: 76px 18px;
  }

  .laser-service {
    grid-template-columns: 1fr;
    padding: 76px 18px;
  }

  .laser-price-card {
    min-height: 250px;
  }

  .laser-price-card strong {
    margin-top: 68px;
  }
}

/* One consistent dark hero shell across every primary page. */
:root {
  --dark-hero-min-height: min(820px, 100svh);
}

.hero,
.portfolio-hero,
.print-hero,
.equipment-hero {
  min-height: var(--dark-hero-min-height);
}

@media (max-width: 900px) {
  :root {
    --dark-hero-min-height: min(760px, 100svh);
  }
}

@media (max-width: 620px) {
  :root {
    --dark-hero-min-height: min(720px, 100svh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .machine-photo img,
  .machine-prices article {
    transition: none;
  }
}

/* Unified production-blueprint heroes */
.portfolio-hero,
.print-hero,
.equipment-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 34%, rgba(169, 35, 49, .18), transparent 30%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    #111011;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.portfolio-hero::before,
.print-hero::before,
.equipment-hero::before {
  position: absolute;
  z-index: 0;
  inset: 112px clamp(20px, 4vw, 64px) 46px;
  border: 1px solid rgba(255, 255, 255, .07);
  background:
    linear-gradient(90deg, var(--burgundy) 18px, transparent 0) top left / 42px 1px no-repeat,
    linear-gradient(var(--burgundy) 18px, transparent 0) top left / 1px 42px no-repeat,
    linear-gradient(270deg, rgba(255, 255, 255, .22) 18px, transparent 0) bottom right / 42px 1px no-repeat,
    linear-gradient(0deg, rgba(255, 255, 255, .22) 18px, transparent 0) bottom right / 1px 42px no-repeat;
  content: "";
  pointer-events: none;
}

.portfolio-hero > *,
.print-hero > *,
.equipment-hero > * {
  position: relative;
  z-index: 1;
}

/* Portfolio proof wall */
.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(470px, .88fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding: 150px clamp(34px, 6vw, 96px) 86px;
}

.portfolio-hero-copy {
  max-width: 790px;
}

.portfolio-hero h1 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: .96;
}

.portfolio-hero-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
}

.portfolio-proof-board {
  display: block;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(25, 23, 24, .82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(8px);
  transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.proof-board-header,
.proof-board-footer {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8e8783;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.proof-board-header {
  padding: 0 7px 10px;
}

.proof-board-footer {
  padding: 11px 7px 0;
}

.proof-board-header b,
.proof-board-footer b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8d2ce;
}

.proof-board-header i,
.equipment-monitor-header i,
.equipment-hero-monitor figcaption > b i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 12px rgba(169, 35, 49, .75);
}

.proof-board-grid {
  display: grid;
  aspect-ratio: 1.18;
  grid-template-columns: 1.22fr .78fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.proof-board-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #242122;
}

.proof-board-grid .proof-board-main {
  grid-row: 1 / 3;
}

.proof-board-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform 600ms var(--ease-out), filter 200ms ease;
}

.proof-board-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 32px 14px 13px;
  background: linear-gradient(transparent, rgba(8, 7, 8, .9));
}

.proof-board-grid figcaption b {
  color: #fff;
  font-size: 11px;
}

.proof-board-grid figcaption small {
  color: #aaa39f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Print lab alignment */
.printer-stage {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(18, 17, 18, .28);
}

.printer-stage::before,
.printer-stage::after {
  position: absolute;
  z-index: 4;
  top: 16px;
  color: #817a76;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.printer-stage::before {
  left: 18px;
  content: "WORLD PRINT / PRINT LAB";
}

.printer-stage::after {
  right: 18px;
  content: "02 / SOLVENT";
}

/* Equipment inspection monitor */
.equipment-hero {
  grid-template-columns: minmax(520px, .96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding: 150px clamp(34px, 6vw, 96px) 86px;
}

.equipment-hero-copy {
  max-width: 760px;
}

.equipment-hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: .94;
}

.equipment-hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  padding-right: 50px;
}

.equipment-hero-monitor {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(25, 23, 24, .84);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(8px);
}

.equipment-monitor-header {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 7px 10px;
  color: #8e8783;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.equipment-monitor-header b,
.equipment-hero-monitor figcaption > b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.equipment-monitor-header b {
  color: #d8d2ce;
}

.equipment-monitor-image {
  position: relative;
  display: block;
  height: clamp(300px, 30vw, 440px);
  overflow: hidden;
  background: #242122;
}

.equipment-monitor-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 7, 8, .7));
  content: "";
  pointer-events: none;
}

.equipment-monitor-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
}

.equipment-hero-monitor figcaption {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 7px 0;
}

.equipment-hero-monitor figcaption span {
  display: grid;
  gap: 6px;
}

.equipment-hero-monitor figcaption small {
  color: #817a76;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.equipment-hero-monitor figcaption strong {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
}

.equipment-hero-monitor figcaption > b {
  color: #d8d2ce;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.equipment-hero-rail {
  position: absolute;
  top: 54px;
  right: 0;
  bottom: 86px;
  display: grid;
  width: 38px;
  align-items: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(17, 16, 17, .84);
  color: #5e5956;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.equipment-hero-rail strong {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--burgundy);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-proof-board:hover {
    border-color: rgba(169, 35, 49, .65);
    transform: translateY(-4px);
  }

  .portfolio-proof-board:hover img {
    filter: saturate(.95) contrast(1.03);
  }

  .portfolio-proof-board:hover .proof-board-main img {
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .portfolio-hero,
  .equipment-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 138px;
  }

  .portfolio-hero-copy,
  .equipment-hero-copy {
    max-width: 860px;
  }

  .portfolio-proof-board,
  .equipment-hero-visual {
    width: min(760px, 100%);
    max-width: none;
    justify-self: start;
  }

  .portfolio-proof-board {
    margin-top: 8px;
  }
}

@media (max-width: 700px) {
  .portfolio-hero::before,
  .print-hero::before,
  .equipment-hero::before {
    inset: 82px 10px 18px;
  }

  .portfolio-hero,
  .equipment-hero {
    gap: 34px;
    padding: 112px 18px 48px;
  }

  .portfolio-hero h1,
  .equipment-hero h1 {
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: .96;
  }

  .equipment-hero h1 {
    font-size: clamp(34px, 10.3vw, 48px);
    overflow-wrap: anywhere;
  }

  .portfolio-hero-copy > p,
  .equipment-hero-copy > p {
    font-size: 14px;
  }

  .portfolio-hero-meta {
    margin-top: 30px;
  }

  .portfolio-proof-board {
    padding: 10px;
  }

  .proof-board-grid {
    aspect-ratio: .96;
    grid-template-columns: 1.15fr .85fr;
    gap: 6px;
  }

  .proof-board-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 28px 10px 10px;
  }

  .proof-board-header,
  .proof-board-footer {
    font-size: 7px;
  }

  .equipment-hero-visual {
    padding-right: 34px;
  }

  .equipment-hero-monitor {
    padding: 10px;
  }

  .equipment-monitor-image {
    height: 250px;
  }

  .equipment-hero-monitor figcaption {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .equipment-hero-rail {
    top: 49px;
    bottom: 114px;
    width: 28px;
    font-size: 7px;
  }

  .printer-stage::before,
  .printer-stage::after {
    top: 12px;
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-proof-board,
  .proof-board-grid img {
    transition: none;
  }
}

/* Services directory: one source of truth for prices */
.services-price-page { overflow: clip; }

.service-price-nav {
  display: grid;
  margin: 56px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
}

.service-price-nav a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  color: #1b1819;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.service-price-nav a::after { content: "↓"; color: var(--burgundy); font-size: 16px; }

.service-price-group {
  scroll-margin-top: 92px;
  margin-top: clamp(72px, 9vw, 126px);
  padding-top: 28px;
  border-top: 2px solid #1b1819;
}

.service-price-heading {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(280px, 1fr) minmax(260px, .8fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.service-price-heading > span {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-price-heading h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.service-price-heading p {
  max-width: 460px;
  margin: 0;
  color: #706965;
  font-size: 14px;
  line-height: 1.65;
}

.services-price-page .machine-prices { width: 100%; }

.production-context-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.production-context-link .ui-icon { width: 13px; height: 13px; }

.materials-prices {
  margin-top: 20px;
  border: 1px solid var(--beige-border);
  background: rgba(255, 255, 255, .26);
}

.materials-prices summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: #1b1819;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  list-style: none;
  text-transform: uppercase;
}

.materials-prices summary::-webkit-details-marker { display: none; }
.materials-prices summary::after { content: "+"; color: var(--burgundy); font-family: "Unbounded", sans-serif; font-size: 22px; font-weight: 400; }
.materials-prices[open] summary::after { content: "−"; }
.materials-prices .machine-prices { border-left: 0; }

.service-price-laser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  align-items: end;
  column-gap: clamp(36px, 7vw, 100px);
}

.service-price-laser .service-price-heading { grid-template-columns: 1fr; align-content: end; margin: 0; }
.service-price-laser .laser-price-card { min-height: 240px; }
.service-price-laser .production-context-link { grid-column: 1 / -1; }

.service-price-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(72px, 9vw, 126px);
  padding: 28px;
  border-radius: 18px;
  background: #171416;
  color: #fff;
}

.service-price-final p { max-width: 680px; margin: 0; color: #b9b1ac; font-size: 14px; line-height: 1.65; }

.production-capability-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(135deg, rgba(169, 35, 49, .18), transparent 48%), #111011;
}

.production-capability-card span,
.production-capability-card small { color: #8d8581; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.production-capability-card strong {
  margin: 28px 0 14px;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .service-price-nav a,
  .production-context-link { transition: color .2s ease, background-color .2s ease; }
  .service-price-nav a:hover { background: rgba(169, 35, 49, .06); color: var(--burgundy); }
  .production-context-link:hover { color: #6f111d; }
}

@media (max-width: 900px) {
  .service-price-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-price-heading { grid-template-columns: 1fr; gap: 14px; }
  .service-price-laser { grid-template-columns: 1fr; row-gap: 28px; }
  .service-price-laser .laser-price-card { min-height: 210px; }
}

@media (max-width: 600px) {
  .service-price-nav { grid-template-columns: 1fr; margin-top: 34px; }
  .service-price-nav a { min-height: 58px; padding: 15px 16px; font-size: 10px; }
  .service-price-group { margin-top: 70px; }
  .service-price-heading h3 { font-size: 29px; }
  .services-price-page .machine-prices { grid-template-columns: 1fr; }
  .services-price-page .machine-prices article { min-height: 178px; }
  .service-price-final { align-items: stretch; flex-direction: column; padding: 22px; }
  .service-price-final .button { width: 100%; }
}

/* 2026 visual storytelling: prices, proof, process, FAQ and production */
.price-directions,
.client-proof-grid,
.client-logo-strip,
.process-map,
.faq-layout {
  width: 100%;
  max-width: 1450px;
  margin-inline: auto;
}

.price-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.prices-section .button-print { color: #181516; }

.price-direction-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--beige-border);
  border-radius: 18px;
  background: #fff;
  color: #181516;
  box-shadow: 0 22px 58px rgba(36, 29, 27, .07);
}

.price-direction-card figure {
  height: clamp(240px, 25vw, 390px);
  margin: 0;
  overflow: hidden;
  background: #d8d2ca;
}

.price-direction-card img,
.client-proof-card img,
.machine-output img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-direction-card img { transition: transform 500ms var(--ease-out); }

.price-direction-copy {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.price-direction-copy > span,
.client-proof-card span,
.faq-contact-card > span,
.machine-output > div > span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-direction-copy h3 {
  margin: 26px 0 auto;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.price-direction-copy strong {
  margin-top: 30px;
  color: var(--burgundy);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: -.035em;
}

.price-direction-copy p { margin: 10px 0 24px; color: #706965; font-size: 12px; }
.price-direction-copy small { padding-top: 17px; border-top: 1px solid var(--beige-border); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.client-proof-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 12px; }

.client-proof-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 18px;
  background: #171516;
  color: #fff;
}

.client-proof-card::after { position: absolute; inset: 34% 0 0; background: linear-gradient(transparent, rgba(13, 11, 12, .94)); content: ""; }
.client-proof-card img { transition: transform 650ms var(--ease-out); }
.client-proof-card > div { position: absolute; z-index: 1; right: 28px; bottom: 28px; left: 28px; }
.client-proof-card h3 { margin: 14px 0 10px; font-size: clamp(22px, 2vw, 32px); }
.client-proof-card p { max-width: 420px; margin: 0; color: #c4beba; font-size: 13px; line-height: 1.6; }

.client-logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 12px;
  border-top: 1px solid var(--beige-border);
  border-left: 1px solid var(--beige-border);
}

.client-logo-strip > div { display: grid; min-height: 96px; place-items: center; padding: 18px; border-right: 1px solid var(--beige-border); border-bottom: 1px solid var(--beige-border); }
.client-logo-strip img { display: block; width: min(110px, 88%); max-height: 48px; object-fit: contain; filter: saturate(.72); }

.client-brand-board,
.client-trust-notes {
  width: 100%;
  max-width: 1450px;
  margin-inline: auto;
}

.client-brand-board {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr);
  overflow: hidden;
  border-radius: 20px;
  background: #171416;
  box-shadow: 0 28px 70px rgba(35, 27, 26, .12);
}

.client-brand-statement {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 68px);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(169,35,49,.25), transparent 36%);
  background-size: 54px 54px, 54px 54px, auto;
  color: #fff;
}

.client-brand-statement > span,
.client-trust-notes span { color: var(--burgundy); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.client-brand-statement h3 { margin: 28px 0 20px; font-size: clamp(30px, 3.5vw, 54px); line-height: 1.05; }
.client-brand-statement p { max-width: 520px; margin: 0; color: #aaa29e; font-size: 14px; line-height: 1.7; }
.client-brand-statement a { display: inline-flex; width: fit-content; align-items: center; gap: 10px; margin-top: 38px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.client-brand-statement a .ui-icon { width: 13px; height: 13px; }

.client-brand-logos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.1); }
.client-brand-logos > div { display: grid; min-height: 160px; place-items: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.client-brand-logos img { display: block; width: min(130px, 88%); max-height: 62px; object-fit: contain; filter: saturate(.72) brightness(.93); opacity: .84; transition: opacity 180ms ease, transform 220ms var(--ease-out), filter 180ms ease; }

.client-trust-notes { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--beige-border); }
.client-trust-notes article { min-height: 210px; padding: clamp(28px, 3.5vw, 48px); border-right: 1px solid var(--beige-border); border-bottom: 1px solid var(--beige-border); background: #fff; }
.client-trust-notes h3 { margin: 34px 0 12px; font-size: clamp(18px, 1.8vw, 25px); }
.client-trust-notes p { max-width: 360px; margin: 0; color: #746d68; font-size: 13px; line-height: 1.65; }

@media (hover: hover) and (pointer: fine) {
  .client-brand-logos > div:hover img { opacity: 1; filter: saturate(1) brightness(1); transform: translateY(-3px); }
  .client-brand-statement a { transition: border-color 180ms ease, color 180ms ease; }
  .client-brand-statement a:hover { border-color: var(--burgundy); color: #fff; }
}

.process-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 26%, rgba(169,35,49,.12), transparent 35%),
    #111011;
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.process-visual { padding: clamp(22px, 3vw, 38px); border-bottom: 1px solid rgba(255,255,255,.11); }
.process-display-head,
.process-system-status { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #77706d; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.process-display-head span { display: flex; align-items: center; gap: 8px; }
.process-display-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 14px rgba(169,35,49,.7); }

.process-blueprint {
  --scanner-distance: min(48vw, 680px);
  position: relative;
  width: min(820px, 78%);
  height: clamp(250px, 30vw, 410px);
  margin: 30px auto 26px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.015);
}
.process-blueprint::before,
.process-blueprint::after { position: absolute; background: rgba(255,255,255,.1); content: ""; }
.process-blueprint::before { top: 50%; right: -8%; left: -8%; height: 1px; }
.process-blueprint::after { top: -10%; bottom: -10%; left: 50%; width: 1px; }
.process-measure { position: absolute; color: #605a58; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.process-measure-x { top: -18px; left: 50%; transform: translateX(-50%); }
.process-measure-y { top: 50%; right: -52px; transform: rotate(90deg); }

.process-sign { position: absolute; top: 20%; right: 12%; bottom: 20%; left: 12%; display: grid; place-items: center; border: 2px solid rgba(245,242,238,.58); opacity: .36; transform: translateY(10px); transition: opacity 700ms var(--ease-out) 350ms, transform 700ms var(--ease-out) 350ms; }
.process-sign::before { position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.18); content: ""; }
.process-sign > span { position: absolute; top: 16px; left: 18px; color: #6f6966; font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.process-sign b { position: relative; z-index: 1; color: #f5f2ee; font-family: "Unbounded", sans-serif; font-size: clamp(24px, 4.2vw, 66px); font-weight: 500; letter-spacing: -.07em; opacity: .18; transform: translateY(8px); transition: opacity 500ms var(--ease-out) 1.65s, transform 500ms var(--ease-out) 1.65s; }
.process-sign b em { color: var(--burgundy); font-style: normal; }
.process-sign > i { position: absolute; bottom: -13px; width: 5px; height: 12px; background: rgba(255,255,255,.38); }
.process-sign > i:nth-of-type(1) { left: 16%; }.process-sign > i:nth-of-type(2) { left: 50%; }.process-sign > i:nth-of-type(3) { right: 16%; }

.process-scanner { position: absolute; z-index: 3; top: 8%; bottom: 8%; left: 8%; width: 2px; background: var(--burgundy); box-shadow: 0 0 18px rgba(169,35,49,.75); opacity: 0; transform: translateX(0); }
.process-crane { position: absolute; right: -9%; bottom: 3%; width: 86px; height: 110px; opacity: .18; transform: translateY(16px); transition: opacity 500ms var(--ease-out) 3.35s, transform 500ms var(--ease-out) 3.35s; }
.process-crane i:first-child { position: absolute; top: 0; right: 20px; width: 3px; height: 78px; background: #8b8480; transform: rotate(-18deg); transform-origin: bottom; }
.process-crane i:nth-child(2) { position: absolute; top: 2px; right: 23px; width: 58px; height: 2px; background: #8b8480; }
.process-crane b { position: absolute; right: 56px; bottom: 19px; width: 1px; height: 66px; background: #8b8480; }
.process-crane span { position: absolute; right: 48px; bottom: 12px; width: 16px; height: 9px; border: 1px solid #8b8480; }

.process-system-status { justify-content: center; }
.process-system-status span { display: flex; align-items: center; gap: 7px; opacity: .3; transition: opacity 220ms ease 500ms; }
.process-system-status span:nth-child(2) { transition-delay: 1.1s; }.process-system-status span:nth-child(3) { transition-delay: 1.7s; }.process-system-status span:nth-child(4) { transition-delay: 2.3s; }.process-system-status span:nth-child(5) { transition-delay: 2.9s; }.process-system-status span:nth-child(6) { transition-delay: 3.5s; }
.process-system-status i { width: 5px; height: 5px; border-radius: 50%; background: #595351; transition: background-color 180ms ease; }

.process-route { position: absolute; right: 7%; bottom: 167px; left: 7%; height: 2px; overflow: hidden; background: rgba(255,255,255,.13); }
.process-route span { display: block; width: 100%; height: 100%; background: var(--burgundy); transform: scaleX(0); transform-origin: left; transition: transform 3.6s linear 450ms; }
.process-stages { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.process-stages li { --stage-delay: 500ms; position: relative; min-height: 205px; padding: 48px clamp(16px, 2.2vw, 30px) 26px; border-right: 1px solid rgba(255,255,255,.1); opacity: .32; transform: translateY(10px); transition: opacity 320ms var(--ease-out) var(--stage-delay), transform 320ms var(--ease-out) var(--stage-delay); }
.process-stages li:nth-child(2) { --stage-delay: 1.1s; }.process-stages li:nth-child(3) { --stage-delay: 1.7s; }.process-stages li:nth-child(4) { --stage-delay: 2.3s; }.process-stages li:nth-child(5) { --stage-delay: 2.9s; }.process-stages li:nth-child(6) { --stage-delay: 3.5s; }
.process-stages li:last-child { border-right: 0; }
.process-stages li::before { position: absolute; top: 20px; left: clamp(16px, 2.2vw, 30px); width: 10px; height: 10px; border: 3px solid #111011; border-radius: 50%; background: #595351; box-shadow: 0 0 0 1px #595351; content: ""; transition: background-color 180ms ease var(--stage-delay), box-shadow 180ms ease var(--stage-delay); }
.process-stages span { color: var(--burgundy); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.process-stages h3 { margin: 23px 0 10px; color: #f5f2ee; font-size: clamp(16px, 1.4vw, 21px); }
.process-stages p { margin: 0; color: #8f8884; font-size: 12px; line-height: 1.55; }

.process-map.is-running .process-sign,
.process-map.is-running .process-sign b,
.process-map.is-running .process-crane,
.process-map.is-running .process-system-status span,
.process-map.is-running .process-stages li { opacity: 1; transform: translateY(0); }
.process-map.is-running .process-system-status i,
.process-map.is-running .process-stages li::before { background: var(--burgundy); box-shadow: 0 0 12px rgba(169,35,49,.66); }
.process-map.is-running .process-route span { transform: scaleX(1); }
.process-map.is-running .process-scanner { animation: process-scan 2.35s var(--ease-in-out) 950ms 1 both; }
.process-map.is-resetting .process-sign,
.process-map.is-resetting .process-sign b,
.process-map.is-resetting .process-crane,
.process-map.is-resetting .process-system-status span,
.process-map.is-resetting .process-stages li,
.process-map.is-resetting .process-stages li::before,
.process-map.is-resetting .process-stages li::after,
.process-map.is-resetting .process-route span { transition: none; }
.process-map.is-resetting .process-scanner { animation: none; }

@keyframes process-scan {
  0% { opacity: 0; transform: translateX(0); }
  12%, 88% { opacity: 1; }
  100% { opacity: 0; transform: translateX(var(--scanner-distance)); }
}

.faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); align-items: stretch; gap: clamp(28px, 5vw, 76px); }
.faq-layout .faq-list { max-width: none; margin: 0; }
.faq-contact-card { display: flex; min-height: 0; flex-direction: column; justify-content: flex-start; padding: clamp(28px, 3vw, 40px); border-radius: 18px; background: linear-gradient(145deg, rgba(169,35,49,.18), transparent 48%), #171416; color: #fff; }
.faq-contact-card h3 { margin: 20px 0 12px; font-size: clamp(28px, 3vw, 44px); line-height: 1.04; }
.faq-contact-card p { margin: 0 0 24px; color: #b4ada8; font-size: 14px; line-height: 1.65; }
.faq-contact-card .button { align-self: flex-start; }

.production-nav {
  position: sticky;
  z-index: 45;
  top: 74px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-inline: clamp(20px, 5vw, 78px);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(23, 20, 22, .94);
  color: #fff;
  scrollbar-width: none;
  backdrop-filter: blur(16px);
}
.production-nav::-webkit-scrollbar { display: none; }
.production-nav span,
.production-nav a { flex: 0 0 auto; padding: 18px 20px; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.production-nav span { margin-right: auto; padding-left: 0; color: #817a76; }
.production-nav a { border-left: 1px solid rgba(255,255,255,.1); color: #d6d0cc; }

.machine-showcase-shifted { background: #ebe6df; }
.machine-showcase-shifted .machine-photo { width: 86%; margin-right: 0; }
.machine-showcase:not(.machine-showcase-shifted) .machine-photo { width: 92%; margin-left: 0; }

.machine-output {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, .75fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.machine-output > div { display: flex; min-height: 260px; flex-direction: column; justify-content: flex-end; padding: 30px; border-radius: 16px; background: #171416; color: #fff; }
.machine-output h3 { margin: 28px 0 0; font-size: clamp(22px, 2.3vw, 34px); line-height: 1.12; }
.machine-output figure { position: relative; min-height: 260px; margin: 0; overflow: hidden; border-radius: 16px; background: #242122; }
.machine-output figcaption { position: absolute; right: 14px; bottom: 14px; padding: 8px 10px; border-radius: 999px; background: rgba(18,16,17,.82); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }

.price-direction-card:active,
.client-proof-card:active,
.production-nav a:active { transform: scale(.985); }

@media (hover: hover) and (pointer: fine) {
  .price-direction-card,
  .client-proof-card,
  .production-nav a { transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), color 180ms var(--ease-out); }
  .price-direction-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(36, 29, 27, .12); }
  .price-direction-card:hover img,
  .client-proof-card:hover img { transform: scale(1.035); }
  .production-nav a:hover { color: #fff; }
}

@media (max-width: 980px) {
  .price-directions { grid-template-columns: 1fr; }
  .price-direction-card { grid-template-columns: .85fr 1.15fr; }
  .price-direction-card figure { height: 100%; min-height: 330px; }
  .client-proof-grid { grid-template-columns: 1fr 1fr; }
  .client-proof-card:first-child { grid-column: 1 / -1; }
  .client-logo-strip { grid-template-columns: repeat(4, 1fr); }
  .client-brand-board { grid-template-columns: 1fr; }
  .client-brand-statement { min-height: 410px; }
  .client-brand-logos > div { min-height: 140px; }
  .process-blueprint { width: min(760px, 88%); }
  .process-stages { grid-template-columns: repeat(3, 1fr); }
  .process-stages li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-route { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-contact-card { min-height: 0; }
  .machine-showcase-shifted .machine-photo,
  .machine-showcase:not(.machine-showcase-shifted) .machine-photo { width: 100%; margin-inline: auto; }
  .machine-output { grid-template-columns: 1fr 1fr; }
  .machine-output > div { grid-column: 1 / -1; min-height: 210px; }
}

@media (max-width: 650px) {
  .price-direction-card { grid-template-columns: 1fr; }
  .price-direction-card figure { min-height: 0; height: 250px; }
  .price-direction-copy { min-height: 270px; }
  .clients-section .compact-heading { margin-bottom: 34px; }
  .client-proof-grid { grid-template-columns: 1fr; }
  .client-proof-card:first-child { grid-column: auto; }
  .client-proof-card { min-height: 430px; }
  .client-logo-strip { grid-template-columns: repeat(2, 1fr); }
  .client-brand-statement { min-height: 430px; padding: 30px 24px; }
  .client-brand-logos { grid-template-columns: repeat(2, 1fr); }
  .client-brand-logos > div { min-height: 116px; padding: 18px; }
  .client-trust-notes { grid-template-columns: 1fr; }
  .client-trust-notes article { min-height: 180px; }
  .process-visual { padding: 20px 16px; }
  .process-display-head b { display: none; }
  .process-blueprint { --scanner-distance: 63vw; width: 82%; height: 230px; margin-block: 28px 22px; }
  .process-sign { inset: 20% 8%; }
  .process-sign b { font-size: clamp(19px, 6.8vw, 28px); }
  .process-crane { right: -15%; transform: scale(.78) translateY(16px); transform-origin: bottom right; }
  .process-map.is-running .process-crane { transform: scale(.78) translateY(0); }
  .process-system-status { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .process-stages { grid-template-columns: 1fr; }
  .process-stages li { min-height: 142px; padding: 38px 24px 22px 62px; border-right: 0; }
  .process-stages li::before { top: 42px; left: 25px; }
  .process-stages li::after { position: absolute; top: 55px; bottom: -29px; left: 29px; width: 1px; background: rgba(169,35,49,.52); content: ""; opacity: 0; transform: scaleY(0); transform-origin: top; transition: opacity 180ms ease var(--stage-delay), transform 480ms var(--ease-out) var(--stage-delay); }
  .process-stages li:last-child::after { display: none; }
  .process-map.is-running .process-stages li::after { opacity: 1; transform: scaleY(1); }
  .process-stages h3 { margin-top: 16px; }
  .faq-list summary { min-height: 74px; font-size: 13px; }
  .faq-contact-card { min-height: 0; padding: 26px 22px; }
  .production-nav { top: 68px; padding-inline: 12px; }
  .production-nav span { display: none; }
  .production-nav a { padding: 15px 14px; }
  .machine-output { grid-template-columns: 1fr; }
  .machine-output figure { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  .price-direction-card,
  .price-direction-card img,
  .client-proof-card,
  .client-proof-card img,
  .production-nav a { transition: none; }
  .process-map .process-scanner { animation: none; opacity: .72; transform: translateX(42%); }
}

/* Interactive price station */
.price-station {
  display: grid;
  width: 100%;
  max-width: 1450px;
  min-height: 610px;
  grid-template-columns: minmax(210px, .42fr) minmax(420px, 1fr) minmax(380px, .72fr);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #111011;
  box-shadow: 0 30px 80px rgba(37,29,27,.14);
}

.price-station-tabs { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.11); }
.price-station-tabs button {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: clamp(24px, 3vw, 40px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 180ms ease, transform 140ms var(--ease-out);
}
.price-station-tabs button:last-child { border-bottom: 0; }
.price-station-tabs button::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--burgundy); content: ""; opacity: 0; transform: scaleY(.35); transition: opacity 180ms ease, transform 220ms var(--ease-out); }
.price-station-tabs button.is-active { background: rgba(169,35,49,.11); }
.price-station-tabs button.is-active::before { opacity: 1; transform: scaleY(1); }
.price-station-tabs button > span { color: var(--burgundy); font-family: "Unbounded", sans-serif; font-size: 9px; }
.price-station-tabs button > b { font-family: "Unbounded", sans-serif; font-size: clamp(17px, 1.55vw, 23px); font-weight: 500; }
.price-station-tabs button > small { color: #77706d; font-size: 8px; font-weight: 800; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }
.price-station-tabs button:active { transform: scale(.98); }

.price-station-screen {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(169,35,49,.16), transparent 38%),
    #151314;
  background-size: 54px 54px, 54px 54px, auto, auto;
}
.price-screen-head { position: absolute; z-index: 4; top: 28px; right: 30px; left: 30px; display: flex; align-items: center; justify-content: space-between; color: #756e6a; font-size: 7px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.price-screen-head span { display: flex; align-items: center; gap: 8px; }
.price-screen-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 13px rgba(169,35,49,.7); }

.price-diagram,
.price-ticket { opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity 180ms ease, transform 220ms var(--ease-out); }
.price-diagram.is-active,
.price-ticket.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.price-station.price-no-motion .price-diagram,
.price-station.price-no-motion .price-ticket,
.price-station.price-no-motion .price-station-tabs button,
.price-station.price-no-motion .price-station-tabs button::before { transition: none; }
.price-diagram { position: absolute; inset: 0; }
.price-diagram > small { position: absolute; right: 30px; bottom: 28px; left: 30px; color: #756e6a; font-size: 7px; font-weight: 800; letter-spacing: .15em; text-align: center; text-transform: uppercase; }

.diagram-roll { position: absolute; top: 27%; left: 15%; width: 17%; aspect-ratio: 1; border: 2px solid #817a76; border-radius: 50%; box-shadow: inset 0 0 0 12px #151314, inset 0 0 0 14px #514c49; }
.diagram-roll i { position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--burgundy); transform: translate(-50%,-50%); }
.diagram-sheet { position: absolute; top: 34%; right: 14%; bottom: 21%; left: 28%; overflow: hidden; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.025); }
.diagram-sheet::before { position: absolute; inset: 12px; border: 1px dashed rgba(255,255,255,.14); content: ""; }
.diagram-sheet span { position: absolute; top: 50%; left: 50%; color: #f5f2ee; font-family: "Unbounded", sans-serif; font-size: clamp(24px, 4vw, 58px); font-weight: 500; letter-spacing: -.06em; transform: translate(-50%,-50%); }
.diagram-sheet i { position: absolute; right: 12%; bottom: 14%; width: 10px; height: 10px; border-radius: 50%; }
.diagram-sheet i:nth-of-type(1) { right: 28%; background: #33bfd4; }.diagram-sheet i:nth-of-type(2) { right: 22%; background: #d42a8a; }.diagram-sheet i:nth-of-type(3) { right: 16%; background: #e9cf3a; }.diagram-sheet i:nth-of-type(4) { right: 10%; background: #191719; border: 1px solid #6d6663; }
.diagram-print-head { position: absolute; z-index: 2; top: 26%; right: 11%; left: 24%; height: 42px; border: 1px solid rgba(255,255,255,.32); background: #211e1f; box-shadow: 0 8px 20px rgba(0,0,0,.32); }
.diagram-print-head i { position: absolute; right: 12%; bottom: -12px; width: 34px; height: 12px; background: var(--burgundy); }

.diagram-cut-sheet { position: absolute; inset: 24% 15% 19%; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.02); }
.diagram-cut-sheet::before { position: absolute; inset: 13%; border: 2px dashed rgba(169,35,49,.7); border-radius: 42% 58% 50% 36%; content: ""; transform: rotate(-8deg); }
.diagram-cut-sheet span { position: absolute; top: 18%; right: 18%; width: 34%; height: 1px; background: rgba(255,255,255,.22); transform: rotate(28deg); }
.diagram-cut-sheet i { position: absolute; bottom: 16%; left: 18%; width: 28%; height: 1px; background: rgba(255,255,255,.22); transform: rotate(-18deg); }
.diagram-cut-sheet b { position: absolute; right: 22%; bottom: 17%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.diagram-cut-tool { position: absolute; z-index: 2; top: 20%; left: 47%; width: 54px; height: 82px; border: 1px solid rgba(255,255,255,.42); background: #211e1f; box-shadow: 0 10px 28px rgba(0,0,0,.32); }
.diagram-cut-tool::before { position: absolute; top: -60px; left: 50%; width: 1px; height: 60px; background: rgba(255,255,255,.32); content: ""; }
.diagram-cut-tool i { position: absolute; bottom: -20px; left: 50%; width: 2px; height: 20px; background: var(--burgundy); transform: translateX(-50%); }

.price-diagram-sign { display: grid; place-items: center; }
.diagram-sign-halo { position: absolute; top: 50%; left: 50%; width: clamp(180px, 26vw, 330px); aspect-ratio: 1; border-radius: 50%; background: rgba(169,35,49,.2); box-shadow: 0 0 70px rgba(169,35,49,.35); transform: translate(-50%,-50%); }
.diagram-sign-letter { position: relative; z-index: 1; color: #f5f2ee; font-family: "Unbounded", sans-serif; font-size: clamp(130px, 18vw, 260px); font-weight: 600; line-height: 1; text-shadow: 0 0 20px rgba(255,255,255,.28), 12px 14px 0 #5f151f; }
.price-diagram-sign > span { position: absolute; top: 24%; left: 13%; color: var(--burgundy); font-size: 8px; font-weight: 800; letter-spacing: .14em; }

.price-station-tickets { position: relative; min-width: 0; background: #fff; color: #191617; }
.price-ticket { position: absolute; inset: 0; display: flex; flex-direction: column; padding: clamp(34px, 4vw, 58px); }
.price-ticket > span { color: var(--burgundy); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.price-ticket h3 { margin: 34px 0 36px; font-size: clamp(27px, 3vw, 43px); line-height: 1.06; letter-spacing: -.055em; }
.price-ticket > strong { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px 11px; color: var(--burgundy); font-family: "Unbounded", sans-serif; font-size: clamp(31px, 3.4vw, 50px); letter-spacing: -.06em; }
.price-ticket > strong small { font-family: "Manrope", sans-serif; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.price-ticket > strong em { font-family: "Manrope", sans-serif; font-size: 12px; font-style: normal; letter-spacing: 0; }
.price-ticket > p { max-width: 360px; margin: 18px 0 24px; color: #706965; font-size: 13px; line-height: 1.65; }
.price-ticket ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 auto; padding: 0; list-style: none; }
.price-ticket li { padding: 7px 10px; border: 1px solid var(--beige-border); border-radius: 999px; color: #605954; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-ticket .button { align-self: stretch; justify-content: space-between; margin-top: 30px; }
.price-ticket .button.button-primary { color: #fff; }

@media (hover: hover) and (pointer: fine) {
  .price-station-tabs button:hover { background: rgba(255,255,255,.035); }
  .price-station-tabs button.is-active:hover { background: rgba(169,35,49,.11); }
}

@media (max-width: 1050px) {
  .price-station { grid-template-columns: 190px minmax(340px, 1fr); }
  .price-station-tickets { grid-column: 1 / -1; min-height: 470px; }
  .price-ticket { padding: 44px; }
}

@media (max-width: 900px) {
  .price-station { display: grid; min-height: 0; grid-template-columns: 1fr; border-radius: 16px; }
  .price-station-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .price-station-tabs button { min-height: 94px; gap: 7px; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 0; }
  .price-station-tabs button:last-child { border-right: 0; }
  .price-station-tabs button::before { top: auto; right: 0; bottom: 0; width: auto; height: 3px; transform: scaleX(.35); }
  .price-station-tabs button.is-active::before { transform: scaleX(1); }
  .price-station-tabs button > b { font-size: 13px; }
  .price-station-tabs button > small { display: none; }
  .price-station-screen { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .price-screen-head { top: 20px; right: 18px; left: 18px; }
  .price-screen-head span { font-size: 6px; }
  .price-diagram > small { right: 18px; bottom: 20px; left: 18px; }
  .diagram-roll { left: 10%; }
  .diagram-sheet { right: 9%; left: 22%; }
  .diagram-print-head { right: 6%; left: 18%; }
  .diagram-sign-letter { font-size: 150px; }
  .price-station-tickets { grid-column: auto; min-height: 450px; }
  .price-ticket { padding: 34px 24px 26px; }
  .price-ticket h3 { margin-block: 26px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .price-diagram,
  .price-ticket,
  .price-station-tabs button,
  .price-station-tabs button::before { transition: none; }
}

/* Equipment production map */
.equipment-hero-visual { padding-right: 0; }

.equipment-line-board {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(21,19,20,.9);
  background-size: 42px 42px;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.equipment-line-header,
.equipment-line-footer {
  display: flex;
  align-items: center;
  color: #817a76;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.equipment-line-header { min-height: 54px; justify-content: space-between; gap: 20px; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.equipment-line-header span { display: inline-flex; align-items: center; gap: 8px; color: #d8d2ce; }
.equipment-line-header i { width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 13px rgba(169,35,49,.75); }

.equipment-line-diagram { position: relative; height: clamp(190px, 20vw, 270px); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.1); }
.equipment-line-diagram::before { position: absolute; inset: 14% 8%; border: 1px solid rgba(255,255,255,.1); content: ""; }
.equipment-line-diagram::after { position: absolute; width: 190px; height: 190px; top: 50%; left: 50%; border: 1px solid rgba(169,35,49,.45); border-radius: 50%; box-shadow: 0 0 55px rgba(169,35,49,.13); content: ""; transform: translate(-50%,-50%); }
.equipment-line-diagram > span { position: absolute; z-index: 1; height: 2px; top: 50%; right: 10%; left: 10%; background: linear-gradient(90deg, transparent, var(--burgundy) 12% 88%, transparent); box-shadow: 0 0 12px rgba(169,35,49,.55); }
.equipment-line-diagram > i { position: absolute; z-index: 2; width: 12px; height: 12px; top: calc(50% - 5px); border: 2px solid #1a1819; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 0 1px rgba(169,35,49,.65), 0 0 18px rgba(169,35,49,.6); }
.equipment-line-diagram > i:nth-of-type(1) { left: 11%; }
.equipment-line-diagram > i:nth-of-type(2) { left: 26%; }
.equipment-line-diagram > i:nth-of-type(3) { left: 41%; }
.equipment-line-diagram > i:nth-of-type(4) { left: 56%; }
.equipment-line-diagram > i:nth-of-type(5) { left: 71%; }
.equipment-line-diagram > i:nth-of-type(6) { left: 86%; }
.equipment-line-diagram > b { position: absolute; z-index: 3; top: 50%; left: 50%; padding: 12px 18px; background: #171416; color: #fff; font-family: "Unbounded", sans-serif; font-size: clamp(10px, 1vw, 14px); font-weight: 500; letter-spacing: .08em; white-space: nowrap; transform: translate(-50%,-50%); }

.equipment-line-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.equipment-line-grid a { display: grid; min-height: 112px; align-content: center; gap: 9px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); transition: background-color 180ms ease, transform 150ms var(--ease-out); }
.equipment-line-grid a:nth-child(3n) { border-right: 0; }
.equipment-line-grid a span { color: var(--burgundy); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.equipment-line-grid a strong { color: #f5f1ee; font-family: "Unbounded", sans-serif; font-size: clamp(13px, 1.2vw, 17px); font-weight: 500; }
.equipment-line-grid a small { color: #77706c; font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.equipment-line-grid a:active { transform: scale(.985); }
.equipment-line-footer { min-height: 50px; justify-content: center; gap: 13px; padding: 0 20px; }
.equipment-line-footer i { width: 34px; height: 1px; background: rgba(169,35,49,.72); }

.machine-output.machine-output-compact { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 28px; padding: clamp(26px,3vw,38px); border-radius: 16px; background: #171416; color: #fff; }
.machine-output.machine-output-compact > div { min-height: 0; justify-content: flex-start; padding: 0; border-radius: 0; background: transparent; }
.machine-output.machine-output-compact h3 { max-width: 820px; margin-top: 18px; }
.machine-output.machine-output-compact ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin: 0; padding: 0; list-style: none; }
.machine-output.machine-output-compact li { padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #b9b1ad; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

@media (hover: hover) and (pointer: fine) {
  .equipment-line-grid a:hover { background: rgba(169,35,49,.1); }
}

@media (max-width: 700px) {
  .equipment-line-header { padding-inline: 16px; font-size: 7px; }
  .equipment-line-header b { max-width: 130px; text-align: right; }
  .equipment-line-diagram { height: 180px; }
  .equipment-line-diagram > b { padding: 10px 12px; font-size: 8px; }
  .equipment-line-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-line-grid a { min-height: 100px; padding: 16px; }
  .equipment-line-grid a:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.1); }
  .equipment-line-grid a:nth-child(2n) { border-right: 0; }
  .equipment-line-grid a strong { font-size: 12px; }
  .equipment-line-footer { gap: 9px; font-size: 7px; }
  .equipment-line-footer i { width: 18px; }
  .machine-output.machine-output-compact { grid-template-columns: 1fr; gap: 22px; }
  .machine-output.machine-output-compact ul { justify-content: flex-start; }

  .printer-stage {
    min-height: 545px;
    margin-bottom: -120px;
    transform: scale(.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-line-grid a { transition: none; }
}

/* Material-to-sign production animation */
.production-transform {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    rgba(21,19,20,.92);
  background-size: 42px 42px;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.production-transform-head,
.production-transform-footer {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: 22px;
  color: #817a76;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.production-transform-head { border-bottom: 1px solid rgba(255,255,255,.1); }
.production-transform-head span,
.production-transform-footer b { display: inline-flex; align-items: center; gap: 8px; }
.production-transform-head span { color: #d8d2ce; }
.production-transform-head i,
.production-transform-footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 13px rgba(169,35,49,.75); }

.production-transform-stage {
  --transform-scan: 380px;
  position: relative;
  height: clamp(390px, 34vw, 510px);
  overflow: hidden;
  background: radial-gradient(circle at 50% 52%, rgba(169,35,49,.15), transparent 38%);
}

.production-transform-stage::before { position: absolute; inset: 9% 8%; border: 1px solid rgba(255,255,255,.1); content: ""; }
.production-transform-stage::after { position: absolute; width: 62%; height: 1px; right: 19%; bottom: 14%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.23), transparent); content: ""; }

.transform-measure { position: absolute; z-index: 6; color: #6d6763; font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.transform-measure-x { top: 12%; left: 12%; }
.transform-measure-y { right: 10%; bottom: 19%; writing-mode: vertical-rl; }

.transform-material {
  position: absolute;
  z-index: 2;
  width: min(390px, 62%);
  aspect-ratio: 1.55;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: transform-material-cycle 7s var(--ease-in-out) infinite;
}

.transform-material::before { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); background: #d4d0cb; box-shadow: 0 22px 44px rgba(0,0,0,.26); content: ""; animation: transform-sheet-cycle 7s linear infinite; }
.transform-material > b { position: absolute; z-index: 3; top: 50%; left: 50%; color: transparent; font-family: "Unbounded", sans-serif; font-size: clamp(104px, 12vw, 175px); font-weight: 600; line-height: 1; -webkit-text-stroke: 2px var(--burgundy); text-shadow: 0 0 18px rgba(169,35,49,.2); transform: translate(-50%,-50%); animation: transform-outline-cycle 7s linear infinite; }

.transform-offcut { position: absolute; z-index: 4; inset: 0; border: 1px solid rgba(255,255,255,.3); background: #d4d0cb; opacity: 0; }
.transform-offcut-left { clip-path: polygon(0 0, 48% 0, 35% 100%, 0 100%); animation: transform-offcut-left 7s var(--ease-in-out) infinite; }
.transform-offcut-right { clip-path: polygon(52% 0, 100% 0, 100% 100%, 65% 100%); animation: transform-offcut-right 7s var(--ease-in-out) infinite; }

.transform-scanner { position: absolute; z-index: 7; width: 2px; height: 68%; top: 16%; left: 20%; background: var(--burgundy); box-shadow: 0 0 18px rgba(169,35,49,.9); opacity: 0; animation: transform-scanner-cycle 7s linear infinite; }
.transform-scanner::before { position: absolute; width: 80px; height: 100%; top: 0; right: 0; background: linear-gradient(90deg, transparent, rgba(169,35,49,.11)); content: ""; }
.transform-scanner i { position: absolute; width: 8px; height: 8px; top: -4px; left: -3px; border-radius: 50%; background: #f0ece8; box-shadow: 0 0 14px var(--burgundy); }

.transform-letter { position: absolute; z-index: 5; top: 50%; left: 50%; color: #f5f1ed; font-family: "Unbounded", sans-serif; font-size: clamp(112px, 13vw, 190px); font-weight: 600; line-height: 1; opacity: 0; text-shadow: 10px 13px 0 #651923, 0 0 22px rgba(255,255,255,.35), 0 0 65px rgba(169,35,49,.65); transform: translate(-50%,-42%) scale(.96); animation: transform-letter-cycle 7s var(--ease-out) infinite;
}

.transform-floor { position: absolute; z-index: 1; width: 38%; height: 42px; bottom: 11%; left: 31%; border-radius: 50%; background: rgba(0,0,0,.62); filter: blur(16px); opacity: 0; animation: transform-floor-cycle 7s linear infinite; }

.production-transform-footer { min-height: 68px; border-top: 1px solid rgba(255,255,255,.1); color: #b0a9a5; }
.production-transform-footer > span { max-width: 410px; line-height: 1.5; }
.production-transform-footer b { flex: 0 0 auto; color: #d8d2ce; }

@keyframes transform-material-cycle {
  0%, 8% { opacity: 0; transform: translate(-50%,-50%) translateY(18px) scale(.98); }
  16%, 58% { opacity: 1; transform: translate(-50%,-50%) translateY(0) scale(1); }
  68%, 100% { opacity: 0; transform: translate(-50%,-50%) translateY(-8px) scale(1.02); }
}

@keyframes transform-sheet-cycle {
  0%, 47% { opacity: 1; }
  56%, 100% { opacity: 0; }
}

@keyframes transform-outline-cycle {
  0%, 23% { opacity: 0; }
  31%, 56% { opacity: 1; }
  64%, 100% { opacity: 0; }
}

@keyframes transform-scanner-cycle {
  0%, 18% { opacity: 0; transform: translateX(0); }
  22% { opacity: 1; transform: translateX(0); }
  47% { opacity: 1; transform: translateX(var(--transform-scan)); }
  51%, 100% { opacity: 0; transform: translateX(var(--transform-scan)); }
}

@keyframes transform-offcut-left {
  0%, 47% { opacity: 0; transform: translate(0,0) rotate(0); }
  50% { opacity: 1; transform: translate(0,0) rotate(0); }
  66% { opacity: 0; transform: translate(-34%,-14%) rotate(-7deg); }
  100% { opacity: 0; transform: translate(-34%,-14%) rotate(-7deg); }
}

@keyframes transform-offcut-right {
  0%, 47% { opacity: 0; transform: translate(0,0) rotate(0); }
  50% { opacity: 1; transform: translate(0,0) rotate(0); }
  66% { opacity: 0; transform: translate(34%,-14%) rotate(7deg); }
  100% { opacity: 0; transform: translate(34%,-14%) rotate(7deg); }
}

@keyframes transform-letter-cycle {
  0%, 52% { opacity: 0; transform: translate(-50%,-42%) scale(.96); }
  61%, 88% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  96%, 100% { opacity: 0; transform: translate(-50%,-54%) scale(1.02); }
}

@keyframes transform-floor-cycle {
  0%, 54% { opacity: 0; transform: scaleX(.82); }
  64%, 90% { opacity: .78; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1.05); }
}

@media (max-width: 700px) {
  .production-transform-head,
  .production-transform-footer { padding-inline: 16px; font-size: 7px; }
  .production-transform-stage { --transform-scan: 220px; height: 340px; }
  .transform-material { width: 68%; }
  .production-transform-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .transform-material,
  .transform-material::before,
  .transform-material > b,
  .transform-offcut,
  .transform-scanner,
  .transform-letter,
  .transform-floor { animation: none; }
  .transform-material,
  .transform-material::before,
  .transform-material > b,
  .transform-offcut,
  .transform-scanner { opacity: 0; }
  .transform-letter { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  .transform-floor { opacity: .78; transform: scaleX(1); }
}

/* Portfolio visibility map */
.portfolio-visibility-map { position: relative; }

.visibility-map-stage {
  position: relative;
  display: block;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(169,35,49,.17), transparent 37%),
    #151314;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.visibility-map-stage::before { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.1); content: ""; }
.visibility-map-stage::after { position: absolute; width: 48%; aspect-ratio: 1; top: 50%; left: 50%; border: 1px solid rgba(169,35,49,.28); border-radius: 50%; content: ""; transform: translate(-50%,-50%); }

.visibility-country-map {
  position: absolute;
  z-index: 1;
  width: 92%;
  height: 76%;
  top: 50%;
  left: 50%;
  object-fit: contain;
  opacity: .82;
  filter: drop-shadow(0 0 22px rgba(169,35,49,.22));
  pointer-events: none;
  transform: translate(-50%,-50%);
}

.portfolio-visibility-map .visibility-map-stage::after { display: none; }

.visibility-road { position: absolute; z-index: 1; display: block; height: 1px; background: rgba(255,255,255,.12); transform-origin: left center; }
.visibility-road-a { width: 82%; top: 28%; left: 7%; transform: rotate(8deg); }
.visibility-road-b { width: 74%; top: 66%; left: 15%; transform: rotate(-13deg); }
.visibility-road-c { width: 58%; top: 46%; left: 20%; transform: rotate(34deg); }
.visibility-road-d { width: 61%; top: 80%; left: 12%; transform: rotate(-49deg); }
.visibility-road-e { width: 55%; top: 18%; left: 43%; transform: rotate(64deg); }

.visibility-dot { position: absolute; z-index: 3; width: 8px; height: 8px; top: var(--y); left: var(--x); border: 2px solid #171416; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 0 1px rgba(169,35,49,.6), 0 0 16px rgba(169,35,49,.72); opacity: .18; transform: scale(.82); animation: visibility-dot-cycle 7.2s linear infinite var(--d); }
.visibility-dot::after { position: absolute; inset: -7px; border: 1px solid rgba(169,35,49,.42); border-radius: 50%; content: ""; opacity: 0; transform: scale(.72); animation: visibility-ring-cycle 7.2s var(--ease-out) infinite var(--d); }

.visibility-count { position: absolute; z-index: 5; bottom: 3%; left: 3%; display: grid; width: 142px; aspect-ratio: 1; place-content: center; justify-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(20,18,19,.88); box-shadow: 0 0 54px rgba(169,35,49,.16); }
.visibility-count strong { color: #f5f1ed; font-family: "Unbounded", sans-serif; font-size: clamp(52px, 5.5vw, 72px); font-weight: 500; line-height: .9; letter-spacing: -.08em; }
.visibility-count small { margin-top: 10px; color: var(--burgundy); font-size: 8px; font-weight: 800; letter-spacing: .15em; }

.visibility-label { position: absolute; z-index: 4; padding: 7px 9px; border: 1px solid rgba(255,255,255,.1); background: rgba(20,18,19,.76); color: #8d8581; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.visibility-label-a { top: 12%; left: 10%; }
.visibility-label-b { top: 14%; right: 12%; }
.visibility-label-c { right: 10%; bottom: 12%; }
.visibility-label-d { bottom: 10%; left: 12%; }

.visibility-scan { position: absolute; z-index: 6; width: 2px; height: 86%; top: 7%; left: 8%; background: var(--burgundy); box-shadow: 0 0 18px rgba(169,35,49,.72); opacity: 0; animation: visibility-scan-cycle 7.2s linear infinite; }
.visibility-scan::before { position: absolute; width: 68px; height: 100%; top: 0; right: 0; background: linear-gradient(90deg, transparent, rgba(169,35,49,.09)); content: ""; }

@keyframes visibility-dot-cycle {
  0%, 8% { opacity: .18; transform: scale(.82); }
  14%, 68% { opacity: 1; transform: scale(1); }
  76%, 100% { opacity: .32; transform: scale(.88); }
}

@keyframes visibility-ring-cycle {
  0%, 11% { opacity: 0; transform: scale(.72); }
  16% { opacity: .8; transform: scale(1); }
  28%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes visibility-scan-cycle {
  0%, 5% { opacity: 0; transform: translateX(0); }
  10% { opacity: .75; transform: translateX(0); }
  88% { opacity: .75; transform: translateX(540px); }
  94%, 100% { opacity: 0; transform: translateX(540px); }
}

@media (max-width: 700px) {
  .visibility-map-stage { aspect-ratio: 1; }
  .visibility-country-map { width: 96%; height: 74%; }
  .visibility-count { bottom: 3%; left: 3%; width: 112px; }
  .visibility-count strong { font-size: 48px; }
  .visibility-label { padding: 6px 7px; font-size: 6px; }
  .visibility-scan { animation-name: visibility-scan-mobile-cycle; }
}

@keyframes visibility-scan-mobile-cycle {
  0%, 5% { opacity: 0; transform: translateX(0); }
  10% { opacity: .75; transform: translateX(0); }
  88% { opacity: .75; transform: translateX(270px); }
  94%, 100% { opacity: 0; transform: translateX(270px); }
}

@media (prefers-reduced-motion: reduce) {
  .visibility-dot,
  .visibility-dot::after,
  .visibility-scan { animation: none; }
  .visibility-dot { opacity: .82; transform: scale(1); }
  .visibility-dot::after,
  .visibility-scan { opacity: 0; }
}
