/* Zvezda — warm clean v4 (fonts self-hosted, no render-blocking Google import) */
:root {
  --ink: #101820;
  --ink-2: #1a2c3d;
  --wash: #f6f3ee;
  --wash-2: #efe9df;
  --mist: #fffcf7;
  --white: #ffffff;
  --gold: #e8a91a;
  --gold-h: #f5bc2e;
  --gold-soft: rgba(232, 169, 26, 0.16);
  --teal: #0e7c86;
  --teal-soft: rgba(14, 124, 134, 0.12);
  --aqua: var(--teal);
  --aqua-soft: var(--teal-soft);
  --muted: #3f474f;
  --line: #e4ddd2;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 36px rgba(16, 24, 32, 0.08);
  --shadow-lg: 0 28px 64px rgba(16, 24, 32, 0.14);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI", Arial, sans-serif;
  --wrap-max: 1200px;
  --pad-x: 24px;
  --header-h: 76px;
  --text: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --h1: clamp(1.85rem, 1.4rem + 2.2vw, 3.6rem);
  --h2: clamp(1.35rem, 1.15rem + 1vw, 2.15rem);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ink-2); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

/* ── Header ── */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,252,247,.9);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(228,221,210,.9);
  box-shadow: 0 8px 28px rgba(16, 24, 32, 0.05);
}
.top__inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.logo__mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #f0d060, var(--gold));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 4px 10px rgba(184,144,31,.35));
}
.logo__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: .02em;
}
.logo__sub {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.menu a {
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.menu a:hover { background: var(--gold-soft); color: var(--ink); }
.menu a.is-on {
  color: var(--ink);
  background: var(--gold-soft);
}

.top__phone {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  white-space: nowrap;
}
.top__phone:hover { color: var(--gold); }
.top__cta { display: inline-flex; padding: 10px 18px; font-size: .85rem; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #0e7c86, #0a5f68);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(14,124,134,.32);
}
.btn--primary:hover { background: #0e7c86; color: var(--white); }
.btn--gold {
  background: linear-gradient(135deg, #e0bc4a, var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(184,144,31,.3);
}
.btn--gold:hover { background: var(--gold-h); color: var(--ink); }
.btn--ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--white); }
.btn--full { width: 100%; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--wash-2);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--ink);
}

/* ── Hero (cover + затемнение) ── */
.block--hero {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  margin-top: calc(-1 * var(--header-h));
  padding-top: 0;
}
.block--hero .hero--cover {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  max-height: none;
  margin-top: 0;
  padding-top: var(--header-h);
  padding-bottom: 40px;
}
.block--hero .hero-strip {
  flex: 0 0 auto;
}
.hero--cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a2c3d;
}
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
.hero__media img {
  object-fit: cover;
  object-position: 70% center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(16,24,32,.7) 0%, rgba(16,24,32,.35) 42%, rgba(16,24,32,.08) 72%, transparent 100%),
    linear-gradient(0deg, rgba(16,24,32,.4) 0%, transparent 45%);
}
.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding-top: 32px;
  text-align: left;
}
.hero__eyebrow {
  margin: 0 0 14px;
  font-size: clamp(.68rem, .62rem + .3vw, .78rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff6d6;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero--cover h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.hero--cover .hero__text {
  margin: 0 0 24px;
  font-size: clamp(.95rem, .88rem + .35vw, 1.08rem);
  color: #fff;
  max-width: 36em;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero--cover .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.btn--outline-light {
  background: rgba(16,24,32,.28);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.85);
  box-shadow: none;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

.hero-strip {
  background: linear-gradient(90deg, #101820 0%, #1a2c3d 55%, #0e7c86 100%);
  color: rgba(255,255,255,.88);
  border-bottom: none;
  box-shadow: 0 -12px 40px rgba(16, 24, 32, 0.16);
}
.hero-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 20px 24px;
  padding-block: 22px;
}
.hero-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .82rem;
}
.hero-strip__item strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-strip__links {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.hero-strip__links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 1.15rem;
  transition: background .15s, transform .15s;
}
.hero-strip__links a:hover {
  background: rgba(255,255,255,.28);
  color: #fff;
  transform: translateY(-2px);
}
.ico {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: -0.2em;
  fill: currentColor;
}
.hero-strip__links .ico--wa { color: #b8ffd0; }
.hero-strip__links .ico--tg { color: #d6f0ff; }
.mob-bar a .ico { font-size: 1.25rem; margin-bottom: 2px; }
.mob-bar a .ico--wa { color: #25d366; }
.mob-bar a .ico--tg { color: #229ed9; }
.mob-bar a .ico:not(.ico--wa):not(.ico--tg) { color: var(--gold); }

.faq {
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--aqua);
  font-weight: 800;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
.faq__item p a,
.section__desc a,
.about__text a,
.info-list a,
.gallery__more a {
  color: #0a5f68;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__item p a:hover,
.section__desc a:hover,
.about__text a:hover,
.info-list a:hover,
.gallery__more a:hover {
  color: #084850;
}

/* legacy hero grid (unused) */
.hero__grid { display: none; }

/* ── Sections / blocks ── */
.section {
  padding: 0;
}
.block:not(.block--hero):not(.block--foot) {
  min-height: calc(100svh - var(--header-h));
  height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-block: clamp(28px, 4vh, 48px);
  overflow: visible;
}
.block__inner {
  width: 100%;
}
.block--contact {
  justify-content: center;
  align-items: center;
}
.block--contact .block__inner {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block--contact .section__head {
  max-width: none;
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}
.block--contact .section__title {
  margin-left: auto;
  margin-right: auto;
}
.section__head--compact {
  margin-bottom: 28px;
}
.block--foot {
  scroll-snap-align: end;
  scroll-snap-stop: always;
  min-height: auto;
  height: auto;
}
.section--white {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(232,169,26,.1), transparent 45%),
    linear-gradient(180deg, #fff, #fffcf7);
  border-top: 1px solid rgba(228,221,210,.8);
  border-bottom: 1px solid rgba(228,221,210,.8);
}
.section--cream {
  background: transparent;
}
.section--wash,
.section--sky {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(232,169,26,.16), transparent 42%),
    linear-gradient(145deg, #fffcf7 0%, var(--wash) 55%, #efe9df 100%);
  color: var(--ink);
  border: none;
}
.section--ink {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,169,26,.22), transparent 45%),
    linear-gradient(145deg, #1a2c3d 0%, #101820 55%, #0e7c86 100%);
  color: rgba(255,255,255,.92);
  border: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.about__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-height: 280px;
}
.about__media picture,
.about__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.about__text p {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}
.about__text p:last-child { margin-bottom: 0; }
.section--wash .about__text p,
.section--sky .about__text p { color: #3a424c; }

.section__head {
  margin-bottom: 28px;
  max-width: 580px;
}
.section__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a5f68;
  margin-bottom: 12px;
}
.section__title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
  text-wrap: balance;
}
.section__title--light { color: #fff !important; }
.section__tag--light { color: #ffe8a0; }
.section__desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--gold-h));
  opacity: 0;
  transition: opacity .2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(58,158,201,.35);
}
.card:hover::before { opacity: 1; }
.card__num {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}
.card p {
  margin: 0 0 16px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.card__price {
  font-size: .98rem;
  font-weight: 800;
  color: var(--ink);
}

/* Steps */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.timeline__item {
  position: relative;
  padding-top: 48px;
}
.timeline__item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: #5a7a82;
  line-height: 1;
}
.timeline__item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}
.timeline__item p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
}

/* Cities */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s, background .15s;
}
.tag:hover {
  border-color: var(--aqua);
  background: var(--aqua-soft);
  transform: translateY(-2px);
}
.tag:hover {
  border-color: rgba(184,144,31,.5);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--wash-2);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__more {
  margin: 20px 0 0;
  text-align: center;
  font-weight: 700;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  width: 100%;
}
.info-block {
  text-align: left;
}
.info-block h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}
.info-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.info-list--last { margin-bottom: 0; }
.info-list li {
  margin-bottom: 6px;
  font-size: .9rem;
  line-height: 1.45;
}
.info-list strong { color: var(--ink); }
.info-list a { font-weight: 600; }

.form-panel {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  justify-self: center;
}
.form-panel h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: block;
  margin-bottom: 10px;
}
.field span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: .9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--sky);
  transition: border-color .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink-2);
  background: var(--white);
}
.field textarea {
  resize: vertical;
  min-height: 56px;
  max-height: 96px;
}
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 8px; font-size: .82rem; min-height: 1.2em; }
.form-msg.ok { color: #1a7f4b; }
.form-msg.err { color: #b42318; }
.block--contact .btn--full { min-height: 44px; padding: 12px 20px; }

/* Footer */
.foot {
  background: linear-gradient(145deg, #1a2c3d 0%, #101820 100%);
  color: rgba(255,255,255,.92);
  padding: 48px 0 24px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.foot strong { color: var(--white); display: block; margin-bottom: 8px; }
.foot a { color: var(--gold-h); }
.foot a:hover { color: var(--white); }
.foot__copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: rgba(255,255,255,.88);
}

/* ── Prices page ── */
.prices-hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232,169,26,.28), transparent 50%),
    linear-gradient(145deg, #1a2c3d, #101820);
  color: #fff;
}
.prices-hero h1 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.prices-hero__desc {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
}
.prices-hero__desc a { color: #ffe8a0; }

.prices-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(245,250,253,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.prices-jump a {
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(10,22,40,.04);
  transition: border-color .15s, background .15s;
}
.prices-jump a:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--ink);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 48px;
}

.price-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-cat__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, rgba(184,144,31,.08), transparent);
  border-bottom: 1px solid var(--line);
}
.price-cat__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--gold);
}
.price-cat__head h2 {
  margin: 0;
  flex: 1;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.price-cat__from {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px 12px;
  align-items: baseline;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(221,213,200,.6);
  font-size: .9rem;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(184,144,31,.04); }
.price-row__name {
  grid-column: 1;
  color: var(--ink);
  line-height: 1.4;
}
.price-row__unit {
  font-size: .75rem;
  color: var(--muted);
  text-align: right;
}
.price-row__val {
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink);
  white-space: nowrap;
  text-align: right;
  min-width: 72px;
}

.prices-cta {
  margin: 16px 0 64px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(232,169,26,.3), transparent 55%),
    linear-gradient(135deg, #1a2c3d, #0e7c86);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}
.prices-cta h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}
.prices-cta p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.prices-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.price-note {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  margin: 0 0 24px;
}

@media (max-width: 760px) {
  .prices-grid { grid-template-columns: 1fr; }
  .price-row {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 4px 12px;
  }
  .price-row__unit {
    grid-column: 1;
    text-align: left;
    margin-top: -4px;
  }
  .price-row__val {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    white-space: nowrap;
  }
  .prices-cta { padding: 24px 18px; text-align: center; }
  .prices-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .prices-cta__actions .btn { width: 100%; }
  .prices-jump {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .prices-hero { padding: 40px 0 28px; }
  .prices-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .modal__box { padding: 22px 18px; width: 100%; max-width: 100%; }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,28,46,.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--sky);
  cursor: pointer;
  font-size: 1.2rem;
}
.modal__box h2 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Mobile sticky bar */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mob-bar__inner {
  display: flex;
  justify-content: space-around;
  max-width: 400px;
  margin: 0 auto;
}
.mob-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  min-width: 48px;
  min-height: 48px;
  font-size: .7rem;
  font-weight: 600;
  color: #2f363e;
}
.mob-bar a .ico { width: 1.35rem; height: 1.35rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  :root { --pad-x: 20px; }
  html { scroll-snap-type: y proximity; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }

  .block--hero {
    height: auto;
    min-height: 100svh;
  }
  .block--hero .hero--cover {
    min-height: 52svh;
    padding: calc(var(--header-h) + 28px) 0 36px;
  }
  .block:not(.block--hero):not(.block--foot) {
    height: auto;
    min-height: calc(100svh - var(--header-h) - 72px);
    overflow: visible;
    padding-block: 40px;
    justify-content: flex-start;
  }
  .block--contact {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero__media img { object-position: center 28%; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(16,24,32,.25) 0%, rgba(16,24,32,.5) 48%, rgba(16,24,32,.78) 100%);
  }
  .hero__body {
    max-width: none;
    padding-top: 0;
  }
  .hero-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
  }
  .hero-strip__item { align-items: center; }
  .hero-strip__links {
    grid-column: 1 / -1;
    margin-left: 0;
    justify-content: center;
    justify-self: center;
  }
  .about__grid { grid-template-columns: 1fr; gap: 20px; }
  .about__media { order: -1; }
  .about__media img,
  .about__media picture { min-height: 220px; }
  .about__text p { font-size: 1rem; }
  .contact {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  .info-block {
    width: 100%;
    max-width: 480px;
    text-align: center;
  }
  .info-list { text-align: left; }
  .form-panel {
    max-width: 480px;
    width: 100%;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section__head { max-width: none; margin-bottom: 20px; }
  .menu { display: none; }
  .top__phone { display: none; }
  .burger { display: grid; place-items: center; }
  .top__inner { gap: 10px; }
  .top__cta { padding: 10px 16px; font-size: .85rem; }
  .menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px max(var(--pad-x), env(safe-area-inset-right, 0px)) 20px max(var(--pad-x), env(safe-area-inset-left, 0px));
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: left;
  }
  .menu.is-open a {
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .mob-bar { display: block; }
  body { padding-bottom: 76px; }
}

@media (max-width: 760px) {
  .hero__media img { object-position: center 22%; }
}

@media (max-width: 560px) {
  :root {
    --header-h: 60px;
    --pad-x: 20px;
  }
  .logo { gap: 8px; min-width: 0; flex: 1; }
  .logo__mark { width: 34px; height: 34px; }
  .logo__title { font-size: .9rem; }
  .logo__sub { font-size: .62rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .top__cta { flex-shrink: 0; padding: 9px 12px; font-size: .8rem; }
  .burger { width: 44px; height: 44px; flex-shrink: 0; }

  .block--hero .hero--cover {
    padding: calc(var(--header-h) + 20px) 0 28px;
    min-height: 48svh;
  }
  .hero--cover h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.15rem);
    line-height: 1.12;
  }
  .hero--cover .hero__text {
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hero--cover .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero--cover .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    padding-block: 22px;
    text-align: center;
  }
  .hero-strip__item {
    align-items: center;
  }
  .hero-strip__item strong {
    font-size: clamp(1.15rem, 4.5vw, 1.3rem);
  }
  .hero-strip__item span {
    font-size: .75rem;
    line-height: 1.3;
  }
  .hero-strip__item:nth-child(3) { grid-column: 1 / -1; }
  .hero-strip__links {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .block:not(.block--hero):not(.block--foot) {
    padding-block: 32px;
    min-height: auto;
  }
  .section__title { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }
  .section__desc { font-size: .95rem; }
  .cards { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 22px 18px; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .timeline__item { padding-top: 40px; }
  .tags { gap: 8px; }
  .tag { padding: 8px 14px; font-size: .82rem; }
  .foot__grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-panel { padding: 18px 16px; }
}

@media (max-width: 380px) {
  .hero-strip__inner { grid-template-columns: 1fr; }
  .hero-strip__item:nth-child(3) { grid-column: auto; }
  .top__cta { display: none; }
}
