:root {
  --ink: #282d32;
  --graphite: #31373d;
  --panel: #3a4147;
  --steel: #8e989f;
  --line: rgba(235, 240, 243, 0.24);
  --paper: #f3f4f2;
  --muted: #a4abb0;
  --red: #e12632;
  --red-dark: #bd1823;
  --display: "Arial Narrow", sans-serif;
  --body: Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: white;
  color: #222;
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --heading: "Tektur", "Montserrat", sans-serif;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: var(--body); }
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(100% - 64px, 1440px); margin-inline: auto; }
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: grid;
  grid-template-columns: minmax(245px, .72fr) minmax(560px, 1.55fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  background: rgba(40, 45, 50, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
  white-space: nowrap;
}
.brand-emblem { align-self: center; width: 58px; height: 50px; display: block; object-fit: contain; object-position: center; filter: drop-shadow(0 4px 8px rgba(0,0,0,.38)); }
.brand-wordmark-image { align-self: center; display: block; width: clamp(145px, 11vw, 178px); height: auto; object-fit: contain; object-position: center; transform: translateY(1px); filter: drop-shadow(0 4px 8px rgba(0,0,0,.38)); }
.brand-mark { position: relative; }
.brand-mark::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 1px;
  width: 16px;
  height: 5px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.site-header nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 44px); }
.site-header nav ul { display: contents; list-style: none; margin: 0; padding: 0; }
.site-header nav a,
.language button,
.language a {
  position: relative;
  border: 0;
  background: none;
  padding: 8px 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .035em;
  white-space: nowrap;
  cursor: pointer;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language { display: flex; align-items: center; gap: 5px; margin-right: 17px; color: #9aa1a6; }
.language button.active,
.language a.active,
.language span.active { color: var(--red); }
.social-group { display: flex; align-items: center; gap: 1px; }
.social { display: grid; place-items: center; width: 33px; height: 42px; color: #f1f3f4; transition: color .2s, transform .2s; }
.social:hover { color: var(--red); transform: translateY(-2px); }
.social-viber,
.social-whatsapp { color: #f1f3f4; }
.social-viber:hover,
.social-whatsapp:hover { color: var(--red); }
.social-brand-icon { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.social-brand-icon path { fill: currentColor; stroke: none; }

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 0 28px;
  background: var(--red);
  border: 1px solid var(--red);
  color: white;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button svg { transition: transform .2s ease; }
.button:hover svg { transform: translateX(6px); }
.button-small { min-height: 48px; padding: 0 24px; font-size: 15px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 940px;
  height: 100svh;
  overflow: hidden;
  background: #2d3338;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 86px 0 0;
  background-image: url("../videos/hero-production-poster.webp");
  background-size: cover;
  background-position: 55% center;
}
.hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(.74) contrast(1.08) brightness(.92);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(31, 36, 41, .94) 0%, rgba(31, 36, 41, .82) 34%, rgba(31, 36, 41, .46) 58%, rgba(31, 36, 41, .16) 100%),
    linear-gradient(180deg, rgba(31, 36, 41, .18), rgba(31, 36, 41, .08) 42%, rgba(31, 36, 41, .5) 100%);
  pointer-events: none;
}
.hero-content {
  --hero-kicker-size: clamp(12px, .82vw, 14px);
  position: relative;
  z-index: 3;
  padding-top: clamp(158px, 17vh, 195px);
}
.hero .hero-kicker { font-size: var(--hero-kicker-size); }
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--red);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker > span:not(.target-mark) { min-width: 30px; color: var(--steel); }
.target-mark { position: relative; width: 20px; height: 20px; border: 1px solid var(--red); border-radius: 50%; }
.target-mark::before,
.target-mark::after { content: ""; position: absolute; background: var(--red); }
.target-mark::before { left: -8px; right: -8px; top: 9px; height: 1px; }
.target-mark::after { top: -8px; bottom: -8px; left: 9px; width: 1px; }
.hero h1 {
  max-width: 800px;
  margin: 0;
  text-wrap: balance;
}
.hero-legal-name {
  display: grid;
  gap: 4px;
  margin: 0 0 15px;
  color: #d4d9dc;
  font-family: var(--display);
  font-size: calc(var(--hero-kicker-size) * 1.3);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hero-legal-name span { display: block; white-space: nowrap; }
.hero-company { display: flex; max-width: 100%; align-items: center; gap: 16px; overflow: visible; line-height: 0; white-space: nowrap; }
.hero-company-logo { align-self: center; flex: 0 0 auto; width: clamp(134px, 11.4vw, 182px); height: auto; object-fit: contain; object-position: center; filter: drop-shadow(0 7px 15px rgba(0,0,0,.38)); }
.hero-company-wordmark { align-self: center; flex: 0 0 auto; display: block; width: clamp(468px, 45.6vw, 690px); max-width: calc(100% - 198px); height: auto; object-fit: contain; object-position: center; transform: translateY(1px); filter: drop-shadow(0 8px 18px rgba(0,0,0,.44)); }
.hero-slogan { display: block; max-width: 690px; margin-top: 22px; font-family: var(--heading); font-size: clamp(40px, 3.75vw, 58px); font-weight: 600; letter-spacing: -.025em; line-height: 1.03; text-transform: none; }
.hero-subtitle { max-width: 640px; margin: 24px 0 0; color: #c2c8cc; font-size: clamp(17px, 1.25vw, 21px); line-height: 1.48; }
.hero-button { min-width: 290px; margin-top: 28px; }
.micro-note { display: flex; align-items: center; gap: 12px; margin: 18px 0 0; color: #778087; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.micro-note span { width: 34px; height: 1px; background: var(--red); }
.stats {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(52, 58, 64, .91);
  border: 1px solid rgba(210, 220, 225, .4);
  backdrop-filter: blur(12px);
}
.stat { position: relative; min-height: 112px; display: flex; align-items: center; gap: 22px; padding: 20px 34px; border-right: 1px solid var(--line); }
.stat::after { content: ""; position: absolute; left: 34px; bottom: 0; width: 62px; height: 3px; background: var(--red); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-family: var(--display); font-size: clamp(30px, 2.25vw, 42px); line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.stat div span { display: block; max-width: 260px; margin-top: 8px; color: #aeb5b9; font-family: var(--display); font-size: 12px; font-weight: 800; line-height: 1.2; letter-spacing: .07em; }
.stat-icon { flex: 0 0 46px; width: 46px; height: 46px; padding: 7px; color: #f04450; border: 1px solid rgba(240,68,80,.55); background: rgba(225,38,50,.08); stroke-width: 1.45; }

.section { position: relative; padding: 128px 0; }
.section-heading { display: grid; grid-template-columns: .8fr 2fr; align-items: end; gap: 48px; margin-bottom: 64px; }
.section-heading .kicker { margin: 0 0 9px; }
.section-heading h2,
.coming-next h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(42px, 4.8vw, 72px);
  font-stretch: condensed;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.section-heading h2::after,
.contact-copy h2::after { content: ""; display: block; width: 78px; height: 5px; margin-top: 22px; background: var(--red); }
.about { background: var(--paper); color: var(--ink); }
.about .kicker { color: var(--red); }
.about-heading { grid-template-columns: 1fr; margin-bottom: 38px; }
.about-heading h2 { max-width: 1050px; font-family: var(--heading); font-size: clamp(42px, 4.65vw, 70px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
.about-intro { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: clamp(36px, 5vw, 78px); padding: 38px 0 48px; border-top: 1px solid #b8bec2; }
.about-lead { margin: 0; font-size: clamp(21px, 1.65vw, 27px); font-weight: 650; line-height: 1.38; letter-spacing: -.018em; }
.about-copy { padding-top: 3px; }
.about-copy p { margin: 0; color: #555d62; font-size: 16px; line-height: 1.72; }
.text-link { display: inline-flex; align-items: center; gap: 22px; margin-top: 26px; border-bottom: 1px solid var(--ink); padding-bottom: 8px; font-family: var(--display); font-weight: 900; letter-spacing: .06em; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #b8bec2; border: 1px solid #b8bec2; }
.about-card { background: #e8e9e6; }
.about-image { height: 250px; background-size: cover; filter: saturate(.78) contrast(1.06); }
.about-image.image-1 { background-image: url("../images/real/about-workshop-client.webp"); background-position: center 48%; }
.about-image.image-2 { background-image: url("../images/real/about-laser-operator-2026.webp"); background-position: center 48%; }
.about-image.image-3 { background-image: url("../images/real/about-finished-parts.webp"); background-position: center; }
.card-body { position: relative; min-height: 225px; padding: 30px; border-top: 4px solid var(--red); }
.card-body > span { position: absolute; top: 34px; right: 30px; color: var(--red); font-family: var(--display); font-weight: 900; }
.card-body h3 { max-width: 84%; margin: 0 0 24px; font-family: var(--heading); font-size: clamp(21px, 1.6vw, 25px); font-weight: 700; line-height: 1.16; letter-spacing: -.02em; }
.card-body p { margin: 0; color: #5d6468; font-size: 15px; line-height: 1.6; }
.certificates-section { background: #343a40; color: white; }
.certificates { display: grid; grid-template-columns: .7fr 1.5fr; gap: 60px; }
.certificates h3 { max-width: 470px; margin: 0 0 28px; font-family: var(--heading); font-size: 29px; font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
.certificates > div > p:last-child { max-width: 500px; margin: 0; color: #aeb6bb; line-height: 1.65; }
.certificate-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.certificate {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: #2b3035;
  color: white;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition: transform .22s ease, box-shadow .22s ease;
}
.certificate:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(10, 13, 15, .34); }
.certificate:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.certificate-preview {
  position: absolute;
  inset: 0 0 104px;
  background-size: cover;
  background-position: top center;
  filter: saturate(.72) contrast(1.02);
  transition: transform .3s ease, filter .3s ease;
}
.certificate:hover .certificate-preview { transform: scale(1.025); filter: saturate(1) contrast(1.02); }
.certificate-preview::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, #2b3035 92%); }
.certificate strong, .certificate small, .certificate-open { position: relative; z-index: 2; }
.certificate strong { font-family: var(--heading); font-size: 16px; line-height: 1.15; letter-spacing: -.015em; }
.certificate small { min-height: 28px; margin-top: 5px; color: #aeb6bb; font-size: 10px; line-height: 1.35; letter-spacing: .065em; }
.certificate-open { margin-top: 8px; color: var(--red); font-family: var(--display); font-size: 11px; font-weight: 900; letter-spacing: .08em; }

.process { overflow: hidden; background: #eceeeb; color: var(--ink); }
.process::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(60,70,76,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(60,70,76,.13) 1px, transparent 1px); background-size: 44px 44px; }
.process .container { position: relative; }
.process-heading { grid-template-columns: 1.4fr .6fr; }
.process-heading > p { max-width: 420px; margin: 0 0 6px; color: #626a6f; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid #b9c0bd; }
.step { position: relative; min-height: 290px; padding: 28px; border-right: 1px solid #b9c0bd; box-shadow: inset 0 3px rgba(225, 38, 50, .72); }
.step:last-child { border-right: 0; }
.step-number { color: var(--red); font-family: var(--display); font-size: 18px; font-weight: 900; }
.step-icon { display: block; width: 42px; height: 42px; margin: 34px 0 27px; padding: 7px; color: #ef4350; border-bottom: 2px solid rgba(225,38,50,.75); stroke-width: 1.5; }
.step h3 { margin: 0 0 18px; font-family: var(--heading); font-size: 21px; font-weight: 700; line-height: 1.15; letter-spacing: -.015em; }
.step p { margin: 0; color: #5f676c; font-size: 14px; line-height: 1.6; }
.coming-next { min-height: 560px; display: grid; align-items: center; background: #0b0d10; border-top: 1px solid var(--line); }
.coming-next h2 { max-width: 900px; }

.services { background: #2b3035; color: white; }
.services-heading { grid-template-columns: 1.35fr .65fr; margin-bottom: 48px; }
.services .kicker { color: var(--red); }
.services-heading > p { max-width: 440px; margin: 0 0 5px; color: #aeb6bb; line-height: 1.7; }
.service-highlights { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 18px; border: 1px solid var(--line); border-top: 4px solid var(--red); background: #343a40; }
.service-highlights article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.service-highlights article:last-child { border-right: 0; }
.service-highlights strong { display: block; padding-left: 15px; border-left: 3px solid var(--red); font-family: var(--display); font-size: 19px; font-weight: 900; letter-spacing: .025em; }
.service-highlights p { margin: 7px 0 0; color: #aeb6bb; font-size: 12px; line-height: 1.5; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  background: #343a40;
  transition: transform .25s ease, background .25s ease;
}
.service-card::before { content: ""; position: absolute; inset: 0; opacity: .13; pointer-events: none; background-image: linear-gradient(rgba(235,240,243,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(235,240,243,.16) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, black, transparent 65%); }
.service-card > * { position: relative; }
.service-card-1 { background: linear-gradient(145deg, rgba(225,38,50,.12), transparent 46%), #343a40; }
.service-card-2 { background: #30363b; }
.service-card-3 { background: #373e44; }
.service-card:hover { transform: translateY(-6px); background-color: #3d454b; }
.service-label { margin: 0 0 18px; padding-top: 5px; color: var(--red); font-family: var(--display); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3 { min-height: 82px; margin: 0; overflow-wrap: break-word; font-family: var(--heading); font-size: clamp(22px, 1.85vw, 29px); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
.service-description { min-height: 74px; margin: 18px 0 23px; color: #aeb6bb; font-size: 14px; line-height: 1.65; }
.service-card ul { margin: 0 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { min-height: 52px; display: grid; grid-template-columns: 24px 1fr; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); color: #edf0f2; font-size: 13px; line-height: 1.42; }
.service-card li span { color: var(--red); font-family: var(--display); font-size: 11px; font-weight: 900; }
.service-card li.is-subitem { min-height: 0; grid-template-columns: 24px 1fr; margin-top: 7px; padding: 12px 12px; border: 0; border-left: 2px solid rgba(225,38,50,.8); background: rgba(255,255,255,.045); color: #b9c1c6; font-size: 12px; line-height: 1.45; }
.service-card li.is-subitem span { font-size: 14px; }
.service-card > a { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding: 0 16px; border: 1px solid var(--red); color: white; font-family: var(--display); font-size: 14px; font-weight: 900; letter-spacing: .055em; transition: background .2s, color .2s; }
.service-card > a:hover { background: var(--red); color: white; }

.projects { background: #343a40; color: white; }
.project-heading { grid-template-columns: 1.4fr .6fr; align-items: end; }
.project-heading > p { max-width: 430px; margin: 0 0 5px; color: #aeb6bb; line-height: 1.65; }
.project-tabs { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.project-tabs button { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 25px; border: 0; border-right: 1px solid var(--line); background: transparent; color: white; font-family: var(--display); font-size: 18px; font-weight: 900; text-align: left; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s; }
.project-tabs button svg { flex: 0 0 auto; width: 23px; height: 23px; fill: none; stroke: var(--red); stroke-width: 1.8; transition: transform .2s, stroke .2s; }
.project-tabs button:hover { background: rgba(255,255,255,.09); }
.project-tabs button:hover svg { transform: translateX(4px); }
.project-tabs button:last-child { border-right: 0; }
.project-tabs button.active { background: var(--red); color: white; }
.project-tabs button.active:hover { background: var(--red); }
.project-tabs button.active svg { stroke: white; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 238px; gap: 14px; }
.project-card { position: relative; min-width: 0; min-height: 238px; overflow: hidden; background: #171b1f; }
.project-1 { grid-column: span 7; grid-row: span 2; }
.project-2, .project-3 { grid-column: span 5; }
.project-4, .project-5, .project-6 { grid-column: span 4; }
.project-image { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background-size: cover; background-position: center; filter: saturate(.82) contrast(1.04) brightness(.96); transition: transform .7s ease, filter .7s ease; cursor: zoom-in; }
.project-card:hover .project-image { transform: scale(1.025); filter: saturate(1) contrast(1.03) brightness(1); }
.project-image:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
.project-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.project-more { min-width: 280px; cursor: pointer; }

.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 38px; background: rgba(13,16,19,.94); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility 0s linear .2s; }
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.lightbox figure { width: min(1180px, 92vw); max-height: 90vh; display: flex; flex-direction: column; margin: 0; background: #252b30; border-top: 4px solid var(--red); box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.lightbox img { width: 100%; max-height: calc(90vh - 92px); display: block; object-fit: contain; background: #121518; }
.lightbox video { width: 100%; max-height: calc(90vh - 20px); display: block; object-fit: contain; background: #111417; }
.lightbox figcaption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 24px; }
.lightbox figcaption span { color: #aeb6bb; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.lightbox figcaption strong { font-family: var(--heading); font-size: 20px; line-height: 1.15; text-align: right; }
.lightbox-close { position: fixed; z-index: 2; top: 22px; right: 24px; width: 48px; height: 48px; border: 1px solid var(--red); background: var(--red); color: white; font-size: 34px; font-weight: 300; line-height: 1; cursor: pointer; }

.videos { overflow: hidden; background: #eceeed; color: var(--ink); }
.videos::before { content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: linear-gradient(rgba(60,70,76,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(60,70,76,.12) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(130deg, black, transparent 72%); }
.videos .container { position: relative; }
.video-heading { grid-template-columns: 1.35fr .65fr; align-items: end; }
.video-heading h2 { font-size: clamp(38px, 4vw, 60px); }
.video-brand-line { white-space: nowrap; }
.video-heading > p { max-width: 430px; margin: 0 0 5px; color: #626a6f; line-height: 1.65; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.video-card { position: relative; min-width: 0; aspect-ratio: 16 / 10; overflow: hidden; padding: 0; border: 0; border-top: 3px solid var(--red); background: #171b1f; color: white; cursor: pointer; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,12,.07), rgba(8,10,12,.3)); transition: background .35s ease; }
.video-card:hover::after { background: linear-gradient(180deg, rgba(8,10,12,.02), rgba(8,10,12,.18)); }
.video-poster { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.72) contrast(1.08); transition: transform .7s ease, filter .7s ease; }
.video-card:hover .video-poster { transform: scale(1.035); filter: saturate(.92) contrast(1.08); }
.video-play { position: absolute; z-index: 2; top: 50%; left: 50%; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); background: rgba(226,38,50,.9); transform: translate(-50%, -50%); transition: transform .25s ease, background .25s ease; }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--red); }
.video-play i { width: 0; height: 0; margin-left: 4px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid white; }
.video-card:focus-visible { outline: 3px solid white; outline-offset: -3px; }
.video-lightbox figure { width: min(1180px, 92vw); }
.video-lightbox video { width: 100%; max-height: 86vh; display: block; object-fit: contain; background: #111417; }

.request { position: relative; overflow: hidden; padding: 120px 0; background: #2b3035; color: white; }
.request::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(235,240,243,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(235,240,243,.09) 1px, transparent 1px); background-size: 42px 42px; opacity: .24; }
.request-visual { position: absolute; inset: 0 48% 0 0; background: linear-gradient(90deg, rgba(43,48,53,.28), #2b3035 96%), url("../images/real/about-workshop.webp") center/cover; filter: grayscale(.35); opacity: .42; }
.request-grid { position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: 7vw; align-items: center; }
.request .kicker { color: var(--red); }
.request-copy h2 { max-width: 720px; margin: 0; font-family: var(--heading); font-size: clamp(40px, 4.45vw, 68px); font-weight: 700; line-height: 1.02; letter-spacing: -.028em; text-transform: uppercase; }
.request-copy > p:last-child { max-width: 520px; margin: 28px 0 0; color: #626a6f; font-size: 17px; line-height: 1.7; }
.call-panel { display: grid; gap: 18px; padding: 34px; background: #f7f8f5; color: var(--ink); border-top: 4px solid var(--red); box-shadow: 0 22px 55px rgba(37,43,47,.12); }
.call-selector > span { display: block; margin-bottom: 10px; font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.call-selector select { width: 100%; min-height: 54px; border: 1px solid #bac0c3; border-radius: 0; outline: none; background: #eceeeb; padding: 0 46px 0 16px; color: var(--ink); font-family: var(--body); font-size: 15px; cursor: pointer; }
.call-selector select:focus { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.call-mobile-options { display: none; }
.call-contact-card { display: grid; gap: 6px; padding: 19px 20px; border-left: 3px solid var(--red); background: #e9ece9; }
.call-contact-card span { color: #687176; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.call-contact-card strong { font-size: 19px; }
.call-contact-card b { color: var(--red); font-family: var(--display); font-size: 25px; letter-spacing: .025em; }
.call-button { width: 100%; cursor: pointer; }

.contacts { padding: 128px 0; background: #eceeed; color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.contact-copy h2 { max-width: 700px; margin: 0; font-family: var(--heading); font-size: clamp(40px, 4.2vw, 64px); font-weight: 700; line-height: 1.02; letter-spacing: -.028em; text-transform: uppercase; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; margin-top: 60px; border-top: 1px solid #b9c0bd; border-left: 1px solid #b9c0bd; }
.contact-details > div { min-height: 118px; padding: 20px; border-right: 1px solid #b9c0bd; border-bottom: 1px solid #b9c0bd; }
.contact-details span { display: block; margin-bottom: 12px; color: var(--red); font-family: var(--display); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.contact-details strong,
.contact-details a { font-size: 14px; font-weight: 500; line-height: 1.55; }
.contact-details a { text-decoration: underline; text-underline-offset: 4px; }
.contact-hours-card,
.contact-phone-card { grid-column: 1 / -1; }
.contact-phone-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.phone-group > strong { display: block; margin-bottom: 10px; color: #3f474c; font-size: 14px; font-weight: 700; }
.phone-group a { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 4px 0 8px; text-decoration: none; }
.phone-group a b { color: var(--ink); font-family: var(--display); font-size: 16px; letter-spacing: .025em; white-space: nowrap; }
.phone-group a em { color: #697176; font-size: 13px; font-style: normal; }
.messengers { display: flex; gap: 8px; margin-top: 18px; }
.messengers a { flex: 1; min-height: 45px; display: grid; place-items: center; border: 1px solid var(--red); color: #ff9aa0; font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .08em; transition: background .2s; }
.messengers a:hover { background: var(--red); border-color: var(--red); color: white; }
.map-wrap { position: relative; min-height: 620px; border: 1px solid var(--line); border-top: 4px solid var(--red); background: #3a4147; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 620px; border: 0; filter: grayscale(.65) contrast(1.06); opacity: 1; }
.map-label { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: space-between; padding: 18px; background: rgba(43,48,53,.94); border-left: 4px solid var(--red); }
.map-label span { color: #7f888e; font-family: var(--display); font-size: 11px; letter-spacing: .08em; }
.map-label strong { max-width: 72%; font-family: var(--display); font-size: 16px; line-height: 1.25; text-align: right;    color: #fff; }

footer { padding: 38px 0; background: #22272b; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer-brand { gap: 7px; }
.footer-brand .brand-emblem { width: 52px; height: 44px; }
.footer-brand .brand-wordmark-image { width: 158px; }
.footer-grid p { margin: 0; color: #6e777d; font-size: 11px; letter-spacing: .08em; }
.footer-grid > a:last-child { justify-self: end; font-family: var(--display); font-size: 12px; font-weight: 900; }
.floating-contact { position: fixed; z-index: 45; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 10px; padding-right: 15px; background: rgba(55,61,67,.94); border: 1px solid var(--red); color: white; backdrop-filter: blur(10px); transition: background .2s ease, transform .2s ease; }
.floating-contact:hover { background: #454d53; transform: translateY(-2px); }
.floating-contact-icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--red); }
.floating-contact-icon svg { width: 22px; height: 22px; }
.floating-contact > span:last-child { font-family: var(--display); font-size: 11px; font-weight: 900; letter-spacing: .1em; }

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header nav { gap: 18px; }
  .site-header nav a { font-size: 13px; }
  .social-group { display: none; }
  .language { margin-right: 4px; }
  .stat { padding: 18px; }
  .stat-symbol { display: none; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(100% - 40px, 760px); }
  .site-header { height: 72px; min-width: 0; padding: 0 20px; grid-template-columns: minmax(0, 1fr) auto; overflow: visible; }
  .site-header .brand { z-index: 3; min-width: 0; }
  .brand-emblem { width: 48px; height: 42px; }
  .brand-wordmark-image { width: 154px; }
  .menu-toggle { z-index: 4; flex: 0 0 42px; display: grid; gap: 7px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span { width: 20px; height: 1px; background: white; transition: transform .2s; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-header nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 100px 28px 150px;
    background: rgba(40,45,50,.99);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .25s ease, opacity .2s ease, visibility 0s linear .25s;
  }
  .site-header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .site-header nav a { font-size: clamp(27px, 7.5vw, 32px); }
  .header-tools {
    position: fixed;
    z-index: 3;
    top: calc(100dvh - 70px - env(safe-area-inset-bottom));
    right: 28px;
    bottom: auto;
    left: 28px;
    display: none;
    justify-content: flex-start;
  }
  .site-header nav.is-open + .header-tools { display: flex; }
  .header-tools .social-group { display: flex; }
  .header-tools .social { display: grid; }
  .button-small { display: none; }
  .hero { min-height: 900px; height: auto; }
  .hero-media { inset: 72px 0 0; background-position: 58% center; }
  .hero-media video { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(38,43,48,.96), rgba(38,43,48,.58)),
      linear-gradient(180deg, rgba(38,43,48,.2), rgba(38,43,48,.72));
  }
  .hero-content { padding-top: 170px; }
  .hero h1 { max-width: 650px; }
  .hero-company-logo { width: 130px; }
  .hero-company-wordmark { width: min(69.6vw, 540px); max-width: calc(100% - 148px); }
  .stats { position: relative; left: auto; bottom: auto; transform: none; margin-top: 80px; grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { grid-column: 1 / -1; border-bottom: 0; }
  .section { padding: 92px 0; }
  .section-heading, .about-intro, .certificates, .process-heading { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { display: grid; grid-template-columns: .8fr 1fr; }
  .about-image { height: 100%; min-height: 260px; }
  .certificate-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid #b9c0bd; }
  .step:nth-child(2n) { border-right: 0; }
  .step:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .service-highlights article { padding: 20px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 0; }
  .service-card-3 { grid-column: 1 / -1; }
  .service-card h3 { min-height: 0; }
  .project-heading { grid-template-columns: 1fr; gap: 28px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .project-1, .project-2, .project-3, .project-4, .project-5, .project-6 { grid-column: span 1; grid-row: span 1; }
  .video-heading { grid-template-columns: 1fr; gap: 28px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .request { padding: 92px 0; }
  .request-visual { inset: 0; opacity: .18; }
  .request-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 54px; }
  .request-copy,
  .call-panel,
  .contact-copy,
  .map-wrap { min-width: 0; }
  .contacts { padding: 92px 0; }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 540px); }
  .hero { min-height: 860px; }
  .hero-content { --hero-kicker-size: clamp(8px, 2.3vw, 10px); padding-top: 142px; }
  .hero-legal-name { gap: 3px; margin-bottom: 12px; letter-spacing: .045em; }
  .hero-kicker { max-width: 300px; margin-bottom: 22px; line-height: 1.4; }
  .hero-company { gap: 9px; width: 100%; }
  .hero-company-logo { width: 82px; }
  .hero-company-wordmark { flex: 1 1 auto; width: auto; max-width: 336px; min-width: 0; }
  .hero-slogan { margin-top: 16px; font-size: clamp(30px, 8.8vw, 43px); line-height: 1.08; }
  .hero-subtitle { font-size: 17px; }
  .hero-button { width: 100%; min-width: 0; }
  .stats { margin-top: 58px; grid-template-columns: 1fr 1fr; }
  .stat { min-height: 92px; padding: 15px; }
  .stat::after { left: 15px; }
  .stat-icon { flex-basis: 38px; width: 38px; height: 38px; padding: 6px; }
  .stat strong { font-size: 26px; }
  .stat div span { font-size: 9px; }
  .section-heading h2, .coming-next h2 { font-size: 39px; }
  .about-intro { padding: 36px 0; }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    border: 0;
    background: transparent;
  }
  .about-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #b8bec2;
  }
  .about-image {
    flex: 0 0 240px;
    width: 100%;
    height: 240px;
    min-height: 0;
  }
  .card-body {
    display: block;
    min-height: 0;
    padding: 24px 22px 28px;
  }
  .card-body > span { top: 27px; right: 22px; }
  .card-body h3 {
    max-width: calc(100% - 42px);
    margin-bottom: 16px;
  }
  .certificate-list { grid-template-columns: 1fr 1fr; gap: 6px; }
  .certificate { min-height: 260px; padding: 14px; }
  .certificate-preview { bottom: 96px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:last-child { min-height: auto; grid-column: auto; border-right: 0; border-bottom: 1px solid #b9c0bd; }
  .step:last-child { border-bottom: 0; }
  .step-icon { margin: 24px 0; }
  .services-heading > p { font-size: 14px; }
  .service-highlights { grid-template-columns: 1fr; }
  .service-highlights article { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-highlights article:last-child { border-bottom: 0; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card, .service-card-3 { grid-column: auto; padding: 24px; }
  .service-card h3 { min-height: 0; font-size: 25px; }
  .service-description { min-height: 0; }
  .project-tabs { grid-template-columns: 1fr; }
  .project-tabs button { min-height: 58px; border-right: 0; border-bottom: 1px solid #b9bfc3; }
  .project-tabs button:last-child { border-bottom: 0; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .project-1, .project-2, .project-3, .project-4, .project-5, .project-6 { grid-column: 1; grid-row: span 1; }
  .project-more { width: 100%; min-width: 0; }
  .lightbox { padding: 14px; }
  .lightbox figure { width: 100%; }
  .lightbox figcaption { display: block; padding: 15px; }
  .lightbox figcaption strong { display: block; margin-top: 6px; font-size: 20px; text-align: left; }
  .lightbox-close { top: 12px; right: 12px; }
  .video-grid { grid-template-columns: 1fr; gap: 12px; }
  .video-card { aspect-ratio: 16 / 10; }
  .video-play { width: 48px; height: 48px; }
  .request-copy h2 { font-size: 37px; }
  .call-panel { padding: 22px; }
  .call-selector,
  .call-selector select,
  .call-panel .button { min-width: 0; }
  .call-selector select { display: none; }
  .call-mobile-options { display: grid; gap: 8px; }
  .call-mobile-options button {
    width: 100%;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #c5c9c7;
    border-left: 3px solid #c5c9c7;
    background: #eceeeb;
    color: var(--ink);
    font-family: var(--body);
    text-align: left;
    cursor: pointer;
  }
  .call-mobile-options button.active { border-color: var(--red); background: #fff; }
  .call-mobile-options span { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .call-mobile-options b { color: var(--red); font-family: var(--display); font-size: 19px; letter-spacing: .02em; }
  .call-mobile-options small { color: #5f676c; font-size: 14px; }
  .call-contact-card { display: none; }
  .call-contact-card b { font-size: 22px; }
  .contact-copy h2 { font-size: 37px; }
  .contact-details { grid-template-columns: 1fr; margin-top: 42px; }
  .contact-hours-card,
  .contact-phone-card { grid-column: auto; }
  .contact-phone-groups { grid-template-columns: 1fr; }
  .phone-group a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .messengers { flex-wrap: wrap; }
  .messengers a { flex-basis: calc(50% - 4px); }
  .map-wrap, .map-wrap iframe { min-height: 410px; }
  .map-label { left: 10px; right: 10px; bottom: 10px; padding: 13px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid > a:last-child { justify-self: start; }
  .floating-contact > span:last-child { display: none; }
  .floating-contact { padding-right: 0; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .site-header { padding-inline: 12px; }
  .site-header .brand { gap: 6px; }
  .brand-emblem { width: 40px; height: 36px; }
  .brand-wordmark-image { width: 128px; }
  .menu-toggle { flex-basis: 40px; width: 40px; height: 40px; }
  .site-header nav { padding-inline: 22px; }
  .site-header nav a { font-size: 27px; }
  .header-tools { right: 22px; left: 22px; }
  .language { margin-right: 8px; }
  .hero { min-height: 0; }
  .hero-content { --hero-kicker-size: 7.6px; padding-top: 132px; }
  .hero-legal-name { letter-spacing: .025em; }
  .hero-company-logo { width: 72px; }
  .hero-company-wordmark { max-width: 294px; }
  .hero-slogan { font-size: clamp(29px, 8.6vw, 34px); }
  .hero-subtitle { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat,
  .stat:nth-child(2),
  .stat:nth-child(3) { grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-heading h2,
  .about-heading h2,
  .coming-next h2 { font-size: 34px; overflow-wrap: anywhere; }
  .certificate-list { grid-template-columns: 1fr; gap: 10px; }
  .certificate { min-height: 300px; }
  .request-copy h2,
  .contact-copy h2 { font-size: 34px; overflow-wrap: anywhere; }
  .map-label strong { font-size: 16px; }
}

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