* {
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --gold: #7b5a46;
  --cream: #f1eeea;
  --paper: #fbfaf8;
  --line: #ddd4ca;
  --muted: #64748b;
  --shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 64px;
  background:
    radial-gradient(circle at top left, rgba(123, 90, 70, 0.08), transparent 34rem),
    linear-gradient(180deg, #f8f6f2 0%, var(--cream) 48%, #ebe6df 100%);
  color: var(--navy);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

p,
li,
h1,
h2,
h3,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: rgba(26, 39, 68, 0.95);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #fff;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.brand-mark svg {
  display: block;
  width: 36px;
  height: 36px;
  overflow: visible;
  filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.22));
}

.brand-mark svg path:first-of-type,
.brand-mark svg path:nth-of-type(2),
.brand-mark svg .logo-flame,
.brand-mark svg .logo-flame-inner {
  transform-box: fill-box;
  transform-origin: 50% 82%;
  will-change: transform, opacity, filter;
}

.brand-mark svg path:first-of-type,
.brand-mark svg .logo-flame {
  animation: brand-candle-flame 2.65s ease-in-out infinite;
  filter:
    drop-shadow(0 0 5px rgba(255, 207, 103, 0.7))
    drop-shadow(0 0 13px rgba(201, 126, 44, 0.32));
}

.brand-mark svg path:nth-of-type(2),
.brand-mark svg .logo-flame-inner {
  animation: brand-candle-flame-inner 1.82s ease-in-out infinite;
}

.brand-mark svg rect:not(:first-child),
.brand-mark svg .logo-wick {
  transform-box: fill-box;
  transform-origin: 50% 0;
  animation: brand-candle-wick 2.2s ease-in-out infinite;
}

.brand-copy {
  min-width: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #d4bdab;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
  min-width: 0;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:not(.phone-link) {
  border-radius: 12px;
  padding: 8px 9px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  padding: 10px 14px;
  color: #fff !important;
  font-weight: 800;
  white-space: nowrap;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  padding-inline: 12px;
  color: #fff !important;
  font-weight: 800;
  white-space: nowrap;
}

.help-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.site-header--menu-open .menu-toggle {
  background: rgba(255,255,255,0.12);
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-menu-panel {
  width: min(520px, calc(100% - 32px));
  margin: 0 16px 12px auto;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  max-height: calc(100dvh - 82px);
  overflow-y: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  backdrop-filter: blur(16px);
}

.site-menu-panel[hidden] {
  display: none;
}

.site-menu-panel::before {
  content: "Меню\A Выберите нужный раздел";
  white-space: pre-line;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 16px;
  color: #1a2744;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.site-menu-panel a {
  display: block;
  margin: 0 16px;
  color: #334155;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-menu-panel a:first-of-type {
  margin-top: 16px;
}

.site-menu-panel a:last-of-type {
  margin-bottom: 16px;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible {
  color: #1a2744;
  background: #f8fafc;
  outline: none;
}

.hero {
  background:
    linear-gradient(135deg, rgba(16,26,49,0.96), rgba(42,34,32,0.9)),
    url("/images/hero-bg.jpg") center/cover;
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 64px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(216,193,174,0.35);
  border-radius: 999px;
  background: rgba(123,90,70,0.22);
  padding: 8px 13px;
  color: #d8c1ae;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
  min-width: 0;
}

.lead {
  max-width: min(780px, 100%);
  margin: 22px 0 0;
  color: #d5dae3;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.button.secondary {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}

.button.light {
  border-color: #d8cfc6;
  background: #fff;
  color: var(--navy);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 70px;
  min-width: 0;
}

.seo-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 70px;
  min-width: 0;
}

.seo-page::before {
  content: "";
  display: block;
  height: 8px;
  width: 112px;
  border-radius: 999px;
  background: var(--gold);
  margin: 0 0 24px;
}

.seo-page h1 {
  max-width: 880px;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.06;
}

.seo-page h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.seo-page section {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: var(--shadow);
}

.seo-page p,
.seo-page li {
  color: #475569;
  line-height: 1.75;
}

.seo-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 22px;
  border: 1px solid #d7c8b7;
  border-radius: 8px;
  background: #fff;
  padding: 9px 13px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.section {
  margin-top: 28px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
}

.section-lead {
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.card.tint {
  background: var(--paper);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.75;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 18px 18px 56px;
  color: #475569;
  line-height: 1.6;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #e5ddd5;
  padding: 14px 0;
}

.price-row:first-child {
  border-top: 0;
}

.price-row strong {
  color: var(--navy);
}

.price-row span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.notice {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
  color: #475569;
  line-height: 1.65;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-links a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid #d7c8b7;
  border-radius: 10px;
  background: #fff;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  max-width: 100%;
}

.seo-links a:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.static-route {
  display: none !important;
  position: sticky;
  top: 72px;
  z-index: 18;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  padding: 8px 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.site-header .nav-links a[href="/sankt-peterburg/"] {
  display: none !important;
}

.static-route__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.static-route a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d7c8b7;
  border-radius: 999px;
  background: #fbf7f2;
  padding: 6px 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.static-route a span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
}

.static-route p {
  width: min(1180px, 100%);
  margin: 6px auto 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.static-safety {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.static-safety__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #ddd4ca;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(123,90,70,0.12), transparent 26rem),
    rgba(255,255,255,0.92);
  padding: 22px;
  box-shadow: var(--shadow);
}

.static-safety__eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-safety h2 {
  margin: 6px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

.static-safety p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.static-safety a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  background: var(--gold);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.static-helper__fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 182px;
  min-width: 182px;
  max-width: 182px;
  min-height: 56px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: #7b5a46;
  color: #fff;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  overflow: hidden;
  animation: static-helper-breathe 4.6s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.static-helper__fab:hover {
  transform: scale(1.04);
  background: #684b3a;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.26);
}

.static-helper__pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(123, 90, 70, 0.28);
  background: radial-gradient(circle at 18% 40%, rgba(201,168,76,0.22), transparent 30%);
  opacity: 0;
  animation: static-helper-ring 2.8s ease-out infinite;
}

.static-helper__pulse--delay {
  animation-delay: 1.15s;
}

.static-helper__fab-icon,
.static-helper__avatar {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c9a84c;
  color: #1a2744;
  font-weight: 900;
}

.static-helper__fab-icon {
  width: 38px;
  height: 38px;
  font-size: 0;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.3), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(201, 184, 165, 0.22), transparent 32%),
    linear-gradient(145deg, #3d2c24 0%, #5a4032 42%, #7b5a46 100%);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.08),
    0 8px 20px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}

.static-helper__fab-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 9px rgba(234, 223, 210, 0.16);
  animation: static-helper-orbit 5.2s linear infinite;
}

.static-helper__fab-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(255,255,255,0.98) 0%, rgba(250, 236, 211, 0.96) 24%, rgba(220, 190, 143, 0.88) 54%, rgba(123, 90, 70, 0.55) 82%, transparent 100%);
  box-shadow: 0 0 12px rgba(248, 211, 106, 0.42);
  animation: static-helper-core-pulse 2.7s ease-in-out infinite;
}

.static-helper__fab-text {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
  white-space: normal;
  line-height: 1.1;
}

.static-helper__fab-text::before {
  content: "AI Помощник";
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.static-helper__fab-text::after {
  content: "Помогаю ...";
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  animation: smart-help-ticker 6.2s ease-in-out infinite;
}

.static-helper__fab-text::before {
  content: "AI \041F\043E\043C\043E\0449\043D\0438\043A";
}

.static-helper__fab-text::after {
  content: "\041F\043E\043C\043E\0433\0430\044E \0432\044B\0431\0440\0430\0442\044C";
}

.static-helper__overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(2px);
}

@keyframes static-helper-orbit {
  from { transform: rotate(0deg) scaleX(1.15); }
  to { transform: rotate(360deg) scaleX(1.15); }
}

@keyframes static-helper-breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -2px, 0) scale(1.035); }
}

@keyframes static-helper-ring {
  0% { transform: scale(0.92); opacity: 0.34; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.34); opacity: 0; }
}

@keyframes static-helper-core-pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.88; }
  50% { transform: scale(1.06); opacity: 1; }
}

.static-helper__fab.smart-help-trigger {
  animation: static-helper-breathe 4.6s ease-in-out infinite;
}

.static-helper__fab.smart-help-trigger .static-helper__fab-icon::before,
.static-helper__fab.smart-help-trigger .static-helper__fab-icon::after {
  content: none;
}

.static-helper__fab.smart-help-trigger .smart-help-avatar {
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.3), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(201, 184, 165, 0.22), transparent 32%),
    linear-gradient(145deg, #3d2c24 0%, #5a4032 42%, #7b5a46 100%);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.08),
    0 8px 20px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255,255,255,0.08);
}

.smart-help-avatar__glow {
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 223, 210, 0.32) 0%, rgba(201, 184, 165, 0.18) 42%, transparent 70%);
  filter: blur(5px);
  animation: static-helper-core-pulse 3.4s ease-in-out infinite;
}

.smart-help-avatar__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 48%, transparent 52%),
    linear-gradient(180deg, transparent 0%, rgba(201, 184, 165, 0.16) 48%, transparent 52%);
  background-size: 12px 12px;
  opacity: 0.45;
  animation: smart-help-ai-grid 4.6s ease-in-out infinite;
}

.smart-help-avatar__orbit {
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
}

.smart-help-avatar__orbit--one {
  animation: static-helper-orbit 5.2s linear infinite;
}

.smart-help-avatar__orbit--two {
  inset: 8px;
  border-color: rgba(222, 205, 182, 0.34);
  animation: static-helper-orbit-reverse 4.4s linear infinite;
}

.smart-help-avatar__orbit--three {
  border-color: rgba(255, 255, 255, 0.08);
  animation: static-helper-orbit 8s linear infinite;
}

.smart-help-avatar__sun {
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 38%, rgba(255,255,255,0.98) 0%, rgba(250, 236, 211, 0.96) 24%, rgba(220, 190, 143, 0.88) 54%, rgba(123, 90, 70, 0.55) 82%, transparent 100%);
  box-shadow: 0 0 12px rgba(248, 211, 106, 0.42);
  animation: static-helper-core-pulse 2.7s ease-in-out infinite;
}

.smart-help-avatar__planet {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform-origin: center center;
  box-shadow: 0 0 8px rgba(255,255,255,0.38);
}

.smart-help-avatar__planet--one {
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  margin-top: -2.5px;
  background: #f8f1e7;
  animation: static-helper-planet 3.8s linear infinite;
}

.smart-help-avatar__planet--two {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background: #d7bf9b;
  animation: static-helper-planet-reverse 2.9s linear infinite;
}

.smart-help-avatar__planet--three {
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  background: #b98d67;
  animation: static-helper-planet-slow 5.1s linear infinite;
}

@keyframes static-helper-orbit-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes static-helper-planet {
  0% { transform: rotate(0deg) translateX(10px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}

@keyframes static-helper-planet-reverse {
  0% { transform: rotate(360deg) translateX(7px) rotate(-360deg); }
  100% { transform: rotate(0deg) translateX(7px) rotate(0deg); }
}

@keyframes static-helper-planet-slow {
  0% { transform: rotate(0deg) translateX(13px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(13px) rotate(-360deg); }
}

@keyframes smart-help-ai-grid {
  0% { transform: translate3d(-8%, 0, 0); opacity: 0.4; }
  50% { transform: translate3d(8%, 0, 0); opacity: 0.8; }
  100% { transform: translate3d(-8%, 0, 0); opacity: 0.4; }
}

.static-helper__panel {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 59;
  width: min(318px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.98);
  padding: 18px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.24);
}

.static-helper__close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1eeea;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.static-helper__eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-helper__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 42px;
}

.static-helper__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(123, 90, 70, 0.2);
}

.static-helper h2 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.15;
}

.static-helper p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.static-helper__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.static-helper__chips span {
  border-radius: 999px;
  background: #f3eee8;
  padding: 6px 9px;
  color: #7b5a46;
  font-size: 12px;
  font-weight: 800;
}

.static-helper__form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.static-helper__form input,
.static-helper__form textarea {
  width: 100%;
  border: 1px solid #d9d2ca;
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
}

.static-helper__form textarea {
  resize: vertical;
}

.static-helper__form button {
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  padding: 13px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.static-helper__form small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.footer {
  position: relative;
  overflow: hidden;
  background: #101a31;
  color: rgba(255,255,255,0.72);
  padding: 42px 0 40px;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(201,168,76,0.12), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(255,255,255,0.08), transparent 24rem);
  opacity: 0.85;
}

.footer::after {
  background: linear-gradient(135deg, rgba(26,39,68,0.64), rgba(32,40,58,0.54), rgba(45,36,32,0.48));
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1168px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1168px, calc(100% - 32px));
  margin: 26px auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.44);
  font-size: 14px;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom__links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
}

.footer-bottom__links a:hover {
  color: #fff;
}

@keyframes mourning-smoke-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.2; }
  50% { transform: translate3d(-2.5%, 1.2%, 0) scale(1.06); opacity: 0.34; }
  100% { transform: translate3d(2.2%, -1.1%, 0) scale(1.03); opacity: 0.24; }
}

@keyframes mourning-ash-drift {
  0% { transform: translate3d(-14vw, 0, 0) scale(0.55); opacity: 0; }
  10% { opacity: 0.16; }
  28% { opacity: 0.42; }
  62% { opacity: 0.28; }
  100% { transform: translate3d(108vw, -34px, 0) scale(1.08); opacity: 0; }
}

.mourning-smoke-layer {
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.06), transparent 30%),
    radial-gradient(circle at 72% 32%, rgba(123, 90, 70, 0.12), transparent 28%),
    radial-gradient(circle at 45% 74%, rgba(255,255,255,0.05), transparent 34%);
  mix-blend-mode: screen;
  animation: mourning-smoke-drift 22s ease-in-out infinite alternate;
}

.mourning-ash-field {
  pointer-events: none;
  overflow: hidden;
}

.mourning-ash-layer {
  position: absolute;
  inset: 0;
}

.mourning-ash-layer--far {
  opacity: 0.42;
}

.mourning-ash-layer--near {
  opacity: 0.82;
}

.mourning-ash {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(238, 233, 228, 0.9) 0%, rgba(165, 152, 142, 0.36) 55%, transparent 100%);
  filter: blur(0.35px);
  transform-origin: center;
  animation: mourning-ash-drift linear infinite;
}

.mourning-ash-layer--far .mourning-ash {
  filter: blur(0.7px);
}

.mourning-ash-layer--near .mourning-ash {
  filter: blur(0.25px);
}

.mourning-ash--1 { top: 16%; animation-duration: 18s; animation-delay: -2s; width: 3px; height: 3px; }
.mourning-ash--2 { top: 24%; animation-duration: 24s; animation-delay: -10s; width: 2px; height: 2px; }
.mourning-ash--3 { top: 36%; animation-duration: 20s; animation-delay: -5s; width: 4px; height: 4px; }
.mourning-ash--4 { top: 44%; animation-duration: 28s; animation-delay: -14s; width: 2px; height: 2px; }
.mourning-ash--5 { top: 58%; animation-duration: 17s; animation-delay: -7s; width: 5px; height: 5px; }
.mourning-ash--6 { top: 68%; animation-duration: 23s; animation-delay: -16s; width: 3px; height: 3px; }
.mourning-ash--7 { top: 78%; animation-duration: 16s; animation-delay: -4s; width: 2px; height: 2px; }
.mourning-ash--8 { top: 86%; animation-duration: 26s; animation-delay: -18s; width: 4px; height: 4px; }
.mourning-ash--9 { top: 22%; animation-duration: 28s; animation-delay: -12s; width: 8px; height: 8px; left: 8%; }
.mourning-ash--10 { top: 48%; animation-duration: 35s; animation-delay: -21s; width: 10px; height: 10px; left: 22%; }
.mourning-ash--11 { top: 74%; animation-duration: 32s; animation-delay: -9s; width: 7px; height: 7px; left: 14%; }

.footer {
  padding: 40px 0 112px;
  background: #1a2744;
}

@media (min-width: 640px) {
  .footer {
    padding-bottom: 40px;
  }
}

.footer::before,
.footer::after {
  content: none;
}

.footer-smoke,
.footer-ash,
.footer-gradient {
  position: absolute;
  inset: 0;
}

.footer-smoke {
  opacity: 1;
}

.footer-ash {
  opacity: 0.9;
}

.footer-gradient {
  background: linear-gradient(135deg, rgba(16, 26, 49, 0.64), rgba(32, 40, 58, 0.54), rgba(45, 36, 32, 0.48));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.footer-brand-column {
  max-width: 320px;
  min-width: 0;
}

.footer-brand-column .brand {
  max-width: 100%;
}

.footer p {
  max-width: 320px;
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.625;
}

.footer-contact a,
.footer-links a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.footer-contact,
.footer-links {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-bottom__links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  color: #64748b;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  text-align: center;
}

.footer-bottom > div:first-child {
  min-width: 0;
}

.footer-bottom__links {
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }

  .footer-bottom__links {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  border: 1px solid #ddd4ca;
  border-radius: 24px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #f3eee8;
  color: #7b5a46;
  font-size: 22px;
  font-weight: 900;
}

.product-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
}

.product-card p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.product-card ul {
  margin-top: auto;
  padding: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.product-card li {
  border-radius: 999px;
  background: #f8f6f3;
  padding: 6px 9px;
  color: #7b5a46;
  font-size: 12px;
  font-weight: 800;
}

.product-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-offer {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  border: 1px solid #ddd4ca;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbf8f4);
  padding: 20px;
  box-shadow: var(--shadow);
}

.product-offer__badge {
  align-self: flex-start;
  border-radius: 999px;
  background: #f3eee8;
  padding: 7px 10px;
  color: #7b5a46;
  font-size: 12px;
  font-weight: 900;
}

.product-offer h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.product-offer__price {
  margin: 10px 0 0;
  color: #7b5a46;
  font-size: 24px;
  font-weight: 900;
}

.product-offer p,
.product-note {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.product-offer p {
  margin: 8px 0 0;
}

.product-offer ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.product-offer li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #c9a84c;
}

.product-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  border-radius: 999px;
  background: #7b5a46;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-offer a:hover {
  background: #684b3a;
}

.product-note {
  margin: 16px 0 0;
  border-left: 3px solid #c9a84c;
  padding: 10px 0 10px 14px;
}

.footer-inner > div:first-child {
  max-width: 320px;
}

.footer p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.625;
  max-width: 320px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

@keyframes static-helper-pulse {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(8px, -4px, 0);
    opacity: 1;
  }
}

@keyframes smart-help-ticker {
  0%, 22% { transform: translateY(0); opacity: 1; }
  34%, 56% { transform: translateY(-2px); opacity: 0.82; }
  68%, 100% { transform: translateY(0); opacity: 1; }
}

@keyframes brand-candle-flame {
  0%, 100% {
    opacity: 0.93;
    filter:
      brightness(1)
      drop-shadow(0 0 5px rgba(255, 207, 103, 0.62))
      drop-shadow(0 0 12px rgba(201, 126, 44, 0.28));
    transform: translate3d(0, 0, 0) rotate(0deg) scaleX(1) scaleY(1);
  }

  18% {
    opacity: 1;
    filter:
      brightness(1.16)
      drop-shadow(0 0 7px rgba(255, 219, 132, 0.82))
      drop-shadow(0 0 16px rgba(201, 126, 44, 0.42));
    transform: translate3d(-0.5px, -1.4px, 0) rotate(-2.8deg) scaleX(0.96) scaleY(1.09);
  }

  43% {
    opacity: 0.88;
    filter:
      brightness(0.98)
      drop-shadow(0 0 4px rgba(255, 207, 103, 0.52))
      drop-shadow(0 0 10px rgba(201, 126, 44, 0.24));
    transform: translate3d(0.7px, 0.3px, 0) rotate(2.2deg) scaleX(1.04) scaleY(0.97);
  }

  67% {
    opacity: 1;
    filter:
      brightness(1.22)
      drop-shadow(0 0 8px rgba(255, 224, 149, 0.88))
      drop-shadow(0 0 18px rgba(201, 126, 44, 0.48));
    transform: translate3d(0.4px, -1.8px, 0) rotate(1.4deg) scaleX(0.94) scaleY(1.12);
  }
}

@keyframes brand-candle-flame-inner {
  0%, 100% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  35% {
    opacity: 1;
    transform: translate3d(0.3px, -0.9px, 0) rotate(1.8deg) scaleX(0.94) scaleY(1.08);
  }

  62% {
    opacity: 0.82;
    transform: translate3d(-0.3px, 0.2px, 0) rotate(-1.2deg) scaleX(1.05) scaleY(0.97);
  }
}

@keyframes brand-candle-wick {
  0%, 100% {
    opacity: 0.82;
    filter: drop-shadow(0 0 3px rgba(255, 208, 105, 0.35));
  }

  44% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255, 219, 132, 0.68));
  }
}

@media (max-width: 820px) {
  .footer-inner {
    gap: 24px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 32px;
    height: 32px;
  }

  .brand-mark svg {
    filter:
      drop-shadow(0 0 8px rgba(255, 212, 112, 0.35))
      drop-shadow(0 0 16px rgba(201, 126, 44, 0.18));
  }

  .brand-mark svg path:first-of-type,
  .brand-mark svg .logo-flame {
    animation-duration: 2.08s;
  }

  .brand-mark svg path:nth-of-type(2),
  .brand-mark svg .logo-flame-inner {
    animation-duration: 1.46s;
  }

  .brand-copy {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .nav-links {
    gap: 6px;
    width: auto;
    flex: 0 0 auto;
  }

  .phone-link {
    display: none;
  }

  .help-link {
    min-height: 36px;
    padding: 8px 10px !important;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .site-menu-panel {
    width: min(520px, calc(100% - 24px));
    margin-right: 12px;
    margin-bottom: 10px;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 78px 0 48px;
  }

  .lead {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .card,
  .seo-page section {
    padding: 20px;
  }

  .seo-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-links a {
    width: 100%;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-row span {
    white-space: normal;
  }

  .static-route {
    position: static;
  }

  body {
    padding-top: 0;
  }

  .site-header {
    position: fixed;
  }

  .static-route__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .static-route a {
    justify-content: center;
    padding: 8px 10px;
  }

  .static-safety__inner {
    grid-template-columns: 1fr;
  }

  .static-safety a {
    width: 100%;
  }

  .product-categories,
  .product-offers {
    grid-template-columns: 1fr;
  }

  .static-helper__fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .static-helper__fab-icon {
    width: 36px;
    height: 36px;
  }

  .static-helper__fab-text {
    display: none;
  }

  .static-helper__panel {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: 10px;
    bottom: max(72px, calc(env(safe-area-inset-bottom, 0px) + 72px));
    left: 10px;
    width: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .static-helper__close {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    margin: -4px -4px 6px auto;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom {
    gap: 12px;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  .footer-brand-column {
    max-width: 320px;
  }

  .footer-contact,
  .footer-links {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark svg,
  .brand-mark svg path:first-of-type,
  .brand-mark svg path:nth-of-type(2),
  .brand-mark svg rect:not(:first-child),
  .brand-mark svg .logo-flame,
  .brand-mark svg .logo-flame-inner,
  .brand-mark svg .logo-wick {
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .nav {
    width: min(100% - 32px, 1180px);
  }

  .nav-links {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .phone-link,
  .help-link {
    min-height: 38px;
    padding: 9px 12px !important;
  }

}

@media (max-width: 380px) {
  .brand {
    line-height: 1.02;
  }
}


.pominki-service-page {
  width: min(1120px, calc(100% - 32px));
}

.pominki-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,244,238,.95));
}

.pominki-service-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pominki-service-actions,
.pominki-service-tabs,
.pominki-district-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pominki-service-summary,
.pominki-total {
  border-radius: 8px;
  background: var(--navy);
  padding: 22px;
  color: #fff;
}

.pominki-service-summary strong,
.pominki-total b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
}

.pominki-service-summary span,
.pominki-service-summary small,
.pominki-total span,
.pominki-total small {
  display: block;
  margin-top: 8px;
  color: #f0dfca;
}

.pominki-service-tabs {
  position: sticky;
  top: 132px;
  z-index: 16;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  padding: 12px;
  box-shadow: var(--shadow);
}

.pominki-service-tabs a,
.pominki-district-buttons button,
.pominki-map-panel button,
.pominki-venue-card button {
  min-height: 42px;
  border: 1px solid #d7c8b7;
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  color: var(--gold);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.pominki-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pominki-service-card {
  display: grid;
  gap: 10px;
  border: 1px solid #e2d6ca;
  border-radius: 8px;
  background: #fffaf5;
  padding: 18px;
  text-align: left;
}

button.pominki-service-card {
  font: inherit;
  cursor: pointer;
}

.pominki-service-card.is-selected,
.pominki-district-buttons button.is-selected,
.pominki-map-panel button.is-selected {
  border-color: var(--gold);
  background: #f2ebe5;
  box-shadow: 0 0 0 2px rgba(123,90,70,.12);
}

.pominki-service-card h3,
.pominki-service-card p {
  margin: 0;
}

.pominki-service-card strong {
  color: var(--gold);
  font-size: 18px;
}

.pominki-calc-layout,
.pominki-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin-top: 18px;
}

.pominki-service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pominki-service-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 800;
}

.pominki-service-form input,
.pominki-service-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7c8b7;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  color: var(--navy);
  font: inherit;
}

.pominki-service-form button[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pominki-service-form p {
  margin: 0;
  align-self: center;
}

.pominki-map-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 8px;
  background: var(--navy);
  padding: 16px;
}

.pominki-map-panel button {
  display: grid;
  gap: 7px;
  min-height: 118px;
  place-content: center;
  color: var(--navy);
  text-align: center;
}

.pominki-map-panel span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.pominki-venues {
  display: grid;
  gap: 12px;
}

.pominki-venue-card {
  border: 1px solid #e2d6ca;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.pominki-venue-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pominki-venue-card h3,
.pominki-venue-card p {
  margin: 8px 0 0;
}

.pominki-venue-card button {
  margin-top: 12px;
}

.pominki-empty {
  border: 1px dashed #c9b9a9;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

@media (max-width: 900px) {
  .pominki-service-hero,
  .pominki-calc-layout,
  .pominki-map-layout,
  .pominki-service-form {
    grid-template-columns: 1fr;
  }

  .pominki-service-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pominki-service-grid,
  .menu-grid,
  .pominki-map-panel {
    grid-template-columns: 1fr;
  }
}

.seo-page.pominki-service-page .pominki-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,244,238,.9)),
    url("/images/hero-bg.jpg") center/cover;
}

.seo-page.pominki-service-page .pominki-map-layout,
.seo-page.pominki-service-page .pominki-calc-layout {
  display: grid;
}

.seo-page.pominki-service-page .pominki-map-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26,39,68,.9), rgba(63,75,96,.84)),
    radial-gradient(circle at 30% 30%, rgba(201,168,76,.28), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  padding: 18px;
}

.seo-page.pominki-service-page .pominki-map-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(35deg, transparent 0 42%, rgba(255,255,255,.16) 42% 44%, transparent 44% 100%),
    linear-gradient(145deg, transparent 0 54%, rgba(201,168,76,.22) 54% 56%, transparent 56% 100%);
  pointer-events: none;
}

.seo-page.pominki-service-page .pominki-map-panel button {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  min-height: 118px;
  place-content: center;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.94);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 14px 28px rgba(15,23,42,.18);
}

.seo-page.pominki-service-page .pominki-map-panel button::before {
  content: "";
  width: 12px;
  height: 12px;
  margin: 0 auto 2px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(123,90,70,.14);
}

.seo-page.pominki-service-page .pominki-venues {
  display: grid;
  gap: 12px;
}

.seo-page.pominki-service-page .pominki-venue-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e2d6ca;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow);
}

.seo-page.pominki-service-page .pominki-venue-card img {
  width: 112px;
  height: 100%;
  min-height: 118px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee6dd;
}

.seo-page.pominki-service-page .pominki-venue-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-page.pominki-service-page .pominki-venue-card h3,
.seo-page.pominki-service-page .pominki-venue-card p {
  margin: 8px 0 0;
}

.seo-page.pominki-service-page .pominki-venue-card button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .seo-page.pominki-service-page .pominki-service-hero,
  .seo-page.pominki-service-page .pominki-map-layout,
  .seo-page.pominki-service-page .pominki-calc-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .seo-page.pominki-service-page .pominki-map-panel,
  .seo-page.pominki-service-page .pominki-venue-card {
    grid-template-columns: 1fr;
  }

  .seo-page.pominki-service-page .pominki-venue-card img {
    width: 100%;
    height: 160px;
  }
}

/* pominki page inside ritual services shell */
.seo-page.pominki-donor-page {
  max-width: min(1180px, calc(100% - 32px));
}

.pominki-donor-page section {
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 18px 55px rgba(31, 41, 55, .08);
}

.pominki-donor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(26,39,68,.95), rgba(50,58,80,.86)),
    url("/images/hero-bg.jpg") center/cover;
  color: #fff;
}

.pominki-donor-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.pominki-donor-hero p,
.pominki-donor-hero small {
  color: rgba(255,255,255,.78);
}

.pominki-donor-kicker {
  margin: 0 0 12px;
  color: #a27622;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pominki-donor-hero .pominki-donor-kicker {
  color: #f2d285;
}

.pominki-donor-bullets,
.pominki-donor-actions,
.pominki-donor-tabs,
.pominki-map-pills,
.pominki-how-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pominki-donor-bullets span,
.pominki-map-pills span {
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  padding: 10px 14px;
  color: #fff;
  font-weight: 800;
}

.pominki-donor-hero__panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}

.pominki-donor-hero__panel img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.pominki-donor-hero__panel div {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.pominki-donor-hero__panel strong {
  color: #fff;
  font-size: 26px;
}

.pominki-donor-phone {
  color: #fff;
  font-weight: 900;
}

.pominki-donor-tabs {
  position: sticky;
  z-index: 4;
  top: 78px;
  margin: -8px 0 18px;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: rgba(255,250,244,.96);
  padding: 10px;
  box-shadow: 0 12px 30px rgba(31,41,55,.08);
}

.pominki-donor-tabs a,
.pominki-section-head a,
.pominki-how-contact a {
  border-radius: 8px;
  background: #fff;
  padding: 10px 13px;
  color: #1a2744;
  font-weight: 900;
  text-decoration: none;
}

.pominki-section-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.pominki-section-copy {
  max-width: 760px;
  color: #657082;
}

.pominki-now__steps,
.pominki-reason-grid,
.pominki-menu-grid,
.pominki-district-grid,
.pominki-how-steps {
  display: grid;
  gap: 14px;
}

.pominki-now__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pominki-reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pominki-menu-grid {
  grid-template-columns: repeat(5, minmax(170px, 1fr));
}

.pominki-now__steps article,
.pominki-reason-grid article,
.pominki-menu-card,
.pominki-district-grid button,
.pominki-calc-form,
.pominki-total-card,
.pominki-catalog-list {
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.pominki-now__steps span,
.pominki-how-steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #c9a84c;
  color: #fff;
  font-weight: 900;
}

.pominki-menu-card {
  display: grid;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.pominki-menu-card.is-selected,
.pominki-calc-menu button.is-selected,
.pominki-map-panel button.is-selected,
.pominki-district-grid button.is-selected {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,.22), 0 18px 44px rgba(31,41,55,.12);
}

.pominki-menu-card h3,
.pominki-menu-card p,
.pominki-reason-grid h3,
.pominki-reason-grid p,
.pominki-now__steps h3 {
  margin: 0;
}

.pominki-menu-card strong {
  color: #1a2744;
  font-size: 24px;
}

.pominki-menu-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #4d5b70;
}

.pominki-card-badge,
.pominki-menu-controls {
  width: fit-content;
  border-radius: 999px;
  background: #f1e4cd;
  padding: 7px 10px;
  color: #7b5a24;
  font-size: 12px;
  font-weight: 900;
}

.pominki-calc-shell,
.pominki-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.pominki-catalog-layout {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
}

.pominki-calc-form {
  display: grid;
  gap: 14px;
}

.pominki-selected,
.pominki-total-card {
  background: #1a2744;
  color: #fff;
}

.pominki-selected {
  display: grid;
  gap: 7px;
  border-radius: 8px;
  padding: 16px;
}

.pominki-selected span,
.pominki-total-card span {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pominki-calc-form label,
.pominki-form-row label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 900;
}

.pominki-calc-form input,
.pominki-calc-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7c8b7;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  color: #1a2744;
  font: inherit;
}

.pominki-form-row,
.pominki-calc-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pominki-calc-menu {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pominki-calc-menu button,
.pominki-matching button,
.pominki-venue-card button,
.pominki-district-grid button {
  border: 1px solid #e2d6ca;
  border-radius: 8px;
  background: #fffaf4;
  padding: 12px;
  color: #1a2744;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pominki-matching {
  display: grid;
  gap: 10px;
}

.pominki-total-card strong {
  color: #fff;
  font-size: 40px;
}

.pominki-total-card p {
  color: rgba(255,255,255,.75);
}

.pominki-total-card a,
.pominki-total-card button,
.pominki-venue-card button:last-child {
  border: 0;
  border-radius: 8px;
  background: #c9a84c;
  padding: 13px 15px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.pominki-map-pills span {
  background: #1a2744;
}

.pominki-map-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26,39,68,.92), rgba(56,70,97,.86)),
    radial-gradient(circle at 25% 28%, rgba(201,168,76,.3), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  padding: 18px;
}

.pominki-map-panel button {
  display: grid;
  gap: 7px;
  place-content: center;
  min-height: 122px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  color: #1a2744;
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.pominki-map-panel span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.pominki-venues {
  display: grid;
  gap: 12px;
  max-height: 620px;
  overflow: auto;
}

.pominki-venue-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 14px;
  min-height: 238px;
  border: 1px solid #e2d6ca;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.pominki-venue-card img {
  width: 138px;
  height: 214px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee6dd;
}

.pominki-venue-card div {
  display: grid;
  gap: 7px;
}

.pominki-venue-card span,
.pominki-venue-card small {
  color: #a27622;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pominki-venue-card h3,
.pominki-venue-card p {
  margin: 0;
}

.pominki-venue-card b {
  color: #1a2744;
}

.pominki-venue-card em {
  color: #64748b;
  font-style: normal;
}

.pominki-venue-card div div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pominki-district-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pominki-district-grid button {
  display: grid;
  gap: 8px;
  text-align: left;
}

.pominki-district-grid strong {
  font-size: 28px;
}

.pominki-district-grid span {
  color: #a27622;
  font-weight: 900;
}

.pominki-district-grid small {
  color: #64748b;
  font-size: 14px;
}

.pominki-how-dark {
  background: #111b32 !important;
  color: #fff;
}

.pominki-how-dark h2,
.pominki-how-dark h3 {
  color: #fff;
}

.pominki-how-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pominki-how-steps article {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.pominki-how-steps p {
  color: rgba(255,255,255,.72);
}

@media (max-width: 1080px) {
  .pominki-donor-hero,
  .pominki-calc-shell,
  .pominki-catalog-layout {
    grid-template-columns: 1fr;
  }

  .pominki-reason-grid,
  .pominki-menu-grid,
  .pominki-how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .seo-page.pominki-donor-page {
    max-width: calc(100% - 20px);
  }

  .pominki-now__steps,
  .pominki-reason-grid,
  .pominki-menu-grid,
  .pominki-form-row,
  .pominki-calc-menu,
  .pominki-map-panel,
  .pominki-district-grid,
  .pominki-how-steps {
    grid-template-columns: 1fr;
  }

  .pominki-donor-tabs {
    position: static;
  }

  .pominki-section-head {
    display: grid;
  }

  .pominki-venue-card {
    grid-template-columns: 1fr;
  }

  .pominki-venue-card img {
    width: 100%;
    height: 180px;
  }
}

/* exact donor blocks embedded inside ritual services shell */
.seo-page.pominki-exact-page {
  max-width: min(1180px, calc(100% - 32px));
}

.seo-page.pominki-exact-page .pominki-exact-intro {
  overflow: hidden;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 22%, rgba(201,168,76,.24), transparent 30%),
    linear-gradient(120deg, rgba(14,23,43,.98), rgba(35,43,65,.92)),
    url("/images/hero-bg.jpg") center/cover;
  color: #fff;
  padding: clamp(34px, 5vw, 62px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

.seo-page.pominki-exact-page .pominki-exact-intro h1 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
}

.seo-page.pominki-exact-page .pominki-exact-intro p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 2vw, 20px);
}

.pominki-exact-kicker {
  margin: 0 0 12px;
  color: #f2d285;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pominki-exact-tabs {
  position: sticky;
  z-index: 4;
  top: 78px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 18px;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: rgba(255,250,244,.96);
  padding: 10px;
  box-shadow: 0 12px 30px rgba(31,41,55,.08);
}

.pominki-exact-tabs a {
  border-radius: 8px;
  background: #fff;
  padding: 10px 13px;
  color: #1a2744;
  font-weight: 900;
  text-decoration: none;
}

.seo-page.pominki-exact-page .pominki-exact-frame-section {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-top: 0;
  padding: 0;
  box-shadow: none;
}

.pominki-exact-frame {
  display: block;
  width: 100%;
  min-height: 2600px;
  border: 0;
  background: transparent;
}

.pominki-exact-anchor {
  display: block;
  position: relative;
  top: -120px;
  height: 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  .seo-page.pominki-exact-page {
    max-width: calc(100% - 20px);
  }

  .pominki-exact-tabs {
    position: static;
  }
}
