:root {
  --ink: #1c2433;
  --char: #2a2a2a;
  --char-2: #1f1f1f;
  --muted: #5e584e;
  --line: #e4d8c6;
  --paper: #f3eee4;
  --paper-2: #e8dfcf;
  --card: #fffcf7;
  --brass: #c4963a;
  --brass-2: #d4ae62;
  --brass-deep: #8a6420;
  --brass-soft: rgba(196, 150, 58, 0.16);
  --moss: #3d5c4a;
  --moss-soft: rgba(61, 92, 74, 0.12);
  --danger: #8a4a3b;
  --shadow: 0 18px 50px rgba(90, 62, 24, 0.1);
  --radius: 22px;
  --max: 1400px;
  --header: 76px;
  --serif: Inter, system-ui, sans-serif;
  --sans: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #e4e1d8; }
body {
  min-height: 100%;
  color: var(--ink);
  background-color: #e4e1d8;
  background-image:
    url("/img/bg-workshop.svg?v=41"),
    url("/img/bg-grain.svg?v=41"),
    radial-gradient(980px 520px at 92% -8%, rgba(196, 150, 58, 0.22), transparent 58%),
    radial-gradient(720px 560px at -8% 82%, rgba(28, 36, 51, 0.08), transparent 60%),
    linear-gradient(165deg, #eeebe3 0%, #e4e1d8 42%, #d9d4c8 100%);
  background-size:
    min(1080px, 78vw) auto,
    180px 180px,
    auto,
    auto,
    auto;
  background-repeat: no-repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-position: right -12% top -6%, 0 0, 0 0, 0 0, 0 0;
  font-family: var(--sans);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brass-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--char);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

.container { width: calc(100% - 2rem); max-width: var(--max); margin: 0 auto; }
.kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
}
.kicker::before {
  content: "";
  width: 1.15rem;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
  flex: none;
}
.note { color: var(--muted); font-size: 0.92rem; }
.two {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: start;
}
.two--shop {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 26.5rem);
  gap: 1.25rem 1.5rem;
  align-items: start;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(228, 225, 216, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
  overflow: visible;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header.is-scrolled {
  background: rgba(255, 252, 247, 0.9);
  border-bottom-color: var(--line);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: none;
}
.logo img, .logo svg { width: 40px; height: 40px; }
.logo strong {
  display: block;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}
.logo span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.1rem;
  margin-left: auto;
}
.nav > a, .nav > .nav-drop { margin: 0 0.55rem; }
.nav a, .nav-drop__btn, .nav-drop__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  padding: 0.35rem 0;
}
.nav-sheet__head,
.nav-sheet__foot { display: none; }
.nav-sheet__list { display: contents; }
.nav-drop__link { display: none; }
.nav-item__ico,
.nav-item__chev { display: none; }
.nav-drop__btn {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: inherit;
}
.nav a.is-active, .nav a:hover, .nav-drop__btn:hover, .nav-drop:hover .nav-drop__btn { color: var(--brass-deep); }
.nav-drop { position: relative; }
.nav-drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.6rem;
  min-width: 220px;
  box-shadow: var(--shadow);
  display: grid;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .28s cubic-bezier(.22, 1, .32, 1), visibility .2s;
}
.drop--wide { min-width: 280px; grid-template-columns: 1fr; }
.drop--svc {
  min-width: min(36rem, calc(100vw - 2rem));
  width: min(36rem, calc(100vw - 2rem));
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  padding: 0.5rem;
  border-radius: 18px;
}
.drop a {
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  font-weight: 500;
}
.drop--svc a.drop-svc {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.55rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
}
.drop-ico {
  flex: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(196, 150, 58, 0.12);
  color: var(--char);
  border: 1px solid rgba(196, 150, 58, 0.2);
  transition: background .15s, color .15s, border-color .15s;
}
.drop-ico .ico { display: block; }
.drop-svc__txt {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.drop-svc__name {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 600;
}
.drop-price {
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--char);
  background: rgba(42, 42, 42, 0.06);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
}
.drop--svc a.drop-svc:hover {
  background: #f6f1e7;
}
.drop--svc a.drop-svc:hover .drop-ico {
  background: var(--char);
  color: #fff;
  border-color: var(--char);
}
.drop--cities {
  min-width: min(22.5rem, calc(100vw - 2rem));
  grid-template-columns: 1fr 1fr;
  gap: 0.18rem;
  padding: 0.5rem;
  border-radius: 18px;
}
.drop-city {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 0.55rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
}
.drop-city .drop-ico {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
}
.drop-city:hover {
  background: #f6f1e7;
}
.drop-city:hover .drop-ico {
  background: var(--char);
  color: #fff;
  border-color: var(--char);
}
.drop a:hover { background: var(--paper); }
.nav-drop:focus-within .drop,
.nav-drop.is-open .drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav-drop:hover .drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-drop .drop a {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .26s cubic-bezier(.22, 1, .32, 1), background .15s;
  }
  .nav-drop:hover .drop a,
  .nav-drop:focus-within .drop a {
    opacity: 1;
    transform: none;
    transition-delay: calc(var(--i, 1) * 28ms);
  }
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1rem;
  flex: none;
}
.header__cta .btn {
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: none;
  white-space: nowrap;
}
.phone-link {
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}
.phone-link small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.7rem;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--char);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 0.42rem 0.9rem; font-size: 0.82rem; box-shadow: none; }
.btn-cta { background: var(--char); color: #fff; box-shadow: 0 8px 22px rgba(42, 42, 42, 0.18); }
.btn-cta:hover { background: #1a1a1a; }
.btn-ghost { background: rgba(255,252,247,0.7); border-color: var(--line); color: var(--char); }
.btn-ghost:hover, .btn-ghost.is-active { background: var(--card); border-color: var(--brass-2); }
.hero .btn-ghost { background: #fff; border-color: #fff; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #e4e1d8;
}
.hero-stage {
  position: relative;
  background: #e4e1d8;
}
.hero-slide {
  display: grid;
  grid-template-columns: minmax(20rem, 40%) minmax(0, 1fr);
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity .6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.hero-slide__photo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 28rem;
  overflow: hidden;
  z-index: 1;
  background-color: #1c2433;
}
.hero-slide__photo picture,
.hero-slide__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-slide__photo img {
  object-fit: cover;
  object-position: 72% 42%;
}
.hero-slide__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #e4e1d8 0%, rgba(228, 225, 216, 0.4) 12%, transparent 32%);
}
.hero-slide__in {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0;
  background: #e4e1d8;
  padding: 1.8rem 2.2rem 1.7rem max(4.5rem, calc((100vw - var(--max)) / 2 + 2rem));
}
.hero-slide__copy {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
}
.hero h1, .hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0.75rem;
  color: var(--ink);
  max-width: 12.5em;
}
.hero h1 em, .hero-title em { font-style: italic; color: var(--ink); }
.lead { font-size: 1.08rem; color: #4a453c; max-width: 46ch; }
.hero .lead {
  color: var(--ink);
  font-weight: 500;
  max-width: 36ch;
  margin-left: 0;
  margin-right: 0;
}
.hero-slide__in .kicker {
  justify-content: flex-start;
}
.viz-hero__in .kicker,
.contact-hero__in .kicker {
  justify-content: flex-start;
}
.hero-slide__in .hero-actions,
.hero-slide__in .hero-pills {
  justify-content: flex-start;
}
.viz-hero .hero-actions,
.viz-hero .hero-pills,
.contact-hero .hero-actions,
.contact-hero .hero-pills {
  justify-content: flex-start;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 1rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pill {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.viz-hero,
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 42%) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: stretch;
  height: auto;
  overflow: hidden;
  background: #e4e1d8;
}
.viz-hero__photo,
.contact-hero__photo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 18.5rem;
  overflow: hidden;
  z-index: 1;
}
.viz-hero__photo picture,
.viz-hero__photo img,
.contact-hero__photo picture,
.contact-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--pos, 70% 42%);
}
.viz-hero__photo img,
.contact-hero__photo img,
.hero-slide__photo img {
  animation: hero-ken 22s ease-in-out infinite alternate;
}
.viz-hero__photo::after,
.contact-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #e4e1d8 0%, rgba(228, 225, 216, 0.4) 12%, transparent 32%);
}
.viz-hero__in,
.contact-hero__in {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0;
  background: #e4e1d8;
  padding: 1.7rem 1.5rem 1.5rem max(2.1rem, calc((100vw - var(--max)) / 2 + 1.15rem));
}
.viz-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 32rem;
  margin: 0;
}
.viz-hero__copy > * {
  text-align: left;
}
.viz-hero h1,
.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0.18rem 0 0.45rem;
  color: var(--ink);
  max-width: 14em;
  text-align: left;
}
.viz-hero h1 em,
.contact-hero h1 em { font-style: italic; font-weight: 600; }
.viz-hero .lead,
.contact-hero .lead {
  color: var(--ink);
  font-weight: 500;
  max-width: 38ch;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.viz-hero .crumbs,
.contact-hero .crumbs {
  color: var(--muted);
  margin-bottom: 0.2rem;
  text-align: left;
}
.viz-hero .kicker,
.contact-hero .kicker {
  margin: 0;
  justify-content: flex-start;
}
.viz-hero .hero-actions,
.contact-hero .hero-actions {
  margin: 0.75rem 0 0.55rem;
  justify-content: flex-start;
}
.viz-hero .hero-pills,
.contact-hero .hero-pills {
  justify-content: flex-start;
}
.viz-hero .btn-ghost,
.contact-hero .btn-ghost {
  background: #fff;
  border-color: #fff;
}
.viz-hero .btn,
.contact-hero .btn {
  padding: 0.48rem 0.95rem;
  font-size: 0.92rem;
}
.hero-key {
  position: absolute;
  right: 9%;
  top: 48%;
  width: clamp(3.4rem, 7.5vw, 5.8rem);
  z-index: 2;
  color: #f6ead0;
  filter: drop-shadow(0 10px 22px rgba(28, 36, 51, 0.32));
  pointer-events: none;
  transform: translateY(-50%) rotate(-8deg);
  animation: key-meditate 12s ease-in-out infinite;
}
.hero-key svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.hero-key__glow {
  position: absolute;
  left: -38%;
  right: -38%;
  top: 4%;
  height: 42%;
  background: radial-gradient(circle, rgba(212, 174, 98, 0.55), transparent 68%);
  animation: key-glow 12s ease-in-out infinite;
}
@keyframes key-meditate {
  0%, 100% { transform: translateY(-50%) translateX(0) rotate(-8deg); }
  50% { transform: translateY(calc(-50% - 16px)) translateX(10px) rotate(7deg); }
}
@keyframes key-glow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.12); }
}
@keyframes hero-ken {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.07) translate(-1.4%, 1.2%); }
}
.hero-marquee {
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
  height: 2.05rem;
  display: flex;
  align-items: center;
  background: #ece8df;
  border-top: 1px solid rgba(228, 220, 198, 0.9);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
}
.hero .hero-marquee {
  display: flex;
  border-top: 0;
  border-bottom: 1px solid rgba(228, 220, 198, 0.9);
}
.hero-marquee__track {
  display: flex;
  width: max-content;
  animation: hero-marquee 72s linear infinite;
}
.hero-marquee:hover .hero-marquee__track,
.hero-marquee:focus-within .hero-marquee__track,
.hero-marquee.is-paused .hero-marquee__track {
  animation-play-state: paused;
}
.hero-marquee__run {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-right: 1.15rem;
  white-space: nowrap;
  flex: none;
}
.hero-marquee__sep {
  color: var(--brass);
  opacity: 0.8;
  font-size: 0.95em;
}
@keyframes hero-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.viz-hero ~ .section { padding: 2.1rem 0; }
.viz-hero ~ .section.section--svcband { padding: 1.35rem 0 1.15rem; }
.viz-hero ~ .section.section--cityband { padding: 0.35rem 0 1.1rem; }
.viz-hero ~ .section.section--alt { padding: 2.1rem 0; }
.viz-hero ~ .section.section--tight { padding: 1.35rem 0 2rem; }
.viz-hero ~ .section.section--plus { padding: 4.15rem 0 3.65rem; }
.viz-hero ~ .section.section--seo { padding: 2.55rem 0 2.7rem; }
.viz-hero ~ .section .sec-head { margin-bottom: 1.05rem; }
.viz-hero ~ .section .sec-head h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 0.2rem 0 0.35rem; }
.viz-hero ~ .section .two { gap: 1.35rem 1.6rem; }
.viz-hero ~ .section .contact-grid.two { gap: 1.4rem 1.7rem; }
.viz-hero ~ .section .price-table th,
.viz-hero ~ .section .price-table td { padding: 0.5rem 0.8rem; }
.viz-hero ~ .section .acc-item button { padding: 0.78rem 2.5rem 0.78rem 0.95rem; }
.viz-hero ~ .section .acc { gap: 0.4rem; }
.viz-hero ~ .section .form { gap: 0.55rem; }
.viz-hero ~ .section .field input,
.viz-hero ~ .section .field select,
.viz-hero ~ .section .field textarea { padding: 0.58rem 0.8rem; font-size: 0.98rem; }
.viz-hero ~ .section .lead-contacts { margin: 0.8rem 0 0.7rem; }
.viz-hero ~ .section .lead-row { padding: 0.75rem 0.9rem; }
.viz-hero ~ .section .geo { gap: 1.1rem 1.35rem; }
.viz-hero ~ .section .geo-map { min-height: 0; padding: 0.75rem 0.65rem 0.65rem; }
.viz-hero ~ .section .geo-card { padding: 0.62rem 0.8rem; }
.viz-hero ~ .section .side-cta,
.viz-hero ~ .section .form-card { padding: 1.15rem; }
.viz-hero ~ .section .prose p { margin-bottom: 0.6rem; }
.viz-hero ~ .section .sec-head--row { margin-bottom: 1rem; }
.section--tight { padding: 1.6rem 0; }

.geo {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: 1.8rem 2rem;
  align-items: start;
}
.geo--maponly { grid-template-columns: 1fr; }
.geo--maponly .geo-map { max-width: 740px; margin: 0 auto; width: 100%; }
.geo-list { display: grid; gap: 0.55rem; }
.geo-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 24px rgba(90, 62, 24, 0.05);
  opacity: 0;
  transform: translateX(-14px);
  transition: transform .4s ease, opacity .4s ease, border-color .2s, box-shadow .2s;
  transition-delay: var(--d, 0ms);
}
.geo-card.is-in { opacity: 1; transform: none; }
.geo-card.is-on, .geo-card:hover {
  border-color: var(--brass-2);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.geo-card__name {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}
.geo-card__name .ico { color: var(--brass-deep); flex: none; }
.geo-card__addr, .geo-card__hours {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.geo-card__tel {
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--brass-deep);
  white-space: nowrap;
}
.geo-map {
  position: sticky;
  top: calc(var(--header) + 0.8rem);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(520px 260px at 78% 6%, rgba(212, 174, 98, 0.13), transparent 58%),
    radial-gradient(380px 280px at 12% 92%, rgba(255, 255, 255, 0.04), transparent 62%),
    #0c0f14;
  border-radius: 24px;
  padding: 0.85rem 0.75rem 0.75rem;
  min-height: 0;
  border: 1px solid rgba(212, 174, 98, 0.22);
  overflow: hidden;
}
.geo-map__kicker {
  margin: 0 0 0.15rem 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-2);
  flex: none;
}
.geo-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  flex: none;
}
.geo-land {
  fill: url(#geo-land);
}
.geo-hatch {
  fill: url(#geo-hatch);
  pointer-events: none;
}
.geo-outline {
  fill: none;
  stroke: #e0c07a;
  stroke-width: 1.55;
  stroke-linejoin: miter;
  stroke-miterlimit: 2.6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.8s ease;
}
.geo-outline-soft {
  fill: none;
  stroke: rgba(243, 238, 228, 0.22);
  stroke-width: 0.7;
  stroke-linejoin: miter;
  pointer-events: none;
}
.geo-grid {
  fill: none;
  stroke: rgba(212, 174, 98, 0.12);
  stroke-width: 0.55;
  pointer-events: none;
}
.geo-north {
  fill: #d4ae62;
  pointer-events: none;
}
.geo-north text {
  fill: rgba(247, 241, 230, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-family: Inter, system-ui, sans-serif;
}
.geo-pin { cursor: pointer; }
.geo-pin__halo {
  fill: rgba(212, 174, 98, 0.14);
  pointer-events: none;
}
.geo-pin__dot {
  fill: #d4ae62;
  stroke: #0b0b0b;
  stroke-width: 1.25;
  transition: fill .2s;
}
.geo-pin__pulse {
  fill: rgba(212, 174, 98, 0.22);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.geo-pin.is-on .geo-pin__pulse,
.geo-pin:hover .geo-pin__pulse,
.geo-pin:focus-visible .geo-pin__pulse {
  animation: geo-pulse 1.6s ease-out infinite;
}
.geo-pin.is-on .geo-pin__dot,
.geo-pin:hover .geo-pin__dot,
.geo-pin:focus-visible .geo-pin__dot { fill: #f3eee4; }
.geo-pin.is-on .geo-pin__halo,
.geo-pin:hover .geo-pin__halo { fill: rgba(212, 174, 98, 0.28); }
.geo-pin__label {
  fill: rgba(247, 241, 230, 0.88);
  font-size: 11.5px;
  font-weight: 700;
  font-family: Inter, system-ui, sans-serif;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: rgba(12, 15, 20, 0.72);
  stroke-width: 3px;
}
.geo-pin.is-on .geo-pin__label,
.geo-pin:hover .geo-pin__label { fill: #fff; }
.geo-tip {
  position: relative;
  z-index: 4;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin-top: 0.55rem;
  background: #fffcf7;
  color: var(--ink);
  border-radius: 16px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(196, 150, 58, 0.28);
  box-shadow: none;
  transform: none;
  pointer-events: auto;
}
.geo-tip[hidden] { display: none; }
.geo-tip__name {
  display: block;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.geo-tip__addr, .geo-tip__hours {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.geo-tip__phone {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 700;
  color: var(--brass-deep);
  text-decoration: none;
}
@keyframes geo-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hero-ui {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(42,42,42,0.45);
  color: #fff;
  cursor: pointer;
}
.hero-pager { display: flex; gap: 6px; }
.hero-pager button {
  width: 28px; height: 4px;
  border: 0; border-radius: 4px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.hero-pager button.is-active { background: var(--brass-2); }
.hero-index {
  position: absolute;
  right: 1.2rem;
  top: 1.4rem;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-stats {
  position: relative;
  z-index: 3;
  background: #1c2433;
  color: #fff;
}
.stat-row {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.85rem 0 1rem;
}
.stat {
  flex: 1 1 150px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 165, 116, 0.32);
  border-radius: 14px;
  padding: 0.85rem 0.9rem 0.8rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brass-2);
}
.stat span {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255,255,255,0.72);
}

/* Sections */
.section { padding: 4.4rem 0; }
.section--alt {
  background:
    linear-gradient(180deg, rgba(255,252,247,0.22), rgba(214, 209, 198, 0.4));
}
.section--dark {
  background:
    radial-gradient(720px 320px at 0% 80%, rgba(212, 174, 98, 0.12), transparent 55%),
    radial-gradient(900px 280px at 100% 0%, rgba(212, 174, 98, 0.2), transparent 55%),
    #1c2433;
  color: #f7f1e6;
  padding: 5rem 0;
}
.section--dark h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.9rem;
  color: #fff;
}
.section--dark .lead, .section--dark .note { color: rgba(255,255,255,0.72); }
.section--dark .lead { font-size: 1.14rem; max-width: 44ch; line-height: 1.55; }
.section--dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); background: transparent; }
.section--dark a { color: #fff; }
.section--dark .kicker { color: var(--brass-2); }
.section--dark .kicker::before { background: var(--brass-2); }
.section--dark .note a { text-decoration: underline; text-underline-offset: 3px; }
.sec-head { max-width: 620px; margin-bottom: 1.25rem; }
.sec-head h2, .page-hero h1, .prose h2, .cta-band h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.sec-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0.35rem 0 0.6rem; }
.sec-head p { color: var(--muted); }

.svc-grid, .shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.shop { flex: 1 1 320px; max-width: 100%; }
.svc {
  position: relative;
  display: block;
  height: 248px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.16);
  opacity: 0;
  transform: translateY(22px);
  transition: transform .45s ease, border-color .2s, box-shadow .2s, opacity .45s ease;
}
.svc.is-in {
  opacity: 1;
  transform: none;
  transition-delay: var(--d, 0ms);
}
.svc:hover {
  transform: translateY(-5px);
  border-color: var(--brass-2);
  box-shadow: 0 22px 40px rgba(138, 100, 32, 0.16);
}
.svc__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.svc__media picture, .svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  display: block;
  transform: scale(1.02);
  transition: transform .7s ease;
}
.svc:hover .svc__media img { transform: scale(1.12); }
.svc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(255, 252, 247, 0.96) 0%,
      rgba(255, 252, 247, 0.88) 28%,
      rgba(255, 252, 247, 0.42) 52%,
      rgba(255, 252, 247, 0.08) 72%,
      transparent 88%);
  pointer-events: none;
  transition: opacity .35s ease;
}
.svc:hover .svc__media::after { opacity: 0.78; }
.svc__top {
  position: absolute;
  z-index: 2;
  top: 0.95rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}
.svc__ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 247, 0.92);
  color: var(--char);
  border: 1px solid rgba(196, 150, 58, 0.18);
  transition: transform .35s ease, background .25s, color .25s, border-color .25s;
}
.svc:hover .svc__ico {
  background: var(--char);
  color: #fff;
  border-color: var(--char);
  transform: rotate(-8deg) scale(1.06);
}
.svc__n {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(28, 36, 51, 0.38);
  padding-top: 0.2rem;
  transition: color .25s, transform .35s ease;
}
.svc:hover .svc__n {
  color: var(--brass-deep);
  transform: translateY(-2px);
}
.svc__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.05rem 1.15rem 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}
.svc h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  max-width: 18rem;
  line-height: 1.25;
}
.svc__price {
  margin: 0.22rem 0 0.7rem;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--char);
  line-height: 1.1;
}
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color .2s, gap .25s ease;
}
.svc:hover .svc__more { color: var(--char); gap: 0.55rem; }
.svc__arrow { transition: transform .28s ease; flex: none; }
.svc:hover .svc__arrow { transform: translateX(5px); }
.price {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--brass);
  font-weight: 700;
  font-size: 0.92rem;
}

.tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.tabs button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-weight: 600;
}
.tabs button.is-active { background: var(--char); color: #fff; border-color: var(--char); }
.tab-pane { display: none; }
.tab-pane.is-active { display: block; }
.price-tabs .tabs { margin-bottom: 1.15rem; }
.price-scroll { overflow: auto; border-radius: 16px; }
.price-sub {
  font-size: 1.02rem;
  margin: 1.25rem 0 0.65rem;
  color: var(--char);
}
.tab-pane .price-sub:first-child { margin-top: 0.15rem; }
.price-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.price-table th, .price-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--ink); color: #fff; font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-group { margin: 0 0 1.6rem; }
.price-group h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 0 0 0.45rem;
}
.price-group h2 a { text-decoration: none; }
.price-group .note { margin: 0 0 0.65rem; }
.price-table td:first-child { white-space: normal; }
.tab-pane .price-scroll + .price-sub { margin-top: 1.5rem; }

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.step { flex: 1 1 220px; }
.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.14);
}
.step b {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--brass-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brass-soft);
}
.step h3 { margin: 0.4rem 0 0.35rem; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.city-filter { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.shop {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.14);
}
.shop img { width: 100%; height: 170px; object-fit: cover; }
.shop__body { padding: 1.1rem 1.15rem 1.25rem; }
.shop h3 { margin: 0.25rem 0 0.35rem; }
.shop p { color: var(--muted); font-size: 0.92rem; }
.open-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--paper-2);
}
.is-open > .open-badge,
.is-open .open-badge { background: var(--moss-soft); color: var(--moss); }
.is-closed > .open-badge,
.is-closed .open-badge { background: rgba(138,74,59,0.12); color: var(--danger); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 40rem) 17.5rem;
  justify-content: start;
  gap: 1.35rem 1.6rem;
  align-items: start;
}
.about-copy { margin: 0.85rem 0 0.2rem; }
.about-grid .lead { max-width: none; }
.about-copy p { margin-bottom: 0.85rem; color: #4a453c; max-width: none; }
.about-photo, picture.about-photo, picture.about-photo img {
  min-height: 0;
  height: auto;
  max-height: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  width: 17.5rem;
  max-width: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: var(--shadow);
}
picture.about-photo { display: block; }
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.city-pills__label {
  margin: 1.05rem 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-deep);
}
.city-pills a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}
.city-pills a:hover { border-color: var(--brass-2); }
.section--svcband { padding: 1.5rem 0 1.15rem; }
.city-svc-h {
  margin: 0.1rem 0 0.85rem;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.shop-svc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.45rem;
}
.shop-svc__item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1rem 0.9rem;
  box-shadow: 0 10px 24px rgba(90, 62, 24, 0.07);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.shop-svc__item:hover {
  border-color: var(--brass-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(90, 62, 24, 0.12);
}
.shop-svc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-svc__ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(196, 150, 58, 0.12);
  color: var(--char);
  border: 1px solid rgba(196, 150, 58, 0.2);
  transition: background .15s, color .15s, border-color .15s;
}
.shop-svc__ico .ico { display: block; }
.shop-svc__item:hover .shop-svc__ico {
  background: var(--char);
  color: #fff;
  border-color: var(--char);
}
.shop-svc__n {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.shop-svc__name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.shop-svc__short {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
  min-height: 2.5em;
}
.shop-svc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.shop-svc__price {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--char);
  background: rgba(42, 42, 42, 0.06);
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
}
.shop-svc__more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brass-deep);
}
.section--plus {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 280px at 8% 0%, rgba(212, 174, 98, 0.16), transparent 58%),
    radial-gradient(640px 260px at 100% 100%, rgba(212, 174, 98, 0.1), transparent 52%),
    #2a2a2a;
}
.section--plus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 88%);
}
.plus-head { position: relative; max-width: 40rem; margin-bottom: 1.55rem; }
.section--plus h2 {
  color: #fff;
  margin: 0.28rem 0 0.55rem;
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  overflow-wrap: break-word;
}
.section--plus h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--brass-2);
}
.section--plus .lead {
  color: rgba(247, 241, 230, 0.72);
  max-width: 46ch;
  margin: 0;
}
.plus-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.plus-card {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .2s ease, border-color .2s, box-shadow .2s, background .2s;
}
.plus-card:hover {
  border-color: rgba(212, 174, 98, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.plus-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.95rem;
}
.plus-card__n {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(212, 174, 98, 0.85);
}
.plus-card__ico {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--char);
  background: var(--brass-2);
  box-shadow: 0 8px 18px rgba(196, 150, 58, 0.28);
}
.plus-card__ico .ico { display: block; }
.plus-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 0.42rem;
}
.plus-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(247, 241, 230, 0.7);
}
.section--cityband { padding: 0.3rem 0 1.05rem; }
.section--cityband .container { margin-bottom: 0.4rem; }
.section--cityband .city-pills__label { margin: 0; }
.city-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.city-ticker__track {
  display: flex;
  width: max-content;
  animation: city-ticker calc(var(--chips, 9) * 8s) linear infinite;
}
.city-ticker:hover .city-ticker__track,
.city-ticker:focus-within .city-ticker__track,
.city-ticker.is-paused .city-ticker__track {
  animation-play-state: paused;
}
.city-ticker__run {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 0.45rem;
  flex: none;
}
.city-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.85rem 0.38rem 0.78rem;
  box-shadow: 0 8px 18px rgba(90, 62, 24, 0.06);
  transition: border-color .15s, background .15s, color .15s;
}
.city-chip:hover,
.city-chip:focus-visible {
  border-color: var(--char);
  background: var(--char);
  color: #fff;
}
.city-chip__name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.city-chip__addr {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}
.city-chip:hover .city-chip__addr,
.city-chip:focus-visible .city-chip__addr {
  color: rgba(255,255,255,0.72);
}
@keyframes city-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.section--seo {
  background:
    linear-gradient(180deg, rgba(255,252,247,0.92), rgba(255,252,247,0.98));
  padding: 3rem 0 3.15rem;
}
.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18.75rem;
  gap: 1.5rem 2rem;
  align-items: start;
}
.seo-copy { min-width: 0; }
.seo-copy .kicker { margin-bottom: 0.35rem; }
.seo-copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  color: var(--char);
  margin: 0 0 0.8rem;
}
.seo-copy h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.14rem;
  line-height: 1.3;
  color: var(--char);
  margin: 1.35rem 0 0.42rem;
}
.seo-copy p {
  color: #4a453c;
  margin: 0 0 0.72rem;
  max-width: 64ch;
  font-size: 0.98rem;
}
.seo-copy a {
  color: var(--char);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(196, 150, 58, 0.55);
}
.seo-copy a:hover { text-decoration-color: var(--brass); }
.seo-photo {
  position: sticky;
  top: calc(var(--header) + 0.75rem);
  display: block;
  width: 18.75rem;
  max-width: 100%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.seo-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 30%;
}
.more-svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.more-svc__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.62rem 0.7rem;
  box-shadow: 0 8px 20px rgba(90, 62, 24, 0.06);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.more-svc__item:hover {
  border-color: var(--brass-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(90, 62, 24, 0.1);
}
.more-svc__ico {
  flex: none;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(196, 150, 58, 0.12);
  color: var(--char);
  border: 1px solid rgba(196, 150, 58, 0.2);
  transition: background .15s, color .15s, border-color .15s;
}
.more-svc__ico .ico { display: block; }
.more-svc__item:hover .more-svc__ico {
  background: var(--char);
  color: #fff;
  border-color: var(--char);
}
.more-svc__txt {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  min-width: 0;
}
.more-svc__name {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}
.more-svc__price {
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--char);
  background: rgba(42, 42, 42, 0.06);
  border-radius: 999px;
  padding: 0.1rem 0.42rem;
}
.section--shop { padding: 1.6rem 0 2.2rem; }
.city-faq { margin-top: 0.15rem; }
.city-faq .acc { gap: 0.35rem; }
.city-faq .acc-item button { padding: 0.7rem 2.4rem 0.7rem 0.9rem; }
.two--shop .city-pills__label:first-of-type { margin-top: 0.85rem; }
.checks { list-style: none; margin-top: 0.75rem; display: grid; gap: 0.4rem; }
.checks li {
  padding-left: 1.6rem;
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brass);
}

.sec-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}
.page-hero.sec-head--row,
.page-hero .sec-head--row { align-items: center; margin-bottom: 0; }
.rating-count {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: none;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 0.6rem 0.95rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 174, 98, 0.35);
}
.rating-count__score {
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.rating-count__star {
  color: var(--brass-2);
  font-size: 1.55rem;
  line-height: 1;
}
.rating-count__n {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-left: 0.25rem;
}

.reviews-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-wrap::-webkit-scrollbar { display: none; }
.reviews {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.review {
  flex: 0 0 calc((100% - 3rem) / 4);
  width: calc((100% - 3rem) / 4);
  max-width: none;
  min-width: 0;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid rgba(196, 150, 58, 0.16);
  box-sizing: border-box;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--char);
}
.review-rating .stars {
  color: var(--brass);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  line-height: 1;
}
.review q { font-size: 1.02rem; quotes: "«" "»"; overflow: visible; }
.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-who { min-width: 0; }
.review-who strong { display: block; font-size: 1rem; }
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.7rem;
  margin-top: 0.18rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.review-city {
  position: relative;
  padding-left: 0.95rem;
}
.review-city::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--brass);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.review footer { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.9rem; }
.rev-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.rev-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}
.rev-dots { display: flex; gap: 6px; margin: 0 0.4rem; }
.rev-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
}
.rev-dots button.is-active { background: var(--brass); width: 22px; border-radius: 8px; }
.reviews-page { display: grid; gap: 1rem; }
.reviews-page .review { min-width: 0; width: auto; flex: none; }

.review-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--char);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex: none;
  object-fit: cover;
}
.reviews--city .review {
  flex: 0 0 calc((100% - 2rem) / 3);
  width: calc((100% - 2rem) / 3);
}
.review q {
  position: relative;
  padding-top: 0.15rem;
}
.section--reviews .rev-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  margin-top: 1.35rem;
  padding: 1.2rem 1.35rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 150, 58, 0.2);
  box-shadow: var(--shadow);
}
.rev-cta__title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}
.rev-cta .btn { min-height: 48px; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rate-stars {
  display: flex;
  gap: 0.2rem;
}
.rate-star {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--line);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0.15rem;
  min-width: 36px;
  min-height: 44px;
}
.rate-star.is-on { color: var(--brass); }
.form-err {
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-grid, .page-hero .two { align-items: stretch; }
.contact-grid.two {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.6rem 1.8rem;
  align-items: start;
}
.lead-extra {
  margin: 0.85rem 0 0;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}
.section--dark .lead-extra { color: rgba(247, 241, 230, 0.78); }
.lead-contacts {
  display: grid;
  gap: 0.7rem;
  margin: 1.45rem 0 1.15rem;
  max-width: 30rem;
}
.lead-row {
  display: grid;
  gap: 0.15rem;
  text-decoration: none;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.06);
  border: 1px solid rgba(212, 174, 98, 0.22);
  color: #fff;
  transition: border-color .15s, background .15s;
}
.lead-row:hover {
  border-color: var(--brass-2);
  background: rgba(255, 252, 247, 0.1);
}
.lead-row__k {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-2);
  font-weight: 700;
}
.lead-row strong {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.lead-row span:last-child {
  font-size: 0.94rem;
  color: rgba(247, 241, 230, 0.62);
  font-weight: 500;
}
.lead-contacts--light .lead-row {
  background: var(--card);
  border-color: rgba(196, 150, 58, 0.18);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.lead-contacts--light .lead-row:hover { background: #fff; }
.lead-contacts--light .lead-row__k { color: var(--brass-deep); }
.lead-contacts--light .lead-row span:last-child { color: var(--muted); }
.lead-mess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.lead-row--msg strong {
  font-size: 1.02rem;
}
.lead-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}
.lead-facts span {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 174, 98, 0.32);
  color: var(--brass-2);
}
.lead-mess-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-2);
  margin-bottom: 0.5rem;
}
.page-hero .lead-mess-label { color: var(--brass-deep); }
.contact-card, .form-card, .side-cta, .hero-card {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.16);
}
.section--dark .form-card {
  padding: 1.9rem 1.75rem 1.65rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.section--dark .form-card,
.section--dark .form-card a,
.section--dark .contact-card,
.section--dark .contact-card a {
  color: var(--ink);
}
.section--dark .form-card .note,
.section--dark .form-card .check {
  color: var(--muted);
}
.section--dark .form-card .kicker { color: var(--brass-deep); }
.section--dark .form-card .kicker::before { background: var(--brass); }
.form-card > h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.4rem;
  color: var(--ink);
  line-height: 1.15;
}
.form-card__lead {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  max-width: 38ch;
}
.hero-card {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-card__meta {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(28, 36, 51, 0.9);
  color: #fff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(212, 174, 98, 0.35);
}
.hero-card__meta span { display: block; color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.mess { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.15rem; }
.mess a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--brass-soft);
}
.mess a:hover { border-color: var(--brass-2); }
.section--dark .mess a {
  background: transparent;
  border-color: rgba(212, 174, 98, 0.42);
  color: #f7f1e6;
}
.section--dark .mess a:hover {
  background: var(--brass-2);
  color: var(--ink);
  border-color: var(--brass-2);
}
.form { display: grid; gap: 0.85rem; color: var(--ink); }
.field span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 0.95rem;
  background: #fff;
  color: var(--ink);
  font-size: 1.02rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7a7368;
  opacity: 1;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  border-color: var(--brass-2);
}
.check { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.form.is-sent { display: none; }
.form-ok { color: var(--moss); font-weight: 600; }

.page-hero { padding: 2.4rem 0 0.6rem; }
.crumbs { color: var(--muted); font-size: 0.88rem; margin-bottom: 0.6rem; }
.crumbs a { text-decoration: none; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.7rem;
}
.prose p { margin-bottom: 0.9rem; }
.prose h2 { font-size: 1.7rem; margin: 1.4rem 0 0.7rem; }

.acc { display: grid; gap: 0.6rem; }
.acc-item { background: var(--card); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.acc-item.is-open { border-color: var(--brass-2); }
.acc-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.05rem 3rem 1.05rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
.acc-item button::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  -webkit-text-fill-color: var(--brass);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}
.acc-item.is-open button::after { content: "–"; }
.acc-item .acc-body { display: none; padding: 0 1.15rem 1.15rem; color: var(--muted); max-width: 70ch; }
.acc-item.is-open .acc-body { display: block; }
.acc-item.is-open button { color: var(--ink); -webkit-text-fill-color: var(--ink); }

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cta-band p { margin-top: 0.5rem; max-width: 46ch; }

/* Footer */
.footer {
  background:
    radial-gradient(640px 220px at 100% 0%, rgba(196, 150, 58, 0.08), transparent 52%),
    #0b0b0b;
  color: #e8e4dc;
  padding: 3.4rem 0 6.5rem;
  border-top: 1px solid rgba(196, 150, 58, 0.42);
}
.footer a { color: #e8e4dc; text-decoration: none; }
.footer .logo span { color: rgba(255,255,255,0.42); }
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand p { color: rgba(255,255,255,0.55); margin: 0.75rem 0 1.1rem; max-width: 40ch; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 174, 98, 0.28);
  display: grid; place-items: center;
  color: var(--brass-2);
  background: rgba(255,255,255,0.03);
  transition: background .15s, border-color .15s, color .15s;
}
.footer-social a:hover {
  background: var(--brass-2);
  color: #0b0b0b;
  border-color: var(--brass-2);
}
.footer-cta {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-phone {
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}
.footer-cta .btn-cta {
  background: #f3eee4;
  color: #1a1a1a;
  box-shadow: none;
  white-space: nowrap;
}
.footer-cta .btn-cta:hover { background: #fff; }
.footer__in {
  display: grid;
  grid-template-columns: 1.15fr 1.1fr 0.95fr;
  gap: 2rem 1.6rem;
}
.footer h4 {
  margin-bottom: 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-2);
}
.footer-links, .footer-cities { display: grid; gap: 0.1rem; }
.footer-links a, .footer-cities a, .footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.38rem 0;
  color: rgba(232, 228, 220, 0.82);
  font-size: 0.97rem;
  transition: color .15s, transform .15s;
}
.footer-links a .ico,
.footer-cities a .ico,
.footer-contact a .ico {
  flex: none;
  color: var(--brass-2);
  opacity: 0.9;
}
.footer-links a:hover,
.footer-cities a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-cities { grid-template-columns: 1fr 1fr; }
.footer-contact { display: grid; gap: 0.12rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
}
.studio { opacity: 0.8; }

.fab {
  position: fixed;
  left: 1.35rem;
  right: auto;
  bottom: 1.35rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.fab-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  pointer-events: none;
}
.fab.is-open .fab-list { pointer-events: auto; }
.fab-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #141414;
  color: #f3eee4;
  text-decoration: none;
  border: 1px solid rgba(212, 174, 98, 0.28);
  border-radius: 999px;
  padding: 0.32rem 0.9rem 0.32rem 0.32rem;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transform: translateY(22px) scale(0.86);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.32, 1),
    opacity 0.28s ease,
    visibility 0.28s,
    border-color 0.15s,
    background 0.15s;
  transition-delay: calc((5 - var(--i, 1)) * 40ms);
}
.fab.is-open .fab-item {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  transition-delay: calc(var(--i, 1) * 55ms);
}
.fab-item:hover {
  background: #1c1c1c;
  border-color: var(--brass-2);
}
.fab-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 174, 98, 0.16);
  color: var(--brass-2);
  flex: none;
}
.fab-ico .ico, .fab-ico svg { display: block; }
.fab-toggle {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.45rem 1.05rem 0.45rem 0.45rem;
  border: 1px solid rgba(212, 174, 98, 0.45);
  border-radius: 999px;
  background: #0b0b0b;
  color: #f3eee4;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  position: relative;
  overflow: visible;
}
.fab-toggle__label {
  white-space: nowrap;
  max-width: 12rem;
  overflow: hidden;
  transition: max-width 0.28s ease, opacity 0.2s ease, margin 0.28s ease;
}
.fab.is-open .fab-toggle { padding: 0.45rem; }
.fab.is-open .fab-toggle__label {
  max-width: 0;
  opacity: 0;
  margin: 0;
}
.fab-toggle__bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brass);
  color: #0b0b0b;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
}
.fab-toggle__ico {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  transition: opacity 0.2s, transform 0.28s;
}
.fab-toggle__ico--x { opacity: 0; transform: rotate(-60deg) scale(0.6); }
.fab.is-open .fab-toggle__ico--chat { opacity: 0; transform: rotate(40deg) scale(0.6); }
.fab.is-open .fab-toggle__ico--x { opacity: 1; transform: none; }
.fab-toggle::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(212, 174, 98, 0.45);
  animation: fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.fab.is-open .fab-toggle::after { display: none; }
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.22); opacity: 0; }
}

.dock {
  position: fixed;
  left: 0.7rem;
  right: auto;
  bottom: calc(0.65rem + env(safe-area-inset-bottom));
  display: none;
  width: auto;
  max-width: calc(100% - 4.6rem);
  gap: 0.22rem;
  padding: 0.22rem;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28, 36, 51, 0.12);
  z-index: 30;
}
.dock .btn {
  flex: none;
  padding: 0.38rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: none;
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: rgba(21,32,51,0.45);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 120;
  padding: max(0.85rem, env(safe-area-inset-top)) 0.85rem max(0.85rem, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal.is-open { display: flex; }
.modal__box {
  width: 100%;
  max-width: 480px;
  margin: auto;
  background: var(--card);
  color: var(--ink);
  border-radius: 22px;
  padding: 1.4rem;
  position: relative;
  flex: none;
}
.modal__close {
  position: absolute;
  right: 0.8rem; top: 0.6rem;
  border: 0; background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1;
}

.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem 1rem; }
.notfound h1 { font-family: var(--serif); font-size: 4rem; font-weight: 700; }

@media (max-width: 1199px) {
  .review {
    flex: 0 0 calc((100% - 2rem) / 3);
    width: calc((100% - 2rem) / 3);
  }
  .reviews--city .review {
    flex: 0 0 calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 980px) {
  body {
    background-size: 820px auto, 180px 180px, auto, auto, auto;
    background-position: 120% -2%, 0 0, 0 0, 0 0, 0 0;
  }
  .geo { grid-template-columns: 1fr; }
  .geo-map {
    position: relative;
    top: auto;
    min-height: 0;
    order: -1;
    padding: 0.75rem 0.65rem 0.65rem;
  }
  .geo-svg { overflow: hidden; }
  .two, .about-grid, .contact-grid, .contact-grid.two, .two--shop, .footer__in, .seo-grid { grid-template-columns: 1fr; }
  .seo-photo {
    position: static;
    order: -1;
    width: min(22rem, 100%);
    justify-self: start;
  }
  .viz-hero ~ .section.section--seo { padding: 2.05rem 0 2.2rem; }
  .rev-cta { flex-direction: column; align-items: stretch; }
  .rev-cta .btn { width: 100%; }
  .contact-grid.two > * { min-width: 0; }
  .contact-grid.two .form-card { order: -1; }
  .section--dark { padding: 2.4rem 0 2.6rem; }
  .section--dark h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .section--dark .lead { font-size: 1rem; max-width: none; }
  .lead-extra { font-size: 0.95rem; max-width: none; }
  .lead-contacts { max-width: none; margin: 1rem 0 0.85rem; gap: 0.5rem; }
  .lead-row { padding: 0.78rem 0.9rem; }
  .lead-row strong { font-size: 1.08rem; overflow-wrap: anywhere; }
  .lead-mess-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0.45rem; }
  .lead-row--msg { padding: 0.7rem 0.4rem; text-align: center; justify-items: center; }
  .lead-row--msg .lead-row__k { letter-spacing: 0.08em; }
  .lead-row--msg strong { font-size: 0.82rem; }
  .form-card, .section--dark .form-card, .side-cta { padding: 1.15rem 1.05rem 1.1rem; }
  .form-card > h3 { font-size: 1.45rem; }
  .form-card__lead { margin-bottom: 0.9rem; }
  .form { gap: 0.7rem; }
  .field input, .field select, .field textarea { font-size: 16px; min-width: 0; }
  .form .btn { width: 100%; justify-content: center; }
  .reviews { gap: 0; }
  .reviews-wrap { overflow-x: auto; overflow-y: hidden; }
  .review {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
  }
  .shop-svc { grid-template-columns: 1fr 1fr; }
  .plus-grid { grid-template-columns: 1fr 1fr; }
  .plus-card { padding: 1rem 0.95rem 1.05rem; }
  .viz-hero ~ .section.section--plus { padding: 3.15rem 0 2.7rem; }
  .svc-grid, .shop-grid, .steps, .stat-row { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer__top {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-phone {
    display: block;
    white-space: nowrap;
    font-size: 1.2rem;
    text-align: center;
  }
  .footer-cta .btn-cta {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }
  .header__cta .phone-link, .header__cta .btn { display: none; }
  .header__cta { margin-left: auto; }
  .burger { display: flex; margin-left: auto; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fffcf7;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    margin: 0;
    gap: 0;
    z-index: 80;
  }
  .nav.is-open { display: flex; }
  .nav-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.05rem 1.15rem 0.7rem;
    flex: none;
  }
  .nav-sheet__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .nav-sheet__close {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
  }
  .nav-sheet__list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.35rem 1.15rem 1rem;
    overflow: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }
  .nav-sheet__foot {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem calc(1.05rem + env(safe-area-inset-bottom));
    flex: none;
    background: #fffcf7;
  }
  .nav-sheet__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
  }
  .nav-sheet__phone .ico { color: var(--brass-deep); }
  .nav-sheet__cta {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    padding: 0.88rem 1.1rem;
    box-shadow: none;
  }
  .modal {
    z-index: 120;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
  .modal__box {
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(0.9rem + env(safe-area-inset-top, 0px)) 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  }
  .modal__close {
    position: sticky;
    top: 0;
    float: right;
    width: 2.45rem;
    height: 2.45rem;
    margin: -0.2rem -0.35rem 0.4rem 0;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .modal h3 { padding-right: 2.8rem; }
  .nav-drop { width: 100%; margin: 0; }
  .nav > a, .nav > .nav-drop { margin: 0; }
  .nav-drop::after { display: none; }
  .nav-drop__btn { display: none; }
  .nav-drop--acc > .nav-drop__link { display: none !important; }
  .nav-drop--acc > .nav-drop__btn.nav-acc {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.48rem 0.85rem 0.48rem 0.48rem;
    background: #fff;
    border: 1.5px solid #e8dcc4;
    border-radius: 999px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
  }
  .nav-drop--acc.is-open > .nav-drop__btn.nav-acc {
    background: var(--brass-2);
    border-color: var(--brass-2);
  }
  .nav-item__ico {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #f3eee4;
    color: var(--char);
    border: 0;
    flex: none;
  }
  .nav-item__ico .ico { display: block; }
  .nav-item__chev {
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 1.6rem;
    height: 1.6rem;
    color: var(--muted);
    transition: transform .2s ease;
  }
  .nav-drop--acc.is-open .nav-item__chev { transform: rotate(180deg); color: var(--ink); }
  .nav-sheet__list > a.nav-item,
  .nav-drop:not(.nav-drop--acc) > .nav-drop__link.nav-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.48rem 1rem 0.48rem 0.48rem;
    background: #fff;
    border: 1.5px solid #e8dcc4;
    border-radius: 999px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: none;
  }
  .nav-item.is-active,
  .nav-drop__link.nav-item.is-active,
  .nav a.nav-item.is-active {
    background: var(--brass-2);
    color: var(--ink);
    border-color: var(--brass-2);
  }
  .nav-item.is-active .nav-item__ico,
  .nav a.nav-item.is-active .nav-item__ico {
    background: rgba(255, 252, 247, 0.55);
    color: var(--ink);
    border-color: transparent;
  }
  .nav a.nav-item:hover { color: var(--ink); }
  .nav .drop:not(.drop--svc),
  .nav-drop:not(.nav-drop--acc) .drop,
  .nav-drop:not(.is-open) .drop {
    display: none !important;
  }
  .nav-drop--acc.is-open > .drop--svc {
    display: grid !important;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0.15rem 0 0.1rem 0.55rem;
    margin: 0.15rem 0 0;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .nav-drop--acc .drop-svc {
    background: #fff;
    border: 1.5px solid #e8dcc4;
    border-radius: 18px;
    padding: 0.42rem 0.55rem;
  }
  .nav-drop--acc .drop-svc .drop-ico {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: #f3eee4;
    border: 0;
  }
  .hero-slide__photo::after {
    background:
      linear-gradient(180deg,
        transparent 55%,
        rgba(228,225,216,0.45) 82%,
        #e4e1d8 100%);
  }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .hero-slide,
  .hero-slide.is-active {
    grid-template-columns: 1fr;
    position: relative;
    inset: auto;
  }
  .hero-slide:not(.is-active) { display: none; }
  .hero-slide__photo {
    grid-column: 1;
    grid-row: 1;
    min-height: 14.5rem;
    height: 14.5rem;
  }
  .hero-slide__in {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    max-width: none;
    width: auto;
    margin: 0;
    padding: 1.05rem 1rem 1.25rem;
    height: auto;
  }
  .hero-slide__copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
  }
  .hero-slide__in .kicker,
  .hero-slide__in .hero-actions,
  .hero-slide__in .hero-pills {
    justify-content: center;
  }
  .hero h1, .hero-title, .hero .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero h1, .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-ui { top: 10.4rem; bottom: auto; right: 0.85rem; }
  .hero-index { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
  .about-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .about-photo,
  picture.about-photo {
    width: calc(100% + 2rem);
    max-width: none;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    margin: 0.35rem -1rem 0;
    border-radius: 0;
    box-shadow: none;
  }
  picture.about-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    border-radius: 0;
    aspect-ratio: 3 / 4;
    box-shadow: none;
  }
  .viz-hero, .contact-hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .viz-hero__photo, .contact-hero__photo {
    grid-column: 1;
    grid-row: 1;
    min-height: 14.5rem;
    height: 14.5rem;
  }
  .viz-hero__in, .contact-hero__in {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 0;
    width: auto;
    max-width: none;
    margin: 0;
    background: #e4e1d8;
    padding: 1.05rem 1rem 1.15rem;
    align-items: flex-start;
    text-align: left;
  }
  .viz-hero__copy {
    max-width: none;
    align-items: flex-start;
    text-align: left;
  }
  .viz-hero h1, .contact-hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    text-align: left;
  }
  .viz-hero .lead, .contact-hero .lead,
  .viz-hero .crumbs, .contact-hero .crumbs {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .viz-hero .hero-marquee,
  .contact-hero .hero-marquee {
    grid-column: 1;
    grid-row: 3;
  }
  .hero-key {
    right: 1.1rem;
    top: 46%;
    width: 3.1rem;
  }
  .viz-hero__photo img, .contact-hero__photo img { object-position: var(--pos, 70% 35%); }
  .viz-hero__photo::after, .contact-hero__photo::after {
    background:
      linear-gradient(180deg,
        transparent 55%,
        rgba(228,225,216,0.55) 82%,
        #e4e1d8 100%);
  }
}
@media (max-width: 640px) {
  .svc-grid, .shop-grid, .steps, .stat-row, .shop-svc { grid-template-columns: 1fr; }
  .plus-grid { grid-template-columns: 1fr; gap: 0.55rem; }
  .svc { height: 210px; }
  .dock { display: flex; left: auto; right: 0.7rem; }
  .footer { padding-bottom: 4.2rem; }
  .hero-pills { display: none; }
  .fab { bottom: calc(0.65rem + env(safe-area-inset-bottom)); left: 0.7rem; right: auto; }
  .fab-toggle { padding: 0.4rem; }
  .fab-toggle__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .reviews, .svc, .fab-item, .fab-toggle__ico, .fab-toggle__label, .drop, .drop a { transition: none; }
  .svc { opacity: 1; transform: none; }
  .svc:hover .svc__media img { transform: none; }
  .svc:hover .svc__ico,
  .svc:hover .svc__n,
  .svc:hover .svc__arrow { transform: none; }
  .fab-toggle::after, .geo-pin__pulse, .city-ticker__track, .hero-marquee__track, .hero-key, .hero-key__glow, .viz-hero__photo img, .contact-hero__photo img, .hero-slide__photo img { animation: none; }
  .hero-key { transform: translateY(-50%) rotate(-8deg); }
  .hero-marquee__track { transform: none; }
  .hero-marquee__run + .hero-marquee__run { display: none; }
  .city-ticker {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    padding: 0 1rem;
  }
  .city-ticker__track { width: auto; flex-wrap: wrap; justify-content: center; }
  .city-ticker__run { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .city-ticker__run[aria-hidden="true"] { display: none; }
}
