@import url('/assets/fonts/site-fonts.css?v=20260802-selfhost1');

:root {
  --hz-bg: #f7f1e5;
  --hz-surface: #fffdf8;
  --hz-ink: #21180f;
  --hz-muted: #786d5f;
  --hz-line: #dfd0b9;
  --hz-accent: #b5853e;
  --hz-accent-deep: #805a28;
  --hz-accent-soft: #f0e2c9;
  --hz-dark: #1c160f;
  --hz-max: 1200px;
  --acc: var(--hz-accent);
  --acc2: var(--hz-accent);
  --acc-rgb: 181 133 62;
  --txt: var(--hz-ink);
  --mut: var(--hz-muted);
  --bg: var(--hz-bg);
  --bg2: var(--hz-bg);
  --card: var(--hz-surface);
  --br: var(--hz-line);
  --max: var(--hz-max);
}

html[data-kitchen-variant="1"] {
  --hz-bg: #f3f8f5;
  --hz-surface: #ffffff;
  --hz-ink: #0d1726;
  --hz-muted: #647084;
  --hz-line: #dfe8e4;
  --hz-accent: #16a05d;
  --hz-accent-deep: #087744;
  --hz-accent-soft: #e7f7ef;
  --hz-dark: #071121;
  --acc-rgb: 22 160 93;
}

html[data-kitchen-variant="2"] {
  --hz-bg: #f7f1e5;
  --hz-surface: #fffdf8;
  --hz-ink: #21180f;
  --hz-muted: #786d5f;
  --hz-line: #dfd0b9;
  --hz-accent: #b5853e;
  --hz-accent-deep: #805a28;
  --hz-accent-soft: #f0e2c9;
  --hz-dark: #1c160f;
  --acc-rgb: 181 133 62;
}

html[data-kitchen-variant="3"] {
  --hz-bg: #0d1118;
  --hz-surface: #151b25;
  --hz-ink: #f5efe6;
  --hz-muted: #b8c0ca;
  --hz-line: #343b47;
  --hz-accent: #d2ad72;
  --hz-accent-deep: #e1bf86;
  --hz-accent-soft: #2a241b;
  --hz-dark: #07090d;
  --acc-rgb: 210 173 114;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--hz-ink);
  background: var(--hz-bg);
  font: 500 16px/1.55 Manrope, Arial, sans-serif;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: '';
  background: radial-gradient(900px 480px at 0 -10%, rgba(181,133,62,.12), transparent 68%);
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--hz-accent); outline-offset: 3px; }

.wrap, .container, .hz-container, .hzEditorialShell, .hzLegal {
  width: min(var(--hz-max), calc(100% - 48px));
  margin-inline: auto;
}
.spacer { height: 0; }
.hz-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--hz-ink);
  background: var(--hz-surface);
  box-shadow: 0 10px 24px rgba(50,34,15,.16);
  transform: translateY(-170%);
}
.hz-skip-link:focus { transform: translateY(0); }

/* Production diagnostics must never affect layout width. */
.hz-diag.is-hidden {
  display: none;
}
.hz-diag:not(.is-hidden) {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 3000;
  width: min(460px, calc(100vw - 24px));
  max-height: min(70dvh, 620px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  background: rgba(7,17,33,.94);
  box-shadow: 0 22px 70px rgba(0,0,0,.3);
}
.hz-diag__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hz-diag__btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #071121;
  background: #fff;
}
.hz-diag__pre {
  max-width: 100%;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* One shared navigation system for all internal pages. */
.hzChromePromo, .promo {
  position: relative;
  z-index: 100;
  min-height: 38px;
  color: #fff9ef;
  background: var(--hz-dark);
}
.hzChromePromo__in, .promo__in {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--hz-max), calc(100% - 48px));
  min-height: 38px;
  margin: auto;
  font-size: 13px;
  font-weight: 700;
}
.hzChromeHeader, .hz-hdr, .hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  border-bottom: 1px solid var(--hz-line);
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(14px);
}
.hzChromeHeader__in, .hz-hdr__in, .hdr__in {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(var(--hz-max), calc(100% - 48px));
  min-height: 76px;
  margin: auto;
}
.hzChromeBrand, .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.hzChromeBrand img, .brand__logoImg { width: 48px; height: 48px; object-fit: contain; }
.brand__txt { display: grid; line-height: 1.05; }
.brand__name { font-size: 15px; font-weight: 800; letter-spacing: .07em; }
.brand__cap { margin-top: 5px; color: var(--hz-muted); font-size: 10px; font-weight: 700; }
.hzChromeNav, .hz-hdr__nav, .nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.hzChromeNav a, .hz-hdr__link, .nav-links a {
  color: var(--hz-ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.hzChromeNav a:hover, .hz-hdr__link:hover, .nav-links a:hover { color: var(--hz-accent-deep); }
.hzChromeActions, .hdr__right { display: flex; align-items: center; gap: 10px; }
.hzChromePhone, .hdr__phone, .hdrPhoneDesktop, .hdrPhoneMobile {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--hz-line);
  border-radius: 999px;
  color: var(--hz-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hzGuide {
  padding: 10px 0;
  border-bottom: 1px solid var(--hz-line);
  color: var(--hz-muted);
  background: color-mix(in srgb, var(--hz-surface) 82%, var(--hz-bg));
}
.hzGuide__in {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(var(--hz-max), calc(100% - 48px));
  margin-inline: auto;
}
.hzGuide__ttl {
  flex: 0 0 auto;
  color: var(--hz-ink);
  font-size: 13px;
  font-weight: 850;
}
.hzGuide__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hzGuideStep {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--hz-line);
  border-radius: 999px;
  color: var(--hz-muted);
  background: var(--hz-surface);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.hzGuideStep.is-active {
  color: var(--hz-accent-deep);
  border-color: color-mix(in srgb, var(--hz-accent) 44%, var(--hz-line));
  background: var(--hz-accent-soft);
}
.hzGuide__note {
  margin-left: auto;
  color: var(--hz-muted);
  font-size: 12px;
  line-height: 1.35;
}
.hzChromeCalc, .hzChromeMobile__calc, .hzChromeFooter__calc, .hdr__cta,
.btn:not(.hz *), .hz-btn, .hzH-btn, .hzDecBtn, .hzVisitCta, .contact-map__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--hz-accent);
  border-radius: 12px;
  color: #ffffff;
  background: var(--hz-accent);
  box-shadow: 0 10px 22px rgba(128,90,40,.16);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.hzChromeCalc:hover, .hzChromeMobile__calc:hover, .hzChromeFooter__calc:hover,
.btn:not(.hz *):hover, .hz-btn:hover, .hzH-btn:hover, .hzDecBtn:hover, .hzVisitCta:hover, .contact-map__btn:hover{
  background: var(--hz-accent-deep);
  transform: translateY(-1px);
}
.btn--ghost, .hz-btn--ghost, .hzH-btn--ghost, .hzDecBtn2, .contact-map__btn--ghost {
  color: var(--hz-ink);
  border-color: var(--hz-line);
  background: transparent;
  box-shadow: none;
}
.hzChromeBurger, .hdr__burger, .burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--hz-line);
  border-radius: 10px;
  background: var(--hz-surface);
}
.hzChromeBurger span, .hdr__burger span, .burger span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--hz-ink); }

/* Shared page layout. */
.hzMain, .hzEditorial, .hzLegal, .detail-page { color: var(--hz-ink); }
.hz-sec, .hzEditorialSection, .hzEditorialHero, .hzLegal { padding: 56px 0; }
.hz-sec + .hz-sec, .hzEditorialSection + .hzEditorialSection { padding-top: 16px; }
h1, h2, h3, .hzEditorialTitle, .hzEditorialBand__title, .hzLegalCard h1, .hzH1, .t-title {
  margin: 0;
  color: var(--hz-ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
}
h1, .hzEditorialTitle, .hzLegalCard h1 { font-size: clamp(42px, 5vw, 72px); }
h2, .hzEditorialBand__title { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: clamp(25px, 2.5vw, 34px); }
.hzLead, .lead, .sub, .hzEditorialLead, .hzEditorialBand__sub, .hzEditorialCard__text,
.hzEditorialPanel__text, .hzArticleMeta, .hzLegalMeta, .hzVisitSub, .hzDecM, .hzDecD,
.hz-facade-desc, .contact-note { color: var(--hz-muted); }

.hzDecPageTop, .hzEditorialHero, .hzLegalCard, .hzH-hero, .detail-hero {
  border: 1px solid var(--hz-line);
  background: linear-gradient(135deg, #fffdf8 0%, #f2e5ce 100%);
}
.hzDecPageTop { padding-block: 54px; }
.hzDecPageHd { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 34px; align-items: start; }
.hzDecPageLogo, .hzDecLogo, .hzEditorialCard__icon {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(128,90,40,.28);
  border-radius: 20px;
  color: var(--hz-accent-deep);
  background: rgba(255,253,248,.7);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hzDecPageTit h1 { max-width: 820px; }
.hzDecPageTit .hzLead { max-width: 660px; margin: 18px 0 0; font-size: 18px; }
.hzDecPageCta, .hzEditorialActions, .hzEditorialCard__actions, .hzH-ctaRow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

html[data-kitchen-variant="3"] .hzDecPageTop,
html[data-kitchen-variant="3"] .hzEditorialHero,
html[data-kitchen-variant="3"] .hzLegalCard,
html[data-kitchen-variant="3"] .detail-hero {
  background: linear-gradient(135deg, #111722 0%, #07090d 100%);
}
html[data-kitchen-variant="3"] .hzDecPageTop h1,
html[data-kitchen-variant="3"] .hzEditorialHero h1,
html[data-kitchen-variant="3"] .hzLegalCard h1,
html[data-kitchen-variant="3"] .detail-hero h1 {
  color: #fff8ec;
}
html[data-kitchen-variant="3"] .hzDecPageTop .hzLead,
html[data-kitchen-variant="3"] .hzEditorialHero .hzLead,
html[data-kitchen-variant="3"] .hzLegalCard .hzLead,
html[data-kitchen-variant="3"] .detail-hero .hzLead {
  color: #c8d0dc;
}
html[data-kitchen-variant="3"] .hzDecPageLogo,
html[data-kitchen-variant="3"] .hzDecLogo {
  color: var(--hz-accent-deep);
  border-color: rgba(210,173,114,.34);
  background: rgba(255,248,236,.06);
}
html[data-kitchen-variant="3"] .hzDecPageTop .hz-btn--ghost,
html[data-kitchen-variant="3"] .hzDecPageTop .btn--ghost {
  color: #fff8ec;
  border-color: rgba(255,248,236,.26);
  background: rgba(255,255,255,.05);
}

/* Catalog and material components. */
.hzDecTools { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hzDecSearch { flex: 1 1 300px; }
.hzDecInput, .hz-search-input, input[type='search'], input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--hz-line);
  border-radius: 10px;
  outline: 0;
  color: var(--hz-ink);
  background: var(--hz-surface);
}
.hzDecInput:focus, .hz-search-input:focus, input:focus, select:focus, textarea:focus { border-color: var(--hz-accent); box-shadow: 0 0 0 3px rgba(181,133,62,.15); }
.hzDecChips, .hz-facade-tags, .hzEditorialPills, .hzVisitPills, .hz-contact-chips { display: flex; flex-wrap: wrap; gap: 8px; }.hzDecChips button, .hzPillBtn, .pill, .hz-tag, .hz-badge, .tag:not(.hz *), .badge:not(.hz *){
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--hz-line);
  border-radius: 999px;
  color: var(--hz-accent-deep);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.hzDecChips button.is-active, .pill.is-active, .hz-badge--accent { color: var(--hz-accent-deep); border-color: var(--hz-accent); background: var(--hz-accent-soft); }
.hzDecCatalog, .hz-grid-cards, .hzEditorialGrid, .hzPricingGrid, .hzCasesGrid, .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hzDecCatalog > *, .hz-grid-cards > *, .hzEditorialCard, .hzEditorialArticleCard,
.hzPricingCard, .hzCase, .hz-facade-card, .hz-thick-card, .card, .hz-card, .hcard,
.contact-panel, .contact-map-card, .adv__item, .hzStep, .hzFaqItem {
  overflow: hidden;
  border: 1px solid var(--hz-line);
  border-radius: 18px;
  color: var(--hz-ink);
  background: var(--hz-surface);
  box-shadow: 0 12px 28px rgba(72,48,19,.06);
}
.hzDecCatalog > * { min-height: 100%; }.hzDecCatalog img, .hz-facade-card img, .hzEditorialArticleCard img, .hzCase img, .card:not(.hz *) img, .hz-card img{ width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hzDecCatalog > * > :not(img), .hz-facade-card > :not(img), .hzEditorialArticleCard > :not(img), .hzCase > :not(img) { margin-inline: 16px; }
.hzDecCatalog > * > :last-child, .hz-facade-card > :last-child, .hzEditorialArticleCard > :last-child, .hzCase > :last-child { margin-bottom: 18px; }
.hzDecTile {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--hz-line);
  border-radius: 16px;
  color: var(--hz-ink);
  background: var(--hz-surface);
  text-align: left;
}
.hzDecTile:hover { border-color: var(--hz-accent); background: #fff9ef; }
.hzDecSw2 { width: 58px; height: 58px; border: 1px solid var(--hz-line); border-radius: 12px; background: linear-gradient(135deg,#ede2cf,#b79057); }
.hzMatSw--stone { background: linear-gradient(135deg,#b8b0a4,#ece6da); }
.hzMatSw--metal { background: linear-gradient(135deg,#9b988f,#eee9df); }
.hzMatSw--soft { background: linear-gradient(135deg,#d6c3aa,#eee5d6); }
.hzMatSw--edge { background: linear-gradient(135deg,#3f3327,#c39a5e); }
.hzMatSw--wood { background: linear-gradient(135deg,#765337,#dbbd8b); }
.hzDecTile__code, .hzMatModalCode { color: var(--hz-muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.hzDecTile__name, .hzMatModalName { margin-top: 3px; font-size: 16px; font-weight: 800; line-height: 1.25; }
.hzDecTile__grp, .hzDecTile__use, .hzMatModalGrp { margin-top: 4px; color: var(--hz-muted); font-size: 12px; }
.hzDecTile__right { display: grid; justify-items: end; gap: 6px; }
.hzTierBadge, .hzSolPill, .hzRecoPill, .hzUsePill { display: inline-flex; align-items: center; min-height: 26px; padding: 0 8px; border-radius: 999px; color: var(--hz-accent-deep); background: var(--hz-accent-soft); font-size: 10px; font-weight: 800; white-space: nowrap; }
.hzCompareMark { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--hz-line); border-radius: 50%; color: var(--hz-accent-deep); font-size: 17px; }
.hzCompareMark.is-on { border-color: var(--hz-accent); background: var(--hz-accent); color: #ffffff; }
.hzDecEmpty { padding: 34px; border: 1px dashed var(--hz-line); border-radius: 14px; color: var(--hz-muted); text-align: center; }

/* Editorial and article pages. */
.hzEditorialHero, .hzLegalCard { border-radius: 26px; }
.hzEditorialHero__in, .hzEditorialShell { max-width: var(--hz-max); margin: auto; }
.hzEditorialKicker, .hzEditorialCard__eyebrow, .hzEditorialArticleCard__cat, .hzPricingBadge, .hzFaqEyebrow, .hzVisitLabel {
  color: var(--hz-accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hzEditorialLead { max-width: 720px; margin: 22px 0 0; font-size: 18px; }
.hzEditorialStats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hzEditorialStat { min-width: 130px; padding: 14px 16px; border-left: 2px solid var(--hz-accent); background: rgba(255,253,248,.62); }
.hzEditorialStat__n { color: var(--hz-ink); font-size: 28px; font-weight: 800; }
.hzEditorialStat__t { color: var(--hz-muted); font-size: 12px; }
.hzEditorialCard, .hzEditorialArticleCard, .hzEditorialPanel, .hzArticleContent, .hzArticleAside__box, .hzArticleQuote, .hzLegalCard { padding: 24px; }
.hzEditorialCard__title, .hzEditorialArticleCard__title, .hzEditorialPanel__title, .hzArticleContent h2 { margin-top: 12px; }
.hzEditorialCard__text, .hzEditorialArticleCard__text, .hzEditorialPanel__text { margin: 12px 0 0; }
.hzEditorialCard__list { display: grid; gap: 8px; padding: 0; margin: 16px 0 0; list-style: none; }
.hzEditorialCard__list li::before { margin-right: 8px; color: var(--hz-accent); content: '—'; }
.hzEditorialPanel--accent, .hzEditorialCtaStrip {
  border-color: var(--hz-dark);
  color: #fff8ed;
  background: var(--hz-dark);
}.hzEditorialPanel--accent :is(h2, h3, p), .hzEditorialCtaStrip :is(h2, h3, p){ color: inherit; }
.hzArticleContent { font-size: 17px; }
.hzArticleContent p + h2, .hzArticleContent p + h3 { margin-top: 32px; }
.hzArticleQuote { border-left: 3px solid var(--hz-accent); }
.hzEditorialRail { border-top: 1px solid var(--hz-line); border-bottom: 1px solid var(--hz-line); }

/* Kitchen catalog, prices and FAQ. */
.hzH {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 52px;
  background:
    radial-gradient(760px 420px at 6% 0%, rgba(var(--acc-rgb), .13), transparent 68%),
    var(--hz-bg);
}
body[data-hz-page="kitchens"] .spacer {
  display: none;
  height: 0;
}
.hzH-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hzH-bg::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, color-mix(in srgb, var(--hz-bg) 94%, transparent) 0%, color-mix(in srgb, var(--hz-bg) 78%, transparent) 50%, color-mix(in srgb, var(--hz-bg) 96%, transparent) 100%);
}
.hzH-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(.92);
}
.hzH-wrap {
  position: relative;
  z-index: 1;
  width: min(var(--hz-max), calc(100% - 48px));
  margin-inline: auto;
}
.hzH-tb {
  display: none;
}
.hzH-hero {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(72,48,19,.08);
}
html[data-kitchen-variant="3"] .hzH-hero {
  background: linear-gradient(145deg, #121923 0%, #0b1119 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
html[data-kitchen-variant="3"] .hzH-h1,
html[data-kitchen-variant="3"] .hzH-h1Sub,
html[data-kitchen-variant="3"] .hzH-point,
html[data-kitchen-variant="3"] .hzH-proof {
  color: var(--hz-ink);
}
html[data-kitchen-variant="3"] .hzH-kicker,
html[data-kitchen-variant="3"] .hzH-p,
html[data-kitchen-variant="3"] .hzH-rational {
  color: var(--hz-muted);
}
html[data-kitchen-variant="3"] .hzH-btn--ghost {
  color: var(--hz-ink);
  border-color: rgba(210,173,114,.34);
}
.hzH-in {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
}
.hzH-left, .hzHG {
  min-width: 0;
}
.hzH-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--hz-muted);
  font-size: 13px;
  font-weight: 800;
}
.hzH-kickerDot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--hz-accent);
  box-shadow: 0 0 0 8px var(--hz-accent-soft);
}
.hzH-kickerSep {
  color: var(--hz-line);
}
.hzH-h1 {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--hz-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
}
.hzH-h1Sub {
  color: color-mix(in srgb, var(--hz-ink) 78%, var(--hz-muted));
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.hzH-p, .hzH-rational {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--hz-muted);
  font-size: 17px;
}
.hzH-rational {
  font-weight: 750;
}
.hzH-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.hzH-point {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  font-weight: 800;
}
.hzH-ptI {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--hz-accent-deep);
  background: var(--hz-accent-soft);
}
.hzH-ctaRow {
  align-items: center;
}
.hzH-proof {
  margin-top: 18px;
  color: var(--hz-muted);
  font-weight: 800;
}
.hzH-proofLink {
  text-decoration: none;
}
.hzHG {
  display: grid;
  gap: 12px;
}
.hzHG-main {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--hz-line);
  border-radius: 26px;
  background: var(--hz-dark);
  box-shadow: 0 20px 54px rgba(28,22,15,.16);
}
.hzHG-main .hzPic,
.hzHG-main [data-hzhg-main] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hzHG-main [data-hzhg-main] {
  object-fit: cover;
}
.hzHG-progress {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.hzHG-bar {
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: var(--hz-accent);
}
.hzHG-nav,
.hzHG-play {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--hz-ink);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.hzHG-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.hzHG-prev { left: 18px; }
.hzHG-next { right: 18px; }
.hzHG-prev::before, .hzHG-next::before {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: '';
}
.hzHG-prev::before { transform: rotate(-135deg); }
.hzHG-next::before { transform: rotate(45deg); }
.hzHG-play {
  right: 18px;
  bottom: 138px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.hzHG-cap {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 58px 18px 16px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(7,12,20,.9) 42%, rgba(7,12,20,.96) 100%);
  border-radius: 0 0 20px 20px;
}
.hzHG-name {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}
.hzHG-meta, .hzHG-props {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.hzHG-pill, .hzHG-props > * {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 800;
}
.hzHG-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
}
.hzHG-thumbs > * {
  flex: 0 0 86px;
  width: 86px;
  height: 58px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--hz-surface);
}
.hzHG-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hzHG-thumbs .is-active,
.hzHG-thumbs [aria-selected="true"] {
  border-color: var(--hz-accent);
}
.hzPricing, .hzPay, .hzFaq, .hzRev, .hzSteps { padding: 56px 0; }
.hzPricingTitle, .hzFaqTitle, .hzRevTitle, .hzVisitTitle { margin-top: 8px; }
.hzPricingSub, .hzFaqSub, .hzRevSub { max-width: 680px; margin: 14px 0 0; color: var(--hz-muted); }
/* до ленивой загрузки reviews.css заготовка лайтбокса висела в потоке страницы */
.hzRevLightbox { display: none; }
/* иконка в кнопке «Все отзывы» без размеров растягивалась на 1152px, пока не подгрузится ленивый reviews.css */
.hzRevCtaBtn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.hzPricingCard, .hzCase { position: relative; padding: 24px; }
.hzPricingCard--accent { border-color: var(--hz-accent); background: #fff8ec; }
.hzPricingBadge { position: absolute; top: 16px; right: 18px; }
.hzPricingPrice, .hzCasePrice { margin: 20px 0; color: var(--hz-accent-deep); font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.hzPricingCard ul, .hzB2b__cols ul { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.hzPricingCard li::before, .hzB2b__cols li::before { margin-right: 8px; color: var(--hz-accent); content: '✓'; }
.hzStepsGrid, .hzPay__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.hzStep, .hzPay__grid > * { padding: 20px; }
.hzStepBadge { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--hz-accent-deep); background: var(--hz-accent-soft); font-weight: 800; }
.hzStepTitle { margin: 18px 0 8px; }
.hzStepDesc { margin: 0; color: var(--hz-muted); }
.hzFaqShell { max-width: 900px; margin: auto; }
.hzFaqItem { margin-top: 10px; }
.hzFaqQ { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px; border: 0; color: var(--hz-ink); background: transparent; font: 700 17px/1.3 Manrope, sans-serif; text-align: left; }
.hzFaqQ::after { color: var(--hz-accent-deep); content: '+'; font-size: 26px; font-weight: 400; }
.hzFaqItem[open] .hzFaqQ::after { content: '−'; }
.hzFaqA { padding: 0 20px 20px; color: var(--hz-muted); }

/* Contacts and map share the exact same card system on every service page. */
.hzVisitHead { max-width: 680px; margin-bottom: 24px; }
.hzVisitGrid, .contacts-grid, .contact-grid, .contact-grid--balanced { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: 18px; }
.hzVisitCard, .contact-panel, .contact-map-card, .contacts-card { border: 1px solid var(--hz-line); border-radius: 20px; background: var(--hz-surface); box-shadow: 0 12px 28px rgba(72,48,19,.06); }
.hzVisitCard { padding: 24px; }
.hzVisitCardTitle { margin-bottom: 20px; }
.hzVisitRows, .contacts-list, .contact-stack { display: grid; gap: 12px; }
.hzVisitRow, .contact-row { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 12px; }
.hzVisitRow .k, .contact-row__icon { color: var(--hz-muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hzVisitRow .v { color: var(--hz-ink); font-weight: 750; }
.hzVisitLabel { margin-top: 24px; }
.hzVisitPills { margin-top: 10px; }
.hzVisitCtaWrap { margin-top: 24px; }
.hzVisitNote { margin-top: 14px; font-size: 12px; }
.hzVisitMapFrame, .contact-map, .contacts-map { overflow: hidden; min-height: 360px; padding: 0; border: 1px solid var(--hz-line); border-radius: 16px; background: #ebe4d8; }
.hzMap, .hzMap iframe, .contacts-map iframe, .contact-map iframe { width: 100%; height: 100%; min-height: 358px; border: 0; }
.hzVisitMapBtns, .contact-map__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* Modal cards: restrained, detailed and consistent. */
.hzDecM, .hzM, .lb { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 24px; background: rgba(28,22,15,.64); }
.hzDecM.o, .hzDecM.is-open, .hzM.o, .hzM.is-open, .lb.o, .lb.is-open { display: grid; }
.hzDecD, .hzD, .lb-card { position: relative; width: min(920px, 100%); max-height: min(760px, calc(100dvh - 48px)); overflow: auto; border: 1px solid var(--hz-line); border-radius: 20px; color: var(--hz-ink); background: var(--hz-surface); box-shadow: 0 24px 70px rgba(25,15,6,.35); }
.hzDecC, .hzX, .lb-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--hz-line); border-radius: 50%; color: var(--hz-ink); background: var(--hz-surface); font-size: 26px; }
.hzDecHd { display: flex; gap: 14px; padding: 28px 28px 22px; border-bottom: 1px solid var(--hz-line); }
.hzDecLogo { width: 54px; height: 54px; border-radius: 12px; font-size: 13px; }
.hzDecK { color: var(--hz-accent-deep); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hzDecH { margin-top: 4px; color: var(--hz-ink); font: 600 34px/1 'Cormorant Garamond', Georgia, serif; }
.hzDecBody { padding: 26px 28px; }
.hzDecFt { display: flex; gap: 10px; padding: 18px 28px; border-top: 1px solid var(--hz-line); }

/* Footer is shared instead of inheriting old page-specific variants. */
.hzChromeFooter, .footer, footer {
  margin-top: 56px;
  color: #d8cdbd;
  background: var(--hz-dark);
}
.hzChromeFooter__in, .footer__grid, .footer__bottom {
  width: min(var(--hz-max), calc(100% - 48px));
  margin-inline: auto;
}
.hzChromeFooter__in, .footer { padding: 48px 0 24px; }
.hzChromeFooter__top, .footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.hzChromeFooter h2, .footer__col-title { margin-bottom: 12px; color: #fff8ec; font: 800 12px/1.2 Manrope, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.hzChromeFooter a, .footer a { color: #ded2c1; }
.hzChromeFooter__col a, .footer__link { display: block; margin: 8px 0; text-decoration: none; }
.hzChromeFooter__bottom, .footer__bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 20px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.13); color: #9f9180; font-size: 12px; }
.hzOther { padding: 30px 0; color: #fff8ec; background: #251d14; }
.hzOther__wrap { display: grid; grid-template-columns: .8fr 2fr; gap: 28px; align-items: center; width: min(var(--hz-max), calc(100% - 48px)); margin: auto; }
.hzOther h2 { color: #fff8ec; }
.hzOther__lead, .hzOther__desc { color: #c9bba7; }
.hzOther__grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; }
.hzOther__card { position: relative; display: block; min-height: 98px; padding: 16px 38px 16px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: #fff8ec; background: rgba(255,255,255,.045); text-decoration: none; }
.hzOther__name { display: block; font-weight: 800; letter-spacing: .05em; }
.hzOther__desc { display: block; margin-top: 6px; font-size: 12px; line-height: 1.3; }
.hzOther__arrow { position: absolute; top: 14px; right: 14px; color: #d5aa66; }

.dock, .hzSticky, #hzSticky, #dock, .hzExit, .hzExitMini, .hzSP { display: none; }

@media (max-width: 980px) {
  .hzChromeNav, .hz-hdr__nav, .nav-links { display: none; }
  .hzChromeBurger, .hdr__burger, .burger { display: block; margin-left: auto; }
  .hz-hdr.is-open .hz-hdr__nav, .hdr.is-open .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: grid; gap: 2px; padding: 14px 24px 18px; border-bottom: 1px solid var(--hz-line); background: var(--hz-surface); }
  .hz-hdr.is-open .hz-hdr__link, .hdr.is-open .nav-links a { padding: 10px 0; }
  .hzDecCatalog, .hz-grid-cards, .hzEditorialGrid, .hzPricingGrid, .hzCasesGrid, .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hzStepsGrid, .hzPay__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hzChromeFooter__top, .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hzOther__wrap { grid-template-columns: 1fr; }
  .hzH-in { grid-template-columns: 1fr; }
  .hzHG-main { min-height: 420px; }
}

@media (max-width: 680px) {
  .wrap, .container, .hz-container, .hzEditorialShell, .hzLegal,
  .hzChromeHeader__in, .hzChromePromo__in, .promo__in, .hzChromeFooter__in,
  .footer__grid, .footer__bottom, .hzOther__wrap { width: min(100% - 32px, var(--hz-max)); }
  .hzChromeHeader__in, .hz-hdr__in, .hdr__in { min-height: 68px; gap: 9px; }
  .brand__txt { display: none; }
  .hzChromeBrand img, .brand__logoImg { width: 44px; height: 44px; }
  .hdr__right { margin-left: auto; }
  .hzChromePhone, .hdr__phone, .hdrPhoneDesktop, .hdrPhoneMobile { min-height: 40px; padding: 0 11px; color: #ffffff; border-color: var(--hz-accent); background: var(--hz-accent); font-size: 12px; }
  .hzGuide { padding: 8px 0; }
  .hzGuide__in { align-items: flex-start; flex-direction: column; width: min(100% - 32px, var(--hz-max)); gap: 8px; }
  .hzGuide__ttl { font-size: 12px; }
  .hzGuide__steps { gap: 5px; }
  .hzGuideStep { min-height: 28px; padding: 5px 9px; font-size: 11px; }
  .hzGuide__note { margin-left: 0; font-size: 12px; }
  .hz-sec, .hzEditorialSection, .hzEditorialHero, .hzLegal { padding: 42px 0; }
  .hz-sec + .hz-sec, .hzEditorialSection + .hzEditorialSection { padding-top: 6px; }
  h1, .hzEditorialTitle, .hzLegalCard h1 {
    font-size: clamp(30px, 8.2vw, 36px);
    letter-spacing: 0;
    line-height: 1.04;
  }
  h2, .hzEditorialBand__title {
    font-size: clamp(26px, 7.4vw, 32px);
    letter-spacing: 0;
    line-height: 1.08;
  }
  h3 {
    font-size: clamp(21px, 5.8vw, 25px);
    letter-spacing: 0;
    line-height: 1.12;
  }
  .hzLead, .hzEditorialLead { font-size: 16px; line-height: 1.55; }
  .hzDecPageTop { padding-block: 28px; }
  .hzDecPageHd { grid-template-columns: 1fr; gap: 16px; }
  .hzDecPageTit h1 { max-width: 100%; }
  .hzDecPageTit .hzLead { margin-top: 14px; font-size: 16px; }
  .hzDecPageCta, .hzEditorialActions, .hzEditorialCard__actions, .hzH-ctaRow {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .hzDecPageCta > *, .hzEditorialActions > *, .hzEditorialCard__actions > *, .hzH-ctaRow > * {
    width: 100%;
    justify-content: center;
  }
  .hzDecPageLogo { width: 78px; height: 78px; border-radius: 14px; font-size: 16px; }
  .hzDecCatalog, .hz-grid-cards, .hzEditorialGrid, .hzPricingGrid, .hzCasesGrid, .grid,
  .hzStepsGrid, .hzPay__grid, .hzVisitGrid, .contacts-grid, .contact-grid, .contact-grid--balanced,
  .hzChromeFooter__top, .footer__grid, .hzOther__grid { grid-template-columns: 1fr; }
  .hzDecTools { align-items: stretch; flex-direction: column; }
  .hzVisitCard { padding: 20px; }
  .hzVisitRow, .contact-row { grid-template-columns: 1fr; gap: 3px; }
  .hzVisitMapFrame, .contact-map, .contacts-map, .hzMap, .hzMap iframe, .contacts-map iframe, .contact-map iframe { min-height: 286px; }
  .hzDecM, .hzM, .lb { padding: 0; }
  .hzDecD, .hzD, .lb-card { width: 100%; min-height: 100dvh; max-height: 100dvh; border: 0; border-radius: 0; }
  .hzDecHd { padding: 24px 20px 18px; }
  .hzDecBody { padding: 22px 20px; }
  .hzDecFt { padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); }
  .hzDecFt > * { flex: 1; padding-inline: 12px; }
  .hzChromeFooter__bottom, .footer__bottom { display: grid; }
  .hzOther__card { min-height: 82px; }
  .hzH {
    padding: 22px 0 34px;
  }
  .hzH-bgImg {
    display: none;
  }
  .hzH-wrap {
    width: min(100% - 32px, var(--hz-max));
  }
  .hzH-hero {
    padding: 22px;
    border-radius: 24px;
  }
  .hzH-kicker {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .hzH-h1 {
    font-size: clamp(32px, 9.4vw, 42px);
    letter-spacing: -.045em;
    line-height: 1.02;
  }
  .hzH-h1Sub {
    font-size: clamp(19px, 5vw, 24px);
    letter-spacing: -.025em;
    line-height: 1.18;
  }
  .hzH-p, .hzH-rational {
    display: none;
  }
  .hzH-points {
    gap: 10px;
    margin-top: 18px;
  }
  .hzH-point {
    grid-template-columns: 30px minmax(0,1fr);
    font-size: 15px;
  }
  .hzH-ptI {
    width: 30px;
    height: 30px;
  }
  .hzH-ctaRow > * {
    width: 100%;
  }
  .hzH-proof {
    margin-top: 14px;
    font-size: 13px;
  }
  .hzHG-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .hzHG-cap {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 54px 14px 13px;
    border-radius: 0;
  }
  .hzHG-name {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .hzHG-props {
    display: none;
  }
  .hzHG-nav {
    width: 42px;
    height: 42px;
  }
  .hzHG-play {
    right: 12px;
    bottom: auto;
    top: 18px;
    width: 38px;
    height: 38px;
  }
  .hzHG-thumbs > * {
    flex-basis: 74px;
    width: 74px;
    height: 50px;
  }
}

/* 404 uses the same quiet material palette as the service pages. */
.card:not(.hz *){
  width: min(560px, calc(100% - 32px));
  margin: clamp(72px, 16vh, 160px) auto;
  padding: clamp(32px, 7vw, 56px);
  border: 1px solid var(--hz-line);
  border-radius: 28px;
  background: var(--hz-surface);
  box-shadow: 0 22px 58px rgba(69, 46, 18, .12);
  text-align: center;
}.card:not(.hz *) h1{ color: var(--hz-accent); font-size: clamp(64px, 15vw, 112px); line-height: .9; }.card:not(.hz *) h2{ margin-top: 18px; }.card:not(.hz *) p, .card:not(.hz *) .sub{ color: var(--hz-muted); }.card:not(.hz *) a{ display: inline-flex; margin-top: 22px; }
