/* 01-shop-floor — local design comp. Do not publish. */

:root {
  --bg: #0b0c0e;
  --ink: #e8eaec;
  --steel: #c5c9ce;
  --cyan: #00add0;
  --line: #2a2e33;
  --max: 72rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Barlow, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

a { color: var(--cyan); }
a:hover, a:focus-visible { color: #5ad4ee; }
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 40;
  background: var(--cyan);
  color: #041014;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
}
.skip:focus { top: 0.75rem; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(11, 12, 14, 0.55);
  border-bottom: 1px solid rgba(197, 201, 206, 0.18);
  backdrop-filter: blur(4px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.brand { display: flex; align-items: center; }
.brand .logo {
  height: 2.7rem;
  width: auto;
  max-width: min(16rem, 52vw);
}

.nav { display: flex; flex-wrap: wrap; gap: 0.15rem; }
.nav a {
  color: var(--steel);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}
.nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--cyan);
}

.header-phone {
  margin-left: auto;
  font-weight: 700;
  text-decoration: none;
  color: #041014;
  background: var(--cyan);
  padding: 0.55rem 0.9rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cyan);
}
.header-phone:hover { color: #041014; background: #5ad4ee; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 7rem 0 3.5rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  animation: kenburns 12s ease-in-out infinite alternate;
  transform-origin: 70% 45%;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,12,14,0.94) 0%, rgba(11,12,14,0.78) 38%, rgba(11,12,14,0.28) 68%, rgba(11,12,14,0.12) 100%),
    linear-gradient(180deg, rgba(11,12,14,0.45) 0%, transparent 18%, transparent 70%, rgba(11,12,14,0.85) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}
.hero-copy p { max-width: 38rem; color: var(--steel); margin: 0 0 1rem; }

.ul-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7.2vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.1rem;
  max-width: 16ch;
  text-wrap: balance;
}

.lede {
  font-size: 1.15rem;
  color: var(--steel) !important;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.btn-primary {
  background: var(--cyan);
  color: #041014;
  border: 1px solid var(--cyan);
}
.btn-primary:hover { background: #5ad4ee; color: #041014; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--steel);
}
.btn-secondary:hover { color: var(--cyan); border-color: var(--cyan); }

.proof-bar {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101214;
}
.proof-bar li {
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 1.15rem 0.75rem;
  border-right: 1px solid var(--line);
  color: var(--steel);
}
.proof-bar li:last-child { border-right: 0; }

.block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  color: #fff;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0;
}
.tile {
  display: block;
  padding: 1.2rem 1.15rem;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
}
.tile h3 {
  margin: 0 0 0.45rem;
  color: var(--cyan);
  font-size: 1.05rem;
}
.tile p { margin: 0; color: var(--steel); font-size: 0.98rem; }
.tile:hover { background: #121417; }

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.steps li {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--steel);
  counter-increment: step;
}
.steps { counter-reset: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--cyan);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.steps strong { color: #fff; }

.gallery.four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1px;
  background: var(--line);
}
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 14rem; object-fit: cover; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 2.5rem;
  background: #08090a;
}
.nap {
  max-width: var(--max);
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.site-footer p {
  max-width: var(--max);
  margin: 0 auto 0.75rem;
  color: var(--steel);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .proof-bar li:nth-child(2) { border-right: 0; }
  .proof-bar li { border-bottom: 1px solid var(--line); }
  .nap { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  .hero { min-height: auto; padding-top: 8rem; }
}

@media (max-width: 420px) {
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar li { border-right: 0; }
  .header-phone { margin-left: 0; width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img { animation: none; }
}

/* --- hybrid mesh-night overlay --- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

body { font-family: Outfit, Barlow, system-ui, sans-serif; background: #071018; }
.mesh {
  position: fixed; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 42% at 12% 18%, rgba(14,111,138,0.45), transparent 62%),
    radial-gradient(ellipse 40% 36% at 88% 8%, rgba(201,137,46,0.18), transparent 58%),
    radial-gradient(ellipse 46% 40% at 78% 72%, rgba(14,111,138,0.32), transparent 60%),
    #071018;
  animation: mesh-shift 18s ease-in-out infinite alternate;
}
@keyframes mesh-shift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-3%, 2%, 0) scale(1.06); }
}
.grain-fixed {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header, main, .site-footer { position: relative; z-index: 2; }

.nav a {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.proof-bar {
  background: rgba(14, 111, 138, 0.22) !important;
  border: 1px solid rgba(62,196,224,0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  gap: 1px !important;
}
.proof-bar li {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  border-right: 0 !important;
}

.gallery figure, .figure {
  border: 1px solid #3ec4e0;
}
.ul-badge {
  letter-spacing: 0.18em;
  color: #c9892e !important;
  border-color: rgba(201,137,46,0.55) !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 46vh;
  padding: 7.5rem 0 2.25rem;
}
.page-hero .hero-photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 14s ease-in-out infinite alternate;
}
.page-hero .hero-shade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(7,16,24,0.9) 0%, rgba(7,16,24,0.55) 50%, rgba(14,111,138,0.2) 100%),
              linear-gradient(180deg, rgba(7,16,24,0.45) 0%, transparent 30%, rgba(7,16,24,0.8) 100%);
}
.page-hero .hero-copy { position: relative; z-index: 3; max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; }
.service { padding: 1.5rem 0; border-top: 1px solid rgba(62,196,224,0.22); }
.service p, .split p { color: #9fb0ba; max-width: 42rem; }
.address { font-style: normal; line-height: 1.7; }
.form { display: grid; gap: 0.4rem; max-width: 28rem; margin-top: 1.25rem; }
.form label { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; color: #9fb0ba; }
.form input, .form select {
  background: rgba(7,16,24,0.65); border: 1px solid rgba(62,196,224,0.22); color: #e7eef2;
  padding: 0.6rem 0.7rem; font: inherit; margin-bottom: 0.55rem;
}
.form button[disabled] {
  min-height: 2.75rem; background: rgba(14,111,138,0.25); color: #9fb0ba; border: 1px solid rgba(62,196,224,0.22);
}
.note { color: #c9892e; }
@media (prefers-reduced-motion: reduce) { .mesh { animation: none; } }

.gallery.full { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:0.65rem; }
.gallery.full img { height:16.5rem; object-fit:cover; }
.gallery.full figure { margin:0; }

.gallery-page .wrap { max-width: 90rem; }
.gallery-page .gallery.full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.7rem;
}
.gallery-page .gallery.full img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}
.gallery-page .gallery.full figure {
  margin: 0;
  background: #0a1218;
}
