:root {
  --white: #ffffff;
  --black: #373737;
  --orange: #f07c01;
  --blue: #029de0;
  --blue-light: #b4ddff;
  --green: #a5c926;
  --shadow-soft: 0 4px 24px -4px rgb(2 157 224 / 0.08);
  --shadow-card: 0 8px 32px -8px rgb(55 55 55 / 0.1);
  --shadow-elevated: 0 20px 60px -20px rgb(55 55 55 / 0.15);
  --header: 4rem;
  --topbar: 2.25rem;
  --font: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 4.75rem; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(80rem, calc(100% - 2.5rem));
  margin-inline: auto;
}
.container-narrow { width: min(46rem, calc(100% - 2.5rem)); }

.icon { width: 1.15rem; height: 1.15rem; display: block; flex: none; }
.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(2 157 224 / 0.1);
  color: var(--blue);
  flex: none;
}
.icon-box-solid { background: var(--blue); color: #fff; width: 3.25rem; height: 3.25rem; }
.icon-box .icon { width: 1.25rem; height: 1.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-sm { min-height: 2.25rem; padding: 0 1rem; font-size: 0.875rem; }
.btn-lg { min-height: 3rem; padding: 0 1.6rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -12px rgb(240 124 1 / 0.9); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary { background: #fff; color: rgb(55 55 55 / 0.75); border-color: rgb(55 55 55 / 0.12); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-long { display: none; }

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-orange { color: var(--orange); }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { margin: 1.1rem 0 0; font-size: clamp(2.1rem, 4vw, 3.25rem); }
h2 { margin: 0.7rem 0 0; font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { margin: 0; font-size: 1.05rem; }

.lead { color: rgb(55 55 55 / 0.65); font-weight: 300; font-size: 1.05rem; }
.lead.light { color: rgb(255 255 255 / 0.68); }

.section { padding: 5rem 0; }
.section-header { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.section-header p:last-child { color: rgb(55 55 55 / 0.6); font-weight: 300; }
.section-tint { background: rgb(180 221 255 / 0.14); }
.section-tint-soft { background: rgb(180 221 255 / 0.1); }
.section-dark { background: var(--black); color: #fff; }

.mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgb(180 221 255 / 0.45), transparent),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgb(2 157 224 / 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgb(165 201 38 / 0.08), transparent),
    linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}
.text-gradient {
  background: linear-gradient(90deg, var(--blue), rgb(2 157 224 / 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.topbar {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--topbar);
  background: #fff;
  border-bottom: 1px solid rgb(2 157 224 / 0.1);
}
.topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-list, .nav-list, .footer-links, .mobile-list, .social { list-style: none; margin: 0; padding: 0; }
.topbar-list { display: flex; gap: 0.8rem; overflow: auto; }
.topbar-list a, .topbar-contacts { color: rgb(55 55 55 / 0.55); font-size: 0.75rem; text-decoration: none; white-space: nowrap; }
.topbar-list a:hover { color: var(--blue); }
.topbar-contacts { display: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px -4px rgb(2 157 224 / 0.18); border-bottom: 1px solid rgb(2 157 224 / 0.1); }
.header-inner {
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--black); }
.logo-img { height: 2.25rem; width: auto; }
.logo-word { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.04em; }
.logo-word span { color: var(--orange); }
.logo-light { color: #fff; }
.primary-nav { display: none; min-width: 0; }
.nav-list { display: flex; justify-content: center; gap: 0.15rem; }
.nav-list a {
  display: inline-flex;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgb(55 55 55 / 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-list a:hover { background: rgb(2 157 224 / 0.06); color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 0.45rem; }
.header-phone, .header-social { display: none; }
.icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgb(55 55 55 / 0.12);
  background: #fff;
  color: rgb(55 55 55 / 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.icon-btn.is-on { border-color: var(--blue); color: var(--blue); background: rgb(2 157 224 / 0.1); }
.social { display: flex; gap: 0.4rem; }
.social a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
}
.social img { width: 1rem; height: 1rem; }
.social-dark { margin-top: 1.2rem; }
.mobile-drawer { border-top: 1px solid rgb(2 157 224 / 0.1); background: #fff; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.8rem 0 1.2rem; }
.mobile-list a, .mobile-nav .nav-list { display: block; }
.mobile-nav .nav-list { flex-direction: column; }
.mobile-list a, .mobile-nav .nav-list a {
  display: block;
  padding: 0.75rem 0.4rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.8rem;
}
.mobile-list a:hover, .mobile-nav .nav-list a:hover { background: rgb(2 157 224 / 0.06); color: var(--blue); }
.mobile-kicker { margin: 0.6rem 0 0; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgb(55 55 55 / 0.4); }
.mobile-list-sub a { font-weight: 500; font-size: 0.92rem; color: rgb(55 55 55 / 0.7); }
.mobile-phone { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; padding: 0.7rem 0.4rem; }

.hero { padding: 5.6rem 0 2.5rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  min-height: 2.25rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgb(2 157 224 / 0.2);
  background: rgb(2 157 224 / 0.05);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-eyebrow span { width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--green); }
.hero-lead { max-width: 36rem; color: rgb(55 55 55 / 0.65); font-weight: 300; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.badge-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.badge-tile {
  min-height: 5.5rem;
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgb(2 157 224 / 0.1);
  background: rgb(255 255 255 / 0.8);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
}

.about-grid, .mat-grid { display: grid; gap: 2.5rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgb(55 55 55 / 0.08); }
.stats strong { display: block; color: var(--blue); font-size: 1.7rem; }
.stats span { color: rgb(55 55 55 / 0.5); font-size: 0.85rem; }
.value-grid, .card-grid, .team-grid, .review-grid { display: grid; gap: 1rem; }
.card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgb(55 55 55 / 0.05);
}
.card h3 { margin-top: 0.8rem; }
.card p { margin: 0.45rem 0 0; color: rgb(55 55 55 / 0.62); font-weight: 300; font-size: 0.92rem; }
.card-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.card-row h3 { margin-top: 0; }

.pills { display: flex; gap: 0.5rem; overflow: auto; padding-bottom: 0.3rem; }
.pills-center { justify-content: flex-start; margin-bottom: 1.2rem; }
.pills button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgb(55 55 55 / 0.05);
  color: rgb(55 55 55 / 0.7);
  font-weight: 600;
  white-space: nowrap;
}
.pills button[aria-selected="true"],
.pills button[aria-pressed="true"] {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgb(2 157 224 / 0.9);
}
.pills button .icon { width: 1rem; height: 1rem; }

.service-card {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: 1.3rem;
  border: 1px solid rgb(2 157 224 / 0.15);
  background: linear-gradient(135deg, #fff, rgb(180 221 255 / 0.28));
  box-shadow: var(--shadow-card);
}
.service-title { display: flex; gap: 0.9rem; align-items: flex-start; }
.service-title h3 { font-size: 1.45rem; }
.price-pill {
  display: inline-flex;
  margin: 0.45rem 0 0;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgb(240 124 1 / 0.12);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-main > p { color: rgb(55 55 55 / 0.7); font-weight: 300; }
.service-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.2rem;
}
.service-symptoms {
  background: rgb(255 255 255 / 0.75);
  border: 1px solid rgb(55 55 55 / 0.06);
  border-radius: 1rem;
  padding: 1.1rem;
}
.service-symptoms h4 { margin: 0 0 0.7rem; font-size: 0.95rem; }
.service-symptoms ul, .check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.service-symptoms li, .check-list li { display: flex; gap: 0.55rem; align-items: flex-start; }
.service-symptoms .icon, .check-list .icon { color: var(--green); margin-top: 0.15rem; }
.service-more { grid-column: 1 / -1; }

.table-wrap { overflow: auto; border-radius: 1rem; border: 1px solid rgb(2 157 224 / 0.2); box-shadow: var(--shadow-soft); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; min-width: 40rem; }
.price-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.1rem;
  background: rgb(2 157 224 / 0.06);
}
.price-table td { padding: 0.95rem 1.1rem; border-top: 1px solid rgb(2 157 224 / 0.08); vertical-align: middle; }
.price-table tr:hover td { background: rgb(180 221 255 / 0.18); }
.price { text-align: right; font-weight: 800; color: var(--blue); white-space: nowrap; }
.tag {
  display: inline-flex;
  margin-left: 0.45rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-blue { background: rgb(2 157 224 / 0.12); color: var(--blue); }
.tag-green { background: rgb(165 201 38 / 0.18); color: #5d7310; }

.check-list { margin: 1.3rem 0 1.6rem; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.08);
}
.steps li > span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.steps p { margin: 0.3rem 0 0; color: rgb(255 255 255 / 0.68); font-weight: 300; }

.team-grid { grid-template-columns: 1fr; }
.specialist { border-radius: 1.1rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.specialist-photo { position: relative; min-height: 22rem; background: linear-gradient(160deg, var(--blue), #7ec8ef 45%, var(--orange)); }
.specialist-photo img, .specialist-fallback { width: 100%; height: 26rem; object-fit: cover; object-position: top; display: block; }
.specialist-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.specialist-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  color: #fff;
  background: linear-gradient(transparent, rgb(55 55 55 / 0.92));
}
.specialist-caption h3 { font-size: 1.05rem; }
.role { margin: 0.25rem 0 0; color: var(--orange); font-weight: 600; }
.bio, .specialist-links { max-height: 0; opacity: 0; overflow: hidden; transition: 0.35s ease; }
.specialist:hover .bio, .specialist:focus-within .bio { max-height: 8rem; opacity: 1; margin-top: 0.6rem; }
.specialist:hover .specialist-links, .specialist:focus-within .specialist-links { max-height: 3rem; opacity: 1; margin-top: 0.7rem; }

@media (hover: none), (max-width: 1023px) {
  .specialist-photo { min-height: 0; }
  .specialist-photo img, .specialist-fallback { height: auto; aspect-ratio: 3 / 4; }
  .specialist-caption {
    position: static;
    color: var(--black);
    background: #fff;
  }
  .bio {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 0.45rem;
    color: rgb(55 55 55 / 0.72);
  }
  .specialist-links {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 0.7rem;
  }
  .specialist-links a { background: rgb(2 157 224 / 0.12); color: var(--blue); }
}
.specialist-links { display: flex; gap: 0.45rem; }
.specialist-links a {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.2);
  color: #fff;
  text-decoration: none;
}
.specialist-links a:hover { background: var(--orange); }

.video-frame { overflow: hidden; border-radius: 1.1rem; background: var(--black); box-shadow: var(--shadow-elevated); }
.video-ratio { position: relative; aspect-ratio: 16 / 9; }
.video-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem;
  color: rgb(255 255 255 / 0.8);
  text-decoration: none;
}
.video-frame > a:hover { color: var(--orange); }

.review-grid { margin: 1.5rem 0; }
.photo-grid {
  columns: 1;
  column-gap: 1rem;
}
.photo-card {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 1px solid rgb(55 55 55 / 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.photo-card img { display: block; width: 100%; height: auto; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  background: rgb(55 55 55 / 0.45);
  backdrop-filter: blur(6px);
}
.booking-modal[hidden] { display: none; }
.booking-dialog {
  width: min(34rem, 100%);
  max-height: min(92vh, 44rem);
  overflow: auto;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 24px 70px -24px rgb(55 55 55 / 0.45);
}
.booking-head {
  position: relative;
  padding: 1.45rem 3.2rem 1.15rem 1.4rem;
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, rgb(180 221 255 / 0.7), transparent 60%),
    linear-gradient(180deg, #f4faff 0%, #fff 100%);
  border-bottom: 1px solid rgb(2 157 224 / 0.1);
}
.booking-head h2 { margin: 0.3rem 0 0; font-size: 1.65rem; }
.booking-lead { margin: 0.45rem 0 0; color: rgb(55 55 55 / 0.62); font-size: 0.92rem; font-weight: 400; line-height: 1.45; }
.booking-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: rgb(55 55 55 / 0.7);
  box-shadow: 0 1px 4px rgb(55 55 55 / 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.booking-close:hover { color: var(--blue); }
.booking-form { display: grid; gap: 0.85rem; padding: 1.15rem 1.4rem 1.4rem; }
.booking-form label { display: grid; gap: 0.35rem; color: rgb(55 55 55 / 0.72); font-size: 0.82rem; font-weight: 600; }
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgb(55 55 55 / 0.1);
  border-radius: 0.85rem;
  background: #f7fbfe;
  padding: 0.8rem 0.9rem;
  color: var(--black);
  font-weight: 500;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgb(55 55 55 / 0.38); font-weight: 400; }
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(2 157 224 / 0.15);
}
.booking-row { display: grid; gap: 0.85rem; }
.booking-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgb(55 55 55 / 0.7);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.4;
}
.booking-check input { width: 1.05rem; height: 1.05rem; margin-top: 0.1rem; accent-color: var(--blue); }
.booking-check a { color: var(--blue); }
.booking-form .form-status:empty { display: none; }
.booking-submit { width: 100%; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgb(55 55 55 / 0.82);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(960px, 100%); max-height: 88vh; border-radius: 0.8rem; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.review-card img { width: 100%; border-radius: 0.8rem; max-height: 16rem; object-fit: cover; }
.stars { display: flex; gap: 0.15rem; color: var(--orange); }
.stars .icon { width: 1rem; height: 1rem; fill: currentColor; }
.form-card {
  display: grid;
  gap: 0.9rem;
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgb(55 55 55 / 0.06);
}
.form-card label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 600; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid rgb(55 55 55 / 0.12);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: 2px solid rgb(2 157 224 / 0.35);
  border-color: var(--blue);
}
.check { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; }
.check input { width: auto; margin-top: 0.2rem; }
.form-note, .form-status { margin: 0; color: rgb(55 55 55 / 0.6); font-size: 0.9rem; }
.form-status.is-ok { color: #4d6b10; }
.form-status.is-err { color: #a33b12; }
.hp { position: absolute; left: -9999px; }

.site-footer { background: var(--black); color: #fff; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-lead, .footer-contacts, .footer-links a, .site-footer .topbar-list a { color: rgb(255 255 255 / 0.7); }
.footer-contacts { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-contacts a, .footer-contacts span, .footer-links a, .site-footer .topbar-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.footer-links a:hover, .footer-contacts a:hover, .site-footer .topbar-list a:hover { color: var(--orange); }
.site-footer h2 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgb(255 255 255 / 0.4); }
.footer-subhead { margin-top: 1.6rem; }
.footer-links, .site-footer .topbar-list { display: grid; gap: 0.35rem; }
.map-frame { overflow: hidden; border-radius: 1rem; border: 1px solid rgb(255 255 255 / 0.1); }
.map-frame iframe { display: block; border: 0; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  color: rgb(255 255 255 / 0.4);
  font-size: 0.78rem;
}
.footer-bottom a { color: inherit; margin-left: 1rem; text-decoration: none; }
.footer-bottom a:hover { color: rgb(255 255 255 / 0.75); }

.info-page { padding: 7rem 0 4rem; }
.info-page h1 { margin-top: 1rem; }
.container-catalog { width: min(64rem, calc(100% - 2.5rem)); }
.back-link { color: var(--blue); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.back-link:hover { color: var(--orange); }
.prose { color: rgb(55 55 55 / 0.78); font-weight: 400; }
.prose a { color: var(--blue); }
.prose ul { padding-left: 1.1rem; }
.prose li + li { margin-top: 0.35rem; }
.info-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.info-card {
  background: rgb(255 255 255 / 0.82);
  border: 1px solid rgb(55 55 55 / 0.08);
  border-radius: 1rem;
  padding: 1.2rem;
  margin: 1rem 0;
}
.info-card h2 { font-size: 1.15rem; margin-top: 0; }
.info-card h3 { font-size: 1rem; margin: 1.15rem 0 0.35rem; }
.info-stack { display: grid; gap: 1rem; }
.info-stack .info-card { margin: 0; }
.info-subhead { margin: 1rem 0 0.35rem; font-weight: 700; color: var(--black); }
.price { color: var(--orange); font-weight: 700; white-space: nowrap; }
.price-lg { font-size: 1.25rem; }
.hash { color: var(--blue); font-weight: 700; }
.info-note { color: rgb(55 55 55 / 0.55); font-size: 0.9rem; }
.price-list { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(55 55 55 / 0.08);
}
.product-grid { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 1rem; }
.product-card, .product-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(55 55 55 / 0.08);
  border-radius: 1rem;
  background: #fff;
}
.product-photo { background: #f4f7fa; }
.product-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 0.7rem; }
.product-body, .product-feature > div:last-child { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem; }
.product-card h3, .product-feature h3 { margin: 0; font-size: 0.95rem; }
.product-body p, .product-feature p { margin: 0; }
.product-body .price { margin-top: auto; padding-top: 0.35rem; }
.info-kicker { margin: 1rem 0 0.3rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgb(55 55 55 / 0.45); font-weight: 700; }
.info-rows { margin: 0.6rem 0 0; }
.info-rows > div { display: grid; gap: 0.2rem; padding: 0.75rem 0; border-bottom: 1px solid rgb(55 55 55 / 0.08); }
.info-rows dt { font-weight: 700; color: rgb(55 55 55 / 0.55); font-size: 0.88rem; }
.info-rows dd { margin: 0; }
.doc-list { padding-left: 1.1rem; }
.doc-list a { color: var(--blue); }

.provider-page { padding: 7rem 0 4rem; }
.provider-layout { display: grid; gap: 1.5rem; }
.provider-nav {
  background: rgb(255 255 255 / 0.86);
  border: 1px solid rgb(55 55 55 / 0.08);
  border-radius: 1rem;
  padding: 1rem;
}
.provider-nav ul { list-style: none; margin: 0.8rem 0 0; padding: 0; display: grid; gap: 0.2rem; }
.provider-nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  text-decoration: none;
  color: rgb(55 55 55 / 0.75);
  font-size: 0.92rem;
}
.provider-nav a:hover, .provider-nav a.is-active { background: rgb(2 157 224 / 0.08); color: var(--blue); }
.provider-nav a.is-active { font-weight: 700; }

.a11y-panel[hidden] { display: none !important; }
.a11y-panel {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: 100%;
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 0.85rem 1rem 1rem;
  background: #fff;
  color: #000;
  border-bottom: 3px solid #000;
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.18);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
}
.a11y-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.a11y-panel-head strong { font-size: 15px; }
.a11y-close, .a11y-reset, .a11y-choices button {
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.a11y-close, .a11y-reset { min-height: 2rem; padding: 0 0.75rem; }
.a11y-groups { display: flex; flex-wrap: wrap; gap: 0.75rem 1.2rem; }
.a11y-group { display: grid; gap: 0.35rem; }
.a11y-group p { margin: 0; font-size: 12px; font-weight: 700; }
.a11y-choices { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.a11y-choices button { min-height: 2rem; padding: 0 0.65rem; }
.a11y-choices button.is-active { background: #000; color: #fff; }
.a11y-swatch { width: 2.1rem; padding: 0; }
.a11y-swatch[data-value="white"] { background: #fff; color: #000; }
.a11y-swatch[data-value="black"] { background: #000; color: #fff; }
.a11y-swatch[data-value="blue"] { background: #9dd1ff; color: #063462; }
.a11y-swatch[data-value="beige"] { background: #f7f3d6; color: #4d3b1f; }
.a11y-swatch[data-value="green"] { background: #3b2716; color: #a9e44d; }
.a11y-swatch.is-active { outline: 3px solid #000; outline-offset: 2px; }
.a11y-reset { margin-top: 0.85rem; }

html.a11y-on.a11y-font-sm { font-size: 20px; }
html.a11y-on.a11y-font-md { font-size: 24px; }
html.a11y-on.a11y-font-lg { font-size: 30px; }
html.a11y-on { --a11y-bg: #fff; --a11y-text: #000; }
html.a11y-on.a11y-theme-black { --a11y-bg: #000; --a11y-text: #fff; }
html.a11y-on.a11y-theme-blue { --a11y-bg: #9dd1ff; --a11y-text: #063462; }
html.a11y-on.a11y-theme-beige { --a11y-bg: #f7f3d6; --a11y-text: #4d3b1f; }
html.a11y-on.a11y-theme-green { --a11y-bg: #3b2716; --a11y-text: #a9e44d; }
html.a11y-on,
html.a11y-on body,
html.a11y-on body :where(:not(.a11y-panel, .a11y-panel *)) {
  background-color: var(--a11y-bg) !important;
  background-image: none !important;
  color: var(--a11y-text) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-color: var(--a11y-text) !important;
}
html.a11y-on .btn,
html.a11y-on .btn * {
  background-color: var(--a11y-text) !important;
  color: var(--a11y-bg) !important;
  border-color: var(--a11y-text) !important;
  text-decoration: none !important;
}
html.a11y-on h1 { font-size: 2.1rem !important; }
html.a11y-on h2 { font-size: 1.6rem !important; }
html.a11y-on h3 { font-size: 1.2rem !important; }
html.a11y-on .text-gradient {
  background: none !important;
  -webkit-text-fill-color: var(--a11y-text);
  color: var(--a11y-text) !important;
}
html.a11y-space-md body :where(:not(.a11y-panel, .a11y-panel *)) { letter-spacing: 0.06em !important; }
html.a11y-space-lg body :where(:not(.a11y-panel, .a11y-panel *)) { letter-spacing: 0.12em !important; }
html.a11y-leading-md body :where(:not(.a11y-panel, .a11y-panel *)) { line-height: 1.85 !important; }
html.a11y-leading-lg body :where(:not(.a11y-panel, .a11y-panel *)) { line-height: 2.15 !important; }
html.a11y-family-sans body :where(:not(.a11y-panel, .a11y-panel *)) { font-family: Arial, Helvetica, sans-serif !important; }
html.a11y-family-serif body :where(:not(.a11y-panel, .a11y-panel *)) { font-family: "Times New Roman", Times, serif !important; }
html.a11y-images-off img:not(.logo-img),
html.a11y-images-off video,
html.a11y-images-off iframe { visibility: hidden !important; }
html.a11y-images-gray img:not(.logo-img) { filter: grayscale(1) contrast(1.15) !important; }
.a11y-toggle.is-on { border-color: var(--blue); color: var(--blue); background: rgb(2 157 224 / 0.1); }

@media (min-width: 700px) {
  .booking-modal { align-items: center; padding: 1.5rem; }
  .booking-row { grid-template-columns: 1fr 1fr; }
  .value-grid, .card-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { columns: 2; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .pills-center { justify-content: center; }
  .info-rows > div { grid-template-columns: 14rem 1fr; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-feature { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; }
  .product-feature .product-photo img { aspect-ratio: auto; min-height: 220px; }
}

@media (max-width: 1023px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 0.45rem; }
  .header-actions { gap: 0.35rem; }
  .header-actions .btn { padding-inline: 0.75rem; }
}

@media (min-width: 768px) {
  html { scroll-padding-top: 7rem; }
  :root { --header: 4.25rem; }
  .info-page, .provider-page { padding-top: 8.5rem; }
  body.admin-bar .site-header { top: 32px; }
}

@media (min-width: 1024px) {
  .topbar { display: block; }
  .site-header { top: var(--topbar); }
  .hero { min-height: calc(100dvh - var(--header) - var(--topbar)); padding-top: 8rem; align-content: center; }
  .btn-short { display: none; }
  .btn-long { display: inline; }
  body.admin-bar .topbar { top: 32px; }
  body.admin-bar .site-header { top: calc(var(--topbar) + 32px); }
}

@media (min-width: 1024px) {
  .hero-grid, .about-grid, .mat-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
  .badge-panel { padding: 1.4rem; border-radius: 1.5rem; border: 1px solid rgb(2 157 224 / 0.1); background: rgb(255 255 255 / 0.75); box-shadow: var(--shadow-elevated); }
  .badge-tile { flex-direction: row; text-align: left; justify-content: flex-start; }
  .service-card { grid-template-columns: 1.1fr 0.9fr; padding: 2rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; }
  .provider-layout { grid-template-columns: 18rem 1fr; align-items: start; }
  .provider-nav { position: sticky; top: 8rem; }
}

@media (min-width: 1200px) {
  .primary-nav { display: block; }
  .burger { display: none; }
  .header-phone { display: inline-flex; }
  .topbar-contacts { display: block; }
}

@media (min-width: 1440px) {
  .header-social { display: block; }
  .header-phone { display: none; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: #fff;
  color: var(--black);
  border: 1px solid rgb(2 157 224 / 0.15);
  box-shadow: var(--shadow-elevated);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1 1 16rem; font-size: 0.92rem; font-weight: 400; line-height: 1.45; }
.cookie-banner a { color: var(--blue); }

@media (min-width: 768px) {
  .cookie-banner { left: auto; width: min(28rem, calc(100% - 2rem)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
