@font-face { font-family: "Rubik"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/rubik/rubik-r.woff2") format("woff2"); }
@font-face { font-family: "Rubik"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/rubik/rubik-m.woff2") format("woff2"); }
@font-face { font-family: "Rubik"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/rubik/rubik-b.woff2") format("woff2"); }
@font-face { font-family: "Rubik"; font-weight: 900; font-style: normal; font-display: swap; src: url("../fonts/rubik/rubik-bl.woff2") format("woff2"); }
@font-face { font-family: "Bowler"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/bowler/bowler-r.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/montserrat/montserrat-r.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/montserrat/montserrat-s-b.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/montserrat/montserrat-b.woff2") format("woff2"); }

:root {
  --dark: #232726;
  --darker: #000b0f;
  --orange: #ffa733;
  --orange-hot: #f76720;
  --orange-soft: #ffb126;
  --white: #ffffff;
  --mist: #f8f8f8;
  --gray: #a9a9a9;
  --muted: #c5c5c5;
  --text: #232726;
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: Rubik, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  background: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: Bowler, sans-serif; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

.container { width: 88%; margin: 0 auto; }
@media (max-width: 991px) { .container { width: calc(100% - 60px); } }
@media (max-width: 767px) { .container { width: calc(100% - 40px); } }

/* Header */
.site-header {
  position: relative;
  z-index: 40;
  padding: 22px 0 10px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.brand-name {
  font-family: Bowler, sans-serif;
  font-size: clamp(14px, 1.15vw, 22px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  font-weight: 400;
}
.brand-sub { font-size: 16px; line-height: 26px; color: #fff; opacity: .6; margin-top: 2px; }

.header-contacts {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hc {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 14px;
}
.hc-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-icon svg {
  width: 40%;
  height: 40%;
  stroke: #fff;
  fill: none;
}
.hc-icon svg * { fill: none; stroke: #fff; }
.hc a { color: #fff; font-weight: 500; }
.hc a:hover { color: var(--orange); }
.hc-mail { text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; }

.nav-wrap { display: flex; justify-content: center; margin-top: 18px; position: relative; z-index: 5; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.nav a, .nav-drop > .nav-parent {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  opacity: .8;
  padding: 0;
  white-space: nowrap;
  font-family: Rubik, sans-serif;
  transition: opacity .6s ease, color .3s ease;
}
.nav a:hover, .nav a.is-current, .nav-drop:hover > .nav-parent { color: #fff; opacity: 1; }
.nav-drop { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav-drop > .nav-parent { display: inline-flex; align-items: center; gap: 6px; }
.nav-drop > .nav-parent::after { content: "▾"; font-size: 10px; opacity: .7; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 320px;
  background: #1c1f1e;
  border-radius: 16px;
  padding: 10px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  z-index: 50;
}
.nav-drop:hover > .nav-sub,
.nav-drop:focus-within > .nav-sub { display: block; }
.nav-sub a { display: block; padding: 10px 16px; color: #fff; border-radius: 0; }
.nav-sub a:hover { background: rgba(255,167,51,.12); color: var(--orange); }
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
}
@media (max-width: 1100px) {
  .burger { display: grid; place-items: center; }
  .nav-wrap { display: none; }
  .nav-wrap.open {
    display: flex;
    background: rgba(0,0,0,.45);
    border-radius: 20px;
    padding: 16px 20px;
    margin-top: 12px;
  }
  .nav { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .nav-drop { padding-bottom: 0; margin-bottom: 0; }
  .nav-sub { position: static; display: none; background: transparent; box-shadow: none; padding-left: 12px; top: auto; }
  .nav-drop:hover > .nav-sub { display: none; }
  .nav-drop.open .nav-sub,
  .nav-drop.open:hover > .nav-sub { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 76vh;
  color: #fff;
  overflow: hidden;
  background: #1a1d1c url("../img/hero.png") center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,22,21,.92) 0%, rgba(20,22,21,.72) 42%, rgba(20,22,21,.28) 70%, rgba(20,22,21,.1) 100%),
    linear-gradient(180deg, rgba(20,22,21,.25) 0%, transparent 30%, rgba(20,22,21,.45) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-header.site-header { position: relative; z-index: 40; }
.hero-header .container { z-index: auto; }
.hero-main { padding-top: 20px; padding-bottom: 220px; }
.hero-title { margin-bottom: 15px; }
.hero-title .line-outline {
  font-family: Bowler, sans-serif;
  font-size: 6.8vw;
  line-height: 8vw;
  color: transparent;
  -webkit-text-stroke-width: 0.1vw;
  -webkit-text-stroke-color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
}
.hero-title .line-row { display: flex; flex-wrap: nowrap; gap: .35em; align-items: baseline; }
.hero-title .line-orange {
  display: inline-block;
  font-family: Bowler, sans-serif;
  font-size: 5.3vw;
  line-height: 6.3vw;
  color: var(--orange);
  text-shadow: 1px 1px 0 rgba(0,0,0,.8);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
}
.hero-title .line-fill {
  display: inline-block;
  font-family: Bowler, sans-serif;
  font-size: 5.3vw;
  line-height: 6.3vw;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,.8);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
}
.hero-copy {
  max-width: 640px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 28px;
  opacity: .8;
  text-align: justify;
}
.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 25px 50px;
  font-family: Bowler, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: transform .3s ease, background .3s ease;
}
.btn:hover { background: var(--orange-hot); transform: scale(.95); }
.btn-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  font-family: Bowler, sans-serif;
}
.btn-circle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 0; }
.hero-stats b {
  font-family: Bowler, sans-serif;
  font-size: 3.5vw;
  color: #fff;
  display: block;
  line-height: 3.5vw;
  font-weight: 400;
  margin-bottom: 5px;
}
.hero-stats div:last-child b { color: var(--orange); }
.hero-stats span { font-size: 16px; line-height: 26px; opacity: .75; }

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: -100px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}
.factor {
  background: rgba(255,255,255,.05);
  border-radius: 30px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 8%;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,.3);
}
.factor img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: none;
}
.factor p {
  font-family: Bowler, sans-serif;
  font-size: 1.2vw;
  line-height: 2vw;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  font-weight: 400;
}

/* Sections */
.section { padding: 3% 0; background: var(--mist); color: var(--text); }
.section-dark { background: var(--dark); color: #fff; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}
.section-title {
  font-family: Bowler, sans-serif;
  font-size: 3.5vw;
  line-height: 4.5vw;
  color: #d7d7d7;
  text-transform: uppercase;
  font-weight: 400;
}
.section-title.wide { font-size: 4.5vw; line-height: 5.5vw; }
.section-title.solid { color: var(--dark); }
.lead {
  font-size: 16px;
  line-height: 30px;
  opacity: .8;
  border-left: 5px solid var(--orange);
  padding-left: 30px;
  max-width: 40%;
}
.section-head .lead { max-width: none; }

/* Services overlapping hero photo */
.hero .section-services,
.section-services {
  position: relative;
  z-index: 3;
  padding: 40px 0 0;
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(transparent 66%, #f8f8f8 60%);
  overflow: hidden;
}
.section-services .section-title { color: #9a9a9a; }
.section-services .lead {
  color: rgba(255, 255, 255, .85);
  opacity: 1;
  border-left-color: var(--orange);
  max-width: 100%;
  margin-left: auto;
}
.section-services .slider-wrap {
  width: calc(100% + min(400px, 22vw));
  margin-right: calc(-1 * min(400px, 22vw));
}
.section-services .slider { width: 100%; overflow: hidden; }
.section-services .card { color: var(--text); }
.section-services .slider-nav { margin-top: 18px; position: relative; z-index: 4; }

/* Services slider */
.slider { overflow: hidden; width: 100%; }
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform .45s ease;
  will-change: transform;
}
.card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card h3 {
  font-family: Bowler, sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card .price { color: var(--orange); font-family: Bowler, sans-serif; margin-bottom: 12px; }
.card .price small { font-family: Rubik, sans-serif; opacity: .6; font-weight: 400; margin-right: 6px; }
.card p { font-size: 15px; line-height: 1.55; opacity: .65; flex: 1; margin-bottom: 18px; }
.slider-nav { display: flex; gap: 10px; margin-top: 22px; }
.arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-family: Bowler, sans-serif;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about-photo { border-radius: 28px; overflow: hidden; min-height: 420px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.stat-card, .note-card {
  border-radius: 24px;
  padding: 28px;
  background: #fff;
}
.stat-card.accent { background: var(--orange); color: #fff; }
.stat-card b {
  font-family: Bowler, sans-serif;
  font-size: clamp(40px, 3.5vw, 72px);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
.stat-card b i { color: var(--orange); font-style: normal; }
.stat-card.accent b i { color: #fff; }
.about-copy { font-size: 16px; opacity: .75; margin: 18px 0 22px; }
.about-copy p + p { margin-top: 14px; }
.btn-block { width: 100%; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
}
.review-top { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.review-top img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.rev-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Bowler, sans-serif;
  font-size: 18px;
  flex: none;
}
.review h4 { font-family: Bowler, sans-serif; font-size: 16px; text-transform: uppercase; }
.review .role { font-size: 13px; opacity: .6; }
.stars { color: var(--orange); letter-spacing: 2px; margin: 6px 0 10px; }
.review p { font-size: 15px; opacity: .75; }

/* FAQ + form */
.faq-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.acc { border-bottom: 1px solid #e6e6e6; }
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 18px 8px;
  font-family: Bowler, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  gap: 12px;
  align-items: center;
}
.acc-btn::before { content: "+"; color: var(--orange); font-size: 22px; width: 18px; }
.acc.open .acc-btn::before { content: "×"; }
.acc-body { display: none; padding: 0 8px 18px 38px; font-size: 16px; opacity: .7; }
.acc.open .acc-body { display: block; }
.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
}
.form-card h3 { font-family: Bowler, sans-serif; font-size: 28px; text-transform: uppercase; margin-bottom: 10px; }
.form-card .hint { font-size: 14px; opacity: .65; margin-bottom: 20px; }
.form-card input, .form-card textarea {
  width: 100%;
  border: 1px solid #ececec;
  background: #fafafa;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  margin-bottom: 12px;
}
.form-card textarea { border-radius: 22px; min-height: 90px; resize: vertical; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: 13px; line-height: 1.45; margin: 8px 0 18px; }
.check input { margin-top: 3px; }
.check a { color: #1a4fd6; text-decoration: underline; }
.form-card .btn { width: 100%; }
.form-ok { display: none; color: #1a7f3c; font-weight: 500; margin-top: 10px; }
.phone-error { display: none; color: #c0392b; font-size: 12px; margin: 6px 0 0; }
input.is-invalid { border-color: #c0392b !important; }

/* Inner pages */
.page { background: var(--mist); min-height: 100vh; color: var(--text); }
.page .site-header { background: var(--dark); }
.page-main { padding: 48px 0 80px; }
.crumbs { font-size: 14px; color: var(--gray); margin-bottom: 18px; }
.crumbs a { color: var(--orange); }
.more-link { color: var(--orange); font-weight: 600; }
.page-title {
  font-family: Bowler, sans-serif;
  font-size: clamp(28px, 4.5vw, 72px);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 400;
}
.prose { max-width: 980px; font-size: 16px; line-height: 1.7; }
.prose p + p { margin-top: 14px; }
.prose h2 { font-family: Bowler, sans-serif; font-size: 28px; line-height: 1.25; margin: 28px 0 12px; text-transform: uppercase; }
.prose h3 { font-family: Bowler, sans-serif; font-size: 22px; line-height: 1.3; margin: 28px 0 12px; text-transform: uppercase; font-weight: 400; }
.prose h4 { font-size: 18px; margin: 20px 0 10px; }
.prose ul, .prose ol { margin: 8px 0 18px 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 8px 0; }
.prose a { color: var(--orange-hot); }
.prose img { width: 100%; border-radius: 16px; margin: 16px 0; }
.prose figure { margin: 16px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; background: #fff; }
.prose td, .prose th { border: 1px solid #eee; padding: 10px 12px; text-align: left; }
.about-ill { max-width: min(100%, 560px); height: auto; display: block; margin: 8px 0 28px; }
.company-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.company-side { position: sticky; top: 20px; }
.side-nav { display: grid; gap: 8px; }
.side-nav-link {
  display: block;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ececec;
  font-size: 15px;
}
.side-nav-link.is-on {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.side-note {
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.side-note p + p { margin-top: 8px; }
.company-main .prose { max-width: none; }
.company-main .page-title {
  margin-top: 0;
  font-size: clamp(28px, 3.2vw, 48px);
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 8px;
}
.about-hero .about-ill { margin: 0; max-width: 100%; border-radius: 16px; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.faq-tab {
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}
.faq-tab.is-on {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.rev-item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
}
.rev-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.rev-name { font-family: Bowler, sans-serif; font-size: 16px; text-transform: uppercase; }
.rev-meta { font-size: 13px; opacity: .55; margin: 6px 0 0; }
.rev-stars { color: var(--orange); letter-spacing: 2px; flex: none; }
.rev-text { font-size: 15px; line-height: 1.65; opacity: .8; }
.rev-reply {
  margin-top: 14px;
  padding: 14px 16px;
  background: #f4f4f4;
  border-radius: 12px;
}
.rev-reply-label { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.rev-reply p { font-size: 14px; line-height: 1.55; opacity: .8; margin: 0; }
.rev-form { margin-top: 36px; }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.proj-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  min-height: 180px;
  background: var(--dark);
}
.proj-card[hidden] { display: none; }
.proj-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.proj-sec { display: block; font-size: 12px; opacity: .75; margin-bottom: 4px; }
.proj-name { display: block; font-family: Bowler, sans-serif; font-size: 16px; text-transform: uppercase; line-height: 1.3; }
.proj-cta {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 22px;
  display: grid;
  gap: 16px;
}
.proj-cta p { font-size: 16px; line-height: 1.6; }
.proj-map { margin: 0 0 22px; }
.proj-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  background: #eee;
}
.proj-h {
  font-family: Bowler, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 36px 0 16px;
  font-weight: 400;
}
.company-main .reviews { margin-top: 0; }
.nav-sub a.is-current { color: var(--orange); }
.svc-kicker { font-size: 18px; }
.svc-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  margin: 4px 0 24px;
  display: block;
}
.sub-links { display: grid; gap: 10px; max-width: 520px; margin-top: 28px; }
.sub-links a {
  display: flex;
  justify-content: space-between;
  background: #eef2f7;
  padding: 16px 18px;
  border-radius: 8px;
}
.price-wrap { overflow-x: auto; margin-top: 28px; border-radius: 16px; }
.price-table, .props-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.price-table td, .props-table td, .price-table th, .props-table th {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.price-table th { font-family: Rubik, sans-serif; font-weight: 600; background: #f4f4f4; }
.price-table th:nth-child(1), .price-table td:nth-child(1) { width: 56px; color: #8a8a8a; }
.price-table th:nth-child(3), .price-table td:nth-child(3) { text-align: right; white-space: nowrap; font-weight: 600; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: #fafafa; }
.old { text-decoration: line-through; opacity: .5; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery a { display: block; cursor: zoom-in; }
.gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.works-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.works-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.1); color: var(--text); }
.works-card img { width: 100%; height: 220px; object-fit: cover; }
.works-card .meta { padding: 16px 18px 20px; }
.works-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 6px; font-family: Rubik, sans-serif; text-transform: none; }
.works-card .count { opacity: .55; font-size: 14px; }
.blog-post-title {
  font-family: Rubik, sans-serif;
  font-size: 36px;
  line-height: 1.25;
  text-transform: none;
  font-weight: 700;
  max-width: 980px;
}
.blog-meta { margin: 8px 0 20px; color: #888; font-size: 15px; }
.blog-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin: 8px 0 8px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}
.blog-toc {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.blog-toc-title {
  font-family: Bowler, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-toc ul { list-style: none; margin: 0 0 18px; }
.blog-toc li { margin: 0; }
.blog-toc a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid #f0f0f0;
}
.blog-toc a:hover { color: var(--orange-hot); }
.blog-toc .btn { width: 100%; font-size: 16px; padding: 14px 16px; }
.blog-article { max-width: none; }
.blog-article h2, .blog-article h3 { scroll-margin-top: 90px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.1); color: var(--text); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .meta { padding: 16px 18px 20px; }
.blog-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 8px; font-family: Rubik, sans-serif; text-transform: none; }
.blog-card .count { opacity: .55; font-size: 13px; margin-bottom: 8px; }
.blog-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: .75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-related-title {
  font-family: Bowler, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 48px 0 0;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.86);
  cursor: zoom-out;
}
.lightbox.open { display: block; }
.lightbox .lb-frame {
  position: absolute;
  inset: 48px 64px 40px;
}
.lightbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }
.lightbox .lb-count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  opacity: .85;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.empty-note { opacity: .6; padding: 20px 0; }

.auth {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 36px;
  border-radius: 24px;
}
.auth h1 { font-size: 28px; margin-bottom: 18px; }
.auth input { width: 100%; margin-bottom: 12px; padding: 12px 14px; border: 1px solid #e5e5e5; border-radius: 10px; font: inherit; }
.legal { max-width: 900px; margin: 40px auto; background: #fff; padding: 36px; border-radius: 8px; }
.legal h1 { font-size: 28px; margin-bottom: 16px; font-family: Arial, sans-serif; text-transform: none; }
.legal p { color: #666; font-size: 15px; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 0; }
.footer-map-wrap {
  background-image: linear-gradient(var(--mist) 20%, transparent 20%);
  padding-top: 40px;
}
.footer-map {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  margin-bottom: 10px;
  background: #ddd url("../img/yandex-map.png") center / cover no-repeat;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 18px;
}
.footer-phone {
  font-family: Bowler, sans-serif;
  font-size: 4vw;
  line-height: 5vw;
  color: #fff;
  letter-spacing: 0;
  font-weight: 400;
}
.footer-socials,
.contacts-socials {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.contacts-socials { margin: 8px 0 12px; }
.footer-socials a,
.contacts-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: inherit;
}
.footer-socials a { color: #fff; }
.contacts-socials a { color: var(--text); }
.footer-socials a:hover,
.contacts-socials a:hover { color: var(--orange); }
.contacts-soc-names { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 16px; }
.contacts-soc-names a { color: var(--orange); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 18px 0 28px;
}
.footer h5 { font-size: 14px; opacity: .6; margin-bottom: 6px; font-weight: 400; }
.footer a:hover { color: var(--orange); }
.footer-ico { display: flex; gap: 14px; align-items: flex-start; }
.footer-ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; margin-top: 4px; opacity: .85; }
.footer-ico .value { font-size: 18px; }
.copy {
  padding: 10px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: .85;
}
.copy-meta { text-align: right; line-height: 1.7; }
.to-top {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.order-hero {
  background: var(--dark);
  min-height: 0;
  overflow: visible;
}
.order-hero::before { content: none; }
.order-hero .site-header { background: var(--dark); }
.order-hero .factor-grid { margin-top: 28px; }
.order-stage {
  position: relative;
  height: min(78vh, 860px);
  min-height: 620px;
}
.order-map {
  position: absolute;
  inset: 0;
  background: #e8eef2;
}
.order-panel {
  position: absolute;
  z-index: 6;
  left: max(24px, calc((100% - 1320px) / 2));
  top: 20px;
  width: min(420px, calc(100% - 40px));
  max-height: calc(100% - 40px);
  overflow: auto;
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.order-panel h2 {
  font-family: Rubik, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 16px;
  white-space: nowrap;
}
.order-panel h2 span { color: var(--orange-hot); }
.order-label {
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 6px;
}
.order-hint { font-size: 12px; color: #888; margin: 2px 0 0; }
.order-addr { display: grid; gap: 8px; }
.order-field { position: relative; }
.order-panel input[type="text"],
.order-panel input[type="tel"],
.order-panel input[type="datetime-local"] {
  width: 100%;
  border: 1px solid #ececec;
  background: #fafafa;
  border-radius: 12px;
  padding: 12px 44px 12px 14px;
  font: inherit;
  font-size: 15px;
}
.order-panel input[name="comment"],
.order-panel input[name="phone"],
.order-panel input[name="when"] { padding-right: 14px; }
.order-geo {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--orange-hot);
  display: grid;
  place-items: center;
}
.order-geo:hover { background: #fff4e8; }
.order-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.order-type { cursor: pointer; }
.order-type input { position: absolute; opacity: 0; pointer-events: none; }
.order-type span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 12px 6px 10px;
  min-height: 78px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.order-type i { font-size: 22px; color: var(--text); }
.order-type b { font-size: 12px; font-weight: 600; }
.order-type small { font-size: 11px; color: #888; }
.order-type input:checked + span {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,167,51,.2);
}
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.order-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ececec;
  border-radius: 999px;
  overflow: hidden;
}
.order-stepper button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: var(--text);
}
.order-stepper input {
  width: 28px;
  border: 0;
  background: transparent;
  text-align: center;
  padding: 0;
  font-weight: 600;
}
.order-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 4px;
  cursor: pointer;
}
.order-switch input[type="checkbox"] {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #ddd;
  position: relative;
  flex-shrink: 0;
  transition: background .2s ease;
}
.order-switch input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}
.order-switch input[type="checkbox"]:checked { background: var(--orange); }
.order-switch input[type="checkbox"]:checked::after { transform: translateX(20px); }
.order-when { margin: 8px 0 10px; }
.order-panel .check { margin: 10px 0 8px; font-size: 12px; }
.order-panel .btn { width: 100%; margin-top: 8px; padding: 16px 20px; }
.order-live {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  z-index: 6;
  width: max-content;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  justify-self: end;
  align-self: end;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: Bowler, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  pointer-events: none;
}
.modal-order {
  width: min(1180px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}
.modal-order .order-map {
  position: relative;
  inset: auto;
  min-height: 560px;
  height: 100%;
  order: 2;
}
.modal-order .order-panel {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  max-height: 92vh;
  border-radius: 0;
  box-shadow: none;
  order: 1;
}
.modal-order .modal-close {
  z-index: 8;
  color: #fff;
  background: rgba(0,0,0,.35);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  right: 12px;
  top: 12px;
}
.modal-order .order-live {
  right: 16px;
  bottom: 16px;
  left: auto;
  top: auto;
  width: max-content;
}

/* Modal */
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-box {
  background: #fff;
  width: min(460px, 100%);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 28px;
  color: #888;
}
.modal-box.modal-order {
  width: min(1180px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}
.modal-box.modal-order .order-map {
  position: relative;
  inset: auto;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .factor-grid, .reviews, .about-grid, .faq-grid, .footer-grid, .gallery, .product-grid, .works-grid, .proj-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .card { flex: 0 0 calc((100% - 20px) / 2); }
  .section-head { grid-template-columns: 1fr; }
  .section-services .lead, .lead { max-width: none; margin-left: 0; }
  .section-services .slider-wrap { width: 100%; margin-right: 0; }
  .footer-map { height: 280px; }
  .nav { gap: 16px; }
}
@media (max-width: 991px) {
  .order-stage {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .order-map {
    position: relative;
    height: 320px;
  }
  .order-panel {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-height: none;
    margin: -48px 16px 16px;
  }
  .order-live {
    right: 12px;
    left: auto;
    bottom: auto;
    top: 12px;
    width: max-content;
    padding: 8px 12px;
    font-size: 12px;
  }
  .modal { padding: 10px; }
  .modal-box.modal-order,
  .modal-order {
    grid-template-columns: 1fr;
    width: min(520px, calc(100vw - 16px));
    max-height: 94vh;
    overflow: auto;
    border-radius: 20px;
  }
  .modal-order .order-map,
  .modal-box.modal-order .order-map {
    min-height: 140px;
    height: 140px;
    max-height: 140px;
    overflow: hidden;
    order: 1;
  }
  .modal-order .order-map > ymaps,
  .modal-box.modal-order .order-map > ymaps,
  .modal-order .order-map > ymaps > ymaps.ymaps-2-1-79-map,
  .modal-box.modal-order .order-map > ymaps > ymaps.ymaps-2-1-79-map {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }
  .modal-order .order-panel {
    order: 2;
    margin: 0;
    padding: 16px 16px 20px;
    max-height: none;
  }
  .modal-order .order-live {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    width: max-content;
  }
  .order-panel h2 { white-space: normal; font-size: 20px; }
  .modal-order .order-panel .btn {
    font-size: 16px;
    line-height: 24px;
    padding: 14px 20px;
  }
  .order-type span { min-height: 68px; padding: 8px 4px; }
  .order-type b { font-size: 11px; }
  .company-layout { grid-template-columns: 1fr; gap: 24px; }
  .company-side { position: static; }
  .about-hero { grid-template-columns: 1fr; }
  .hero-title .line-outline { font-size: 53px; line-height: 63px; -webkit-text-stroke-width: 1px; }
  .hero-title .line-orange, .hero-title .line-fill { font-size: 42px; line-height: 52px; }
  .hero-stats b { font-size: 50px; line-height: 60px; }
  .hero-main { padding-bottom: 72px; }
  .section-title { font-size: 50px; line-height: 60px; }
  .section-title.wide { font-size: 34px; line-height: 44px; }
  .factor p { font-size: 20px; line-height: 30px; }
  .factor-grid { margin-top: -40px; gap: 20px; }
  .order-hero .factor-grid { margin-top: 20px; }
  .footer-phone { font-size: 6vw; line-height: 7vw; }
  .btn { font-size: 20px; line-height: 30px; padding: 20px 40px; }
  .brand-name { font-size: 16px; }
}
@media (max-width: 767px) {
  .header-contacts { display: none; }
  .factor-grid, .reviews, .about-grid, .faq-grid, .footer-grid, .gallery, .product-grid, .works-grid, .proj-grid, .blog-grid { grid-template-columns: 1fr; }
  .card { flex: 0 0 100%; }
  .hero-title .line-outline { font-size: 33px; line-height: 43px; }
  .hero-title .line-orange, .hero-title .line-fill { font-size: 26px; line-height: 36px; }
  .hero-stats b { font-size: 40px; line-height: 50px; }
  .hero-main { padding-bottom: 24px; }
  .modal-order .order-map,
  .modal-box.modal-order .order-map {
    min-height: 120px;
    height: 120px;
    max-height: 120px;
  }
  .modal-order .order-panel h2 { font-size: 18px; }
  .section-title, .section-title.wide { font-size: 36px; line-height: 46px; }
  .factor { border-radius: 20px; }
  .factor p { font-size: 18px; line-height: 28px; }
  .factor-grid { margin-top: 0; }
  .footer-phone { font-size: 36px; line-height: 46px; }
  .footer-socials { gap: 24px; }
  .btn { font-size: 18px; line-height: 28px; padding: 20px 40px; }
  .price-table th:nth-child(1),
  .price-table td:nth-child(1) { display: none; }
  .price-table th:nth-child(3),
  .price-table td:nth-child(3) { white-space: normal; min-width: 7em; }
}
@media (max-width: 479px) {
  .hero-title .line-outline,
  .hero-title .line-orange,
  .hero-title .line-fill { font-size: 20px; line-height: 30px; }
  .hero-stats b { font-size: 30px; line-height: 40px; }
  .section-title, .section-title.wide { font-size: 24px; line-height: 34px; }
  .factor p { font-size: 16px; line-height: 26px; }
  .footer-phone { font-size: 24px; line-height: 34px; }
  .btn { font-size: 16px; line-height: 26px; padding: 15px 30px; }
}

/* Scroll-in animations (Mosaic onScrollIntoView) */
[data-anim] {
  animation-duration: 1s;
  animation-fill-mode: both;
}
[data-anim]:not(.is-in) { opacity: 0; }
[data-anim="fadeInDown"].is-in { animation-name: ms-fadeInDown; }
[data-anim="fadeInUp"].is-in { animation-name: ms-fadeInUp; }
[data-anim="fadeInLeft"].is-in { animation-name: ms-fadeInLeft; }
[data-anim="fadeInRight"].is-in { animation-name: ms-fadeInRight; }
[data-anim="zoomIn"].is-in { animation-name: ms-zoomIn; }
[data-anim="slideInRight"].is-in { animation-name: ms-slideInRight; }

@keyframes ms-fadeInDown {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes ms-fadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes ms-fadeInLeft {
  from { opacity: 0; transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes ms-fadeInRight {
  from { opacity: 0; transform: translate3d(100%, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes ms-zoomIn {
  from { opacity: 0; transform: scale3d(.3, .3, .3); }
  50% { opacity: 1; }
  to { opacity: 1; transform: none; }
}
@keyframes ms-slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

[data-anim].is-done {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] { animation: none !important; opacity: 1 !important; transform: none !important; }
}
