:root {
  --bg: #080a0c;
  --surface: rgba(15, 18, 21, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --text: #fff7ec;
  --muted: #b9b1a6;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff6b24;
  --accent-strong: #ff9a3d;
  --accent-line: rgba(255, 107, 36, 0.78);
  --red: #e12a24;
  --blue: #1597e8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --radius-xl: 14px;
  --radius-lg: 10px;
  --radius-md: 8px;
  --container: 1180px;
  --display: "Unbounded", "Oswald", sans-serif;
  --numeric: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.05) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #090b0d 0%, #15181b 48%, #080a0c 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(calc(100vw - 20px), var(--container));
  margin: 14px auto 96px;
}

.hero,
.section,
.metrics {
  border: 2px solid rgba(255, 107, 36, 0.34);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 16px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.94) 0%, rgba(8, 10, 12, 0.86) 45%, rgba(8, 10, 12, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.1), rgba(8, 10, 12, 0.88)),
    url("assets/photos/service-main.webp") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%);
  pointer-events: none;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(8, 10, 12, 0.7);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 107, 36, 0.55);
  background: linear-gradient(180deg, #fff 0%, #f1f1f1 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.topbar-contact {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.topbar-call-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.topbar-phone {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.34em;
  font-family: var(--numeric);
  color: #fff;
  white-space: nowrap;
  padding: 0;
}

.phone-format {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34em;
}

.phone-code {
  color: rgba(255, 233, 204, 0.76);
  font-size: 0.54em;
  font-weight: 500;
}

.phone-main {
  color: #fff;
  font-family: var(--numeric);
  font-size: clamp(1.6rem, 3.8vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
}

.inline-phone .phone-main {
  font-size: 1.2em;
}

.secondary-number {
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 700;
}

.topbar-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0 24px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 198, 150, 0.55);
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #14100c;
  font-size: 1.02rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.topbar-appointment:hover,
.topbar-appointment:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.topbar-contact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar-contact .topbar-kicker {
  display: block;
  color: #fff6e8;
  font-family: var(--display);
  font-size: clamp(1.28rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.topbar-contact .topbar-address {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.18rem, 3.6vw, 2.25rem) !important;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.topbar-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.topbar-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-links a {
  position: relative;
  padding: 6px 0;
  color: #f5eadc;
  font-size: 0.92rem;
  font-weight: 800;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.topbar-links a:hover::after,
.topbar-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
  min-height: 280px;
}

.hero-copy {
  padding: 20px 2px 4px;
  max-width: 940px;
}

.hero h1,
.section-heading h2,
.service-card h3,
.footer-copy h2,
.review-strip strong,
.metrics strong,
.photo-card strong {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(2.15rem, 5.4vw, 4.05rem);
  line-height: 0.98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: #f3e8da;
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 2px solid rgba(255, 107, 36, 0.48);
  border-radius: var(--radius-md);
  background: rgba(8, 10, 12, 0.6);
  color: #fff2df;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 22px;
}

.promo-block {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 20px;
}

.promo-heading {
  color: var(--accent-strong);
  font-family: var(--display);
  font-size: clamp(1.9rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.promo-type-card {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px;
  border-radius: var(--radius-lg);
  position: relative;
  border: 3px solid rgba(255, 107, 36, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(10, 12, 14, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.promo-type-card::before,
.chip-promo::before,
.service-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-strong), var(--red));
}

.promo-type-card strong {
  display: block;
  min-height: 1.25em;
  overflow: hidden;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 3.1rem);
  line-height: 1.05;
  white-space: nowrap;
}

.chip-promo {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 107, 36, 0.88);
  background:
    linear-gradient(135deg, rgba(216, 23, 36, 0.28), rgba(255, 107, 36, 0.18)),
    rgba(10, 12, 14, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.chip-promo span {
  color: #ffd9aa;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip-promo strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.2rem, 7.2vw, 4.75rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.promo-type-card strong::after {
  content: none;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #14100c;
  border-color: rgba(255, 204, 156, 0.65);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-strong);
}

.button.secondary {
  border-color: rgba(255, 107, 36, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.whatsapp-button,
.whatsapp-contact,
.whatsapp-action {
  border-color: rgba(37, 211, 102, 0.55);
  background: #25d366;
  color: #07140b;
}

.contact-card.whatsapp-contact,
.phone-options a[href*="wa.me"] {
  color: #f7fff9;
}

.contact-card.whatsapp-contact span,
.phone-options a[href*="wa.me"] span {
  color: rgba(247, 255, 249, 0.82);
}

.contact-card.whatsapp-contact strong,
.phone-options a[href*="wa.me"] strong {
  color: #f7fff9;
}

.max-button,
.max-contact,
.max-action {
  border-color: rgba(50, 180, 255, 0.58);
  background: linear-gradient(135deg, var(--blue), #32b4ff);
  color: #fff;
}

.telegram-contact {
  border-color: rgba(46, 166, 221, 0.66);
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.92), rgba(23, 102, 176, 0.84));
  color: #fff;
}

.message-button,
.message-action {
  border-color: rgba(255, 107, 36, 0.58);
  background: rgba(255, 107, 36, 0.18);
  color: #fff1dc;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #35e276;
}

.carousel {
  display: grid;
  gap: 12px;
  touch-action: pan-y;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-height: 0;
}

.hero-gallery figure,
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 36, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-gallery img {
  width: 100%;
  height: clamp(260px, 36vw, 420px);
  object-fit: cover;
}

.hero-gallery figcaption {
  padding: 12px;
  color: #fff8ec;
  font-weight: 800;
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-controls button {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 107, 36, 0.48);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.is-active {
  width: 22px;
  background: var(--accent);
}

.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  padding: 10px;
}

.metrics article {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 36, 0.38);
  background: var(--surface-soft);
}

.metrics article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 7vw, 2.9rem);
  line-height: 0.95;
}

.metrics span,
.section-heading p,
.service-card p,
.service-card li,
.photo-card span,
.footer-copy p,
.contact-card span,
.review-strip span,
.phone-dialog-panel > span,
.phone-options span {
  color: var(--muted);
}

.section {
  margin-top: 12px;
  padding: 16px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 5.4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.service-tabs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 10px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 36, 0.4);
  background: var(--surface-strong);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 107, 36, 0.5);
  background: rgba(255, 107, 36, 0.08);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.active {
  border-color: rgba(255, 107, 36, 0.78);
  background: linear-gradient(135deg, rgba(255, 107, 36, 0.36), rgba(255, 138, 61, 0.18));
  transform: translateY(-1px);
}

.service-tab.active {
  color: #fff3e4;
  box-shadow: inset 0 0 0 1px rgba(255, 138, 61, 0.18);
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.service-card {
  position: relative;
  display: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 107, 36, 0.55);
  background: var(--surface-strong);
}

.service-card.is-active {
  display: grid;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.7rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.photo-carousel {
  margin-top: 16px;
}

.photo-card img {
  width: 100%;
  height: clamp(260px, 46vw, 470px);
  object-fit: cover;
}

.photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.photo-card strong {
  font-size: 1.25rem;
}

.review-strip {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 36, 0.38);
  background: var(--surface-strong);
}

.review-strip strong {
  display: block;
  font-size: clamp(3rem, 9vw, 4.4rem);
  line-height: 0.9;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.footer-copy h2 {
  margin: 0 0 12px;
  max-width: 12ch;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.branch-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.branch-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 16px 18px 16px 22px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 107, 36, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.11), rgba(255, 255, 255, 0.055)),
    var(--surface-strong);
}

.branch-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent-strong), var(--red));
}

.branch-card-main {
  border-color: rgba(255, 107, 36, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.21), rgba(255, 255, 255, 0.07)),
    rgba(18, 20, 22, 0.94);
}

.branch-card span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-card strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.22rem, 4vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-copy p {
  margin: 0;
  line-height: 1.65;
}

.footer-copy p + p {
  margin-top: 8px;
}

.footer-copy strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.55em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 90px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 107, 36, 0.52);
  background: var(--surface-strong);
  text-decoration: none !important;
}

.contact-card strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.contact-card .phone-format {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.contact-card .phone-main {
  font-size: clamp(1.85rem, 5vw, 2.25rem);
  white-space: nowrap;
}

.contact-card .phone-code {
  flex: 0 0 auto;
  font-size: 0.92rem;
  line-height: 1.05;
  white-space: normal;
}

.contact-card .secondary-number {
  font-size: clamp(1.7rem, 4.5vw, 2.05rem);
}

.contact-card.telegram-contact span,
.contact-card.telegram-contact strong {
  color: #fff;
}

.contact-card span,
.phone-options span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #15100c;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-bar {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 20;
  width: min(520px, calc(100% - 20px));
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 15, 17, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.mobile-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 107, 36, 0.4);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.mobile-action.primary {
  color: #14100c;
  background: var(--accent);
  border-color: transparent;
}

body.phone-dialog-open {
  overflow: hidden;
}

.phone-dialog {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: end;
  justify-content: center;
  padding: 18px;
}

.phone-dialog.is-open {
  display: flex;
}

.phone-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 8, 0.72);
  backdrop-filter: blur(10px);
}

.phone-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(255, 107, 36, 0.5);
  background: rgba(20, 24, 27, 0.98);
  box-shadow: var(--shadow);
}

.phone-dialog-panel h2 {
  margin: 8px 42px 18px 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.phone-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 107, 36, 0.62);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.phone-options {
  display: grid;
  gap: 10px;
}

.phone-options a {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 3px solid rgba(255, 107, 36, 0.58);
  background: rgba(255, 107, 36, 0.12);
}

.phone-options strong {
  font-size: 1.2rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .service-tab {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .review-strip {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 860px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--container));
    margin-top: 18px;
  }

  .hero {
    padding: 22px 24px 14px;
  }

  .topbar {
    grid-template-columns: 250px minmax(330px, 1fr) minmax(250px, auto);
    align-items: center;
    gap: 22px;
    padding: 12px;
  }

  .brand img {
    height: 58px;
  }

  .topbar-contact {
    justify-items: start;
    text-align: left;
    gap: 5px;
  }

  .topbar-call-row {
    justify-content: flex-start;
  }

  .topbar-contact .topbar-kicker {
    font-size: clamp(1.34rem, 2vw, 1.76rem);
    line-height: 1;
  }

  .topbar-contact .topbar-address {
    max-width: none;
    font-size: clamp(1.08rem, 1.7vw, 1.46rem) !important;
    line-height: 1.06;
    white-space: nowrap;
  }

  .topbar-phone .phone-main {
    font-size: clamp(1.24rem, 1.8vw, 1.54rem);
  }

  .topbar-phone .phone-code {
    font-size: 0.68em;
  }

  .topbar-actions {
    grid-column: auto;
    justify-items: end;
    gap: 9px;
  }

  .topbar-appointment {
    min-height: 44px;
    width: auto;
    min-width: 178px;
    padding: 0 28px;
    font-size: 0.98rem;
  }

  .topbar-links {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    gap: 14px;
    padding: 0 2px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 34px;
    max-width: none;
    align-items: end;
    min-height: 320px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 17ch;
    font-size: clamp(2.2rem, 4.25vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 610px;
    margin-top: 14px;
  }

  .hero-badges {
    margin-top: 16px;
  }

  .hero-badges span {
    min-height: 32px;
  }

  .promo-block {
    max-width: 500px;
    width: 100%;
    gap: 10px;
    margin: 0 0 0 auto;
  }

  .promo-heading {
    font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  }

  .promo-type-card {
    min-height: 78px;
    padding: 14px 18px;
  }

  .promo-type-card strong {
    white-space: nowrap;
    font-size: clamp(1.25rem, 2vw, 1.62rem);
  }

  .promo-type-card strong::after {
    width: 0.06em;
    height: 0.76em;
    margin-left: 0.04em;
  }

  .chip-promo strong {
    font-size: clamp(1.55rem, 2.85vw, 2.35rem);
  }

  .chip-promo {
    padding: 16px 18px;
  }

  .service-card.is-active {
    grid-template-columns: 0.95fr 1fr;
  }

  .service-card img {
    height: 100%;
    min-height: 330px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .footer-copy {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 18px 24px;
    align-items: start;
  }

  .footer-copy h2 {
    grid-row: 1 / span 4;
    margin-bottom: 0;
    max-width: 9.5ch;
    font-size: clamp(2rem, 4.3vw, 3.35rem);
  }

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

  .branch-card {
    min-height: 130px;
  }

  .branch-card strong {
    font-size: clamp(1.28rem, 2.2vw, 2rem);
  }

  .footer-copy p {
    grid-column: 2;
    margin: 0;
    color: #d8d0c6;
    font-size: 1rem;
  }

  .footer-copy p + p {
    margin-top: 0;
  }

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

  .contact-card {
    min-height: 90px;
    padding: 12px 16px;
  }

  .contact-card span {
    font-size: 0.98rem;
  }

  .contact-card strong {
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  }

  .contact-card .phone-main {
    font-size: clamp(1.8rem, 2.55vw, 2.35rem);
  }

  .contact-card .secondary-number {
    font-size: clamp(1.65rem, 2.3vw, 2.12rem);
  }
}

@media (max-width: 640px) {
  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 540px) {
  .site-shell {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero {
    min-height: auto;
    padding: 10px 10px 26px;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .brand {
    width: min(100%, 320px);
    justify-self: center;
  }

  .brand img {
    height: 52px;
  }

  .topbar-contact {
    justify-items: center;
    text-align: center;
    gap: 7px;
  }

  .topbar-call-row {
    justify-content: center;
    gap: 8px;
  }

  .topbar {
    gap: 8px;
    padding: 10px;
  }

  .topbar-phone {
    font-size: 1.2rem;
  }

  .topbar-phone .phone-main {
    font-size: 1.52rem;
  }

  .topbar-phone .phone-code {
    font-size: 0.66em;
  }

  .topbar-actions {
    justify-items: center;
    width: 100%;
  }

  .topbar-appointment {
    min-height: 42px;
    width: min(100%, 320px);
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .topbar-contact span {
    font-size: 0.84rem;
  }

  .topbar-contact .topbar-kicker {
    font-size: clamp(1.28rem, 7.8vw, 1.72rem);
  }

  .topbar-contact .topbar-address {
    max-width: 17rem;
    font-size: clamp(1rem, 5.9vw, 1.36rem) !important;
    line-height: 1.1;
    order: 2;
  }

  .topbar-call-row {
    order: 3;
  }

  .topbar-contact .topbar-kicker {
    order: 1;
  }

  .hero-grid {
    min-height: auto;
    gap: 12px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(1.42rem, 7.3vw, 1.95rem);
  }

  .hero-text {
    font-size: 0.96rem;
    margin-top: 10px;
  }

  .hero-badges {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .promo-type-card {
    min-height: 58px;
    margin-top: 0;
    padding: 10px 12px;
  }

  .promo-type-card strong {
    font-size: clamp(1rem, 5vw, 1.28rem);
    white-space: normal;
  }

  .promo-block {
    gap: 8px;
    margin-top: 2px;
  }

  .promo-heading {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .chip-promo {
    padding: 12px;
  }

  .chip-promo span {
    display: none;
  }

  .chip-promo strong {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem);
    line-height: 1.08;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .service-tab {
    width: 100%;
    min-height: 46px;
    padding: 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    font-size: 0.84rem;
  }

  .hero-gallery img {
    height: 250px;
  }

  .section,
  .service-card > div,
  .contact-card {
    padding: 16px;
  }

  .service-card img {
    height: 190px;
  }

  .metrics article {
    min-height: 0;
  }

  .metrics strong {
    font-size: 2.35rem;
  }
}

@media (max-width: 380px) {
  .topbar-phone {
    font-size: 1.34rem;
  }

  .topbar-appointment {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

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

  .mobile-action {
    padding: 0 7px;
    font-size: 0.78rem;
  }
}

/* --- Новые стили для разделения шапки и ВКонтакте --- */

.topbar-addresses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  order: 2;
  margin-top: 6px;
}

.topbar-address-sep {
  color: var(--accent);
  font-weight: 900;
  opacity: 0.85;
}

.topbar-contact .topbar-address {
  font-size: clamp(0.78rem, 2.2vw, 0.96rem) !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px;
  line-height: 1.2;
  order: initial !important;
}

@media (min-width: 720px) {
  .topbar-addresses {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar-addresses {
    flex-direction: column;
    gap: 4px;
  }
  .topbar-address-sep {
    display: none;
  }
}

.contact-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* PNG-иконки для контактов */
.contact-icon:has(.contact-icon-img) {
  background: transparent !important;
}

.contact-icon-img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}


