:root {
  --bg: #f6f1e8;
  --bg-2: #fffdf8;
  --paper: #ffffff;
  --ink: #161412;
  --ink-soft: #3e382f;
  --muted: #6b6458;
  --line: #e4dccf;
  --yellow: #f5c400;
  --yellow-2: #ffd84a;
  --orange: #e85d04;
  --orange-2: #f48c06;
  --dark: #141210;
  --dark-2: #1f1b18;
  --shadow: 0 18px 50px rgba(22, 20, 18, .12);
  --radius: 22px;
  --header: 76px;
  --font-d: "Bricolage Grotesque", system-ui, sans-serif;
  --font: Manrope, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
.i {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: block;
}
.kicker .i { width: 16px; height: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-d); letter-spacing: -.03em; line-height: 1.12; margin: 0; }
p { margin: 0; }

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 72% 44% at 6% -12%, rgba(245, 196, 0, .2), transparent 58%),
    radial-gradient(ellipse 48% 34% at 100% 0%, rgba(232, 93, 4, .09), transparent 52%),
    radial-gradient(ellipse 42% 28% at 78% 100%, rgba(22, 20, 18, .035), transparent 58%),
    radial-gradient(rgba(22, 20, 18, .04) 1px, transparent 1px);
  background-size: auto, auto, auto, 26px 26px;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: auto;
  padding: 10px 12px 6px;
  display: block;
  background: transparent;
  border: 0;
  overflow: visible;
}
.header__in {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 253, 248, .78);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  padding: 7px 8px 7px 14px;
  box-shadow: 0 10px 40px rgba(22, 20, 18, .07);
  overflow: visible;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  padding-right: 6px;
}
.logo__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.logo__mark svg { width: 38px; height: 38px; display: block; }
.logo__name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}
.logo__name span { color: var(--orange); }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: 4px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__link .i { width: 16px; height: 16px; opacity: .7; }
.nav__link:hover,
.nav__link.is-active { color: var(--ink); background: rgba(22, 20, 18, .05); }
.nav__drop { position: relative; }
.nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 420px;
  padding: 8px 0 0;
  display: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 70;
}
.nav__drop:hover .nav__panel,
.nav__drop:focus-within .nav__panel { display: block; }
.nav__panel-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 253, 248, .98);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(22, 20, 18, .12);
  padding: 10px;
}
.nav__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}
.nav__panel a:hover,
.nav__panel a.is-active { background: #fff3c4; }
.header__grow { display: none; flex: 1 1 auto; min-width: 8px; }
.header__aside {
  display: none;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.i-brand {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 7px;
  object-fit: cover;
  flex: 0 0 auto;
}
.header__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}
.header__ico:hover { background: rgba(22, 20, 18, .06); }
.header__ico .i-brand { width: 28px; height: 28px; }
.header__phone {
  display: none;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.03em;
  white-space: nowrap;
  padding: 0 8px;
}
.header__aside .btn { min-height: 42px; padding: 0 16px; font-size: .9rem; }
.nav__mobile-contacts { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  appearance: none;
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--ghost { background: transparent; border: 1px solid var(--line); }
.btn--yellow:hover { background: var(--yellow-2); }
.btn--dark:hover { background: #000; }
.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
}
.burger .i { width: 22px; height: 22px; }

.nav-overlay { display: none; }

@media (min-width: 1080px) {
  .header__grow { display: block; }
  .header__aside { display: flex; }
  .header__phone { display: none; }
  .nav,
  .nav__list {
    align-self: stretch;
    align-items: stretch;
  }
  .nav__drop {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1240px) {
  .header__phone { display: inline-flex; }
}

@media (max-width: 1079px) {
  .nav--bar { display: none !important; }
  .burger { display: inline-flex; }
  .header__aside { display: none; }
  .header__grow { display: none; }
}

.nav-overlay {
  display: none;
}
.nav-drawer { display: none; }

@media (max-width: 1079px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(20, 18, 16, .48);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-overlay.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 230;
    width: min(calc(100% - 18px), 400px);
    max-width: 100%;
    background: #fffdf8;
    color: var(--ink);
    padding: 14px 16px calc(22px + env(safe-area-inset-bottom, 0px));
    border-radius: 28px 0 0 28px;
    box-shadow: -24px 0 60px rgba(22, 20, 18, .2);
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), visibility .4s;
  }
  .nav-drawer.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-drawer__body {
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
  }
  .nav-drawer .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
  }
  .nav-drawer .nav__link {
    width: 100%;
    justify-content: space-between;
    color: var(--ink);
    font-family: var(--font-d);
    font-size: 1.35rem;
    font-weight: 800;
    padding: 14px 12px;
    border-radius: 16px;
  }
  .nav-drawer .nav__link.is-active,
  .nav-drawer .nav__link:hover {
    background: #fff3c4;
    color: var(--ink);
  }
  .nav-drawer .nav__link .i {
    width: 18px;
    height: 18px;
    opacity: .55;
    transition: transform .2s ease;
  }
  .nav-drawer .nav__drop.is-open .nav__link .i {
    transform: rotate(180deg);
  }
  .nav-drawer .nav__panel {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav-drawer .nav__drop.is-open .nav__panel { display: block; }
  .nav-drawer .nav__panel-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: rgba(22, 20, 18, .04);
    border: 0;
    box-shadow: none;
    padding: 6px;
    border-radius: 16px;
  }
  .nav-drawer .nav__panel a {
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 12px 14px;
  }
  .nav-drawer .nav__panel a.is-active,
  .nav-drawer .nav__panel a:hover {
    background: #fff;
    color: var(--ink);
  }
  .nav-drawer__foot {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    padding-bottom: 8px;
  }
  .nav-drawer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.03em;
  }
  .nav-drawer__msg {
    display: flex;
    gap: 8px;
  }
  .nav-drawer__msg a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
  }
  .nav-drawer__msg a .i-brand { width: 22px; height: 22px; }
}

body.is-nav-open { overflow: hidden; }

/* Hero — full-bleed, same 16:9 as the photos */
.hero,
.page-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}
.hero {
  height: 56.25vw;
  min-height: 520px;
  max-height: 780px;
}
.page-hero {
  height: 56.25vw;
  min-height: 440px;
  max-height: 620px;
  border-bottom: 1px solid var(--line);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  max-width: none;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(246, 241, 232, .97) 32%,
    rgba(246, 241, 232, .78) 44%,
    rgba(246, 241, 232, .28) 56%,
    transparent 68%
  );
}
.hero__copy,
.page-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 34rem;
  max-width: calc(100% - 32px);
  margin: 0 auto 0 max(16px, calc((100vw - 1180px) / 2));
  padding: 56px 48px 56px 8px;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(246, 241, 232, .9) 70%, transparent 100%);
}
.page-hero__copy { padding-top: 48px; padding-bottom: 48px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  max-width: 16ch;
}
.hero__lead {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.msg {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.msg--hero { margin-top: 14px; }
.msg--stack { flex-direction: column; }
.msg__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}
.msg__item .i { width: 18px; height: 18px; }
.msg__item .i-brand { width: 22px; height: 22px; }
.msg__item:hover { border-color: var(--ink); }
.msg__item--tg:hover { background: #e9f4ff; border-color: #2aabee; }
.msg__item--vb:hover { background: #f3e9ff; border-color: #7360f2; }
.msg--dark { margin-top: 16px; }
.msg--dark .msg__item {
  background: #2a2620;
  border-color: #3a342c;
  color: #efe8dc;
}
.msg--dark .msg__item:hover { background: #3a3228; color: var(--yellow); }
.msg--stack .msg__item { justify-content: flex-start; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}
.contact-card .icon-pill { margin: 0; }
.contact-card__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card strong { font-family: var(--font-d); font-size: 1.05rem; }
.contact-card__txt span { color: var(--muted); font-size: .92rem; }
.contact-card:hover { border-color: var(--ink); }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__meta div {
  flex: 1 1 140px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
}
.hero__meta strong { display: block; font-family: var(--font-d); font-size: 1.05rem; }
.hero__meta span { color: var(--muted); font-size: .85rem; }

.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 3.1rem); max-width: 18ch; }
.page-hero__lead { margin-top: 14px; color: var(--ink); max-width: 46ch; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

.section { position: relative; z-index: 1; padding: 72px 0; }
.section--tight { padding: 36px 0 72px; }
.section__head { max-width: 40rem; margin-bottom: 28px; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.lead { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; }

.grid-3 { display: flex; flex-wrap: wrap; gap: 16px; }
.grid-3 > * { flex: 1 1 calc(33.333% - 12px); max-width: calc(33.333% - 12px); }
.grid-2 { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.grid-2 > * { flex: 1 1 320px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(22,20,18,.04);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card--lift:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); }
.icon-pill {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: #fff3c4; color: var(--ink);
  margin-bottom: 12px;
}
.icon-pill .i { width: 22px; height: 22px; }
.icon-pill--brand {
  background: #fff;
  border: 1px solid var(--line);
}
.icon-pill--brand .i-brand { width: 28px; height: 28px; }

.prose { font-size: 1.05rem; color: var(--ink-soft); }
.prose p + p { margin-top: 12px; }
.prose ul { margin: 14px 0 0; padding: 0; list-style: none; }
.prose li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--orange);
}

.steps { display: flex; flex-wrap: wrap; gap: 14px; counter-reset: step; }
.step {
  flex: 1 1 200px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-d);
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .92rem;
}

.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--ink-soft); padding-bottom: 14px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.price-table th { background: var(--dark); color: #fff; font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.note { margin-top: 12px; color: var(--muted); font-size: .92rem; }

.cta-band {
  background: var(--dark);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(245, 196, 0, .18), transparent 50%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(232, 93, 4, .16), transparent 50%);
  pointer-events: none;
}
.cta-band h2 { position: relative; }
.cta-band p { position: relative; color: #d8cfc4; margin-top: 8px; }
.cta-band .btn { position: relative; }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.form h2 { margin-bottom: 8px; }
.form p { color: var(--ink-soft); margin-bottom: 16px; }
.form label { display: grid; gap: 6px; font-weight: 700; font-size: .9rem; margin-bottom: 12px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--bg-2);
}
.form textarea { min-height: 110px; resize: vertical; }
.hp { position: absolute; left: -9999px; }

.footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: #efe8dc;
  margin-top: 20px;
  padding: 48px 0 24px;
}
.footer::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  position: absolute;
  left: 0; right: 0; top: 0;
}
.footer a { text-decoration: none; }
.footer__lead-text { margin-top: 12px; color: #cbbfaf; max-width: 36ch; }
.footer__phone {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-d);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.footer__msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__msg .i-brand { width: 20px; height: 20px; }
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer__grid > * { flex: 1 1 200px; }
.footer a:hover { color: var(--yellow); }
.footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 8px 0; }
.soc { display: flex; gap: 10px; margin-top: 16px; }
.soc a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: #2a2620; color: var(--yellow);
}
.soc .i { width: 18px; height: 22px; }
.footer__copy {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #2c2723;
  color: #9c9488;
  font-size: .88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mbar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 8px;
  grid-template-columns: 1fr 44px 44px 1fr;
  gap: 6px;
  box-shadow: var(--shadow);
}
.mbar a,
.mbar button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  font-family: inherit;
}
.mbar a { background: #2a2620; }
.mbar .mbar__ico {
  width: 44px;
  padding: 0;
  background: #fff;
}
.mbar .mbar__ico .i-brand { width: 28px; height: 28px; }
.mbar button { background: var(--yellow); color: var(--ink); border: 0; cursor: pointer; }

.ok { display: none; padding: 12px; border-radius: 12px; background: #fff3c4; font-weight: 700; margin-top: 10px; }
.ok.is-on { display: block; }

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--ink-soft);
}
.ticker__track span { white-space: nowrap; }
.ticker__track span::before {
  content: "●";
  color: var(--orange);
  margin-right: 36px;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.trust { padding-top: 36px; }
.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust__row article {
  flex: 1 1 180px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.trust__row strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.8rem;
  letter-spacing: -.04em;
}
.trust__row span { color: var(--muted); font-size: .9rem; }

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.price-card {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
.price-card__from {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 800;
}
.price-card__unit { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.price-card h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.price-card p { color: var(--ink-soft); }
.price-card a { display: inline-block; margin-top: 12px; font-weight: 800; color: var(--orange); text-decoration: none; }

.card--lift { transition: transform .2s ease, box-shadow .2s ease; }
.card--dark { background: var(--dark); color: #efe8dc; border-color: #2a2620; }
.card--dark h3 { color: #fff; }
.card--dark .pill { background: #2a2620; border-color: #3a3420; color: #fff; }
.pill { text-decoration: none; }

.reviews { padding-top: 0; }
.reviews__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.review {
  flex: 0 0 min(340px, 84vw);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
.review__stars { display: flex; gap: 4px; color: var(--yellow); margin-bottom: 10px; }
.i--star { fill: var(--yellow); stroke: var(--yellow); width: 16px; height: 16px; }
.review__who { margin-top: 14px; color: var(--muted); font-size: .92rem; }

.consult {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.consult__copy { flex: 1 1 320px; padding: 32px; }
.consult > img {
  flex: 1 1 280px;
  width: 42%;
  max-width: 420px;
  object-fit: cover;
  min-height: 260px;
}
.consult .msg { margin-top: 16px; }
.consult .msg .i-brand {
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-height: 0;
  flex: none;
}

.card--dark p { color: #d8cfc4; }
.card--dark a { color: #ffd84a; font-weight: 800; }

.about-split {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.about-box {
  flex: 1 1 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px;
}
.about-box h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.about-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-box li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.about-box li:last-child { border-bottom: 0; }
.about-box li::before {
  content: "";
  position: absolute;
  left: 0; top: 1em;
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--orange);
}
.about-box a { font-weight: 800; text-decoration: none; }
.about-box a:hover { color: var(--orange); }
.about-box--dark {
  background: var(--dark);
  color: #efe8dc;
  border-color: #2a2620;
}
.about-box--dark .kicker { color: var(--yellow); }
.about-box--dark h3 { color: #fff; }
.about-box--dark li {
  color: #efe8dc;
  border-bottom-color: #2a2620;
}
.about-box--dark li::before {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--orange);
}

.seo-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
}
.seo-split__copy { flex: 1 1 340px; min-width: 0; }
.seo-split__copy h3 {
  color: var(--ink);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  margin: 12px 0 16px;
}
.seo-split__copy h2 { color: var(--ink); }
.seo-split__photo {
  flex: 0 1 380px;
  margin: 0;
  max-width: 380px;
  min-width: 0;
}
.seo-split__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.seo-split__photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .9rem;
}

.work-shot {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.work-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}
.lead-modal[hidden] { display: none !important; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, .62);
  backdrop-filter: blur(8px);
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 820px);
  display: flex;
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.lead-modal__visual {
  position: relative;
  flex: 0 0 42%;
  min-width: 0;
}
.lead-modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.lead-modal__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.lead-modal__form {
  flex: 1;
  padding: 28px;
  overflow: auto;
}
.lead-modal__form h2 { margin: 6px 0 8px; font-size: 1.55rem; }
.lead-modal__form > p { color: var(--ink-soft); margin-bottom: 16px; }
.lead-modal__form label,
.form label { display: grid; gap: 6px; font-weight: 700; font-size: .9rem; margin-bottom: 12px; }
.lead-modal__form input,
.lead-modal__form textarea,
.lead-modal__form select,
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--bg-2);
}
.lead-modal__form textarea { min-height: 88px; resize: vertical; }
.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.footer__lead {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer__lead:hover { color: var(--yellow); }

@media (max-width: 800px) {
  .seo-split { flex-direction: column; gap: 22px; align-items: stretch; }
  .seo-split__photo {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }
  .lead-modal { padding: 0; place-items: end; }
  .lead-modal__dialog {
    flex-direction: column;
    max-height: 94vh;
    border-radius: 24px 28px 0 0;
  }
  .lead-modal__visual { flex: none; height: 160px; }
  .consult { flex-direction: column-reverse; }
  .consult > img { width: 100%; max-width: none; height: 200px; }
}

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

.ok { display: none; padding: 12px; border-radius: 12px; background: #fff3c4; font-weight: 700; margin-top: 10px; }
.ok.is-on { display: block; }

@media (max-width: 900px) {
  .hero, .page-hero {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .hero__media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: none;
  }
  .hero__media img {
    object-position: 55% 50%;
  }
  .hero::before,
  .page-hero::before {
    display: none;
  }
  .hero__media::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 32%;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
  }
  .hero__copy, .page-hero__copy {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 20px 16px 36px;
    background: var(--bg);
  }
  .hero h1 { max-width: none; }
  .grid-3 > * { flex: 1 1 calc(50% - 10px); max-width: none; }
  .mbar { display: grid; }
  body { padding-bottom: 84px; }
}

@media (max-width: 640px) {
  .hero__meta, .grid-3, .steps { grid-template-columns: 1fr; }
  .grid-3 > * { flex: 1 1 100%; }
  .section { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
