:root {
  --sp-bg: #101310;
  --sp-bg-2: #171c18;
  --sp-bg-3: #202620;
  --sp-cream: #f4efe6;
  --sp-paper: #fbf8f2;
  --sp-gold: #c6a15b;
  --sp-gold-2: #e3c57a;
  --sp-gold-dim: rgba(198, 161, 91, 0.18);
  --sp-ink: #1b1a17;
  --sp-muted: #6d675f;
  --sp-line: rgba(198, 161, 91, 0.28);
  --sp-danger: #b42318;
  --sp-ok: #2f6b4f;
  --sp-serif: "Cormorant Garamond", "Times New Roman", serif;
  --sp-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sp-radius: 18px;
  --sp-header: 76px;
  --sp-geo-bar: 36px;
  --sp-sticky: 68px;
  --sp-shadow: 0 18px 50px rgba(16, 19, 16, 0.18);
  --sp-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body.sp {
  margin: 0;
  font-family: var(--sp-sans);
  color: var(--sp-ink);
  background: var(--sp-cream);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sp-skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.sp-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.sp-wrap {
  width: min(100% - 32px, var(--sp-max));
  margin-inline: auto;
}

.sp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-gold);
}
.sp-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.sp-h1,
.sp-h2,
.sp-h3 {
  font-family: var(--sp-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.sp-h1 { font-size: clamp(36px, 6vw, 72px); }
.sp-h2 { font-size: clamp(30px, 4.4vw, 48px); }
.sp-h3 { font-size: clamp(20px, 2.2vw, 26px); }

.sp-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--sp-muted);
  max-width: 62ch;
}

.sp-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.42) 48%, transparent 72%);
  transform: translateX(-140%);
  transition: transform .7s ease;
  pointer-events: none;
  z-index: 1;
}
.sp-btn > * { position: relative; z-index: 2; }
.sp-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sp-btn:hover {
  transform: translateY(-2px);
}
.sp-btn:hover::before { transform: translateX(140%); }
.sp-btn:active { transform: translateY(0) scale(.985); }
.sp-btn:focus-visible {
  outline: 2px solid var(--sp-gold-2);
  outline-offset: 3px;
}
.sp-btn--gold {
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), transparent 40%),
    linear-gradient(180deg, #f3d89a 0%, #c6a15b 52%, #a07d38 100%);
  color: #1a160c;
  border-color: rgba(255, 236, 190, .45);
  box-shadow:
    0 10px 28px rgba(198, 161, 91, 0.34),
    inset 0 1px 0 rgba(255,255,255,.5);
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}
.sp-btn--gold:hover {
  box-shadow:
    0 16px 36px rgba(198, 161, 91, 0.42),
    0 0 0 1px rgba(227, 197, 122, .35),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.sp-btn--ghost {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(227, 197, 122, .45);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.sp-btn--ghost:hover {
  background: rgba(198, 161, 91, .14);
  color: var(--sp-gold-2);
  border-color: var(--sp-gold-2);
  box-shadow: 0 12px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(227,197,122,.25);
}
.sp-btn--dark {
  background:
    linear-gradient(180deg, #2c332c, #121512);
  color: #f6f1e8;
  border-color: rgba(198, 161, 91, .38);
  box-shadow: 0 10px 24px rgba(16, 19, 16, .28), inset 0 1px 0 rgba(255,255,255,.08);
}
.sp-btn--dark:hover {
  border-color: var(--sp-gold);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 19, 16, .35), 0 0 0 1px rgba(198,161,91,.35);
}
.sp-btn--full { width: 100%; }
.sp-btn:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.sp-header__cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--sp-header);
  display: flex;
  align-items: center;
  background: rgba(16, 19, 16, 0.88);
  border-bottom: 1px solid rgba(198, 161, 91, 0.14);
}
.sp-header__in {
  width: min(100% - 24px, var(--sp-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4efe6;
  flex-shrink: 0;
}
.sp-logo img {
  width: auto;
  height: 52px;
  max-width: 240px;
  border-radius: 0;
  object-fit: contain;
  border: none;
}

.sp-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.sp-nav a {
  color: rgba(244, 239, 230, 0.82);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.sp-header__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1.15;
}
.sp-header__phone-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sp-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sp-header__phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sp-header__phone b { font-size: 16px; }
.sp-header__phone-text span { font-size: 11px; color: var(--sp-gold); }

.sp-geo-bar {
  background: #0c0e0c;
  border-bottom: 1px solid rgba(198, 161, 91, 0.14);
}
.sp-geo {
  width: min(100% - 24px, var(--sp-max));
  margin: 0 auto;
  min-height: var(--sp-geo-bar);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 13px;
  font-weight: 600;
}
.sp-geo span {
  color: rgba(244, 239, 230, 0.48);
  font-weight: 500;
}
.sp-geo a {
  color: rgba(244, 239, 230, 0.78);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.sp-geo a:hover {
  color: var(--sp-gold-2);
}
.sp-geo a[aria-current="page"] {
  color: var(--sp-gold-2);
  border-color: rgba(198, 161, 91, 0.38);
  background: rgba(198, 161, 91, 0.1);
}
.sp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 239, 230, 0.62);
}
.sp-crumbs a { color: rgba(227, 197, 122, 0.92); }
.sp-crumbs a:hover { color: #fff; }
.sp-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sp-cities a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--sp-gold);
  color: #1b1a17;
  font-weight: 700;
  font-size: 14px;
  background: #f4efe6;
}
.sp-cities a:hover,
.sp-cities a[aria-current="page"] {
  background: var(--sp-gold);
  border-color: var(--sp-gold);
  color: #1b1a17;
}
.sp-contact-card .sp-cities a,
.sp-seo .sp-cities a {
  color: #1b1a17;
  text-decoration: none;
}

.sp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sp-line);
  background: transparent;
  border-radius: 10px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
}
.sp-burger span,
.sp-burger::before,
.sp-burger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #f4efe6;
}
.sp-burger span { top: 21px; }
.sp-burger::before { top: 14px; }
.sp-burger::after { top: 28px; }

.sp-hero {
  position: relative;
  min-height: calc(100svh - var(--sp-header));
  display: grid;
  align-items: end;
  color: #f7f3ea;
  overflow: hidden;
  isolation: isolate;
}
.sp-hero__media,
.sp-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.sp-hero__media { display: block; }
.sp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,19,16,.35) 0%, rgba(16,19,16,.55) 40%, rgba(16,19,16,.92) 100%),
    linear-gradient(90deg, rgba(16,19,16,.55), transparent 55%);
}
.sp-hero__in {
  width: min(100% - 32px, var(--sp-max));
  margin: 0 auto;
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: end;
}
.sp-hero .sp-lead { color: rgba(244,239,230,.82); }
.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}
.sp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-chip {
  border: 1px solid var(--sp-line);
  background: rgba(16,19,16,.35);
  color: #f4efe6;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}
.sp-hero__card {
  background:
    linear-gradient(180deg, rgba(255,252,247,.98), rgba(246,241,232,.95));
  color: var(--sp-ink);
  border-radius: 24px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(198, 161, 91, .38);
  box-shadow:
    0 28px 60px rgba(8, 10, 8, .38),
    inset 0 1px 0 rgba(255,255,255,.75);
  position: relative;
}
.sp-hero__card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sp-gold), transparent);
  border-radius: 2px;
}
.sp-hero__card h2 {
  font-family: var(--sp-serif);
  font-size: 28px;
  margin: 0 0 8px;
}
.sp-hero__card p {
  margin: 0 0 16px;
  color: var(--sp-muted);
  font-size: 14px;
}

@media (min-width: 981px) {
  .sp-header {
    background: rgba(16, 19, 16, 0.22);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    transition: background .28s ease, backdrop-filter .28s ease, filter .35s ease;
  }
  .sp-header.is-solid {
    background: rgba(16, 19, 16, 0.96);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
  }
  .sp-nav {
    margin-left: auto;
    margin-right: auto;
  }
  .sp-nav a {
    padding-bottom: 4px;
  }
  .sp-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--sp-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
  }
  .sp-nav a:hover {
    color: var(--sp-gold-2);
  }
  .sp-nav a:hover::after {
    transform: scaleX(1);
  }
  .sp-geo-bar {
    position: relative;
    z-index: 40;
    background: rgba(16, 19, 16, 0.18);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
  }
  .sp-hero {
    margin-top: calc(-1 * (var(--sp-header) + var(--sp-geo-bar)));
    min-height: auto;
    padding-top: calc(var(--sp-header) + var(--sp-geo-bar));
    align-items: start;
  }
  .sp-hero::after {
    background:
      linear-gradient(180deg, rgba(16, 19, 16, 0.12) 0%, rgba(16, 19, 16, 0.38) 42%, rgba(16, 19, 16, 0.86) 100%),
      linear-gradient(90deg, rgba(16, 19, 16, 0.42), transparent 58%);
  }
  .sp-hero__in {
    padding: 28px 0 150px;
    align-items: start;
    gap: 28px;
    width: min(100% - 48px, 1080px);
  }
  .sp-hero__card {
    max-width: 380px;
    justify-self: end;
  }
  .sp-hero__actions {
    margin: 20px 0 16px;
  }
}

.sp-trust {
  background: var(--sp-bg);
  color: #f4efe6;
  padding: 28px 0;
}
.sp-trust__in {
  width: min(100% - 32px, var(--sp-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sp-trust article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid rgba(198,161,91,.16);
  padding-right: 18px;
}
.sp-trust article:last-child { border: 0; padding-right: 0; }
.sp-trust__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--sp-gold-dim);
  color: var(--sp-gold-2);
  display: grid;
  place-items: center;
}
.sp-trust__icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}
.sp-trust__txt { min-width: 0; }
.sp-trust b {
  display: block;
  font-family: var(--sp-serif);
  font-size: 28px;
  color: var(--sp-gold-2);
  font-weight: 500;
  line-height: 1.1;
}
.sp-trust span { font-size: 14px; color: rgba(244,239,230,.72); }
.sp-trust__spin {
  transform-origin: 12px 12px;
  animation: sp-trust-spin 8s linear infinite;
}
.sp-trust__float {
  transform-origin: 12px 13px;
  animation: sp-trust-float 2.8s ease-in-out infinite;
}
.sp-trust__pulse {
  transform-origin: 12px 12px;
  animation: sp-trust-pulse 2.2s ease-in-out infinite;
}
.sp-trust__bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: sp-trust-bar 1.7s ease-in-out infinite;
}
.sp-trust__bar--2 { animation-delay: .15s; }
.sp-trust__bar--3 { animation-delay: .3s; }

.sp-section { padding: 88px 0; }
.sp-section--paper { background: var(--sp-paper); }
.sp-section--dark {
  background: var(--sp-bg-2);
  color: #f4efe6;
}
.sp-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.sp-seo p {
  color: var(--sp-muted);
  max-width: 78ch;
  margin: 0 0 14px;
  font-size: 16px;
}
.sp-seo a { color: #8b6a2c; text-decoration: underline; text-underline-offset: 2px; }

.sp-services-lead {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sp-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sp-service {
  position: relative;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: var(--sp-radius);
  padding: 22px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sp-service:hover,
.sp-service:focus-within {
  transform: translateY(-4px);
  border-color: var(--sp-gold);
  box-shadow: var(--sp-shadow);
}
.sp-services-lead .sp-service {
  padding: 26px 24px 22px;
  gap: 12px;
}
.sp-service--hit {
  z-index: 1;
  background: var(--sp-bg);
  color: #f4efe6;
  border-color: var(--sp-gold);
  box-shadow:
    0 22px 48px rgba(16, 19, 16, 0.24),
    0 0 0 1px rgba(198, 161, 91, 0.35),
    0 0 36px rgba(198, 161, 91, 0.1);
}
.sp-service--hit:hover,
.sp-service--hit:focus-within {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(16, 19, 16, 0.32),
    0 0 0 1px var(--sp-gold),
    0 0 44px rgba(198, 161, 91, 0.18);
}
.sp-service--urgent {
  border-color: var(--sp-gold);
  box-shadow: 0 12px 32px rgba(16, 19, 16, 0.08);
}
.sp-service__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sp-service__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sp-gold-dim);
  color: #8a6a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.sp-service--hit .sp-service__badge {
  background: var(--sp-gold);
  color: #1a160c;
}
.sp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sp-gold-dim);
  color: #8b6a2c;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 161, 91, 0.32);
  flex-shrink: 0;
}
.sp-icon svg { width: 26px; height: 26px; }
.sp-service--hit .sp-icon {
  background: rgba(198, 161, 91, 0.16);
  color: var(--sp-gold-2);
  border-color: rgba(198, 161, 91, 0.45);
}
.sp-service .sp-h3 { margin: 0; }
.sp-service p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 14px;
}
.sp-service > p:not(.sp-service__foot) { flex: 1; }
.sp-service--hit > p:not(.sp-service__foot) { color: rgba(244,239,230,.72); }
.sp-service__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.sp-service__actions .sp-btn,
.sp-service--urgent > .sp-btn {
  width: 100%;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}
.sp-service--urgent > .sp-btn { margin-top: auto; }
.sp-service__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #8a6a2e;
}
.sp-service__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sp-service:hover .sp-service__cta,
.sp-service:focus-within .sp-service__cta {
  color: var(--sp-gold);
}
.sp-service__foot {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--sp-muted);
  text-align: center;
}
.sp-service--hit .sp-service__foot { color: rgba(244,239,230,.55); }

.sp-more {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: var(--sp-radius);
  padding: 4px 20px 8px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.sp-more:hover,
.sp-more[open] {
  border-color: var(--sp-gold);
  box-shadow: var(--sp-shadow);
}
.sp-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
}
.sp-more summary::-webkit-details-marker { display: none; }
.sp-more summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--sp-gold);
  border-bottom: 2px solid var(--sp-gold);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.sp-more[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}
.sp-more ul {
  margin: 0 0 12px;
  padding: 0 0 8px 18px;
  color: var(--sp-muted);
  columns: 2;
  gap: 24px;
}
.sp-more li { margin: 6px 0; }

.sp-prices__choice {
  margin: -12px 0 22px;
  text-align: center;
  font-size: 15px;
  color: var(--sp-ink);
}
.sp-prices__choice b {
  font-weight: 700;
  color: #8a6a2e;
}
.sp-prices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.sp-price {
  position: relative;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.sp-price > .sp-btn,
.sp-price__actions { margin-top: auto; }
.sp-price .sp-btn {
  width: 100%;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}
.sp-price__actions {
  display: grid;
  gap: 8px;
}
.sp-price--hit {
  z-index: 1;
  background: var(--sp-bg);
  color: #f4efe6;
  border-color: var(--sp-gold);
  padding: 30px 24px 24px;
  box-shadow:
    0 22px 48px rgba(16, 19, 16, 0.28),
    0 0 0 1px rgba(198, 161, 91, 0.35),
    0 0 40px rgba(198, 161, 91, 0.12);
}
.sp-price--hit::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sp-gold), transparent);
}
.sp-price__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
}
.sp-price__tag {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sp-gold);
  font-weight: 700;
}
.sp-price__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sp-gold-dim);
  color: #8a6a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.sp-price--hit .sp-price__badge {
  background: var(--sp-gold);
  color: #1a160c;
}
.sp-price .sp-h3 { margin: 10px 0 4px; }
.sp-price__sum {
  font-family: var(--sp-serif);
  font-size: 42px;
  margin: 8px 0 0;
  line-height: 1;
}
.sp-price__hint {
  margin: 8px 0 16px;
  font-size: 13px;
  color: var(--sp-muted);
}
.sp-price--hit .sp-price__hint { color: rgba(244,239,230,.62); }
.sp-price__plus {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--sp-gold);
}
.sp-price ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.sp-price li {
  position: relative;
  padding: 7px 28px 7px 22px;
  font-size: 14px;
  color: var(--sp-muted);
}
.sp-price--hit li { color: rgba(244,239,230,.78); }
.sp-price li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 8px;
  height: 5px;
  border-left: 1.6px solid var(--sp-gold);
  border-bottom: 1.6px solid var(--sp-gold);
  transform: rotate(-45deg);
  background: none;
}
.sp-price li.is-off {
  color: #b0aaa2;
}
.sp-price--hit li.is-off {
  color: rgba(244,239,230,.38);
}
.sp-price li.is-off::before {
  width: 10px;
  height: 0;
  top: 16px;
  left: 0;
  border: 0;
  border-bottom: 1.5px solid currentColor;
  transform: none;
  opacity: .7;
}
.sp-price li.is-off::after {
  content: "нет";
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}
.sp-price__foot {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: var(--sp-muted);
}
.sp-price--hit .sp-price__foot { color: rgba(244,239,230,.55); }
.sp-prices__legal {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--sp-muted);
}

.sp-steps {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.sp-tabs {
  display: grid;
  gap: 8px;
}
.sp-tab {
  text-align: left;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--sp-ink);
}
.sp-tab.is-active {
  background: var(--sp-bg);
  color: #fff;
  border-color: var(--sp-bg);
}
.sp-tab small {
  display: block;
  color: var(--sp-gold);
  font-size: 12px;
  margin-top: 4px;
}
.sp-panel {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #eadfce;
}
.sp-panel.is-active { display: block; }
.sp-panel ol {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
}
.sp-panel li { margin: 10px 0; color: #3d3a35; }

.sp-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.sp-about__photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
}
.sp-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.sp-about__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(16,19,16,.88);
  color: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  max-width: 230px;
}
.sp-about__badge b { color: var(--sp-gold-2); display: block; }
.sp-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.sp-facts div {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 14px;
}
.sp-facts b { display: block; font-size: 20px; }

.sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sp-split figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.sp-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.sp-split figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 8px 24px #000;
}

.sp-form {
  display: grid;
  gap: 14px;
}
.sp-form > label:not(.sp-check) {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8176;
  transition: color .2s ease;
}
.sp-form > label:not(.sp-check):focus-within {
  color: #8b6a2c;
}
.sp-form input:not([type="checkbox"]):not([type="hidden"]),
.sp-form textarea,
.sp-form select {
  width: 100%;
  border: 1px solid rgba(198, 161, 91, .32);
  background: linear-gradient(180deg, #fff, #faf6ef);
  border-radius: 14px;
  min-height: 52px;
  padding: 13px 16px 13px 44px;
  color: var(--sp-ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.sp-form textarea {
  min-height: 104px;
  resize: vertical;
  padding-top: 14px;
}
.sp-field {
  position: relative;
  display: block;
}
.sp-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #6a4e18;
  pointer-events: none;
  z-index: 2;
}
.sp-field--area .sp-field__icon {
  top: 16px;
  transform: none;
}
.sp-form > label:not(.sp-check):focus-within .sp-field__icon {
  color: #8b5e14;
}
.sp-form input:not([type="checkbox"]):not([type="hidden"]):hover,
.sp-form textarea:hover {
  border-color: rgba(198, 161, 91, .62);
}
.sp-form input:not([type="checkbox"]):not([type="hidden"]):focus,
.sp-form textarea:focus,
.sp-form select:focus {
  outline: none;
  border-color: var(--sp-gold);
  background-color: #fff;
  box-shadow:
    0 0 0 4px rgba(198, 161, 91, .18),
    0 10px 28px rgba(198, 161, 91, .12);
}
.sp-form input::placeholder,
.sp-form textarea::placeholder {
  color: #b4aba0;
  font-weight: 500;
}
.sp-form .sp-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--sp-muted);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}
.sp-form .sp-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid rgba(198, 161, 91, .7);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #f6f1e8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  cursor: pointer;
  position: relative;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.sp-form .sp-check input[type="checkbox"]:hover {
  border-color: var(--sp-gold);
  transform: translateY(-1px);
}
.sp-form .sp-check input[type="checkbox"]:checked {
  background: linear-gradient(180deg, #f0d48a, #c6a15b);
  border-color: #b8954a;
  box-shadow: 0 4px 12px rgba(198,161,91,.35);
}
.sp-form .sp-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #1a160c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.sp-form .sp-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--sp-gold);
  outline-offset: 2px;
}
.sp-check span { flex: 1; }
.sp-check a {
  color: #8b6a2c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sp-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.sp-form__msg {
  min-height: 20px;
  font-size: 13px;
  font-weight: 600;
}
.sp-form__msg.is-ok,
.sp-form__msg.is-err {
  padding: 10px 12px;
  border-radius: 10px;
  animation: sp-fade-up .35s ease;
}
.sp-form__msg.is-ok {
  color: var(--sp-ok);
  background: rgba(47, 107, 79, .1);
}
.sp-form__msg.is-err {
  color: var(--sp-danger);
  background: rgba(180, 35, 24, .08);
}

.sp-cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.sp-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,19,16,.92), rgba(16,19,16,.78)),
    url("../assets/img/cemetery-dawn.jpg") center/cover no-repeat;
  z-index: -1;
}

.sp-cta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.sp-cta .sp-lead { color: rgba(244,239,230,.78); }
.sp-cta .sp-form {
  background: rgba(16, 19, 16, .58);
  border: 1px solid rgba(198, 161, 91, .32);
  border-radius: 24px;
  padding: 26px 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
}
.sp-cta .sp-form > label:not(.sp-check) { color: rgba(227, 197, 122, .82); }
.sp-cta .sp-form input:not([type="checkbox"]),
.sp-cta .sp-form textarea {
  background: rgba(10, 12, 10, .78);
  border-color: rgba(198,161,91,.32);
  color: #f4efe6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.sp-cta .sp-field__icon {
  color: #f0d48a;
}
.sp-cta .sp-form > label:not(.sp-check):focus-within .sp-field__icon {
  color: #ffe7a8;
}
.sp-cta .sp-form input:not([type="checkbox"]):focus,
.sp-cta .sp-form textarea:focus {
  background-color: #121512;
  box-shadow: 0 0 0 4px rgba(198, 161, 91, .16), 0 10px 28px rgba(0,0,0,.2);
}
.sp-cta .sp-form .sp-check input[type="checkbox"] {
  background: #101310;
  border-color: rgba(198,161,91,.55);
}
.sp-cta .sp-form .sp-check input[type="checkbox"]:checked {
  background: linear-gradient(180deg, #f0d48a, #c6a15b);
}
.sp-cta .sp-check a { color: var(--sp-gold-2); }

.sp-faq details {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 4px 18px;
  margin: 10px 0;
}
.sp-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
}
.sp-faq p {
  margin: 0 0 14px;
  color: var(--sp-muted);
}

.sp-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sp-contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #eadfce;
}
.sp-contact-card a { color: var(--sp-ink); font-weight: 700; }
.sp-map {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  filter: grayscale(.2) contrast(1.05);
}

.sp-footer {
  background: #0c0e0c;
  color: rgba(244,239,230,.72);
  padding: 40px 0 28px;
  font-size: 14px;
}
.sp-footer__in {
  width: min(100% - 32px, var(--sp-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.sp-footer a { color: #f4efe6; }
.sp-footer b { color: var(--sp-gold-2); }
.sp-copy {
  width: min(100% - 32px, var(--sp-max));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 161, 91, 0.14);
  text-align: left;
  font-size: 13px;
}
.sp-dev {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.4;
}
.sp-dev a {
  color: rgba(244, 239, 230, 0.7);
  transition: color .2s ease;
}
.sp-dev a:hover { color: var(--sp-gold-2); }

.sp-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(16,19,16,.96);
  backdrop-filter: blur(12px);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--sp-line);
}
.sp-sticky .sp-btn {
  font-size: 13px;
  letter-spacing: 0;
  padding-inline: 8px;
}

.sp-header,
.sp-geo-bar,
main,
.sp-footer,
.sp-sticky,
.sp-max,
.sp-cookie {
  transition: filter .35s ease;
}

.sp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(10, 12, 10, 0.38);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease, backdrop-filter .35s ease;
}
.sp-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.sp-lock .sp-header,
body.sp-lock .sp-geo-bar,
body.sp-lock main,
body.sp-lock .sp-footer,
body.sp-lock .sp-sticky,
body.sp-lock .sp-max,
body.sp-lock .sp-cookie {
  filter: blur(7px);
  pointer-events: none;
}
.sp-modal__box {
  width: min(100%, 440px);
  background:
    linear-gradient(180deg, #fffefb, var(--sp-paper));
  border-radius: 24px;
  padding: 28px 24px 24px;
  position: relative;
  transform: translateY(18px) scale(.96);
  transition: transform .35s ease;
  border: 1px solid rgba(198, 161, 91, .38);
  box-shadow: 0 30px 70px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.8);
}
.sp-modal__box::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sp-gold), transparent);
}
.sp-modal.is-open .sp-modal__box {
  transform: none;
}
.sp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198,161,91,.28);
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: #6d675f;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.sp-modal__close:hover {
  transform: rotate(90deg);
  border-color: var(--sp-gold);
  color: #1b1a17;
}

.sp-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + var(--sp-sticky));
  z-index: 45;
  background: var(--sp-bg);
  color: #f4efe6;
  border-radius: 16px;
  padding: 14px 16px;
  display: none;
  gap: 12px;
  align-items: center;
  box-shadow: var(--sp-shadow);
  max-width: 720px;
  margin: 0 auto;
}
.sp-cookie.is-show { display: flex; }
.sp-cookie p { margin: 0; font-size: 13px; }

@media (max-width: 980px) {
  .sp-nav,
  .sp-header__cta { display: none; }
  .sp-header__phone {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .sp-header__phone-icon {
    width: 18px;
    height: 18px;
  }
  .sp-header__phone b {
    font-size: 13px;
    white-space: nowrap;
  }
  .sp-burger {
    display: inline-block;
    margin-left: 8px;
  }
  .sp-nav.is-open {
    display: flex;
    position: absolute;
    top: var(--sp-header);
    left: 0;
    right: 0;
    background: #101310;
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--sp-line);
    animation: sp-drop .28s ease;
  }
  .sp-hero__in,
  .sp-prices,
  .sp-steps,
  .sp-about,
  .sp-split,
  .sp-cta,
  .sp-contacts,
  .sp-footer__in {
    grid-template-columns: 1fr;
  }
  .sp-trust__in {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sp-price--hit { z-index: 0; }
  .sp-services-lead { grid-template-columns: 1fr; }
  .sp-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-trust article {
    border: 1px solid rgba(198, 161, 91, 0.16);
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    flex-direction: column;
    gap: 10px;
  }
  .sp-trust article:last-child { padding-right: 12px; }
  .sp-trust b { font-size: 22px; }
  .sp-trust span { font-size: 13px; }
  .sp-more ul { columns: 1; }
  .sp-sticky { display: grid; }
  .sp-footer { padding-bottom: calc(28px + var(--sp-sticky) + env(safe-area-inset-bottom)); }
  .sp-hero { min-height: auto; }
  .sp-hero__in { padding-top: 72px; }
  .sp-about__photo { min-height: 380px; }
  .sp-section { padding: 64px 0; }
  .sp-cookie { flex-direction: column; align-items: stretch; right: 84px; }
}

@media (max-width: 640px) {
  .sp-services,
  .sp-services-lead { grid-template-columns: 1fr; }
  .sp-service__actions { grid-template-columns: 1fr; }
  .sp-facts { grid-template-columns: 1fr; }
  .sp-h1 { font-size: 34px; }
  .sp-btn { width: 100%; }
  .sp-hero__actions .sp-btn { width: auto; flex: 1; }
  .sp-header__phone-text span { display: none; }
  .sp-logo img { height: 42px; max-width: 156px; }
}

body.sp-lock { overflow: hidden; }

.sp-nav a,
.sp-header__phone,
.sp-tab,
.sp-faq summary,
.sp-more summary {
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.sp-header__phone:hover { color: var(--sp-gold-2); }
.sp-chip {
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.sp-hero__chips .sp-chip:hover {
  transform: translateY(-2px);
  border-color: var(--sp-gold);
}
.sp-split figure img,
.sp-about__photo img {
  transition: transform .8s ease;
}
.sp-split figure:hover img,
.sp-about__photo:hover img {
  transform: scale(1.04);
}
.sp-price {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sp-price:hover,
.sp-price:focus-within {
  transform: translateY(-4px);
  border-color: var(--sp-gold);
  box-shadow: var(--sp-shadow);
}
.sp-price--hit:hover,
.sp-price--hit:focus-within {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(16, 19, 16, 0.34),
    0 0 0 1px var(--sp-gold),
    0 0 48px rgba(198, 161, 91, 0.2);
}

.sp-hero__in > div:first-child {
  animation: sp-fade-up .8s ease both;
}
.sp-hero__card {
  animation: sp-fade-up .85s ease .12s both;
}

.sp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.sp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.sp-price.sp-reveal.is-visible:hover,
.sp-price.sp-reveal.is-visible:focus-within {
  transform: translateY(-4px);
}
.sp-price--hit.sp-reveal.is-visible:hover,
.sp-price--hit.sp-reveal.is-visible:focus-within {
  transform: translateY(-6px);
}
.sp-service.sp-reveal.is-visible:hover,
.sp-service.sp-reveal.is-visible:focus-within {
  transform: translateY(-4px);
}
.sp-service--hit.sp-reveal.is-visible:hover,
.sp-service--hit.sp-reveal.is-visible:focus-within {
  transform: translateY(-6px);
}

.sp-max {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 55;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(71, 26, 255, 0.38);
  animation: sp-max-in .6s ease .4s both, sp-max-pulse 2.6s ease-in-out 1.2s infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sp-max img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-max:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(71, 26, 255, 0.48);
}

@keyframes sp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes sp-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@keyframes sp-max-in {
  from { opacity: 0; transform: translateY(16px) scale(.9); }
  to { opacity: 1; transform: none; }
}
@keyframes sp-max-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(71, 26, 255, 0.38); }
  50% { box-shadow: 0 8px 20px rgba(71, 26, 255, 0.38), 0 0 0 7px rgba(71, 26, 255, 0.12); }
}
@keyframes sp-trust-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sp-trust-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5px); }
}
@keyframes sp-trust-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
@keyframes sp-trust-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.72); }
}

@media (max-width: 980px) {
  .sp-max {
    right: 14px;
    bottom: calc(var(--sp-sticky) + 14px + env(safe-area-inset-bottom));
  }
}

