@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-cyrillic-400-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-cyrillic-500-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-cyrillic-700-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-slab-cyrillic-500-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-slab-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-slab-cyrillic-700-normal.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-slab-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

button { cursor: pointer; }

:root {
  --bg: #f4f5f3;
  --surface: #ffffff;
  --ink: #1a1f22;
  --muted: #5c656b;
  --accent: #0c6f96;
  --accent-deep: #065373;
  --accent-soft: #90c2db;
  --nav: #1a1f22;
  --border: #d7ddd8;
  --hero-scrim: #0c1114;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --wrap: 1200px;
  --header-h: 76px;
  --font: "Roboto", system-ui, -apple-system, sans-serif;
  --display: "Roboto Slab", "Roboto", serif;
  --shadow: 0 10px 28px rgba(26, 31, 34, 0.06);
  --motion-quick: 150ms;
  --motion-fast: 250ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }
html, body, #app { margin: 0; min-height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }
h1, h2, h3 {
  font-family: var(--display);
  text-wrap: balance;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
p { text-wrap: pretty; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 8px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform var(--motion-quick) var(--ease), background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.42); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-outline { background: var(--surface); color: var(--accent-deep); border-color: color-mix(in oklab, var(--accent) 28%, white); }
.btn-outline:hover { background: #e8f3f7; }
.btn svg { width: 1em; height: 1em; overflow: hidden; flex: 0 0 auto; }
.ico-max { width: 1em; height: 1em; overflow: hidden; flex: 0 0 auto; display: block; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.is-home .site-header {
  position: fixed; inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(12,17,20,0.58), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.is-home .site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(26,31,34,0.06);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: 16px; }
.brand {
  display: flex; align-items: center; background: #fff; border-radius: 8px;
  padding: 5px 9px; line-height: 0; flex: 0 0 auto;
}
.brand img { height: 48px; width: auto; max-width: 156px; object-fit: contain; }
.site-nav { margin-left: auto; }
.site-nav .menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: block; padding: 10px 12px; color: var(--ink); font-weight: 500; font-size: 15px; border-radius: var(--radius-sm); }
.is-home .site-header:not(.is-scrolled) .site-nav a { color: #fff; }
.site-nav a:hover, .site-nav .is-current > a { color: var(--accent); background: #e8f3f7; }
.is-home .site-header:not(.is-scrolled) .site-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.menu-item-has-children { position: relative; }
.menu-item-has-children .sub-menu {
  position: absolute; top: calc(100% - 4px); left: 0; min-width: 240px; padding: 8px; margin: 0; list-style: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
}
.menu-item-has-children:hover .sub-menu, .menu-item-has-children:focus-within .sub-menu { opacity: 1; pointer-events: auto; transform: none; }
.menu-item-has-children .sub-menu a { color: var(--ink) !important; }
.header-tools { display: flex; align-items: center; gap: 10px; margin-left: 8px; flex: 0 0 auto; }
.header-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 700; font-size: 14px; white-space: nowrap; }
.is-home .site-header:not(.is-scrolled) .header-phone { color: #fff; }
.header-phone svg { width: 15px; height: 15px; color: var(--accent); }
.is-home .site-header:not(.is-scrolled) .header-phone svg { color: var(--accent-soft); }
.msg { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--border); }
.is-home .site-header:not(.is-scrolled) .msg { color: #fff; border-color: rgba(255,255,255,0.28); }
.msg:hover { background: #e8f3f7; color: var(--accent); }
.msg svg { width: 18px; height: 18px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.phone-link svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }
.phones { display: grid; gap: 10px; margin-bottom: 14px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 18px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; margin: 0 auto; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hp-hero { position: relative; min-height: 100svh; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--hero-scrim); }
.hp-hero__bg { position: absolute; inset: 0; }
.hp-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 50%; }
.hp-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,17,20,0.88) 0%, rgba(12,17,20,0.62) 36%, rgba(12,17,20,0.16) 68%, rgba(12,17,20,0.32) 100%),
    linear-gradient(180deg, rgba(12,17,20,0.38) 0%, transparent 26%, rgba(12,17,20,0.5) 100%);
}
.hp-hero__inner { position: relative; z-index: 1; padding: 120px 0 28px; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; container-type: inline-size; }
.hp-hero__title {
  margin: 0 0 18px;
  font-size: clamp(1.18rem, 5.6vw, 4.6rem);
  font-size: clamp(1.18rem, 7cqi, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 100%;
}
.hp-hero__lead { margin: 0 0 28px; max-width: 38ch; color: rgba(255,255,255,0.86); font-size: clamp(1.02rem, 0.96rem + 0.35vw, 1.18rem); line-height: 1.45; }
.hp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hp-trust { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; max-width: 760px; margin-bottom: 32px; }
.hp-trust article { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.hp-trust svg { width: 24px; height: 24px; color: var(--accent-soft); margin-top: 2px; }
.hp-trust h3 { margin: 0 0 4px; font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: 0; line-height: 1.25; }
.hp-trust p { margin: 0; color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.4; }

.hp-services {
  position: relative; z-index: 2;
  background: var(--surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  box-shadow: 0 -18px 40px rgba(12,17,20,0.18);
}
.hp-services a {
  color: var(--ink); text-align: center; padding: 24px 14px 26px;
  border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 8px; min-height: 100%;
  transition: background var(--motion-fast) var(--ease);
}
.hp-services a:last-child { border-right: 0; }
.hp-services a:hover { background: #f3f6f4; color: var(--ink); }
.hp-services svg { width: 28px; height: 28px; color: var(--accent); }
.hp-services b { font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.hp-services span { color: var(--muted); font-size: 13px; line-height: 1.35; max-width: 22ch; }

.hp-specs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.specs-row {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
}
.specs-row article {
  padding: 4px 20px;
  border-right: 1px solid var(--border);
  display: grid; gap: 4px;
}
.specs-row article:last-child { border-right: 0; }
.specs-row b {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.specs-row span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section, .hp-cta, .hp-specs, .hp-hero { scroll-margin-top: calc(var(--header-h) + 8px); }
.section { padding: 88px 0; }
.section-kicker {
  margin: 0 0 10px; color: var(--accent-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.section h2 { margin: 0 0 12px; font-size: clamp(1.85rem, 1.2rem + 1.8vw, 2.6rem); }
.section-lead { margin: 0 0 40px; color: var(--muted); max-width: 52ch; }

.hp-outcomes { background: var(--bg); }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.outcome {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: grid; grid-template-rows: 220px auto;
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
}
.outcome:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.outcome img { width: 100%; height: 220px; object-fit: cover; }
.outcome div { padding: 20px 22px 22px; }
.outcome h3 { margin: 0 0 8px; font-size: 1.2rem; }
.outcome p { margin: 0; color: var(--muted); font-size: 14px; max-width: 46ch; }

.hp-works { background: var(--surface); border-block: 1px solid var(--border); }
.works-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 28px; }
.works-head .section-lead { margin-bottom: 0; }
.works-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.work-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md); color: #fff;
  display: flex; align-items: flex-end; min-height: 460px;
}
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.work-card:hover img { transform: scale(1.045); }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(12,17,20,0.9)); }
.work-card div { position: relative; z-index: 1; padding: 24px; }
.work-card small { display: block; margin-bottom: 6px; color: var(--accent-soft); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.work-card h3 { margin: 0 0 8px; font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem); color: #fff; }
.work-card p { margin: 0; color: rgba(255,255,255,0.82); font-size: 14px; }

.hp-process { background: var(--bg); }
.process-list {
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0; position: relative;
}
.process-list article { padding: 0 20px 8px 0; position: relative; }
.process-list b {
  display: grid; place-items: center;
  width: 36px; height: 36px; margin: 0 0 16px;
  border-radius: 50%; border: 1px solid var(--accent);
  background: var(--bg); color: var(--accent-deep);
  font-size: 12px; letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
  line-height: 1; padding: 0; font-weight: 700; position: relative; z-index: 1;
}
.process-list h3 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -0.02em; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.hp-why { background: var(--surface); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: stretch; }
.why-photo { border-radius: var(--radius-md); overflow: hidden; min-height: 460px; background: #d7e0dc; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 0; }
.why-list article { padding: 18px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 28px 1fr; gap: 14px; }
.why-list article:first-child { border-top: 1px solid var(--border); }
.why-list svg { width: 24px; height: 24px; color: var(--accent); margin-top: 2px; }
.why-list h3 { margin: 0 0 6px; font-size: 1.12rem; }
.why-list p { margin: 0; color: var(--muted); }

.hp-cta {
  background: var(--bg);
  color: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.cta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.hp-cta h2 { margin: 0 0 12px; font-size: clamp(1.9rem, 1.3rem + 1.5vw, 2.7rem); color: var(--ink); }
.hp-cta p { margin: 0 0 18px; color: var(--muted); max-width: 52ch; }
.cta-phone { color: var(--ink) !important; display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
.cta-phone a { color: var(--ink); font-weight: 700; }
.quote-form { display: grid; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.quote-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.quote-form input, .quote-form textarea {
  width: 100%; border: 1px solid var(--border); background: var(--bg); color: var(--ink);
  border-radius: 8px; padding: 12px 14px; min-height: 44px;
}
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: var(--muted); }
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--accent-soft); outline-offset: 1px; }
.file-drop {
  position: relative; border: 1px dashed var(--border); border-radius: 8px;
  padding: 14px 16px; background: var(--bg); cursor: pointer;
}
.file-drop span { font-size: 14px; }
.file-drop small { color: var(--muted); font-weight: 400; font-size: 12px; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; min-height: 0; padding: 0; border: 0; }
.form-ok { margin: 0; padding: 16px; border-radius: 8px; background: #e7f4ea; color: #215c34; }
.form-err { margin: 0; color: #9b2c2c; font-size: 14px; }
.quote-form--light { background: var(--surface); border-color: var(--border); }

.hp-contacts { background: var(--surface); }
.hp-contacts .contacts-grid, .contacts-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: start; }
.contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.contact-card h2 { margin: 0 0 16px; }
.contact-card p { margin: 0 0 10px; }
.contact-card a { color: var(--ink); font-weight: 600; }
.contacts-media { display: grid; gap: 14px; }
.place-shot, .map-shot { display: block; margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: #d7e0dc; }
.place-shot img, .map-shot img { width: 100%; height: auto; display: block; object-fit: cover; }
.place-shot img { aspect-ratio: 4 / 3; min-height: 240px; }
.map-shot img { aspect-ratio: 3 / 2; min-height: 200px; }

.contact-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1.4fr;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}
.contact-board .contact-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-board .contact-card h2 { margin-bottom: 18px; }
.contact-board .contact-actions { margin: 18px 0 0; }
.contact-board .contacts-media {
  gap: 0;
  min-height: 460px;
  grid-template-rows: 1.25fr 0.9fr;
}
.contact-board .place-shot,
.contact-board .map-shot {
  border: 0;
  border-radius: 0;
  min-height: 0;
}
.contact-board .place-shot img,
.contact-board .map-shot img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}
.contact-board .map-shot { border-top: 1px solid var(--border); }

.page-hero { padding: 40px 0 28px; background: linear-gradient(180deg, #e8ece9, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); }
.page-hero p { margin: 0; color: var(--muted); max-width: 62ch; }
.inner { padding: 40px 0 80px; }
.inner-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 28px; align-items: start; }
.entry { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.entry p, .entry li { color: #334148; }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin: 24px 0 0; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); }
.materials-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.materials-grid article { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.materials-grid h3 { margin: 0 0 8px; }
.materials-grid p { margin: 0; color: var(--muted); }
.consult { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow); }
.consult b { display: block; margin-bottom: 4px; }
.consult p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.consult .btn { width: 100%; }
.consult-person { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.consult-person img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.consult-person span { color: var(--muted); font-size: 13px; }
.related { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 28px; }
.related a { display: block; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--ink); background: var(--bg); font-weight: 600; }
.related a:hover { border-color: var(--accent); color: var(--accent); }

.site-footer { background: var(--nav); color: rgba(255,255,255,0.82); padding: 48px 0 28px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer a { color: #fff; }
.site-footer .brand { margin-bottom: 12px; width: max-content; }
.site-footer h3 { margin: 0 0 12px; font-family: var(--font); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-soft); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-copy { padding-top: 16px; font-size: 13px; color: rgba(255,255,255,0.55); }

[hidden] { display: none !important; }
.modal-back { position: fixed; inset: 0; z-index: 80; background: rgba(12,17,20,0.55); display: grid; place-items: center; padding: 20px; }
.modal { width: min(480px, 100%); background: var(--surface); color: var(--ink); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 24px 64px rgba(12,17,20,0.28); position: relative; }
.modal h2 { margin: 0 0 8px; font-size: 1.4rem; }
.modal > p { margin: 0 0 16px; color: var(--muted); }
.modal-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--ink); font-size: 24px; line-height: 1; }
.mobile-dock { display: none; }

@media (max-width: 980px) {
  .outcomes-grid, .works-grid, .why-grid, .cta-grid, .hp-contacts .contacts-grid, .contacts-grid, .inner-grid, .footer-grid, .process-list, .materials-grid, .specs-row { grid-template-columns: 1fr; }
  .work-card { min-height: 320px; }
  .works-grid { min-height: 0; }
  .process-list article { border-bottom: 1px solid var(--border); padding: 18px 0; }
  .hp-trust { grid-template-columns: 1fr; }
  .consult { position: static; }
  .specs-row article { border-right: 0; border-bottom: 1px solid var(--border); padding: 14px 0; }
  .why-photo { min-height: 280px; }
  .contact-board { grid-template-columns: 1fr; min-height: 0; }
  .contact-board .contact-card { padding: 28px 22px 8px; }
  .contact-board .contacts-media { min-height: 0; grid-template-rows: none; }
  .contact-board .place-shot img { aspect-ratio: 4 / 3; min-height: 220px; height: auto; }
  .contact-board .map-shot img { aspect-ratio: 16 / 10; min-height: 180px; height: auto; }
}
@media (max-width: 900px) {
  .hp-hero__bg img { object-position: 82% 42%; }
  .hp-hero__bg::after {
    background:
      linear-gradient(180deg, rgba(12,17,20,0.55) 0%, rgba(12,17,20,0.72) 42%, rgba(12,17,20,0.82) 100%),
      linear-gradient(90deg, rgba(12,17,20,0.55) 0%, rgba(12,17,20,0.28) 100%);
  }
  .header-tools { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 20px 20px; display: none; margin: 0; }
  .site-nav.is-open { display: block; }
  .site-nav .menu { flex-direction: column; align-items: stretch; }
  .is-home .site-header:not(.is-scrolled) .site-nav a { color: var(--ink); }
  .menu-item-has-children .sub-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; display: none; padding: 0 0 0 12px; }
  .menu-item-has-children.is-sub-open .sub-menu { display: block; }
  .hp-services { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .hp-services a { min-width: 72%; scroll-snap-align: start; border-right: 1px solid var(--border); align-items: flex-start; text-align: left; }
  .mobile-dock {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 5px 10px calc(5px + env(safe-area-inset-bottom));
    gap: 6px;
  }
  .mobile-dock a, .mobile-dock button {
    min-height: 28px;
    height: 28px;
    padding: 0 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    flex: 0 0 auto;
  }
  .mobile-dock svg, .mobile-dock .ico-max {
    width: 1em;
    height: 1em;
    overflow: hidden;
  }
  .mobile-dock .is-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
  body { padding-bottom: 42px; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .hp-hero__inner { padding: 100px 0 20px; }
  .hp-hero__title { margin-bottom: 12px; }
  .hp-hero__actions { gap: 8px; margin-bottom: 24px; }
  .hp-hero__actions .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .section { padding: 56px 0; }
  .gallery, .materials-grid, .related { grid-template-columns: 1fr; }
  .brand img { height: 40px; }
  .hp-cta { padding: 48px 0; }
  .entry { padding: 20px; }
  .outcome { grid-template-rows: 180px auto; }
  .outcome img { height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 28px; align-items: start; padding: 40px 0 80px; }
.kicker { margin: 0 0 10px; color: var(--accent-deep); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.table-wrap { overflow-x: auto; margin: 16px 0; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table-wrap th, .table-wrap td { border-bottom: 1px solid var(--border); padding: 10px 8px; text-align: left; }
.note { color: var(--muted); font-size: 14px; }
.consult-person { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.consult-person img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.consult-person span { color: var(--muted); font-size: 13px; }
.phones { display: grid; gap: 8px; margin-bottom: 14px; }
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
}

.article-meta{margin:8px 0 0;color:var(--muted);font-size:14px}
.article-body h2{margin:28px 0 10px;font-size:1.35rem}
.article-body h3{margin:20px 0 8px;font-size:1.08rem}
.article-body ul,.article-body ol{padding-left:1.2em}
.article-body a{color:var(--accent-deep);font-weight:500}
.article-cta{margin:28px 0 0;padding:18px 20px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-md)}
.article-cta p{margin:0 0 10px}
.archive-wrap{padding:36px 0 80px}
.post-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.post-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:22px;box-shadow:var(--shadow)}
.post-card h2{margin:0 0 8px;font-size:1.2rem}
.post-card h2 a{color:var(--ink)}
.post-card-date{margin:0 0 8px;color:var(--muted);font-size:13px}
.post-card-more{font-weight:700;color:var(--accent-deep)}
.pager{margin-top:28px}
@media (max-width:800px){.post-list{grid-template-columns:1fr}}
