*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --servicepro-page: #ece9e6;
    --servicepro-surface: #fcf9f7;
    --servicepro-ink: #37302a;
    --servicepro-accent: #6f7561;
    --servicepro-ink-soft: #6e665f;
    --servicepro-ink-inverse: #fcf9f7;
    --servicepro-dark: #181511;
    --servicepro-border: rgba(55, 48, 42, 0.18);
    --servicepro-content-width: 1280px;
    --servicepro-base-font-size: 17px;
    --servicepro-section-radius: 8px;
    --servicepro-card-radius: 12px;
    --servicepro-button-radius: 10px;
    --servicepro-image-radius: 8px;
    --servicepro-input-radius: 8px;
    --servicepro-modal-radius: 14px;
    --servicepro-body-font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --servicepro-heading-font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --servicepro-shell: min(var(--servicepro-content-width), calc(100vw - 48px));
    --servicepro-shadow: 0 24px 72px rgba(41, 34, 28, 0.09);
    --servicepro-serif: var(--servicepro-heading-font);
    --servicepro-sans: var(--servicepro-body-font);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--servicepro-page);
    color: var(--servicepro-ink);
    font-family: var(--servicepro-sans);
    font-size: var(--servicepro-base-font-size);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.servicepro-nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(111, 117, 97, 0.65);
    outline-offset: 4px;
}

.servicepro-shell {
    width: var(--servicepro-shell);
    margin: 0 auto;
}

.servicepro-skip {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 4px;
    background: var(--servicepro-surface);
    color: var(--servicepro-dark);
}

.servicepro-skip:focus {
    transform: translateY(0);
}

.servicepro-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
}

.servicepro-header__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    min-height: 92px;
}

.servicepro-brand {
    display: inline-flex;
    flex-direction: column;
    width: max-content;
    color: inherit;
    line-height: 1;
    text-decoration: none;
}

.servicepro-brand strong {
    font-family: var(--servicepro-serif);
    font-size: clamp(27px, 2.4vw, 38px);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.servicepro-brand span {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.servicepro-header__nav {
    min-width: 0;
}

.servicepro-nav {
    display: flex;
    gap: clamp(18px, 2.5vw, 38px);
    align-items: center;
    justify-content: center;
}

.servicepro-nav a {
    position: relative;
    color: rgba(252, 249, 247, 0.82);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: lowercase;
}

.servicepro-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 180ms ease;
}

.servicepro-nav a:hover::after,
.servicepro-nav a.is-current::after {
    transform: scaleX(1);
}

.servicepro-nav-toggle {
    display: none;
}

.servicepro-button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--servicepro-dark);
    border-radius: var(--servicepro-button-radius);
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: lowercase;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.servicepro-button:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--servicepro-dark);
}

.servicepro-button--light {
    border-color: var(--servicepro-surface);
    background: var(--servicepro-surface);
    color: var(--servicepro-dark);
}

.servicepro-button--light:hover {
    background: transparent;
    color: var(--servicepro-surface);
}

.servicepro-button--ghost {
    border-color: var(--servicepro-border);
    background: transparent;
    color: var(--servicepro-ink);
}

.servicepro-button--small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
}

.servicepro-header__booking {
    min-height: 42px;
    padding-inline: 25px;
}

.servicepro-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: lowercase;
}

.servicepro-text-link::after {
    width: 36px;
    height: 1px;
    content: "";
    background: currentColor;
    transition: width 180ms ease;
}

.servicepro-text-link:hover::after {
    width: 52px;
}

.servicepro-text-link--light {
    color: var(--servicepro-ink-inverse);
}

.servicepro-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.servicepro-eyebrow {
    margin: 0 0 22px;
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.servicepro-eyebrow--light {
    color: rgba(252, 249, 247, 0.74);
}

.servicepro-section {
    padding: clamp(88px, 10vw, 150px) 0;
}

.servicepro-section h2,
.servicepro-intro h2,
.servicepro-final h2,
.servicepro-quote blockquote {
    margin: 0;
    font-family: var(--servicepro-serif);
    font-size: clamp(42px, 5.4vw, 76px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.servicepro-section h2 em,
.servicepro-intro h2 em {
    font-weight: 400;
}

.servicepro-hero {
    position: relative;
    display: grid;
    min-height: 720px;
    overflow: hidden;
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
    isolation: isolate;
}

.servicepro-hero--standard {
    min-height: 620px;
}

.servicepro-hero--tall {
    min-height: min(820px, calc(100vh - 92px));
}

.servicepro-hero--viewport {
    min-height: calc(100svh - 92px);
}

.servicepro-hero__slides,
.servicepro-hero__slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
}

.servicepro-hero__slide {
    z-index: 0;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    visibility: hidden;
    transition: opacity 700ms ease, transform 900ms cubic-bezier(.2,.65,.25,1), visibility 700ms;
}

.servicepro-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    visibility: visible;
}

.servicepro-hero[data-transition="slide"] .servicepro-hero__slide {
    opacity: 0;
    transform: translateX(5%);
}

.servicepro-hero[data-transition="slide"] .servicepro-hero__slide.is-active {
    opacity: 1;
    transform: translateX(0);
}

.servicepro-hero__image,
.servicepro-hero__shade {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.servicepro-hero__image {
    object-fit: cover;
}

.servicepro-hero__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 9, 7, 0.93) 0%, rgba(12, 9, 7, 0.65) 38%, rgba(12, 9, 7, 0.12) 72%),
        linear-gradient(0deg, rgba(12, 9, 7, 0.5), transparent 48%);
}

.servicepro-hero__slide[data-overlay="light"] .servicepro-hero__shade {
    opacity: 0.64;
}

.servicepro-hero__slide[data-overlay="dark"] .servicepro-hero__shade {
    background:
        linear-gradient(90deg, rgba(12, 9, 7, 0.96) 0%, rgba(12, 9, 7, 0.74) 46%, rgba(12, 9, 7, 0.42) 100%),
        linear-gradient(0deg, rgba(12, 9, 7, 0.66), transparent 58%);
}

.servicepro-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    padding-block: 100px;
    align-items: center;
}

.servicepro-hero__content {
    min-width: 0;
    max-width: 690px;
}

.servicepro-hero__slide--center .servicepro-hero__inner {
    justify-content: center;
    text-align: center;
}

.servicepro-hero__slide--center .servicepro-hero__content,
.servicepro-hero__slide--center .servicepro-hero__lead {
    margin-right: auto;
    margin-left: auto;
}

.servicepro-hero__slide--center .servicepro-actions {
    justify-content: center;
}

.servicepro-hero__slide--right .servicepro-hero__inner {
    justify-content: flex-end;
    text-align: right;
}

.servicepro-hero__slide--right .servicepro-hero__lead {
    margin-left: auto;
}

.servicepro-hero__slide--right .servicepro-actions {
    justify-content: flex-end;
}

.servicepro-hero h1,
.servicepro-hero__title {
    max-width: 680px;
    margin: 0;
    font-family: var(--servicepro-serif);
    font-size: clamp(54px, 7.2vw, 106px);
    font-weight: 400;
    letter-spacing: -0.058em;
    line-height: 0.94;
}

.servicepro-hero h1::first-line,
.servicepro-hero__title::first-line {
    font-style: normal;
}

.servicepro-hero__lead {
    max-width: 570px;
    margin: 34px 0 40px;
    color: rgba(252, 249, 247, 0.8);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
}

.servicepro-slider-arrows {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 38px;
    left: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    pointer-events: none;
}

.servicepro-slider-arrows button {
    display: grid;
    width: 48px;
    min-height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(252, 249, 247, 0.48);
    border-radius: 50%;
    background: rgba(16, 14, 12, 0.28);
    color: var(--servicepro-ink-inverse);
    cursor: pointer;
    pointer-events: auto;
    transition: background 180ms ease, border-color 180ms ease;
}

.servicepro-slider-arrows button:hover {
    border-color: var(--servicepro-surface);
    background: rgba(16, 14, 12, 0.66);
}

.servicepro-slider-dots {
    position: absolute;
    z-index: 5;
    bottom: 55px;
    left: 50%;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.servicepro-slider-dots button {
    width: 28px;
    height: 3px;
    min-height: 3px;
    padding: 0;
    border: 0;
    background: rgba(252, 249, 247, 0.42);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.servicepro-slider-dots button[aria-current="true"] {
    width: 48px;
    background: var(--servicepro-surface);
}

.servicepro-intro {
    background: var(--servicepro-page);
}

.servicepro-intro__grid {
    display: grid;
    grid-template-columns: 0.45fr 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.servicepro-intro h2 {
    font-size: clamp(42px, 5vw, 70px);
}

.servicepro-intro__grid > p:last-child {
    max-width: 440px;
    margin: 5px 0 0;
    color: var(--servicepro-ink-soft);
    font-size: 17px;
}

.servicepro-services {
    background: var(--servicepro-surface);
}

.servicepro-section-heading {
    display: grid;
    grid-template-columns: 0.35fr minmax(0, 1.2fr) auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 62px;
}

.servicepro-section-heading h2 {
    max-width: 850px;
    font-size: clamp(40px, 4.8vw, 68px);
}

.servicepro-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.servicepro-service-card {
    min-width: 0;
}

.servicepro-service-card:nth-child(2) {
    transform: translateY(54px);
}

.servicepro-service-card__media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--servicepro-page);
}

.servicepro-service-card__media img,
.servicepro-team-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2,.65,.25,1);
}

.servicepro-service-card:hover .servicepro-service-card__media img,
.servicepro-team-card:hover > img {
    transform: scale(1.025);
}

.servicepro-service-card:nth-child(3) .servicepro-service-card__media img {
    object-position: 50% 50%;
}

.servicepro-service-card__body {
    padding: 25px 4px 0;
}

.servicepro-service-card__body > span {
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.servicepro-service-card h3 {
    margin: 13px 0;
    font-family: var(--servicepro-serif);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.servicepro-service-card p {
    min-height: 82px;
    margin: 0 0 20px;
    color: var(--servicepro-ink-soft);
    font-size: 14px;
}

.servicepro-service-card__body > div {
    display: flex;
    padding-top: 18px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--servicepro-border);
}

.servicepro-service-card__body strong,
.servicepro-service-card__body a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: lowercase;
}

.servicepro-experience {
    padding-top: 190px;
    background: var(--servicepro-page);
}

.servicepro-experience__grid {
    display: grid;
    grid-template-columns: 1.07fr 0.93fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.servicepro-experience__image {
    overflow: hidden;
    min-height: 720px;
}

.servicepro-experience__image img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.servicepro-experience__content h2 {
    font-size: clamp(42px, 5vw, 70px);
}

.servicepro-experience__content > p:not(.servicepro-eyebrow) {
    margin: 32px 0;
    color: var(--servicepro-ink-soft);
    font-size: 17px;
}

.servicepro-checklist {
    padding: 0;
    margin: 0 0 38px;
    list-style: none;
}

.servicepro-checklist li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--servicepro-border);
}

.servicepro-checklist span {
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    letter-spacing: 0.15em;
}

.servicepro-team {
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
}

.servicepro-team .servicepro-eyebrow,
.servicepro-team .servicepro-section-heading {
    color: rgba(252, 249, 247, 0.72);
}

.servicepro-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.servicepro-team-card {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #2b2824;
}

.servicepro-team-card::after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(15, 12, 10, 0.82), transparent 48%);
    inset: 0;
}

.servicepro-team-card > img {
    min-height: 720px;
}

.servicepro-team-card > div {
    position: absolute;
    z-index: 1;
    right: 36px;
    bottom: 32px;
    left: 36px;
}

.servicepro-team-card p {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.servicepro-team-card h3 {
    margin: 0;
    font-family: var(--servicepro-serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.servicepro-team-card a {
    display: inline-block;
    margin-top: 18px;
    color: rgba(252, 249, 247, 0.82);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-underline-offset: 6px;
}

.servicepro-quote {
    padding: clamp(96px, 12vw, 180px) 0;
    background: var(--servicepro-accent);
    color: var(--servicepro-ink-inverse);
    text-align: center;
}

.servicepro-quote .servicepro-eyebrow {
    color: rgba(252, 249, 247, 0.72);
}

.servicepro-quote blockquote {
    max-width: 1000px;
    margin: 0 auto 34px;
    font-size: clamp(36px, 5vw, 66px);
}

.servicepro-quote cite {
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.servicepro-shop {
    background: var(--servicepro-surface);
}

.servicepro-shop__card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 650px;
    background: var(--servicepro-page);
}

.servicepro-shop__content {
    display: flex;
    padding: clamp(48px, 7vw, 100px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.servicepro-shop__content h2 {
    font-size: clamp(42px, 4.5vw, 64px);
}

.servicepro-shop__content > p:not(.servicepro-eyebrow) {
    margin: 28px 0 36px;
    color: var(--servicepro-ink-soft);
}

.servicepro-shop__card > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.servicepro-journal {
    background: var(--servicepro-page);
}

.servicepro-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.servicepro-journal-grid article {
    padding: 32px 0;
    border-top: 1px solid var(--servicepro-border);
}

.servicepro-journal-grid article > p {
    margin: 0 0 22px;
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    letter-spacing: 0.12em;
}

.servicepro-journal-grid h3 {
    margin: 0 0 18px;
    font-family: var(--servicepro-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.08;
}

.servicepro-journal-grid h3 a {
    text-decoration: none;
}

.servicepro-journal-grid article > div {
    margin-bottom: 26px;
    color: var(--servicepro-ink-soft);
    font-size: 14px;
}

.servicepro-final {
    padding: clamp(100px, 13vw, 190px) 0;
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
    text-align: center;
}

.servicepro-final h2 {
    max-width: 900px;
    margin: 0 auto 42px;
}

.servicepro-inner {
    min-height: 60vh;
    padding-block: clamp(56px, 8vw, 100px);
}

.servicepro-page-card,
.servicepro-panel,
.servicepro-auth-card {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid var(--servicepro-border);
    background: var(--servicepro-surface);
    box-shadow: var(--servicepro-shadow);
}

.servicepro-auth-card {
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 58px);
    margin: 0 auto;
    border: 1px solid var(--servicepro-border);
    background: var(--servicepro-surface);
    box-shadow: var(--servicepro-shadow);
}

.servicepro-page-card + .servicepro-page-card {
    margin-top: 24px;
}

.servicepro-page-card h1,
.servicepro-page-card h2,
.servicepro-panel h1,
.servicepro-panel h2 {
    margin-top: 0;
    font-family: var(--servicepro-serif);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.servicepro-page-card h2,
.servicepro-panel h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.servicepro-page-card h3,
.servicepro-panel h3 {
    font-family: var(--servicepro-serif);
    font-size: 26px;
    font-weight: 400;
}

.servicepro-page-card p,
.servicepro-panel p,
.content {
    color: var(--servicepro-ink-soft);
}

.content img,
.servicepro-page-card img {
    height: auto;
}

.content a {
    color: var(--servicepro-accent);
    text-underline-offset: 4px;
}

.content a.servicepro-button {
    color: var(--servicepro-ink-inverse);
}

.content a.servicepro-button:hover,
.content a.servicepro-button:focus-visible {
    color: var(--servicepro-dark);
}

.servicepro-breadcrumbs {
    display: flex;
    gap: 10px;
    margin: 0 0 26px;
    flex-wrap: wrap;
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.servicepro-breadcrumbs a::after {
    margin-left: 10px;
    content: "/";
    opacity: 0.4;
}

.servicepro-subpages,
.servicepro-sidebar-list {
    display: flex;
    gap: 10px;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.servicepro-chip {
    display: inline-flex;
    min-height: 36px;
    padding: 0 14px;
    align-items: center;
    border: 1px solid var(--servicepro-border);
    border-radius: var(--servicepro-button-radius);
    text-decoration: none;
}

form {
    margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--servicepro-border);
    border-radius: var(--servicepro-input-radius);
    background: rgba(255, 255, 255, 0.62);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

button,
input[type="submit"] {
    min-height: 46px;
}

.wa-field,
.field {
    margin-bottom: 18px;
}

.wa-name,
.name {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 650;
}

.wa-error-msg,
.error {
    color: #a43e35;
}

.servicepro-footer {
    padding: 80px 0 26px;
    background: #100e0c;
    color: var(--servicepro-ink-inverse);
}

.servicepro-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
    gap: 70px;
    padding-bottom: 70px;
}

.servicepro-footer__brand > p {
    font-size: 12px;
    max-width: 430px;
    margin: 28px 0 0;
    color: rgba(252, 249, 247, 0.6);
}

.servicepro-footer h2 {
    margin: 0 0 20px;
    color: rgba(252, 249, 247, 0.55);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.servicepro-footer ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.servicepro-footer li,
.servicepro-footer a {
    color: rgba(252, 249, 247, 0.84);
    font-size: 13px;
    text-decoration: none;
}

.servicepro-footer a:hover {
    color: #fff;
}

.servicepro-footer__bottom {
    display: flex;
    padding-top: 22px;
    justify-content: space-between;
    border-top: 1px solid rgba(252, 249, 247, 0.14);
    color: rgba(252, 249, 247, 0.44);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.servicepro-editor-open {
    overflow: hidden;
}

.servicepro-editor {
    position: relative;
    z-index: 900;
}

.servicepro-editor__trigger {
    position: fixed;
    z-index: 901;
    top: 112px;
    right: 22px;
    bottom: auto;
    display: inline-flex;
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(252, 249, 247, 0.24);
    border-radius: var(--servicepro-button-radius);
    background: var(--servicepro-dark);
    box-shadow: 0 16px 42px rgba(16, 14, 12, 0.24);
    color: var(--servicepro-ink-inverse);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.05em;
}

.servicepro-editor__trigger span:first-child {
    font-size: 17px;
}

.servicepro-editor__backdrop {
    position: fixed;
    z-index: 902;
    background: rgba(16, 14, 12, 0.48);
    backdrop-filter: blur(3px);
    inset: 0;
}

.servicepro-editor__panel {
    position: fixed;
    z-index: 903;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(520px, 100vw);
    flex-direction: column;
    transform: translateX(102%);
    background: #f7f4f1;
    box-shadow: -24px 0 80px rgba(16, 14, 12, 0.2);
    color: #37302a;
    transition: transform 240ms cubic-bezier(.2,.65,.25,1);
}

.servicepro-editor.is-open .servicepro-editor__panel {
    transform: translateX(0);
}

.servicepro-editor__header {
    display: flex;
    min-height: 88px;
    padding: 18px 22px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(55, 48, 42, 0.15);
    background: #fff;
}

.servicepro-editor__header p,
.servicepro-editor__header h2 {
    margin: 0;
}

.servicepro-editor__header p {
    color: #766d65;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.servicepro-editor__header h2 {
    font-family: var(--servicepro-serif);
    font-size: 29px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.servicepro-editor__header button {
    display: grid;
    width: 42px;
    min-height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(55, 48, 42, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 26px;
    font-weight: 300;
}

.servicepro-editor__form {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
}

.servicepro-editor__intro {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(55, 48, 42, 0.12);
    background: #eeeae5;
}

.servicepro-editor__intro p {
    margin: 0 0 7px;
    color: #6e665f;
    font-size: 12px;
    line-height: 1.5;
}

.servicepro-editor__intro a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-underline-offset: 4px;
}

.servicepro-editor__admin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
}

.servicepro-editor__admin-links a:first-child:not(:last-child) {
    color: var(--servicepro-accent);
}

.servicepro-editor__search {
    display: grid;
    gap: 6px;
    margin-top: 16px;
    color: #6e665f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.servicepro-editor__search input {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(55, 48, 42, 0.18);
    border-radius: var(--servicepro-input-radius);
    background: #fff;
    color: #37302a;
    font: inherit;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.servicepro-editor__groups {
    min-height: 0;
    padding: 14px 14px 120px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.servicepro-editor__group {
    margin-bottom: 10px;
    border: 1px solid rgba(55, 48, 42, 0.14);
    background: #fff;
}

.servicepro-editor__group summary {
    display: flex;
    min-height: 56px;
    padding: 14px 16px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--servicepro-serif);
    font-size: 19px;
    list-style: none;
}

.servicepro-editor__group summary::-webkit-details-marker {
    display: none;
}

.servicepro-editor__group summary span:last-child {
    font-family: var(--servicepro-sans);
    font-size: 22px;
    font-weight: 300;
    transition: transform 180ms ease;
}

.servicepro-editor__group[open] summary span:last-child {
    transform: rotate(45deg);
}

.servicepro-editor__group-body {
    padding: 4px 16px 18px;
    border-top: 1px solid rgba(55, 48, 42, 0.1);
}

.servicepro-editor__field {
    padding: 15px 0;
    border-bottom: 1px solid rgba(55, 48, 42, 0.1);
}

.servicepro-editor__field:last-child {
    border-bottom: 0;
}

.servicepro-editor__field > label:not(.servicepro-editor__toggle) {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
}

.servicepro-editor__field textarea,
.servicepro-editor__field select,
.servicepro-editor__field input[type="text"],
.servicepro-editor__field input[type="file"] {
    width: 100%;
    min-height: 44px;
    padding: 9px 11px;
    border: 1px solid rgba(55, 48, 42, 0.2);
    border-radius: 0;
    background: #fff;
    color: #37302a;
    font-size: 13px;
}

.servicepro-editor__field textarea {
    min-height: 70px;
    line-height: 1.45;
    resize: vertical;
}

.servicepro-editor__field > p {
    margin: 7px 0 0;
    color: #766d65;
    font-size: 12px;
    line-height: 1.45;
}

.servicepro-editor__toggle {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
}

.servicepro-editor__toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.servicepro-editor__toggle span {
    position: relative;
    width: 42px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #d6d0ca;
    transition: background 180ms ease;
}

.servicepro-editor__toggle span::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(16, 14, 12, 0.2);
    content: "";
    transition: transform 180ms ease;
}

.servicepro-editor__toggle input:checked + span {
    background: #6f7561;
}

.servicepro-editor__toggle input:checked + span::after {
    transform: translateX(18px);
}

.servicepro-editor__toggle input:focus-visible + span {
    outline: 3px solid rgba(111, 117, 97, 0.45);
    outline-offset: 3px;
}

.servicepro-editor__toggle b {
    font-size: 12px;
}

.servicepro-editor__color {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 8px;
}

.servicepro-editor__color input[type="color"] {
    width: 46px;
    height: 44px;
    padding: 3px;
    border: 1px solid rgba(55, 48, 42, 0.2);
    background: #fff;
}

.servicepro-editor__image {
    display: grid;
    gap: 9px;
}

.servicepro-editor__image-preview {
    overflow: hidden;
    max-height: 180px;
    background: #eeeae5;
}

.servicepro-editor__image-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.servicepro-editor__image button {
    width: max-content;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8b3d36;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.servicepro-editor__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 82px;
    padding: 14px 18px;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    border-top: 1px solid rgba(55, 48, 42, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(16, 14, 12, 0.06);
}

.servicepro-editor__footer p {
    margin: 0 auto 0 0;
    color: #6e665f;
    font-size: 12px;
    line-height: 1.35;
}

.servicepro-editor__footer p.is-error {
    color: #a43e35;
}

.servicepro-editor__footer p.is-success {
    color: #477040;
}

.servicepro-editor__footer .servicepro-button {
    flex: 0 0 auto;
}

.servicepro-editor__footer .servicepro-button:disabled {
    cursor: wait;
    opacity: 0.58;
}

[data-servicepro-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.65,.25,1);
}

[data-servicepro-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-servicepro-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1020px) {
    .servicepro-header__row {
        grid-template-columns: auto auto 1fr;
    }

    .servicepro-nav-toggle {
        display: inline-grid;
        width: 44px;
        height: 44px;
        padding: 9px;
        place-content: center;
        gap: 6px;
        border: 1px solid rgba(252, 249, 247, 0.25);
        border-radius: 50%;
        background: transparent;
        color: var(--servicepro-ink-inverse);
        cursor: pointer;
    }

    .servicepro-nav-toggle span {
        display: block;
        width: 18px;
        height: 1px;
        background: currentColor;
    }

    .servicepro-nav-toggle b {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .servicepro-header__nav {
        position: fixed;
        top: 92px;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 34px 24px;
        transform: translateX(102%);
        background: var(--servicepro-dark);
        transition: transform 220ms ease;
    }

    .servicepro-header__nav.is-open {
        transform: translateX(0);
    }

    .servicepro-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .servicepro-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(252, 249, 247, 0.12);
        font-family: var(--servicepro-serif);
        font-size: 28px;
        letter-spacing: -0.02em;
    }

    .servicepro-nav a::after {
        display: none;
    }

    .servicepro-header__booking {
        justify-self: end;
    }

    .servicepro-intro__grid,
    .servicepro-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicepro-section-heading {
        align-items: start;
    }

    .servicepro-experience__grid {
        grid-template-columns: 1fr;
    }

    .servicepro-experience__image,
    .servicepro-experience__image img {
        min-height: 560px;
    }

    .servicepro-shop__card {
        grid-template-columns: 1fr;
    }

    .servicepro-shop__card > img {
        min-height: 480px;
        order: -1;
    }
}

@media (max-width: 760px) {
    :root {
        --servicepro-shell: min(1240px, calc(100% - 32px));
    }

    .servicepro-header__row {
        min-height: 76px;
        gap: 12px;
    }

    .servicepro-header__nav {
        top: 76px;
    }

    .servicepro-brand span,
    .servicepro-header__booking {
        display: none;
    }

    .servicepro-nav-toggle {
        grid-column: 3;
        justify-self: end;
    }

    .servicepro-hero--standard {
        min-height: 620px;
    }

    .servicepro-hero--tall {
        min-height: 700px;
    }

    .servicepro-hero--viewport {
        min-height: calc(100svh - 76px);
    }

    .servicepro-hero__inner {
        padding-block: 80px 54px;
        align-items: end;
    }

    .servicepro-hero__shade {
        background:
            linear-gradient(0deg, rgba(12, 9, 7, 0.94) 0%, rgba(12, 9, 7, 0.52) 58%, rgba(12, 9, 7, 0.18) 100%);
    }

    .servicepro-hero__image {
        object-position: 64% 50%;
    }

    .servicepro-hero__slide--center .servicepro-hero__inner,
    .servicepro-hero__slide--right .servicepro-hero__inner {
        justify-content: flex-start;
        text-align: left;
    }

    .servicepro-hero__slide--center .servicepro-hero__content,
    .servicepro-hero__slide--center .servicepro-hero__lead,
    .servicepro-hero__slide--right .servicepro-hero__lead {
        margin-right: 0;
        margin-left: 0;
    }

    .servicepro-hero__slide--center .servicepro-actions,
    .servicepro-hero__slide--right .servicepro-actions {
        justify-content: flex-start;
    }

    .servicepro-slider-arrows {
        bottom: 24px;
        justify-content: center;
    }

    .servicepro-hero--with-dots .servicepro-slider-arrows {
        justify-content: space-between;
    }

    .servicepro-slider-arrows button {
        width: 42px;
        min-height: 42px;
    }

    .servicepro-slider-dots {
        bottom: 43px;
        left: 50%;
        width: max-content;
        max-width: calc(100% - 128px);
        transform: translateX(-50%);
    }

    .servicepro-hero h1 {
        font-size: clamp(44px, 12.4vw, 60px);
        letter-spacing: -0.045em;
    }

    .servicepro-hero__lead {
        margin-block: 26px 30px;
        font-size: 15px;
    }

    .servicepro-section {
        padding-block: 78px;
    }

    .servicepro-service-grid,
    .servicepro-team-grid,
    .servicepro-journal-grid,
    .servicepro-footer__top {
        grid-template-columns: 1fr;
    }

    .servicepro-service-card:nth-child(2) {
        transform: none;
    }

    .servicepro-service-card p {
        min-height: 0;
    }

    .servicepro-experience {
        padding-top: 78px;
    }

    .servicepro-experience__grid {
        gap: 44px;
    }

    .servicepro-experience__image,
    .servicepro-experience__image img {
        min-height: 440px;
    }

    .servicepro-team-card,
    .servicepro-team-card > img {
        min-height: 560px;
    }

    .servicepro-quote blockquote {
        font-size: 36px;
    }

    .servicepro-shop__content {
        padding: 40px 28px;
    }

    .servicepro-shop__card > img {
        min-height: 320px;
    }

    .servicepro-footer {
        padding-top: 60px;
    }

    .servicepro-footer__top {
        gap: 42px;
    }

    .servicepro-footer__bottom {
        gap: 12px;
        align-items: flex-start;
        flex-direction: column;
    }

    .servicepro-editor__trigger {
        top: 90px;
        right: 14px;
        bottom: auto;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .servicepro-editor__trigger span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }
}

@media (max-width: 460px) {
    .servicepro-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .servicepro-actions .servicepro-button,
    .servicepro-actions .servicepro-text-link {
        width: 100%;
        justify-content: center;
    }

    .servicepro-service-card__media {
        aspect-ratio: 0.86;
    }

    .servicepro-editor__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .servicepro-editor__footer p {
        min-height: 15px;
    }

    .servicepro-editor__footer .servicepro-button {
        width: 100%;
    }
}
/* Header layouts */
.servicepro-header {
    --servicepro-header-row-height: 92px;
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.servicepro-header--height-compact {
    --servicepro-header-row-height: 72px;
}

.servicepro-header--height-spacious {
    --servicepro-header-row-height: 112px;
}

.servicepro-header__main {
    position: relative;
}

.servicepro-header__row {
    min-height: var(--servicepro-header-row-height);
}

.servicepro-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.servicepro-header__booking-short,
.servicepro-header__mobile-contacts {
    display: none;
}

.servicepro-header-topbar {
    border-bottom: 1px solid rgba(252, 249, 247, 0.12);
    background: rgba(252, 249, 247, 0.04);
}

.servicepro-header-topbar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(252, 249, 247, 0.72);
    font-size: 12px;
    letter-spacing: 0.07em;
}

.servicepro-header-topbar__contacts {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.servicepro-header-topbar a {
    color: inherit;
    text-decoration: none;
}

.servicepro-header-topbar a:hover {
    color: var(--servicepro-ink-inverse);
}

.servicepro-header-topbar__route {
    flex: 0 0 auto;
    font-weight: 650;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.servicepro-header--layout-centered .servicepro-header__row {
    grid-template-areas:
        ". brand actions"
        "nav nav nav";
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    row-gap: 0;
    min-height: 0;
    padding-block: 18px 15px;
}

.servicepro-header--layout-centered .servicepro-brand {
    grid-area: brand;
    align-items: center;
    text-align: center;
}

.servicepro-header--layout-centered .servicepro-brand__picture img {
    object-position: center;
}

.servicepro-header--layout-centered .servicepro-header__nav {
    grid-area: nav;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid rgba(252, 249, 247, 0.12);
}

.servicepro-header--layout-centered .servicepro-header__actions,
.servicepro-header--layout-centered .servicepro-shop-header__actions {
    grid-area: actions;
    justify-self: end;
}

.servicepro-header--height-compact.servicepro-header--layout-centered .servicepro-header__row {
    padding-block: 12px;
}

.servicepro-header--height-spacious.servicepro-header--layout-centered .servicepro-header__row {
    padding-block: 25px 19px;
}

.servicepro-header.servicepro-header--overlay-active {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 110;
    background: linear-gradient(180deg, rgba(12, 9, 7, 0.68), rgba(12, 9, 7, 0.14));
    box-shadow: none;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.servicepro-has-sticky-header .servicepro-header.servicepro-header--overlay-active {
    position: absolute;
    top: auto;
}

.servicepro-has-sticky-header .servicepro-header.servicepro-header--overlay-active.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(24, 21, 17, 0.96);
    box-shadow: 0 12px 34px rgba(12, 9, 7, 0.16);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.servicepro-header.is-scrolled:not(.servicepro-header--overlay-active) {
    box-shadow: 0 12px 34px rgba(12, 9, 7, 0.12);
}

@media (max-width: 1020px) {
    .servicepro-header {
        --servicepro-header-row-height: 76px;
    }

    .servicepro-header-topbar {
        display: none;
    }

    .servicepro-header--layout-centered .servicepro-header__row,
    .servicepro-header__row {
        display: grid;
        grid-template-areas: "toggle brand actions";
        grid-template-columns: 44px minmax(0, 1fr) minmax(44px, max-content);
        min-height: var(--servicepro-header-row-height);
        padding-block: 0;
        gap: 12px;
    }

    .servicepro-header .servicepro-brand {
        grid-area: brand;
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .servicepro-header .servicepro-brand__picture img {
        object-position: center;
    }

    .servicepro-header .servicepro-nav-toggle,
    .servicepro-header__row .servicepro-nav-toggle {
        grid-area: toggle;
        grid-column: 1;
        justify-self: start;
    }

    .servicepro-header .servicepro-header__actions,
    .servicepro-header .servicepro-shop-header__actions {
        grid-area: actions;
        min-width: 44px;
        justify-self: end;
    }

    .servicepro-header--layout-centered .servicepro-header__nav,
    .servicepro-header__nav {
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 120;
        max-height: calc(100svh - var(--servicepro-header-row-height));
        min-height: calc(100svh - var(--servicepro-header-row-height));
        margin-top: 0;
        padding: 28px max(24px, calc((100vw - var(--servicepro-content-width)) / 2));
        overflow-y: auto;
        border-top: 1px solid rgba(252, 249, 247, 0.12);
        background: var(--servicepro-dark);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        pointer-events: none;
        transform: none;
        visibility: hidden;
        transition: clip-path 220ms ease, opacity 160ms ease, visibility 160ms ease;
    }

    .servicepro-header--layout-centered .servicepro-header__nav.is-open,
    .servicepro-header__nav.is-open {
        clip-path: inset(0);
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .servicepro-header__mobile-contacts {
        display: grid;
        margin-top: 26px;
        padding-top: 22px;
        gap: 10px;
        border-top: 1px solid rgba(252, 249, 247, 0.12);
        color: rgba(252, 249, 247, 0.68);
        font-size: 12px;
    }

    .servicepro-header__mobile-contacts a {
        color: inherit;
        text-decoration: none;
    }
}

@media (max-width: 760px) {
    .servicepro-header .servicepro-brand span {
        display: none;
    }

    .servicepro-header .servicepro-header__booking {
        display: inline-flex;
        width: auto;
        min-width: 64px;
        min-height: 42px;
        padding: 0 10px;
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    .servicepro-header__booking-full {
        display: none;
    }

    .servicepro-header__booking-short {
        display: inline;
    }

    .servicepro-header--overlay-active .servicepro-header__row {
        min-height: 76px;
    }
}


/* Configurable shop shell and utility elements */
body:not(.servicepro-has-reveal) [data-servicepro-reveal] {
    opacity: 1;
    transform: none;
}

.servicepro-has-sticky-header .servicepro-header {
    position: sticky;
    top: 0;
}

.servicepro-announcement {
    position: relative;
    z-index: 101;
    padding: 9px 0;
    background: var(--servicepro-accent);
    color: var(--servicepro-ink-inverse);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.servicepro-announcement .servicepro-shell {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.servicepro-announcement a {
    font-weight: 700;
    text-underline-offset: 3px;
}

.servicepro-brand__picture,
.servicepro-brand__picture img {
    display: block;
    width: auto;
    max-width: 190px;
    height: 48px;
}

.servicepro-brand__picture img,
.servicepro-brand__footer-logo {
    object-fit: contain;
    object-position: left center;
}

.servicepro-brand__footer-logo {
    width: auto;
    max-width: 220px;
    height: 58px;
}

.servicepro-page-card,
.servicepro-panel,
.servicepro-auth-card {
    border-radius: var(--servicepro-card-radius);
}

.servicepro-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.servicepro-footer__social-link {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 9px;
    place-items: center;
    border: 1px solid rgba(252, 249, 247, 0.24);
    border-radius: 50%;
    background: rgba(252, 249, 247, 0.04);
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.servicepro-footer__social-link img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.servicepro-footer__social-link:hover {
    border-color: rgba(252, 249, 247, 0.62);
    background: rgba(252, 249, 247, 0.12);
    transform: translateY(-2px);
}

.servicepro-footer__social-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.servicepro-footer__legal {
    display: flex;
    gap: 12px 28px;
    align-items: center;
    flex-wrap: wrap;
}

.servicepro-footer__developer,
.servicepro-footer__webasyst,
.servicepro-footer .servicepro-footer__policy {
    letter-spacing: 0;
    text-transform: none;
}

.servicepro-footer .servicepro-footer__policy {
    color: rgba(252, 249, 247, 0.78);
    font-size: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(252, 249, 247, 0.34);
    text-underline-offset: 3px;
}

.servicepro-footer .servicepro-footer__policy:hover {
    color: #fff;
    text-decoration-color: currentColor;
}

.servicepro-footer__webasyst {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.servicepro-footer .servicepro-footer__webasyst a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
    color: inherit;
    line-height: inherit;
}

.servicepro-footer__webasyst-mark {
    display: block;
    width: 50px;
    height: 5px;
}

.servicepro-footer .servicepro-footer__developer a {
    color: rgba(252, 249, 247, 0.78);
    font-size: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(252, 249, 247, 0.34);
    text-underline-offset: 3px;
}

.servicepro-footer .servicepro-footer__developer a:hover {
    color: #fff;
    text-decoration-color: currentColor;
}

.servicepro-footer .servicepro-footer__webasyst a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.servicepro-mobile-bar {
    display: none;
}

.servicepro-scroll-top {
    position: fixed;
    z-index: 160;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 48px;
    min-height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--servicepro-border);
    border-radius: 50%;
    background: var(--servicepro-surface);
    box-shadow: var(--servicepro-shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.servicepro-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.servicepro-cookie {
    position: fixed;
    z-index: 700;
    right: 22px;
    bottom: 22px;
    display: flex;
    width: min(520px, calc(100vw - 44px));
    padding: 20px;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--servicepro-border);
    border-radius: var(--servicepro-modal-radius);
    background: var(--servicepro-surface);
    box-shadow: var(--servicepro-shadow);
}

.servicepro-cookie[hidden] {
    display: none;
}

.servicepro-cookie p {
    margin: 0;
    color: var(--servicepro-ink-soft);
    font-size: 12px;
    line-height: 1.5;
}

.servicepro-cookie button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--servicepro-button-radius);
    background: var(--servicepro-dark);
    color: var(--servicepro-ink-inverse);
    cursor: pointer;
    font-size: 12px;
}

@media (max-width: 760px) {
    .servicepro-has-mobile-bar {
        padding-bottom: 66px;
    }

    .servicepro-announcement .servicepro-shell {
        align-items: flex-start;
        gap: 6px;
        flex-direction: column;
    }

    .servicepro-brand__picture,
    .servicepro-brand__picture img {
        max-width: 132px;
        height: 40px;
    }

    .servicepro-mobile-bar {
        position: fixed;
        z-index: 600;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 66px;
        padding-bottom: calc(0px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--servicepro-border);
        background: rgba(252, 249, 247, 0.96);
        backdrop-filter: blur(14px);
    }

    .servicepro-mobile-bar a {
        display: grid;
        padding: 8px 4px;
        place-content: center;
        gap: 2px;
        color: var(--servicepro-ink);
        font-size: 12px;
        letter-spacing: 0.08em;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
    }

    .servicepro-mobile-bar span {
        font-size: 20px;
        line-height: 1;
    }

    .servicepro-scroll-top {
        right: 14px;
        bottom: 80px;
    }

    .servicepro-cookie {
        right: 14px;
        bottom: 80px;
        width: calc(100vw - 28px);
    }
}

@media (max-width: 460px) {
    .servicepro-cookie {
        align-items: stretch;
        flex-direction: column;
    }
}


/* Unified header, catalog mega-menu and search drawer */
.servicepro-header {
    --servicepro-header-row-height: 104px;
}

.servicepro-header--height-compact {
    --servicepro-header-row-height: 72px;
}

.servicepro-header--height-spacious {
    --servicepro-header-row-height: 124px;
}

.servicepro-header__row {
    column-gap: clamp(18px, 2vw, 32px);
}

.servicepro-header__center-contacts {
    display: none;
}

.servicepro-brand span {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.145em;
}

.servicepro-header__actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.servicepro-header__booking {
    min-height: 40px;
    padding-inline: 20px;
    font-size: 12px;
}

.servicepro-header-tools {
    display: flex;
    align-items: center;
    gap: 4px;
}

.servicepro-header-tool {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(252, 249, 247, 0.82);
    cursor: pointer;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.servicepro-header-tool:hover,
.servicepro-header-tool:focus-visible {
    background: rgba(252, 249, 247, 0.1);
    color: #fff;
}

.servicepro-header-tool svg,
.servicepro-search-drawer svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.servicepro-header-tool > span {
    position: absolute;
    top: 0;
    right: -1px;
    display: flex;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--servicepro-dark);
    border-radius: 999px;
    background: var(--servicepro-surface);
    color: var(--servicepro-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.servicepro-nav {
    gap: clamp(13px, 1.55vw, 26px);
}

.servicepro-nav > a,
.servicepro-nav__catalog > a {
    font-size: 12px;
    white-space: nowrap;
}

.servicepro-nav > a,
.servicepro-nav__catalog,
.servicepro-nav__more {
    flex: 0 0 auto;
}

.servicepro-nav > .is-overflow-hidden {
    display: none;
}

.servicepro-nav__catalog {
    position: relative;
    display: flex;
    align-items: center;
}

.servicepro-nav__catalog > button {
    display: inline-flex;
    width: 24px;
    height: 28px;
    margin-left: -4px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(252, 249, 247, 0.72);
    cursor: pointer;
}

.servicepro-nav__catalog > button svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 160ms ease;
}

.servicepro-nav__catalog.is-open > button svg {
    transform: rotate(180deg);
}

.servicepro-nav__catalog.is-current > a::after {
    transform: scaleX(1);
}

.servicepro-nav__more[hidden] {
    display: none;
}

.servicepro-nav__more {
    position: relative;
    display: flex;
    align-items: center;
}

.servicepro-nav__more-toggle {
    display: inline-flex;
    min-height: 36px;
    padding: 0;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: rgba(252, 249, 247, 0.82);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.servicepro-nav__more-toggle svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 160ms ease;
}

.servicepro-nav__more.is-open .servicepro-nav__more-toggle svg {
    transform: rotate(180deg);
}

.servicepro-nav__more-menu {
    position: absolute;
    z-index: 155;
    top: calc(100% + 18px);
    right: 0;
    display: grid;
    width: max-content;
    min-width: 210px;
    max-width: min(320px, 82vw);
    padding: 10px 18px;
    transform: translateY(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--servicepro-modal-radius);
    background: rgba(24, 21, 17, 0.985);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.servicepro-nav__more.is-open .servicepro-nav__more-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.servicepro-nav__more-menu .servicepro-nav__more-link {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid rgba(252, 249, 247, 0.1);
    color: rgba(252, 249, 247, 0.78);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: normal;
}

.servicepro-nav__more-menu .servicepro-nav__more-link:last-child {
    border-bottom: 0;
}

.servicepro-nav__more-menu .servicepro-nav__more-link::after {
    display: none;
}

.servicepro-nav__more-menu .servicepro-nav__more-link:hover,
.servicepro-nav__more-menu .servicepro-nav__more-link.is-current {
    color: #fff;
}

.servicepro-mega-menu {
    position: absolute;
    z-index: 150;
    top: calc(100% + 22px);
    left: 50%;
    display: grid;
    width: min(760px, 82vw);
    padding: 28px;
    grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1.6fr);
    gap: 32px;
    transform: translate(-50%, 12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--servicepro-modal-radius);
    background: rgba(24, 21, 17, 0.985);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.servicepro-nav__catalog:hover .servicepro-mega-menu,
.servicepro-nav__catalog:focus-within .servicepro-mega-menu,
.servicepro-nav__catalog.is-open .servicepro-mega-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.servicepro-mega-menu__intro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.servicepro-mega-menu__intro > span {
    color: rgba(252, 249, 247, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.servicepro-mega-menu__intro strong {
    max-width: 220px;
    color: var(--servicepro-surface);
    font-size: 24px;
    font-weight: 450;
    line-height: 1.08;
}

.servicepro-mega-menu__intro a,
.servicepro-mega-menu__links a {
    color: rgba(252, 249, 247, 0.78);
    text-transform: none;
}

.servicepro-mega-menu__intro a::after,
.servicepro-mega-menu__links a::after {
    display: none;
}

.servicepro-mega-menu__intro a {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.servicepro-mega-menu__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 26px;
}

.servicepro-mega-menu__links:only-child {
    grid-column: 1 / -1;
}

.servicepro-mega-menu__group {
    min-width: 0;
    padding: 4px 0 12px;
    border-bottom: 1px solid rgba(252, 249, 247, 0.1);
}

.servicepro-mega-menu__links a {
    display: flex;
    min-width: 0;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(252, 249, 247, 0.1);
    font-size: 13px;
}

.servicepro-mega-menu__group > .servicepro-mega-menu__root {
    padding: 8px 0 6px;
    border-bottom: 0;
    color: var(--servicepro-surface);
    font-size: 14px;
    font-weight: 650;
}

.servicepro-mega-menu__children {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
}

.servicepro-mega-menu__children > a {
    display: inline-flex;
    padding: 2px 0;
    border-bottom: 0;
    color: rgba(252, 249, 247, 0.58);
    font-size: 12px;
    line-height: 1.35;
}

.servicepro-mega-menu__links a:hover {
    color: #fff;
}

.servicepro-mega-menu__links small {
    color: rgba(252, 249, 247, 0.38);
    font-size: 12px;
}

.servicepro-search-drawer {
    position: absolute;
    z-index: 145;
    top: 100%;
    right: 0;
    left: 0;
    transform: translateY(-16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(24, 21, 17, 0.985);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.servicepro-search-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.servicepro-search-drawer__inner {
    position: relative;
    padding-block: 34px;
}

.servicepro-search-drawer form {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 48px;
    align-items: center;
    gap: 22px;
}

.servicepro-search-drawer label {
    color: rgba(252, 249, 247, 0.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.servicepro-search-drawer input {
    width: 100%;
    min-height: 52px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(252, 249, 247, 0.3);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--servicepro-surface);
    font: inherit;
    font-size: clamp(18px, 2vw, 28px);
}

.servicepro-search-drawer input::placeholder {
    color: rgba(252, 249, 247, 0.35);
}

.servicepro-search-drawer input:focus-visible {
    outline: 2px solid var(--servicepro-surface);
    outline-offset: 4px;
}

.servicepro-search-drawer form button,
.servicepro-search-drawer__close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(252, 249, 247, 0.22);
    border-radius: 50%;
    background: transparent;
    color: var(--servicepro-surface);
    cursor: pointer;
}

.servicepro-search-drawer__close {
    position: absolute;
    top: 6px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    font-size: 24px;
}

.servicepro-header--layout-centered .servicepro-header__row {
    grid-template-areas:
        "contacts brand actions"
        "nav nav nav";
}

.servicepro-header--layout-centered .servicepro-header__center-contacts {
    grid-area: contacts;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    justify-self: start;
}

.servicepro-header__center-contacts a {
    color: rgba(252, 249, 247, 0.72);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .servicepro-header__booking {
        padding-inline: 16px;
    }

    .servicepro-header__booking-full {
        font-size: 12px;
    }

    .servicepro-header-tools {
        gap: 0;
    }

    .servicepro-header-tool {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
}

@media (max-width: 1020px) {
    .servicepro-header.servicepro-header--layout-centered .servicepro-header__row {
        grid-template-areas: "toggle brand actions";
        grid-template-columns: 44px minmax(0, 1fr) minmax(44px, max-content);
        padding-block: 0;
    }

    .servicepro-header,
    .servicepro-header--height-compact,
    .servicepro-header--height-spacious {
        --servicepro-header-row-height: 76px;
    }

    .servicepro-header--layout-centered .servicepro-header__center-contacts,
    .servicepro-header__center-contacts,
    .servicepro-header-tools {
        display: none;
    }

    .servicepro-header-tools--search {
        display: flex;
    }

    .servicepro-header-tools--search > :not([data-servicepro-search-open]) {
        display: none;
    }

    .servicepro-nav {
        align-items: stretch;
    }

    .servicepro-nav > a,
    .servicepro-nav__catalog > a {
        white-space: normal;
    }

    .servicepro-nav > a.is-overflow-hidden {
        display: block;
    }

    .servicepro-nav > .servicepro-nav__catalog.is-overflow-hidden {
        display: grid;
    }

    .servicepro-nav__more {
        display: none;
    }

    .servicepro-nav__catalog {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .servicepro-nav__catalog > button {
        width: 44px;
        height: 44px;
        margin: 0;
        justify-self: end;
    }

    .servicepro-mega-menu {
        position: static;
        display: none;
        width: auto;
        padding: 18px 0 4px;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        transform: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
    }

    .servicepro-nav__catalog:hover .servicepro-mega-menu,
    .servicepro-nav__catalog:focus-within .servicepro-mega-menu {
        display: none;
        transform: none;
    }

    .servicepro-nav__catalog.is-open .servicepro-mega-menu {
        display: grid;
    }

    .servicepro-mega-menu__intro {
        display: none;
    }

    .servicepro-mega-menu__links {
        grid-template-columns: 1fr;
    }

    .servicepro-mega-menu__links a {
        padding: 10px 0;
        font-size: 14px;
    }

    .servicepro-mega-menu__group {
        padding: 2px 0 12px;
    }

    .servicepro-mega-menu__group > .servicepro-mega-menu__root {
        padding: 10px 0 7px;
    }

    .servicepro-mega-menu__children {
        display: grid;
        gap: 0;
    }

    .servicepro-mega-menu__children > a {
        padding: 6px 0 6px 16px;
        font-size: 13px;
    }

    .servicepro-search-drawer__inner {
        padding: 24px;
    }
}

@media (max-width: 720px) {
    .servicepro-search-drawer form {
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 12px;
    }

    .servicepro-search-drawer label {
        grid-column: 1 / -1;
    }

    .servicepro-search-drawer__close {
        top: 2px;
        right: 12px;
    }
}


/* Compact consent notice: visible without covering primary actions. */
.servicepro-cookie {
    right: auto;
    left: 22px;
    width: min(380px, calc(100vw - 44px));
    padding: 12px 14px;
    gap: 12px;
    border-radius: var(--servicepro-modal-radius);
}

.servicepro-cookie button {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 12px;
}

@media (max-width: 460px) {
    .servicepro-cookie {
        right: 10px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        left: 10px;
        width: auto;
        padding: 10px 12px;
        align-items: center;
        flex-direction: row;
    }

    .servicepro-cookie p {
        font-size: 12px;
        line-height: 1.35;
    }
}

/* Compact mobile chrome: keep controls touch-friendly without stealing content height. */
@media (max-width: 760px) {
    .servicepro-header,
    .servicepro-header--height-compact,
    .servicepro-header--height-spacious {
        --servicepro-header-row-height: 64px;
    }

    .servicepro-header--layout-centered .servicepro-header__row,
    .servicepro-header__row,
    .servicepro-header--overlay-active .servicepro-header__row {
        min-height: var(--servicepro-header-row-height);
    }

    .servicepro-header .servicepro-brand__picture,
    .servicepro-header .servicepro-brand__picture img {
        max-width: 118px;
        height: 32px;
    }

    .servicepro-header .servicepro-nav-toggle,
    .servicepro-header__row .servicepro-nav-toggle {
        width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 8px;
    }

    .servicepro-header .servicepro-header__booking {
        min-width: 60px;
        min-height: 40px;
        padding-inline: 9px;
    }

    .servicepro-has-mobile-bar {
        padding-bottom: calc(56px + env(safe-area-inset-bottom));
    }

    .servicepro-mobile-bar {
        height: calc(56px + env(safe-area-inset-bottom));
        min-height: calc(56px + env(safe-area-inset-bottom));
    }

    .servicepro-mobile-bar a {
        min-height: 55px;
        padding: 4px;
        gap: 1px;
    }

    .servicepro-mobile-bar span {
        font-size: 18px;
    }

    .servicepro-mobile-bar svg {
        width: 18px;
        height: 18px;
        margin-inline: auto;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.7;
    }

    .servicepro-scroll-top,
    .servicepro-cookie {
        bottom: calc(68px + env(safe-area-inset-bottom));
    }
}

/* Пользовательская подпись не должна вытеснять логотип за пределы шапки. */
.servicepro-header .servicepro-header__booking--custom {
    max-width: 260px;
    padding-block: 7px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
    text-align: center;
    text-transform: none;
}

@media (max-width: 760px) {
    .servicepro-header .servicepro-header__booking--custom {
        max-width: 36vw;
        padding-inline: 7px;
        font-size: 11px;
        letter-spacing: normal;
    }
}

/* Mobile navigation stays in the viewport; only its own contents scroll. */
@media (max-width:1020px) {
    body.servicepro-nav-open .servicepro-header {
        position:fixed; top:0; left:0; right:0; width:100%; z-index:150;
        transform:none; filter:none; backdrop-filter:none;
    }
    body.servicepro-nav-open .servicepro-header__nav {
        position:fixed; top:var(--servicepro-menu-top,92px); bottom:0;
        min-height:0; max-height:none; overflow-y:auto;
        overscroll-behavior:contain; -webkit-overflow-scrolling:touch;
    }
    .servicepro-header .servicepro-header__mobile-contacts {
        border-top:0; margin-top:24px; padding-top:0;
    }
}

/* Shared mobile shortcuts and messenger launcher. */
.servicepro-mobile-bar > a { position:relative; min-width:0; }
.servicepro-mobile-bar .servicepro-mobile-bar__label { font:500 10px/1.2 var(--servicepro-sans); letter-spacing:0; text-transform:none; }
.servicepro-mobile-bar .servicepro-mobile-bar__count { position:absolute; top:3px; left:calc(50% + 7px); min-width:16px; height:16px; padding:0 3px; border-radius:20px; background:var(--servicepro-dark); color:var(--servicepro-surface); font:600 10px/16px sans-serif; }
.servicepro-mobile-bar { grid-template-columns:none; grid-auto-flow:column; grid-auto-columns:minmax(0,1fr); }
.servicepro-quick-dialog { position:fixed; inset:0; width:100%; max-width:480px; height:100dvh; max-height:100dvh; margin:0 0 0 auto; padding:20px; border:0; background:var(--servicepro-surface); color:var(--servicepro-ink); overflow-y:auto; overscroll-behavior:contain; }
.servicepro-quick-dialog:not([open]) { display:none; }
.servicepro-quick-dialog::backdrop { background:rgba(0,0,0,.5); }
.servicepro-quick-dialog header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.servicepro-quick-dialog header button { width:44px; height:44px; font-size:28px; border:0; background:transparent; color:inherit; cursor:pointer; }
.servicepro-quick-dialog nav a { display:block; padding:14px 0; border-bottom:1px solid var(--servicepro-border); color:inherit; text-decoration:none; }
.servicepro-quick-dialog__children { padding-left:20px; font-size:14px; }
html.servicepro-quick-open { overflow:hidden; }
.servicepro-messengers { position:fixed; right:20px; bottom:100px; z-index:610; display:flex; flex-direction:column; align-items:center; gap:12px; }
.servicepro-messengers__links { display:flex; flex-direction:column; gap:10px; max-height:calc(100dvh - 220px); overflow-y:auto; padding:4px; }
.servicepro-messengers__links[hidden] { display:none; }
.servicepro-messengers__toggle,.servicepro-messengers__link { width:50px; height:50px; min-height:50px; display:grid; place-items:center; border:0; border-radius:50%; background:var(--servicepro-dark); color:white; box-shadow:0 4px 18px #0003; cursor:pointer; text-decoration:none; }
.servicepro-messengers__link img { width:26px; height:26px; object-fit:contain; }
.servicepro-messengers__link--telegram { background:#3390ec; }
.servicepro-messengers__link--whatsapp { background:#25d366; }
.servicepro-messengers__link--vk { background:#0077ff; }
.servicepro-messengers__link--max { background:#7055dd; }
.servicepro-messengers__link--dzen { background:#222; }
.servicepro-messengers__toggle svg { width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:1.8; }
.servicepro-messengers__toggle span { display:none; font:32px/1 sans-serif; }
.servicepro-messengers.is-open .servicepro-messengers__toggle svg { display:none; }
.servicepro-messengers.is-open .servicepro-messengers__toggle span { display:block; }
body.servicepro-nav-open .servicepro-messengers,html.servicepro-quick-open .servicepro-messengers { visibility:hidden; }
@media(max-width:760px) {
 .servicepro-mobile-bar .servicepro-mobile-bar__label { font-size:10px; }
 .servicepro-messengers { right:14px; bottom:calc(76px + env(safe-area-inset-bottom)); }
 body:not(.servicepro-has-mobile-bar) .servicepro-messengers { bottom:20px; }
 body:has(.servicepro-messengers) .servicepro-scroll-top { right:auto; left:14px; }
}

/* Shared mobile menu typography and drawer layout. */
.servicepro-quick-dialog { box-sizing:border-box; }
.servicepro-quick-dialog header strong { font-size:18px; line-height:1.4; }
.servicepro-quick-dialog nav a { font-size:17px; font-weight:400; line-height:1.5; letter-spacing:normal; text-transform:none; }
.servicepro-primary-dialog #servicepro-nav { position:static; display:block; width:100%; height:auto; max-height:none; margin:0; padding:0; background:transparent; color:inherit; opacity:1; visibility:visible; transform:none; overflow:visible; box-shadow:none; border:0; }
.servicepro-primary-dialog .servicepro-nav { display:block; padding:0; margin:0; color:inherit; }
.servicepro-primary-dialog .servicepro-nav a { margin:0; padding:14px 0; font-size:17px; font-weight:400; line-height:1.5; letter-spacing:normal; text-transform:none; color:inherit; border-bottom:1px solid var(--servicepro-border); }
.servicepro-primary-dialog .servicepro-nav a::after { display:none; }
.servicepro-primary-dialog .servicepro-nav__catalog { display:grid; grid-template-columns:minmax(0,1fr) 44px; align-items:center; }
.servicepro-primary-dialog .servicepro-nav__catalog > button { height:54px; border-bottom:1px solid var(--servicepro-border); border-radius:0; color:inherit; }
.servicepro-primary-dialog .servicepro-mega-menu { padding:0 0 0 16px; color:inherit; }
.servicepro-primary-dialog .servicepro-mega-menu__links { gap:0; }
.servicepro-primary-dialog .servicepro-mega-menu__group { padding:0; }
.servicepro-primary-dialog .servicepro-mega-menu__children > a { padding-left:16px; }
.servicepro-primary-dialog .servicepro-header__mobile-contacts { display:grid; gap:12px; margin:24px 0 0; padding:0; border:0; font-size:15px; }
.servicepro-primary-dialog .servicepro-header__mobile-contacts a { color:inherit; }

/* Maximum page heading size across all applications. */
body.servicepro-body:not(:has(.servicepro-home)) h1 { font-size:40px !important; }
@media (max-width:600px) { body.servicepro-body:not(:has(.servicepro-home)) h1 { font-size:32px !important; } }
body.servicepro-app-photos #servicepro-content .servicepro-photo-single__header h1 { font-size:28px !important; }

/* Heading hierarchy follows the 40 px page-title scale. */
body.servicepro-body:not(:has(.servicepro-home)) h2 { font-size:32px !important; }
body.servicepro-body:not(:has(.servicepro-home)) h3 { font-size:26px !important; }
body.servicepro-body:not(:has(.servicepro-home)) h4 { font-size:22px !important; }
body.servicepro-body:not(:has(.servicepro-home)) h5 { font-size:18px !important; }
body.servicepro-body:not(:has(.servicepro-home)) h6 { font-size:16px !important; }
@media (max-width:600px) {
    body.servicepro-body:not(:has(.servicepro-home)) h2 { font-size:28px !important; }
    body.servicepro-body:not(:has(.servicepro-home)) h3 { font-size:24px !important; }
    body.servicepro-body:not(:has(.servicepro-home)) h4 { font-size:20px !important; }
}
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-footer h2 { font-size:12px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-editor__header h2 { font-size:29px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-directory__card > h2 { font-size:24px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-product-card h2 { font-size:clamp(15px,1.15vw,17px) !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-post-card h2,
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-photo-album__body :is(h2,h3) { font-size:25px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-blog-sidebar h3,
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-catalog-sidebar .servicepro-sidebar-block > h2 { font-size:20px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-filter-param h3 { font-size:15px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-catalog-top-filter__heading h2 { font-size:13px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-account-order-aside h2 { font-size:22px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-features .divider h3 { font-size:18px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-photo-stream-heading h2 { font-size:28px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-booking-steps h3 { font-size:24px !important; }
body.servicepro-body:not(:has(.servicepro-home)) .servicepro-booking-specialist-card h3 { font-size:23px !important; }
body.servicepro-body:not(:has(.servicepro-home)) #js-order-page .s-section-header > .s-header { font-size:25px !important; }
body.servicepro-body:not(:has(.servicepro-home)) :is(#wa-step-auth-section,#wa-step-region-section,#wa-step-payment-section) > .wa-section-header .wa-header { font-size:20px !important; }

/* Fixed launcher geometry: opening links must never move the control. */
.servicepro-body .servicepro-messengers { width:50px; height:50px; padding:0; background:transparent; box-shadow:none; }
.servicepro-body .servicepro-messengers__links { position:absolute; right:0; bottom:62px; width:50px; padding:0; margin:0; background:transparent; box-shadow:none; overflow-x:hidden; scrollbar-width:none; }
.servicepro-body .servicepro-messengers__link { flex:0 0 50px; box-shadow:none; margin:0; transform:none; }
.servicepro-body .servicepro-messengers__toggle { position:relative; box-sizing:border-box; flex:0 0 50px; padding:0; margin:0; border:0; box-shadow:none; letter-spacing:0; background:var(--servicepro-messenger-background,var(--servicepro-dark)); transform:none !important; }
.servicepro-body .servicepro-messengers__toggle > img { width:26px; height:26px; grid-area:1/1; object-fit:contain; opacity:0; transition:opacity 350ms ease-in-out; }
.servicepro-body .servicepro-messengers.has-rotating-icon .servicepro-messengers__toggle > svg,
.servicepro-body .servicepro-messengers.is-open .servicepro-messengers__toggle > img { display:none; }
.servicepro-body .servicepro-messengers__toggle > span { position:absolute; inset:0; font-size:0; }
.servicepro-body .servicepro-messengers__toggle > span::before,
.servicepro-body .servicepro-messengers__toggle > span::after { content:""; position:absolute; top:24px; left:15px; width:20px; height:2px; background:currentColor; transform:rotate(45deg); }
.servicepro-body .servicepro-messengers__toggle > span::after { transform:rotate(-45deg); }

.servicepro-body .servicepro-messengers__toggle > img.is-active { opacity:1; }
@media (prefers-reduced-motion: reduce) { .servicepro-body .servicepro-messengers__toggle > img { transition:none; } }
