: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: "Instrument Serif", Georgia, serif;
  --sans: Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100%;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(900px 420px at 8% -8%, rgba(212, 174, 98, 0.22), transparent 58%),
    radial-gradient(700px 380px at 100% 12%, rgba(61, 92, 74, 0.08), transparent 52%);
  font-family: var(--sans);
  line-height: 1.55;
  font-size: 17px;
}
::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: 2.4rem;
  align-items: start;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.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 > details { margin: 0 0.55rem; }
.nav a, .nav summary {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  padding: 0.35rem 0;
}
.nav a.is-active, .nav a:hover, .nav summary:hover { color: var(--brass-deep); }
.nav details { position: relative; }
.nav summary::-webkit-details-marker { display: none; }
.drop {
  position: absolute;
  top: calc(100% + 10px);
  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;
}
.drop--wide { min-width: 280px; grid-template-columns: 1fr; }
.drop a {
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  font-weight: 500;
}
.drop a:hover { background: var(--paper); }
.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;
  height: 88vh;
  min-height: 640px;
  max-height: 860px;
  overflow: hidden;
  background: var(--paper-2);
}
.hero-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide__media {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.hero-slide__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: #1c2433;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slide__photo::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(90deg,
      #f3eee4 0%,
      #f3eee4 42%,
      rgba(243,238,228,0.96) 54%,
      rgba(243,238,228,0.4) 68%,
      rgba(243,238,228,0.08) 82%,
      transparent 100%);
}
.hero-slide__in {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 7rem;
  max-width: 640px;
}
.hero h1, .hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
  color: var(--ink);
}
.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: 42ch;
}
.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;
}
.hero-ui {
  position: absolute;
  right: 1.2rem;
  bottom: 7.4rem;
  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: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(28, 36, 51, 0.78), #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.55), rgba(232, 223, 207, 0.65));
}
.section--dark {
  background:
    radial-gradient(900px 280px at 100% 0%, rgba(212, 174, 98, 0.2), transparent 55%),
    #1c2433;
  color: #f7f1e6;
}
.section--dark .lead, .section--dark .note { color: rgba(255,255,255,0.72); }
.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); }
.sec-head { max-width: 620px; margin-bottom: 2rem; }
.sec-head h2, .page-hero h1, .prose h2, .cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  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, .shop { flex: 1 1 320px; max-width: 100%; }
.svc {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(196, 150, 58, 0.16);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.svc:hover { transform: translateY(-3px); border-color: var(--brass-2); box-shadow: 0 22px 40px rgba(138, 100, 32, 0.14); }
.svc picture, .svc img { width: 100%; height: 190px; object-fit: cover; }
.svc__body { padding: 1.1rem 1.15rem 1.25rem; }
.svc h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.svc p { color: var(--muted); font-size: 0.92rem; }
.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-table td:last-child { font-weight: 700; white-space: nowrap; color: var(--brass-deep); }
.tab-pane .price-scroll + .price-sub { margin-top: 1.5rem; }

.calc {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.2);
}
.calc__form { padding: 1.5rem 1.45rem 1.6rem; display: grid; gap: 1.15rem; }
.calc-step > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.calc-step > span i {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}
.calc-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.calc-pills button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  line-height: 1.25;
}
.calc-pills--items button, .calc-pills--brands button {
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.5rem 0.8rem;
}
.calc-pills button small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
}
.calc-pills button.is-active { background: var(--char); color: #fff; border-color: var(--char); }
.calc-pills button.is-active small { color: rgba(255,255,255,0.7); }
.calc-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: #fff;
}
.calc-qty button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--char);
}
.calc-qty strong {
  min-width: 1.6rem;
  text-align: center;
  font-size: 1.05rem;
}
.calc__out {
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(212, 174, 98, 0.28), transparent 60%),
    linear-gradient(165deg, #2a3344 0%, #1c2433 62%, #241c14 100%);
  color: #fff;
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.calc-out__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-2);
  font-weight: 600;
}
.calc-out__sum {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0.45rem 0 0.9rem;
  color: var(--brass-2);
}
.calc-out__lines {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}
.calc__out .note { color: rgba(255,255,255,0.58); }
.calc__out .hero-actions { margin: 1.1rem 0 0.8rem; }
.calc__out .btn-cta { background: #fff; color: var(--char); }
.calc__out .btn-cta:hover { background: #fff6e6; }
.calc__out .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.calc__out .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.calc-out__more { font-size: 0.88rem; color: rgba(255,255,255,0.62); margin-top: auto; }
.calc-out__more a { color: #fff; }

.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: 400;
  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: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}
.about-photo, picture.about-photo, picture.about-photo img {
  min-height: 460px;
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
picture.about-photo { display: block; }
.checks { list-style: none; margin-top: 1rem; display: grid; gap: 0.55rem; }
.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: 2rem;
}
.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.85rem 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 174, 98, 0.35);
}
.rating-count__score {
  font-family: var(--sans);
  font-size: 2rem;
  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;
}
.review {
  flex: 0 0 min(380px, 86%);
  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);
}
.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: "«" "»"; }
.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; }

.contact-grid, .page-hero .two { align-items: stretch; }
.contact-card, .form-card, .side-cta, .hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 150, 58, 0.16);
}
.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.8rem; }
.mess a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--brass-soft);
}
.mess a:hover { border-color: var(--brass-2); }
.form { display: grid; gap: 0.75rem; }
.field span { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: #fffdf8;
}
.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.88rem; 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;
}
.acc-item button::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  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(--char); }

.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(800px 260px at 0% 0%, rgba(212, 174, 98, 0.16), transparent 50%),
    var(--char);
  color: #ececec;
  padding: 3rem 0 6.5rem;
  border-top: 3px solid var(--brass);
}
.footer a { color: #ececec; text-decoration: none; }
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.8rem;
}
.footer-brand p { color: rgba(255,255,255,0.65); margin: 0.7rem 0 1rem; max-width: 40ch; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 174, 98, 0.35);
  display: grid; place-items: center;
  color: var(--brass-2);
}
.footer-cta { display: flex; gap: 0.6rem; align-items: flex-start; flex-wrap: wrap; }
.footer-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.2); }
.footer__in {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer h4 { margin-bottom: 0.7rem; font-size: 0.95rem; color: var(--brass-2); }
.footer-links, .footer-cities { display: grid; gap: 0.35rem; }
.footer-links a, .footer-cities a { display: block; margin: 0.15rem 0; }
.footer-cities { grid-template-columns: 1fr 1fr; }
.footer-contact { display: grid; gap: 0.45rem; }
.footer-contact a { display: flex; gap: 0.5rem; align-items: center; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.studio { opacity: 0.8; }

.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: 0.5rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(243, 238, 228, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 30;
}
.dock .btn { flex: 1; }

.modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(21,32,51,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__box {
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border-radius: 22px;
  padding: 1.4rem;
  position: relative;
}
.modal__close {
  position: absolute;
  right: 0.8rem; top: 0.6rem;
  border: 0; background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.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: 400; }

@media (max-width: 980px) {
  .two, .about-grid, .contact-grid, .footer__in, .calc { grid-template-columns: 1fr; }
  .svc-grid, .shop-grid, .steps, .stat-row { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .header__cta .phone-link, .header__cta .btn { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header); right: 0; bottom: 0; left: 0;
    background: var(--paper);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 2rem;
    overflow: auto;
    margin: 0;
    gap: 0;
  }
  .nav.is-open { display: flex; }
  .nav details { width: 100%; }
  .drop, .drop--wide {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0.2rem 0 0.6rem 0.4rem;
  }
  .hero-slide__photo::after {
    background:
      linear-gradient(180deg,
        rgba(243,238,228,0.12) 0%,
        rgba(243,238,228,0.35) 38%,
        rgba(243,238,228,0.94) 62%,
        #f3eee4 78%);
  }
  .hero { height: 86vh; min-height: 560px; max-height: none; }
  .hero-slide__in {
    max-width: none;
    justify-content: flex-end;
    padding: 1rem 0 7.2rem;
    height: 100%;
  }
  .hero h1, .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-ui { bottom: 6.6rem; }
  .hero-index { color: var(--ink); text-shadow: none; }
  .about-photo { min-height: 380px; }
}
@media (max-width: 640px) {
  .svc-grid, .shop-grid, .steps, .stat-row { grid-template-columns: 1fr; }
  .dock { display: flex; }
  .footer { padding-bottom: 7.5rem; }
  .hero-pills { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .reviews, .svc { transition: none; }
}
