:root {
    --hc-blue: #2f4f9d;
    --hc-blue-soft: #c4dcff;
    --hc-blue-line: #9cadcf;
    --hc-orange: #ff8243;
    --hc-orange-deep: #f25b18;
    --hc-ink: #111111;
    --hc-muted: #7f7f7f;
    --hc-panel: #f3f3f3;
    --hc-white: #ffffff;
    --hc-serif: Georgia, 'Times New Roman', serif;
    --hc-sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-width: 0;
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--hc-white);
    color: var(--hc-ink);
    font-family: var(--hc-sans);
}

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

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

.booking-page {
    min-height: 100vh;
    padding: clamp(150px, 22vh, 205px) clamp(28px, 7.5vw, 165px);
    background: var(--hc-white);
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
    gap: clamp(40px, 2.8vw, 48px);
    max-width: 1728px;
    margin: 0 auto;
}

.booking-mobile-progress {
    display: none;
}

.booking-sidebar {
    position: sticky;
    top: clamp(24px, 4vh, 48px);
    align-self: start;
    border-right: 4px solid var(--hc-blue);
    padding: 8px clamp(28px, 4vw, 62px) 36px 0;
}

.booking-step {
    margin-bottom: 42px;
    color: color-mix(in srgb, var(--hc-blue) 48%, white);
    font-family: var(--hc-serif);
    font-size: clamp(23px, 1.65vw, 32px);
    line-height: 1.12;
}

.booking-step:last-child {
    margin-bottom: 0;
}

.booking-step__label {
    display: inline-block;
    padding-bottom: 9px;
}

.booking-step.is-current > .booking-step__label {
    color: var(--hc-blue);
    font-weight: 700;
    border-bottom: 3px solid var(--hc-orange-deep);
}

.booking-summary-pill {
    display: block;
    width: min(100%, 324px);
    margin-top: 10px;
    padding: 12px 28px;
    border: 2px solid var(--hc-orange-deep);
    border-radius: 28px;
    color: var(--hc-blue);
    line-height: 1.15;
    overflow: hidden;
}

.booking-summary-pill[hidden] {
    display: none;
}

.booking-selection-preview.is-plain .booking-summary-pill {
    width: auto;
    padding: 12px 0 0;
    border: 0;
    border-radius: 0;
}

.booking-summary-pill strong,
.booking-summary-pill span {
    display: block;
    overflow-wrap: anywhere;
}

.booking-summary-pill strong {
    color: inherit;
    font-weight: 600;
}

.booking-summary-pill span {
    font-weight: 400;
}

.booking-content {
    min-width: 0;
}

.booking-title {
    margin: 0 0 32px;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: clamp(42px, 3.2vw, 58px);
    font-weight: 700;
    line-height: 1.06;
}

.booking-muted,
.booking-note {
    color: var(--hc-muted);
    font-size: 20px;
    line-height: 1.4;
}

.booking-kicker {
    margin: 0 0 12px;
    color: var(--hc-orange-deep);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-alert {
    margin-bottom: 24px;
    padding: 18px 22px;
    border-radius: 22px;
    background: #fff2eb;
    color: #9f3100;
    font-weight: 700;
}

.booking-empty {
    padding: 28px;
    border: 3px solid var(--hc-blue-line);
    border-radius: 34px;
    color: var(--hc-blue);
    font-size: 22px;
    line-height: 1.35;
}

.salon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 405px));
    gap: 22px 50px;
    align-items: start;
    max-width: 860px;
}

.salon-tile {
    position: relative;
    min-height: 170px;
    padding: 30px 70px 30px 32px;
    border-radius: 42px;
    background: var(--hc-blue-soft);
    color: var(--hc-ink);
    transition: min-height .18s ease, background-color .18s ease, color .18s ease;
}

.salon-tile.is-expanded,
.salon-tile.is-selected {
    min-height: 340px;
    background: var(--hc-orange);
}

.salon-tile.is-expanded,
.salon-tile.is-selected {
    height: auto;
    padding-bottom: 32px;
}

.salon-tile__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.salon-tile__content {
    position: relative;
    z-index: 2;
    display: block;
    pointer-events: none;
}

.salon-tile__city {
    display: block;
    margin-bottom: 18px;
    font-size: clamp(28px, 2.35vw, 36px);
    font-weight: 800;
}

.salon-tile__address {
    display: block;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1.1;
}

.salon-tile.is-expanded .salon-tile__address,
.salon-tile.is-selected .salon-tile__address {
    color: var(--hc-white);
}

.salon-tile__arrow {
    position: absolute;
    z-index: 3;
    top: 32px;
    right: 32px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hc-blue);
    font-size: 52px;
    font-weight: 800;
    line-height: .5;
    cursor: pointer;
}

.salon-tile.is-expanded .salon-tile__arrow,
.salon-tile.is-selected .salon-tile__arrow {
    color: var(--hc-white);
    transform: rotate(180deg);
}

.salon-tile__details {
    position: relative;
    z-index: 3;
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
    pointer-events: auto;
    color: var(--hc-white);
}

.salon-tile.is-expanded .salon-tile__details,
.salon-tile.is-selected .salon-tile__details {
    display: flex;
}

.salon-tile__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    font-weight: 700;
}

.salon-tile__rating-value {
    font-size: 26px;
    line-height: 1;
}

.salon-tile__stars {
    display: inline-flex;
    gap: 2px;
    font-size: 24px;
    line-height: 1;
}

.salon-tile__star {
    position: relative;
    color: rgba(255, 255, 255, .45);
}

.salon-tile__star::before {
    content: '★';
    position: absolute;
    inset: 0;
    width: var(--star-fill, 0%);
    overflow: hidden;
    color: #ffd54a;
}

.salon-tile__rating-count {
    flex-basis: 100%;
    font-size: 18px;
    font-weight: 600;
    opacity: .95;
}

.salon-tile__map {
    display: block;
    overflow: hidden;
    border-radius: 24px;
}

.salon-tile__map iframe {
    display: block;
    width: 100%;
    height: 150px;
    border: 0;
}

.booking-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 34px;
    font-family: var(--hc-serif);
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.25;
}

.booking-filters span,
.booking-filters a {
    padding-right: 18px;
    margin-right: 18px;
    border-right: 2px solid var(--hc-ink);
}

.booking-filters a:last-child {
    border-right: 0;
}

.booking-filters a.is-active {
    color: var(--hc-blue);
    font-weight: 700;
}

.service-list {
    display: grid;
    gap: 34px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background: var(--hc-blue-soft);
}

.service-card__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 74px;
    gap: 28px;
    align-items: center;
    min-height: 122px;
    padding: 28px 28px 28px 36px;
}

.service-card strong {
    display: block;
    font-size: clamp(25px, 2vw, 36px);
    line-height: 1.15;
}

.service-card small {
    display: block;
    margin-top: 10px;
    font-size: clamp(21px, 1.7vw, 30px);
}

.service-card__price {
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: clamp(34px, 3vw, 56px);
    font-weight: 700;
    white-space: nowrap;
}

.service-card__description {
    margin: 0;
    padding: 0 36px 36px;
    font-size: clamp(19px, 1.6vw, 30px);
    line-height: 1.16;
}

.service-card__description summary {
    width: fit-content;
    cursor: pointer;
    color: var(--hc-blue);
    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: 800;
}

.service-card__description p {
    margin: 18px 0 0;
}

.booking-radio {
    width: 62px;
    height: 62px;
    border: 8px solid var(--hc-white);
    border-radius: 50%;
    background: var(--hc-white);
}

.service-card.is-selected .booking-radio {
    background: var(--hc-orange);
}

.master-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 44px 54px;
}

.master-card {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    align-items: stretch;
    min-height: 206px;
    overflow: hidden;
    border-radius: 42px;
    background: var(--hc-blue-soft);
    color: var(--hc-blue);
}

.master-card.is-selected {
    background: var(--hc-orange-deep);
    color: var(--hc-white);
}

.master-card--any .master-card__photo {
    background: var(--hc-blue);
    color: var(--hc-white);
}

.master-card--any.is-selected .master-card__photo {
    background: var(--hc-white);
    color: var(--hc-orange-deep);
}

.master-card__photo {
    display: grid;
    place-items: center;
    width: 172px;
    min-height: 206px;
    height: 100%;
    overflow: hidden;
    border-radius: 42px;
    background: #e9edf5;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: 86px;
    font-weight: 700;
}

.master-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.master-card__text {
    align-self: start;
    justify-self: end;
    width: min(100%, 340px);
    min-width: 0;
    padding: 24px clamp(42px, 3.6vw, 62px) 20px 18px;
    text-align: center;
    font-family: var(--hc-serif);
}

.master-card__text strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: clamp(30px, 2.6vw, 50px);
    line-height: 1.02;
}

.master-card__text small {
    display: block;
    margin-top: 12px;
    font-size: clamp(22px, 1.75vw, 30px);
    font-weight: 700;
}

.calendar-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 56px;
    padding: clamp(28px, 4vw, 58px);
    border-radius: 46px;
    background: var(--hc-panel);
}

.calendar-panel--loading,
.calendar-panel--error {
    grid-template-columns: 1fr;
    min-height: 430px;
}

.calendar-panel--loading {
    gap: 32px;
}

.calendar-loading-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--hc-muted);
    font-size: clamp(20px, 1.65vw, 28px);
    font-weight: 800;
}

.calendar-loading-status__dot {
    width: .7em;
    height: .7em;
    border-radius: 50%;
    background: var(--hc-orange-deep);
    animation: booking-loading-dot 1.5s ease infinite;
}

.calendar-skeleton {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 56px;
    width: 100%;
    align-items: start;
}

.calendar-skeleton__calendar,
.calendar-skeleton__times {
    min-width: 0;
}

.calendar-skeleton__month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.calendar-skeleton__controls {
    display: inline-flex;
    gap: 24px;
}

.calendar-skeleton__controls span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.calendar-skeleton__bar {
    display: block;
    height: 34px;
    border-radius: 8px;
}

.calendar-skeleton__bar--month {
    width: min(40%, 170px);
}

.calendar-skeleton__bar--title {
    width: min(52%, 220px);
    margin-bottom: 34px;
}

.calendar-skeleton__bar--timezone {
    width: min(76%, 320px);
    margin-bottom: 36px;
}

.calendar-skeleton__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(34px, 1fr));
    gap: 26px 22px;
}

.calendar-skeleton__days span {
    aspect-ratio: 1;
    border-radius: 50%;
}

.calendar-skeleton__slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 18px;
}

.calendar-skeleton__slots span {
    min-height: 116px;
    border-radius: 8px;
}

.calendar-skeleton :where(
    .calendar-skeleton__bar,
    .calendar-skeleton__controls span,
    .calendar-skeleton__days span,
    .calendar-skeleton__slots span
) {
    background-color: #e0e0e0;
    background-image: linear-gradient(90deg, #e0e0e0 0%, #eeeeee 42%, #d8d8d8 64%, #e0e0e0 100%);
    background-size: 220% 100%;
    animation: booking-skeleton-shine 1.5s ease infinite;
}

.calendar-panel--error {
    align-content: center;
    gap: 24px;
    place-items: center;
    text-align: center;
}

.calendar-panel--error .booking-empty {
    max-width: 620px;
}

.calendar-panel--error .booking-cta {
    margin-top: 0;
}

@keyframes booking-skeleton-shine {
    0% {
        background-position: 160% 0;
    }

    100% {
        background-position: -160% 0;
    }
}

@keyframes booking-loading-dot {
    50% {
        transform: scale(.72);
        opacity: .45;
    }
}

@media (prefers-reduced-motion: reduce) {
    .calendar-loading-status__dot,
    .calendar-skeleton :where(
        .calendar-skeleton__bar,
        .calendar-skeleton__controls span,
        .calendar-skeleton__days span,
        .calendar-skeleton__slots span
    ) {
        animation: none;
    }

    .calendar-skeleton :where(
        .calendar-skeleton__bar,
        .calendar-skeleton__controls span,
        .calendar-skeleton__days span,
        .calendar-skeleton__slots span
    ) {
        background-image: none;
    }
}

.calendar-month header,
.time-panel h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 34px;
    color: var(--hc-muted);
    font-size: 24px;
}

.calendar-month header a {
    color: var(--hc-muted);
    font-size: 58px;
    line-height: .8;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(34px, 1fr));
    gap: 18px;
}

.calendar-weekdays {
    margin-bottom: 24px;
    color: var(--hc-muted);
    font-weight: 800;
    text-align: center;
}

.calendar-weekdays > span {
    display: flex;
    min-height: 2.25em;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.calendar-weekday__discount {
    color: var(--hc-orange-deep);
    font-size: .72em;
    line-height: 1;
}

.calendar-day {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #d7d7d7;
    font-size: 23px;
}

.calendar-day.is-available {
    color: var(--hc-muted);
    font-weight: 800;
}

.calendar-day.is-selected {
    background: var(--hc-orange-deep);
    color: var(--hc-ink);
}

.calendar-day:not(.is-available):not(.is-empty) {
    cursor: not-allowed;
}

.calendar-day.is-empty {
    pointer-events: none;
}

.calendar-notes {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.calendar-notes .booking-note {
    margin: 0;
}

.calendar-notes a {
    color: var(--hc-blue);
    font-weight: 800;
}

.time-panel p {
    margin: 0 0 30px;
    color: var(--hc-muted);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 18px;
}

.time-grid a {
    display: grid;
    place-items: center;
    min-height: 86px;
    border: 2px solid #d8d8d8;
    background: var(--hc-white);
    color: var(--hc-muted);
    font-size: 24px;
    font-weight: 800;
}

.time-grid a.is-selected {
    border-color: var(--hc-orange-deep);
    background: var(--hc-orange-deep);
    color: var(--hc-white);
}

.time-grid .booking-empty {
    grid-column: 1 / -1;
}

.confirm-layout {
    display: grid;
    grid-template-columns: minmax(500px, 1fr) minmax(210px, 300px);
    gap: 40px;
    align-items: center;
}

.confirm-summary {
    display: grid;
    gap: 0;
    margin: 0 0 66px;
    max-width: 860px;
}

.confirm-summary div {
    display: grid;
    grid-template-columns: clamp(150px, 12vw, 180px) minmax(0, 1fr);
    gap: clamp(22px, 2.8vw, 46px);
    align-items: center;
    min-height: clamp(50px, 4vw, 64px);
    padding: clamp(10px, 1vw, 14px) 0;
}

.confirm-layout .confirm-summary div + div {
    border-top: 2px solid color-mix(in srgb, var(--hc-blue-line) 38%, white);
}

.confirm-summary dt {
    min-width: 0;
    color: color-mix(in srgb, var(--hc-ink) 76%, white);
    font-family: var(--hc-sans);
    font-size: clamp(16px, 1.08vw, 20px);
    font-weight: 800;
    line-height: 1.18;
    white-space: nowrap;
}

.confirm-summary dd {
    min-width: 0;
    margin: 0;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: clamp(22px, 1.65vw, 30px);
    font-weight: 700;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.client-form {
    display: grid;
    gap: 18px;
    width: min(100%, 760px);
    max-width: 760px;
    justify-items: stretch;
}

.client-form h2 {
    margin: 0 0 8px;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: clamp(40px, 3vw, 60px);
}

.client-form__section {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.client-form__section h3 {
    margin: 0;
    color: var(--hc-blue);
    font-size: clamp(20px, 1.5vw, 26px);
    font-weight: 800;
}

.client-form__section--consents {
    padding: 20px 22px;
    border: 2px solid color-mix(in srgb, var(--hc-blue-line) 70%, white);
    border-radius: 24px;
    background: #fbfcff;
}

.client-form label {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100%;
}

.client-form__extra {
    align-items: start;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.client-form input:not([type='checkbox']),
.client-form select,
.client-form textarea {
    width: 100%;
    min-width: 240px;
    min-height: 56px;
    padding: 8px 28px;
    border: 3px solid var(--hc-blue-line);
    border-radius: 999px;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
}

.client-form input::placeholder,
.client-form textarea::placeholder {
    color: color-mix(in srgb, var(--hc-blue) 58%, white);
    opacity: 1;
}

.client-form select {
    appearance: auto;
    background: var(--hc-white);
}

.client-form textarea {
    min-height: 120px;
    border-radius: 28px;
    resize: vertical;
}

.client-form__checkbox {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    margin-left: 170px;
}

.client-form__checkbox input {
    width: 24px;
    height: 24px;
    accent-color: var(--hc-orange-deep);
}

.client-form__consents {
    display: grid;
    gap: 16px;
}

.client-form__consent-item {
    display: grid;
    gap: 8px;
}

.client-form__consent {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: start !important;
}

.client-form__consent input[type='checkbox'] {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin: 2px 0 0;
    border: 2px solid var(--hc-blue-line);
    border-radius: 6px;
    appearance: none;
    background: var(--hc-white);
    color: var(--hc-white);
    cursor: pointer;
}

.client-form__consent input[type='checkbox']:checked {
    border-color: var(--hc-orange-deep);
    background: var(--hc-orange-deep);
}

.client-form__consent input[type='checkbox']:checked::before {
    content: '✓';
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.client-form__consent-copy {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    align-items: center;
    min-width: 0;
    color: var(--hc-ink);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.35;
}

.client-form__consent-label {
    min-width: min(100%, 320px);
}

.client-form__field-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.client-form__field-badge.is-required {
    background: #fff0e8;
    color: var(--hc-orange-deep);
}

.client-form__field-badge.is-optional {
    background: #edf2ff;
    color: var(--hc-blue);
}

.client-form__consent-details {
    margin-left: 42px;
    padding: 12px 14px;
    border-left: 3px solid var(--hc-blue-line);
    border-radius: 12px;
    background: var(--hc-white);
    color: #333333;
    font-size: 14px;
    line-height: 1.45;
}

.client-form__consent-details summary {
    width: fit-content;
    cursor: pointer;
    color: var(--hc-blue);
    font-weight: 800;
}

.client-form__consent-details div {
    margin-top: 10px;
    white-space: pre-line;
}

.client-form em {
    grid-column: 1;
    color: #b42318;
    font-style: normal;
}

.client-form__extra .client-form__error,
.client-form__consent-item .client-form__error {
    grid-column: 1;
}

.client-form__consent-item .client-form__error {
    margin-left: 42px;
    font-size: 14px;
}

.booking-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 56px;
    margin-top: 34px;
    padding: 10px 42px;
    border: 0;
    border-radius: 999px;
    background: var(--hc-orange-deep);
    color: var(--hc-white);
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.booking-cta.is-disabled {
    pointer-events: none;
    background: color-mix(in srgb, var(--hc-orange-deep) 24%, white);
    color: var(--hc-white);
    cursor: default;
}

.booking-continue {
    display: none;
}

.booking-sidebar-continue {
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
    padding-inline: 34px;
    font-family: var(--hc-sans);
    font-size: clamp(18px, 1.35vw, 25px);
}

.booking-step.is-current .booking-sidebar-continue {
    width: fit-content;
    min-height: 44px;
    padding: 8px 28px;
    font-size: clamp(17px, 1.25vw, 23px);
}

.booking-portrait {
    display: grid;
    place-items: center;
    width: min(100%, 300px);
    aspect-ratio: 1 / 1.2;
    margin-inline: auto;
}

.booking-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.success-panel {
    display: grid;
    gap: 42px;
    max-width: 1040px;
}

.success-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}

.success-copy {
    min-width: 0;
}

.success-title {
    max-width: 660px;
    margin-bottom: 34px;
    font-size: clamp(54px, 5vw, 76px);
    line-height: .96;
}

.success-summary {
    gap: 24px;
    margin: 0;
    max-width: 780px;
}

.success-summary div {
    grid-template-columns: minmax(155px, 190px) minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 36px);
    padding: 0;
}

.success-summary dt {
    color: var(--hc-ink);
    font-family: var(--hc-sans);
    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1.12;
}

.success-summary dd {
    font-size: clamp(25px, 2.25vw, 37px);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.success-portrait {
    width: min(100%, 330px);
    align-self: center;
}

.success-notice {
    max-width: 820px;
    padding: 24px 28px;
    border: 2px solid var(--hc-blue);
    border-radius: 8px;
    color: var(--hc-ink);
    background: #fff;
    font-size: 22px;
    line-height: 1.45;
}

.success-notice a {
    color: var(--hc-blue);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.success-preparation {
    max-width: 820px;
}

.success-preparation summary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--hc-ink);
    font-family: var(--hc-serif);
    font-size: clamp(34px, 3vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    list-style: none;
}

.success-preparation summary::-webkit-details-marker {
    display: none;
}

.success-preparation summary::after {
    content: '⌄';
    color: var(--hc-ink);
    font-family: var(--hc-sans);
    font-size: .82em;
    font-weight: 900;
    line-height: .7;
    transform-origin: center;
}

.success-preparation[open] summary::after {
    transform: rotate(180deg);
}

.success-preparation__body {
    max-width: 720px;
    margin-top: 18px;
    color: var(--hc-ink);
    font-size: 22px;
    line-height: 1.45;
}

.success-contact {
    display: grid;
    gap: 8px;
    color: var(--hc-blue);
    font-family: var(--hc-serif);
}

.success-contact h2 {
    margin: 0;
    font-size: clamp(36px, 3vw, 50px);
    font-weight: 700;
    line-height: 1.1;
}

.success-contact a,
.success-contact span {
    width: fit-content;
    font-size: clamp(32px, 2.8vw, 46px);
    font-weight: 500;
    line-height: 1.1;
}

.success-cta {
    min-width: min(100%, 390px);
    margin-top: 0;
}

@media (max-width: 1180px) {
    .booking-shell,
    .calendar-panel,
    .confirm-layout {
        grid-template-columns: 1fr;
    }

    .calendar-skeleton {
        grid-template-columns: 1fr;
    }

    .booking-shell {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 760px;
    }

    .booking-mobile-progress {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 54px;
        min-height: 54px;
        padding: 10px 18px;
        border: 0;
        border-bottom: 2px solid var(--hc-blue);
        background: var(--hc-white);
        color: var(--hc-blue);
        font-family: var(--hc-serif);
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        overflow: hidden;
    }

    .booking-mobile-progress span:last-child {
        color: var(--hc-blue);
        font-family: var(--hc-sans);
        font-size: 30px;
        line-height: .8;
    }

    .booking-shell.is-progress-open .booking-mobile-progress span:last-child {
        transform: rotate(180deg);
    }

    .booking-sidebar {
        position: static;
        display: none;
        border-right: 0;
        border-bottom: 3px solid var(--hc-blue);
        padding: 4px 0 18px;
    }

    .booking-shell.is-progress-open .booking-sidebar {
        display: block;
    }

    .booking-step {
        margin-bottom: 16px;
        padding-inline: 4px;
        font-size: 22px;
    }

    .booking-step__label {
        padding-bottom: 5px;
    }

    .booking-summary-pill {
        max-width: 360px;
        padding: 10px 16px;
        border-width: 2px;
        font-size: 18px;
    }

    .booking-sidebar-continue {
        display: none;
    }

    .booking-continue {
        display: flex;
        width: fit-content;
        margin: 16px auto 0;
    }

    .salon-grid,
    .master-grid {
        grid-template-columns: 1fr;
    }

    .confirm-layout {
        align-items: start;
    }

    .success-panel {
        max-width: 100%;
    }

    .success-main {
        grid-template-columns: 1fr;
    }

    .success-portrait {
        order: -1;
        width: min(64%, 280px);
        justify-self: center;
    }
}

@media (max-width: 720px) {
    .booking-page {
        display: flex;
        justify-content: center;
        padding: 26px 14px 44px;
    }

    .booking-shell {
        width: min(100%, 330px);
        gap: 18px;
    }

    .booking-title {
        margin-bottom: 18px;
        font-size: 19px;
        line-height: 1.15;
    }

    .booking-muted,
    .booking-note {
        font-size: 11px;
    }

    .booking-mobile-progress {
        height: 38px;
        min-height: 38px;
        padding: 6px 0;
        font-size: 15px;
    }

    .booking-mobile-progress span:last-child {
        font-size: 22px;
    }

    .booking-step {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .booking-summary-pill {
        max-width: 100%;
        margin-top: 4px;
        padding: 7px 10px;
        border-width: 1px;
        font-size: 11px;
    }

    .booking-alert,
    .booking-empty {
        padding: 14px;
        border-width: 2px;
        border-radius: 18px;
        font-size: 12px;
    }

    .salon-grid,
    .service-list,
    .master-grid {
        gap: 11px;
    }

    .salon-tile,
    .salon-tile.is-selected,
    .salon-tile.is-expanded {
        min-height: 82px;
        padding: 14px 44px 14px 16px;
        border-radius: 18px;
    }

    .salon-tile.is-expanded,
    .salon-tile.is-selected {
        min-height: 122px;
        height: auto;
        padding-bottom: 16px;
    }

    .salon-tile__details {
        margin-top: 12px;
        gap: 10px;
    }

    .salon-tile__rating-value {
        font-size: 18px;
    }

    .salon-tile__stars {
        font-size: 16px;
    }

    .salon-tile__rating-count {
        font-size: 12px;
    }

    .salon-tile__map {
        border-radius: 14px;
    }

    .salon-tile__map iframe {
        height: 110px;
    }

    .salon-tile__city {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .salon-tile__address {
        font-size: 13px;
    }

    .salon-tile__arrow {
        top: 17px;
        right: 14px;
        width: 24px;
        height: 24px;
        font-size: 28px;
    }

    .booking-filters {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .booking-filters span,
    .booking-filters a {
        padding-right: 7px;
        margin-right: 7px;
        border-right-width: 1px;
    }

    .service-card {
        border-radius: 20px;
    }

    .service-card__main {
        grid-template-columns: minmax(0, 1fr) 56px 30px;
        gap: 8px;
        min-height: 74px;
        padding: 12px 12px 12px 14px;
    }

    .service-card strong {
        padding-right: 4px;
        font-size: 12px;
        line-height: 1.16;
    }

    .service-card small {
        margin-top: 4px;
        font-size: 10px;
    }

    .service-card__price {
        font-size: 13px;
        text-align: right;
        white-space: normal;
    }

    .booking-radio {
        width: 24px;
        height: 24px;
        border-width: 4px;
    }

    .service-card__description {
        padding: 0 14px 14px;
        font-size: 11px;
    }

    .service-card__description summary {
        font-size: 10px;
    }

    .master-card {
        grid-template-columns: 74px minmax(0, 1fr);
        min-height: 74px;
        border-radius: 18px;
    }

    .master-card__photo {
        width: 74px;
        height: 74px;
        min-height: 74px;
        border-radius: 18px;
        font-size: 34px;
    }

    .master-card__text {
        align-self: center;
        justify-self: stretch;
        width: auto;
        padding: 10px 14px;
    }

    .master-card__text strong {
        font-size: 20px;
    }

    .master-card__text small {
        margin-top: 4px;
        font-size: 12px;
    }

    .calendar-panel {
        gap: 16px;
        padding: 18px;
        border-radius: 18px;
    }

    .calendar-panel--loading,
    .calendar-panel--error {
        min-height: 260px;
    }

    .calendar-panel--loading {
        gap: 16px;
    }

    .calendar-loading-status {
        gap: 8px;
        font-size: 12px;
    }

    .calendar-skeleton {
        gap: 22px;
    }

    .calendar-skeleton__month {
        margin-bottom: 26px;
        gap: 12px;
    }

    .calendar-skeleton__controls {
        gap: 10px;
    }

    .calendar-skeleton__controls span {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .calendar-skeleton__bar {
        height: 18px;
        border-radius: 5px;
    }

    .calendar-skeleton__bar--title,
    .calendar-skeleton__bar--timezone {
        margin-bottom: 14px;
    }

    .calendar-skeleton__days {
        gap: 10px;
        grid-template-columns: repeat(7, minmax(20px, 1fr));
    }

    .calendar-skeleton__slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .calendar-skeleton__slots span {
        min-height: 58px;
        border-radius: 5px;
    }

    .calendar-month header,
    .time-panel h2 {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .calendar-month header a {
        font-size: 30px;
    }

    .calendar-weekdays,
    .calendar-grid {
        grid-template-columns: repeat(7, minmax(22px, 1fr));
        gap: 5px;
    }

    .calendar-weekdays {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .calendar-day {
        font-size: 11px;
    }

    .time-panel p {
        margin-bottom: 12px;
        font-size: 10px;
    }

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

    .time-grid a {
        min-height: 38px;
        font-size: 11px;
    }

    .confirm-layout {
        gap: 12px;
    }

    .confirm-summary {
        margin-bottom: 18px;
    }

    .confirm-summary div {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        min-height: 30px;
        padding: 7px 0;
    }

    .confirm-summary dt {
        font-size: 11px;
        line-height: 1.15;
    }

    .confirm-summary dd {
        font-size: 14px;
        line-height: 1.08;
    }

    .client-form {
        gap: 9px;
    }

    .client-form h2 {
        margin: 0 0 4px;
        font-size: 20px;
    }

    .client-form__section {
        gap: 8px;
        margin-top: 10px;
    }

    .client-form__section h3 {
        font-size: 13px;
    }

    .client-form__section--consents {
        padding: 14px 14px 16px;
        border-radius: 18px;
    }

    .client-form label,
    .client-form__checkbox {
        grid-template-columns: 1fr !important;
        gap: 4px;
        margin-left: 0;
    }

    .client-form input:not([type='checkbox']),
    .client-form select,
    .client-form textarea {
        min-width: 0;
        min-height: 28px;
        padding: 4px 12px;
        border-width: 2px;
        font-size: 12px;
    }

    .client-form textarea {
        min-height: 78px;
        border-radius: 16px;
    }

    .client-form__checkbox {
        grid-template-columns: 22px minmax(0, 1fr) !important;
    }

    .client-form__consents {
        gap: 0;
    }

    .client-form__consent-item {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 8px;
        padding: 12px 0;
        border-top: 1px solid color-mix(in srgb, var(--hc-blue-line) 34%, white);
    }

    .client-form__consent-item:first-child {
        padding-top: 4px;
        border-top: 0;
    }

    .client-form label.client-form__consent {
        grid-column: 1 / -1;
        grid-template-columns: 22px minmax(0, 1fr) !important;
        gap: 10px !important;
        align-items: start !important;
    }

    .client-form__consent input[type='checkbox'] {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .client-form__consent input[type='checkbox']:checked::before {
        font-size: 13px;
    }

    .client-form__consent-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 12px;
        line-height: 1.28;
    }

    .client-form__consent-label {
        min-width: 0;
    }

    .client-form__field-badge {
        min-height: 18px;
        padding: 2px 6px;
        font-size: 9px;
    }

    .client-form__consent-details {
        grid-column: 2;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 0;
        border-left: 0;
        border-radius: 0;
        background: transparent;
        font-size: 10px;
    }

    .client-form__consent-details summary {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 30px;
        padding: 6px 10px;
        border-left: 2px solid var(--hc-blue-line);
        border-radius: 10px;
        background: var(--hc-white);
        font-size: 11px;
        line-height: 1.2;
    }

    .client-form__consent-details[open] {
        padding: 8px 10px;
        border-left: 2px solid var(--hc-blue-line);
        border-radius: 10px;
        background: var(--hc-white);
    }

    .client-form__consent-details[open] summary {
        min-height: 0;
        padding: 0;
        border-left: 0;
        border-radius: 0;
        background: transparent;
    }

    .client-form em {
        grid-column: 1;
        font-size: 11px;
    }

    .client-form__consent-item .client-form__error {
        grid-column: 2;
        margin-left: 0;
        font-size: 10px;
    }

    .booking-cta {
        min-height: 36px;
        margin-top: 14px;
        padding: 8px 24px;
        font-size: 14px;
    }

    .booking-continue {
        margin-top: 16px;
    }

    .booking-portrait {
        width: min(76%, 210px);
        order: -1;
    }

    .success-panel {
        gap: 18px;
        max-width: 100%;
    }

    .success-main {
        gap: 14px;
    }

    .success-title {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .success-summary {
        gap: 10px;
    }

    .success-summary div {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 10px;
    }

    .success-summary dt,
    .success-summary dd {
        font-size: 13px;
    }

    .success-notice {
        padding: 14px 16px;
        font-size: 12px;
    }

    .success-preparation summary {
        gap: 8px;
        font-size: 18px;
    }

    .success-preparation__body {
        margin-top: 9px;
        font-size: 12px;
    }

    .success-contact {
        gap: 4px;
    }

    .success-contact h2 {
        font-size: 20px;
    }

    .success-contact a,
    .success-contact span {
        font-size: 18px;
    }

    .success-cta {
        min-width: 0;
    }
}
