@import url("typography.css");

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--peach);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 16px;
    margin: 0 auto;
}

.book-container {
    margin: 160px auto;
}

.book-container--small {
    margin: 120px auto;
}

.book-container--xsmall {
    margin: 100px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    padding: 24px 38px;
    border-radius: 300px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
    white-space: nowrap;
    text-align: center;
}
.btn:not(:disabled):hover {
    text-decoration: none;
}

.btn:disabled {
    background-color: var(--ink-3);
    color: #4b403459;
    border: none;
    cursor: default;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
}

.btn--primary:not(:disabled):hover {
    background: var(--coral-h);
    color: var(--white);
}

.btn--secondary {
    background: var(--olive);
    color: var(--white) !important;
}

.btn--secondary:not(:disabled):hover {
    background: var(--olive-2);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--coral);
}

.btn--ghost:not(:disabled):hover {
    background: var(--coral);
    color: var(--white);
}

.btn--ghost-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--olive);
}

.btn--ghost-secondary:not(:disabled):hover {
    background: var(--olive);
    color: var(--white);
}

.btn--block {
    width: 100%;
}

.btn--left-icon-small {
    padding: 14px 32px 14px 22px;
    gap: 8px;
}

.btn--right-icon {
    padding: 20px 32px;
    gap: 12px;
}

.btn--right-icon-small {
    padding: 14px 22px 14px 32px;
    gap: 8px;
}

.btn--ghost:not(:disabled):hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.btn--ghost-secondary:not(:disabled):hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.btn--small {
    padding: 14px 32px;
}

.btn--xsmall {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    gap: 8px;
}

.btn-login {
    display: flex;
    padding: 8px 20px;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    height: fit-content;
    border: 2px solid var(--ink-3);
    cursor: pointer;
    transition: color 0.2s;
    background:
        linear-gradient(0deg, #4b403400 0%, #4b403400 100%), var(--peach);
}

.btn-login:hover {
    color: var(--coral);
}

.btn-login__arrow {
    transform: rotate(270deg);
    transition: all 0.2s;
}

.account-menu:hover .btn-login__arrow {
    transform: rotate(90deg);
}

.btn-book {
    padding: 9px 24px 11px 24px;
    font-size: 16px;
}

.account-menu {
    position: relative;
}

.account-menu__dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
    display: none;
    min-width: 160px;
    padding: 8px;
    border: 2px solid var(--ink-3);
    border-radius: 12px;
    background: #fffaf4;
    box-shadow: 0 12px 28px #4b40341f;
}

.account-menu:hover .account-menu__dropdown,
.account-menu:focus-within .account-menu__dropdown {
    display: block;
}

.account-menu__link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
}

.account-menu__link:hover,
.account-menu__link:focus {
    background: var(--gray);
    color: var(--ink);
    text-decoration: none;
}

/* Pill (small) */
.pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--coral);
    color: var(--coral);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 18px;
    transition:
        background-color 0.2s,
        color 0.2s;
}
.pill:hover {
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
}

.pill--small {
    font-size: 14px;
    line-height: 142.857%;
    border: 1px solid var(--brown-4);
}

.header-pill {
    display: flex;
    padding: 7px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #cb9f3c33;
    text-transform: uppercase;
    color: var(--gold);
    width: fit-content;
    margin: 0 auto;
    font-weight: 500;
    line-height: 142.857%;
    letter-spacing: 0.35px;
}

.header-pill--small {
    padding: 4px 10px;
    text-transform: lowercase;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    margin: 0;
}

/* Logo */
.logo {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo--sm {
    width: 70px;
    height: 70px;
}

/* ============================================================
   HEADER
============================================================ */
.header {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__menu {
    display: flex;
    align-items: center;
}

.header__links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style-type: none;
    margin-bottom: 0;
}

.header__link {
    line-height: 150%;
    transition: color 0.2s;
    text-decoration: none;
}

.header__link:hover {
    text-decoration: none;
    color: var(--coral);
}

.mobile-nav__open,
.mobile-nav__close {
    display: none;
    margin: 0;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    margin: 120px auto;
}

.hero__card,
.book-hero__card,
.book-banner__card {
    background: var(--cream);
    border: 2px solid var(--cream);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 678px 1fr;
    align-items: stretch;
}

.book-banner__card {
    grid-template-columns: 1fr 618px;
}

.address .book-banner__card {
    grid-template-columns: 1fr 562px;
    gap: 32px;
}

.book-hero__card {
    grid-template-columns: 589px 1fr;
}

.hero__content {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    justify-content: center;
}

.book-hero__content {
    display: flex;
    padding: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 42px;
    align-self: stretch;
}

.book-banner__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.book-banner__pills {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--ink);
    font-size: 50px;
    line-height: 1.1;
}

.book-hero__title {
    margin-bottom: 22px;
}

.book-banner__title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-top: 28px;
}

.book-banner__title--coral {
    color: var(--coral);
}

.book-banner__subtitle {
    color: var(--brown);
    text-align: center;
    line-height: 140%;
    margin: 0;
}

.hero__title-accent {
    color: var(--coral-2);
}

.hero__lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--brown-2);
    margin-top: 32px;
}

.book-hero__lead {
    color: var(--brown-2);
    line-height: 150%;
}

.hero__actions,
.book-hero__actions,
.book-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.book-banner__actions {
    justify-content: center;
}

.hero__media,
.book-banner__media,
.what-we-not-accept__media,
.book-hero__media {
    position: relative;
    min-height: 100%;
}

.hero__media img,
.book-banner__media img,
.what-we-not-accept__media img,
.book-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how {
    margin-top: 112px;
    padding-block: 120px;
    background: linear-gradient(180deg, var(--peach) 0%, var(--cream-2) 100%);
}

.how__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.how__title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 51px;
    line-height: 1.1;
    text-align: center;
}

.steps {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    position: relative;
    padding-top: 40px;
}

.step__num {
    position: absolute;
    top: -4px;
    left: 12px;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--olive);
    border: 2px solid var(--cream-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--white);
    font-size: 38px;
    line-height: 1;
}

.step__card {
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 100%;
    background: transparent;
}

.step__icon {
    width: 80px;
    height: 80px;
    color: var(--coral);
}

.step__title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 31px;
    line-height: 1.1;
    text-align: center;
}

.step__card p {
    color: var(--ink-2);
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.step__card p b {
    color: var(--coral-4);
    font-weight: inherit;
}

.step--arrow {
    position: relative;
}

.step--arrow::after {
    content: "";
    width: 89px;
    height: 72px;
    position: absolute;
    top: 100%;
    left: 100%;
    background-image: url("../image/how/arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -25%);
}

/* ============================================================
   PRICING
============================================================ */
.pricing {
    padding-block: 120px;
}

.pricing__panel {
    position: relative;
    background: var(--cream-3);
    border: 2px solid var(--cream);
    border-radius: 32px;
    overflow: hidden;
    padding: 40px 40px 64px;
}

.pricing__shelves {
    display: block;
    position: absolute;
    left: -20px;
    bottom: 46px;
    width: 430px;
    height: 450px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.pricing__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 43px;
}

.pricing__title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 51px;
    line-height: 1.1;
    text-align: center;
    width: 100%;
}

.pricing__cards {
    width: 100%;
    max-width: 737px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: flex-end;
}

.plan {
    position: relative;
    background: linear-gradient(180deg, var(--cream-s) 0%, #faf3ea 100%);
    border: 1px solid var(--white);
    border-radius: 24px;
    padding: 32px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--shadow-price);
    overflow: hidden;
}

.plan__head {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #0000001a;
}

.plan__name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.plan__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.plan__feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.plan__check {
    width: 28px;
    height: 28px;
}

.plan__feature-text {
    color: var(--ink-2);
    font-size: 18px;
    line-height: 1.5;
    flex: 1;
}

.plan-v2 {
    position: relative;
    background: linear-gradient(180deg, var(--cream-2) 0%, #faf3ea 100%);
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 32px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--shadow-price);
    overflow: hidden;
}

.plan-v2__promotion {
    padding: 12px 16px;
    border-radius: 6px;
    background: #cb9f3c4d;
    color: var(--coral-4);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.plan-v2__time {
    padding: 12px 16px;
    border-radius: 6px;
    background: #db716e33;
    color: var(--coral-4);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.plan-v2-price {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.plan-v2-price__value {
    color: var(--ink);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 59px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.plan-v2-price__desc {
    color: var(--ink-2);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.ribbon {
    position: absolute;
    top: 22px;
    right: -56px;
    width: 220px;
    transform: rotate(45deg);
    background: var(--gold-2);
    border: 1px solid #ffffff66;
    color: var(--gold-3);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
}

/* ============================================================
   BOOKING FORM
============================================================ */
.book {
    margin: 80px auto;
}

.book__card {
    background: var(--cream);
    border: 2px solid var(--cream);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 604px 1fr;
    align-items: stretch;
}

.book__form-wrap {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.book__head {
    border-bottom: 1px solid #00000033;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.book__title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 36px;
    line-height: 110%;
}
.book__title-accent {
    color: var(--coral);
}

.book__lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--brown-2);
}

.book__form {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
    width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field--full {
    grid-column: 1 / -1;
}
.field--two {
    grid-column: span 2;
}

.field__label {
    color: var(--ink-2);
    font-size: 16px;
}

.field__input,
.field__select {
    background: var(--white);
    border: 1px solid #00000033;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    color: var(--ink-2);
    transition: border-color 0.2s;
    width: 100%;
    height: 100%;
}
.field__input::placeholder {
    color: #00000066;
}
.field__input:focus,
.field__select:focus {
    outline: none;
    border-color: var(--coral);
}

.field__select-wrap {
    position: relative;
}
.field__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}
.field__select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    color: var(--ink-2);
}

/* Radio packages */
.radios {
    display: flex;
    gap: 10px;
    width: 100%;
}
.radio {
    flex: 1;
    cursor: pointer;
}
.radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio__box {
    border: 1px solid #00000033;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        border-color 0.2s,
        background-color 0.2s;
}
.radio input:checked + .radio__box {
    border-color: var(--coral);
    background: #ffffff1a;
}
.radio__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #0000004d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.radio input:checked + .radio__box .radio__dot {
    border-color: var(--coral);
}
.radio__dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0;
    transition: opacity 0.2s;
}
.radio input:checked + .radio__box .radio__dot::after {
    opacity: 1;
}
.radio__label {
    color: var(--ink-2);
    font-size: 18px;
    flex: 1;
}

.stepper-card {
    background: var(--cream);
    border: 2px solid var(--cream);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    padding: 82px;
}

.stepper-card__title {
    color: var(--ink);
}

.stepper-card__title--coral {
    color: var(--coral);
}

.stepper-card__title--olive {
    color: var(--olive);
}

.stepper-card__subtitle {
    margin-bottom: 32px;
    color: var(--brown);
    line-height: 155.556%;
    letter-spacing: 0;
}

.booking-progress-container {
    display: flex;
    justify-content: space-between;
}

.booking-progress {
    display: flex;
    height: 6px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 100px;
    background: #e5e7eb;
    overflow: hidden;
}

.booking-progress__bar {
    height: 100%;
    border-radius: inherit;
    background: var(--coral);
    transition: width 0.3s ease;
}

.booking-progress__bar--olive {
    background: var(--olive);
}

.booking-step__grid {
    display: grid;
    grid-template-columns: minmax(0, 665fr) 2px minmax(0, 433fr);
    margin-top: 62px;
    gap: 92px;
}

.booking-step__small-second-step {
    display: grid;
    grid-template-columns: minmax(0, 665fr) 2px minmax(0, 433fr);
    margin-top: 62px;
    gap: 43px;
}

.booking-step__big-second-step {
    display: grid;
    grid-template-columns: minmax(0, 512fr) 2px minmax(0, 590fr);
    margin-top: 62px;
    gap: 92px;
}

.booking-step__big-third-step {
    margin-top: 62px;
}

.booking-progress-details__step {
    color: var(--brown-3);
    line-height: 125%;
    margin-bottom: 12px;
}

.booking-progress-details__type {
    color: var(--coral);
    line-height: 125%;
    margin-bottom: 12px;
}

.booking-progress-details__type--olive {
    color: var(--olive);
}

.booking-progress-details {
    display: flex;
    justify-content: space-between;
}

.divider {
    width: 2px;
    height: 100%;
    border-radius: 100px;
    background: var(--gray);
}

.vertical-divider {
    width: 261px;
    height: 2px;
    border-radius: 100px;
    background: var(--gray);
}

.booking-step__section-wrapper {
    padding-right: 42px;
}

.booking-step__title {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 12px;
}

.booking-step__subtitle {
    line-height: 155.556%;
}

.extra-text-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    width: 100%;
    padding: 16px;
    align-items: flex-start;
    border-radius: 16px;
    border: 2px solid #f229354d;
    background:
        linear-gradient(0deg, #f229350f 0%, #f229350f 100%), var(--peach);
}

.extra-text-wrapper--green {
    border: 2px solid #adb66966;
    background: linear-gradient(0deg, #f7f8f0 0%, #f7f8f0 100%), var(--olive-4);
    margin-top: 22px;
}

.booking-step-size-wrapper {
    max-width: 377px;
    min-width: 377px;
    margin-left: auto;
    width: 100%;
}

.extra-text-wrapper__text {
    line-height: 140%;
    margin: 0;
}

.booking-step .form-group {
    margin: 0;
}

.extra-text-wrapper__text--bolded {
    font-weight: 600;
}

.booking-step .form-label {
    color: var(--ink-2);
    font-size: 16px;
    margin-bottom: 6px;
}

.booking-step .input-group {
    width: 100%;
}

.form-error-label {
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
}

.booking-cards,
.booking-radio-cards {
    display: grid;
    gap: 12px;
}

.booking-cards {
    justify-content: start;
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 271px));
}

.booking-cards--two,
.booking-radio-cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-step__small-second-step .booking-cards {
    grid-template-columns: 1fr;
}

.booking-radio-card__body {
    min-height: 112px;
    width: 100%;
    border: 1px solid #0000002e;
    border-radius: 8px;
    background: var(--white);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: var(--ink-2);
    text-align: left;
    transition:
        border-color 0.2s,
        background-color 0.2s,
        box-shadow 0.2s;
}

.booking-card {
    cursor: pointer;
    display: flex;
    padding: 44px 29px 24px 29px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 62px;
    border-radius: 16px;
    border: 2px solid var(--brown-6);
    background: var(--cream-4);
    max-width: 271px;
    height: 100%;
}

.booking-card__top-icon {
    width: 63px;
    height: 63px;
}

.booking-card__arrow-icon {
    width: 34px;
    height: 24px;
    flex-shrink: 0;
}

.booking-card__arrow {
    display: flex;
    width: 58px;
    height: 58px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 300px;
    border: 2px solid var(--brown-6);
    background: var(--white);
}
.booking-card:hover,
.booking-card.is-selected,
.booking-radio-card input:checked + .booking-radio-card__body {
    border-color: var(--coral);
    box-shadow: 0 10px 24px var(--brown-7);
}

.booking-card__name {
    font-size: 26px;
    line-height: 107.692%;
    text-transform: uppercase;
    display: inline-block;
}

.line {
    width: 45px;
    height: 2px;
    border-radius: 100px;
    background: var(--gray);
    display: block;
    margin: 12px auto;
}

.booking-card__description {
    font-weight: 500;
    line-height: 150%;
    color: var(--brown);
}

.booking-duration-cards {
    gap: 20px;
    margin-top: 22px;
}

.booking-duration-cards .booking-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 22px;
    background: var(--white);
    text-align: left;
    border-radius: 16px;
    border: 2px solid var(--brown-4);
    transition:
        border 0.2s,
        background 0.2s;
}

.booking-duration-cards .booking-card:hover,
.booking-duration-cards .booking-card.is-selected {
    box-shadow: none;
    border: 2px solid #db716ecc;
    background: #feeaea;
}

.booking-duration-card__label {
    color: var(--brown-5);
    font-weight: 500;
    line-height: 111.111%;
}

.booking-duration-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.booking-duration-card__price-value {
    color: var(--brown-8);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 100%;
}

.booking-duration-card__price-suffix {
    color: var(--brown);
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 500;
    line-height: 160%;
}

.booking-radio-card {
    cursor: pointer;
}

.booking-radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-radio-card__body {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.booking-radio-card__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #00000047;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
}

.booking-radio-card__dot::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0;
}

.booking-radio-card
    input:checked
    + .booking-radio-card__body
    .booking-radio-card__dot {
    border-color: var(--coral);
}

.booking-radio-card
    input:checked
    + .booking-radio-card__body
    .booking-radio-card__dot::after {
    opacity: 1;
}

.booking-radio-card__content {
    min-width: 0;
}

.booking-package-cards {
    margin-top: 22px;
}

.booking-package-cards .form-group,
.booking-package-cards .input-group {
    width: 100%;
}

.booking-package-cards .input-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    align-items: start;
    gap: 22px;
}

.booking-package-cards .form-check {
    position: relative;
    margin: 0;
    padding: 34px 30px 78px;
    border: 2px solid var(--brown-6);
    border-radius: 18px;
    background: var(--cream-4);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.booking-package-cards .form-check:hover,
.booking-package-cards .form-check:has(.form-check-input:checked) {
    border-color: var(--coral);
    box-shadow: 0 10px 24px var(--brown-7);
}

.booking-package-cards .form-check-input {
    position: absolute;
    left: 50%;
    bottom: 34px;
    margin: 0;
    width: 38px;
    height: 38px;
    border: 3px solid var(--coral-3);
    accent-color: var(--coral);
    transform: translateX(-50%);
    z-index: 2;
}

.booking-package-cards .form-check-input:checked {
    border-color: var(--coral);
    background-color: var(--coral);
}

.booking-package-cards .form-check-label {
    display: block;
    color: var(--ink-2);
    font-size: 18px;
    line-height: 140%;
    cursor: pointer;
}

.booking-package-cards .form-check-label::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.booking-package-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #62584e;
}

.booking-package-card__badge {
    position: absolute;
    top: -44px;
    left: 50%;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--coral);
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #fcf8f3;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.booking-package-card__title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    line-height: 87.5%;
    margin-bottom: 32px;
}

.booking-package-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.booking-package-card__price-value {
    color: var(--brown-8);
    font-size: 42px;
    font-weight: 700;
    line-height: 76.19%;
}

.booking-package-card__price-period {
    color: var(--brown);
    font-size: 12px;
    font-weight: 500;
    line-height: 133.333%;
}

.booking-package-card__commission-label {
    color: var(--brown-5);
    text-align: center;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 12px;
    font-family: var(--font-serif);
}

.booking-package-card__commission-value {
    color: var(--coral);
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 12px;
}

.booking-package-card__sold {
    color: var(--brown-5);
    text-align: center;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 4px;
    font-family: var(--font-serif);
}

.booking-package-card__note {
    color: #5d524699;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 32px;
}

.booking-package-card__list {
    display: grid;
    gap: 6px;
    width: 100%;
    text-align: left;
    color: var(--brown-5);
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
    letter-spacing: 0;
    margin-bottom: 32px;
}

.booking-package-card__list span {
    position: relative;
    display: block;
    padding-left: 22px;
}

.booking-package-card__list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #aeb76d;
    font-size: 16px;
    line-height: 1.2;
}

.booking-step__small-second-step .booking-card {
    max-width: 390px;
}

.booking-step-summary__box {
    display: flex;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    align-self: stretch;
    border-radius: 16px;
    border: 2px solid var(--brown-4);
    background: var(--white);
    max-width: 460px;
    margin-right: 32px;
}

.booking-step-summary--big .booking-step-summary__box {
    border: 2px solid #adb66966;
}

.booking-step-summary__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
}

.booking-step-summary__box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.booking-step-summary__key {
    color: var(--brown-5);
    line-height: 142.857%;
    margin: 0;
}

.booking-step-summary__value {
    color: var(--brown-5);
    line-height: 142.857%;
    margin: 0;
    margin-left: auto;
}

.booking-step-summary__price-value {
    color: var(--brown-8);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    margin-left: auto;
}

.booking-step-summary__nett-value {
    color: var(--brown);
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 500;
    line-height: 160%;
}

.booking-reservation-cards .form-group,
.booking-reservation-cards .input-group,
.booking-duration-month-cards .form-group,
.booking-duration-month-cards .input-group {
    width: 100%;
}

.booking-duration-month-cards {
    width: 100%;
}

.booking-reservation-cards .input-group,
.booking-duration-month-cards .input-group {
    display: grid;
    gap: 22px;
}

.booking-reservation-cards .form-check,
.booking-duration-month-cards .form-check {
    position: relative;
    margin: 0;
    padding: 32px 22px;
    transition:
        border 0.2s,
        background 0.2s;

    border-radius: 16px;
    border: 2px solid var(--brown-6);
    background: var(--cream-4);
    cursor: pointer;
    max-width: 420px;
}

.booking-duration-month-cards .form-check {
    border: 2px solid rgba(173, 182, 105, 0.4);
    background: var(--white);
}

.booking-reservation-cards .form-check:hover,
.booking-reservation-cards .form-check:has(.form-check-input:checked) {
    border: 2px solid #db716e99;
}

.booking-duration-month-cards .form-check:hover,
.booking-duration-month-cards .form-check:has(.form-check-input:checked) {
    border: 2px solid var(--olive-3);
    background: #f7f8f0;
}

.booking-reservation-cards .form-check-input,
.booking-duration-month-cards .form-check-input {
    position: absolute;
    top: 50%;
    right: 34px;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 3px solid var(--coral-3);
    accent-color: var(--coral);
    transform: translateY(-50%);
    z-index: 4;
}

.booking-duration-month-cards .form-check-input {
    border: 3px solid var(--olive-4);
    accent-color: #8e9558;
}

.booking-duration-month-cards .form-check-input {
    right: auto;
    left: 34px;
}

.booking-reservation-cards .form-check-input:checked,
.booking-duration-month-cards .form-check-input:checked {
    border-color: var(--coral);
    background-color: var(--coral);
}

.booking-reservation-cards .form-check-label,
.booking-duration-month-cards .form-check-label {
    color: var(--brown-5);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 111.111%;
    margin: 0;
}

.booking-duration-month-cards .form-check-label {
    display: block;
    width: 100%;
    padding-left: 58px;
    text-align: right;
}

.booking-reservation-cards .form-check-label::after,
.booking-duration-month-cards .form-check-label::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
}

.booking-step__small-third-step {
    display: grid;
    grid-template-columns: minmax(0, 514fr) 2px minmax(0, 588fr);
    margin-top: 62px;
    gap: 92px;
}

.booking-step__small-third-step > *,
.booking-step__section,
.booking-step-summary,
.booking-reservation-cards,
.booking-reservation-cards .form-group,
.booking-reservation-cards .input-group,
.booking-duration-month-cards,
.booking-duration-month-cards .form-group,
.booking-duration-month-cards .input-group {
    min-width: 0;
}

.booking-step-summary--big {
    margin-top: 62px;
}

.booking-step-summary--big .booking-step-summary__box {
    margin: 0 auto;
    padding: 0;
}

.booking-step-summary__info {
    width: 100%;
    padding: 22px;
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    background: #adb6691a;
}

.booking-step-summary--big .booking-step-summary__title {
    padding: 22px 22px 0 22px;
}

.booking-step-summary--big .booking-step-summary__box-grid {
    padding: 0 22px;
}

.booking-step-summary__info-text {
    color: var(--olive-2);
    font-weight: 400;
    line-height: 142.857%;
    margin: 0;
}

.custom-error {
    margin-top: 16px;
}

.booking-reservation-cards .form-check {
    width: 100%;
    max-width: 100%;
}

.booking-step__section-box {
    display: flex;
    padding: 52px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    border-radius: 16px;
    border: 2px solid #adb66966;
    background: var(--white);
    height: fit-content;
}

.booking-step__section-box--time {
    max-width: 454px;
    width: 100%;
}

.booking-counter {
    display: grid;
    grid-template-columns: 76px 97px 76px;
    align-items: center;
    gap: 32px;
}

.booking-counter .input-group {
    display: block;
    width: 100%;
    height: 100%;
}

.booking-counter__button {
    padding: 22px;
    border-radius: 16px;
    border: 2px solid var(--olive-3);
    background: var(--white);

    color: var(--brown-8);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    line-height: 76.19%;
}

.booking-counter__button:hover {
    background: #f7f8f0;
}

.booking-counter__input {
    border-radius: 16px;
    border: 2px solid #adb6694d;
    background: var(--white);
    color: var(--brown-9);
    font-family: var(--font-serif);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 76.19%;
    height: 100%;
    width: 100%;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.booking-counter__input::-webkit-outer-spin-button,
.booking-counter__input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.booking-step__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 62px;
}

.booking-summary {
    border: 1px solid #0000002e;
    border-radius: 8px;
    background: #fff8f5;
    padding: 22px;
    color: var(--ink-2);
    font-size: 18px;
}

.booking-summary p {
    margin: 0;
}

.booking-success {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    text-align: center;
}

.book__media {
    background: var(--coral);
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.book__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80%;
}

.custom-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.custom-list__dot {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: var(--olive);
}

.custom-list__item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.custom-list__text {
    color: var(--brown-3);
    font-weight: 400;
    line-height: 142.857%;
    margin: 0;
}

.section-title__text {
    margin-bottom: 16px;
    text-align: center;
}

.section-title__top {
    color: var(--coral);
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title__small-text {
    color: var(--brown);
    text-align: center;
    line-height: 155.556%;
    max-width: 448px;
    margin: 0 auto;
}

.section-title__small-text--full-width {
    max-width: 100%;
}

.section-title {
    margin-bottom: 64px;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-it-works__box {
    padding: 40px 24px 24px 24px;
    position: relative;
    border-radius: 16px;
    border: 2px solid #adb66940;
    background: var(--cream);
}

.how-it-works__box-title {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 137.5%;
    margin-bottom: 16px;
}

.how-it-works__box-subtitle {
    color: var(--brown);
    font-size: 15px;
    line-height: 162.5%;
}

.how-it-works__box-number {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 22px;
    top: -18px;
    border-radius: 100px;
    box-shadow:
        0 4px 6px -1px #0000001a,
        0 2px 4px -2px #0000001a;
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 100%;
}

.how-it-works__box-number--olive {
    background-color: var(--olive);
}

.how-it-works__box-number--yellow {
    background-color: var(--gold);
}

.how-it-works__box-number--coral {
    background-color: var(--coral);
}

.booking-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.booking-faq--full {
    max-width: 100%;
}

.booking-accordion {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #4b40341f;
    border-radius: 16px;
    background: var(--cream);
    overflow: hidden;
}

.booking-accordion[open] {
    border-color: #4b40342e;
}

.booking-accordion__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.booking-accordion__summary::-webkit-details-marker {
    display: none;
}

.booking-accordion__question {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
}

.booking-accordion__icon {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.booking-accordion[open] .booking-accordion__icon {
    transform: rotate(270deg);
}

.booking-accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.3s ease,
        opacity 0.3s ease;
}

.booking-accordion[open] .booking-accordion__content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.booking-accordion__content-inner {
    overflow: hidden;
}

.booking-accordion__answer-text {
    margin: 0;
    padding: 0 38px 32px;
    color: var(--brown);
    line-height: 1.55;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    display: flex;
    max-width: 285px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid #4b40341f;
    background: var(--cream);
}

.review__stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review__star {
    width: 14px;
    height: 14px;
}

.review__text {
    margin: 0;
    color: var(--brown);
    font-size: 15px;
    line-height: 162.5%;
    height: 100%;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #4b403414;
    width: 100%;
}

.review__avatar {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    line-height: 133.333%;
}

.review:nth-child(3n + 1) .review__avatar {
    border: 2px solid #db716e40;
    background: #db716e21;
    color: var(--coral);
}

.review:nth-child(3n + 2) .review__avatar {
    border: 2px solid #cb9f3c40;
    background: #cb9f3c21;
    color: var(--gold);
}

.review:nth-child(3n) .review__avatar {
    border: 2px solid #adb66940;
    background: #adb66921;
    color: var(--olive);
}

.review__name {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 142.857%;
}

.review__meta {
    margin: 0;
    color: #4b403480;
    line-height: 133.333%;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    margin: 80px auto 0;
    padding: 64px 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer__tagline {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink-2);
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
}

.footer__contact-data {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.1;
    text-align: center;
}

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__social a {
    color: var(--olive-2);
    transition: color 0.2s;
    display: inline-flex;
}
.footer__social a:hover {
    color: var(--coral);
}

.footer__legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    text-align: center;
}
.footer__legal-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__legal-row a {
    color: var(--olive-2);
    transition: color 0.2s;
}
.footer__legal-row a:hover {
    color: var(--coral);
    text-decoration: none;
}
.footer__copy {
    color: var(--gold);
}

.login__title {
    display: none;
    font-size: 44px;
    margin: 0;
}

.login__title.is-active {
    display: block;
}

.login__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1050px;
    margin: 82px auto 40px;
    margin-bottom: 16px;
}

.login__form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login__form-button {
    display: flex;
    padding: 8px 20px;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 2px solid var(--ink-3);
    background-color: transparent;
    line-height: 130%;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.login__form-button:hover,
.login__form-button.is-active {
    border: 2px solid var(--ink-3);
    background: var(--ink-3);
}

.login__form-panel {
    display: none;
    flex-direction: column;
    gap: 32px;
}

.login__form-panel.is-active {
    display: flex;
}

.login__card {
    background: var(--cream);
    border: 2px solid var(--cream);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(350px, 590px) 1fr;
    align-items: stretch;
    max-width: 1050px;
    margin: 0 auto;
}

.login__content {
    padding: 42px 62px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;

    & input {
        width: 100%;
    }
}

.login-form-subtitle {
    color: var(--brown);
    line-height: 150%;
}

.form_login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_login .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-left: 0;
}

.form_login .form-check-input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    margin-left: 0;
    accent-color: var(--coral);
}

.form_login .form-check-label {
    flex: 1;
    line-height: 1.35;
}

.login__top-content {
    padding-bottom: 20px;
    border-bottom: 1px solid #0000001f;
}

.form_login__consent {
    margin-top: 12px;
    margin-bottom: 12px;
}

.form_login__remember .form-group {
    margin-bottom: 0;
}

.link {
    text-decoration: underline;
    color: var(--coral-2);
    font-weight: 500;

    &:hover {
        color: var(--coral-h);
    }
}

.login__login-text {
    text-align: center;
    font-weight: 500;
}

.login__inline-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.login__consent {
    color: var(--brown-2);
    font-weight: 500;
}

.login__image-container {
    position: relative;
    min-width: 350px;
}

.login__image-bg-container {
    position: absolute;
    padding: 112px 49px 62px 49px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(0deg, var(--brown-8) 39.9%, #4b403400 100%);
}

.tag {
    color: var(--white);
    background-color: var(--gold);
    padding: 8px 16px;
    border-radius: 300px;
    text-transform: uppercase;
    width: fit-content;
}

.login__image-text {
    font-size: 17px;
    letter-spacing: normal;
    color: var(--white);
    font-weight: 400;
    margin-top: 24px;
}

.check-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.check-item__text {
    min-width: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    margin: 0;
}

.check-item__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.login__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.choose-option__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1024px;
    margin: 0 auto;
}

.choose-option__card {
    border-radius: 28px;
    background: linear-gradient(160deg, #fcf8f3 8.49%, #faf3ea 91.51%);
    box-shadow:
        0 6px 24px 0 #65675614,
        0 2px 6px 0 #6567560f;
    border: 1px solid var(--white);
    padding: 40px;
}

.choose-option__card:hover {
    text-decoration: none;
}

.choose-option__card-icon {
    border-radius: 16px;
    border: 1px solid #db716e26;
    background: #db716e14;
    width: fit-content;
    padding: 12px;
    margin-bottom: 24px;
}
.choose-option__card-icon img {
    width: 63px;
    height: 63px;
}

.choose-option__title {
    font-size: 36px;
    margin-bottom: 12px;
}

.choose-option__description {
    color: #4b4034b8;
    font-size: 17px;
    line-height: 155%;
    margin-bottom: 32px;
}

.customer-panel {
    margin: 82px auto 120px;
    max-width: 1132px;
}

.customer-panel__body .container {
    padding-inline: 0;
}

.customer-panel__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.customer-panel__eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    text-transform: uppercase;
}

.customer-panel__title {
    margin: 0;
}

.customer-panel__tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 102px;
}

.customer-panel-tile {
    display: flex;
    text-decoration: none;
    padding: 44px 34px 24px 34px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 62px;
    flex: 1 0 0;
    border-radius: 16px;
    border: 2px solid var(--ink-3);
    opacity: 0.8;
    background: #fcf8f3;
    transition: transform 0.3s;
}

.customer-panel-tile:hover,
.customer-panel-tile:focus {
    text-decoration: inherit;
    transform: translateY(-2px);
}

.customer-panel-tile.is-active {
    border-radius: 16px;
    border: 2px solid var(--brown-6);
    background: #fcf8f3;
    box-shadow:
        0 424px 119px 0 rgba(133, 106, 81, 0),
        0 271px 109px 0 rgba(133, 106, 81, 0.01),
        0 153px 92px 0 rgba(133, 106, 81, 0.05),
        0 68px 68px 0 rgba(133, 106, 81, 0.09),
        0 17px 37px 0 rgba(133, 106, 81, 0.1);
}

.customer-panel-tile.is-active span {
    color: black;
}

.customer-panel-tile__icon {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.customer-panel-tile__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.customer-panel-tile__title {
    color: #4b4034cc;
    font-size: 24px;
    line-height: 107.692%;
    text-align: center;
}

.customer-panel-tile__description {
    color: var(--brown);
    font-size: 14px;
    line-height: 1.35;
}

.customer-panel-card {
    padding: 40px 16px;
    border-radius: 32px;
    background: var(--cream);
    box-shadow: var(--shadow-card);
}

.customer-panel-card__head {
    max-width: 568px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #0000001f;
    margin: 0 auto;
}

.customer-panel-card__lead {
    margin: 0;
    font-size: 16px;
    color: var(--brown);
    line-height: 150%;
}

.customer-panel-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.customer-panel-form--narrow {
    max-width: 568px;
    margin: 0 auto;
    padding-top: 32px;
}

.customer-panel-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    color: var(--brown);
    font-size: 15px;
    font-weight: 500;
}

.customer-panel-field--full {
    grid-column: 1 / -1;
}

.customer-panel-form__actions {
    grid-column: 1 / -1;
    padding-top: 14px;
    margin-left: auto;
}

.customer-data {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-data-card {
    overflow: hidden;
    border-radius: 32px;
    background: var(--cream);
    box-shadow:
        0 424px 119px 0 rgba(133, 106, 81, 0),
        0 271px 109px 0 rgba(133, 106, 81, 0.01),
        0 153px 92px 0 rgba(133, 106, 81, 0.05),
        0 68px 68px 0 rgba(133, 106, 81, 0.09),
        0 17px 37px 0 rgba(133, 106, 81, 0.1);
}

.customer-data-card--invoice {
    display: none;
}

.customer-data-card--invoice.is-open {
    display: block;
}

.customer-data-summary {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(220px, 1.8fr) auto;
    gap: 48px;
    align-items: start;
    padding: 40px;
}

.customer-data-summary__name {
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 107.692%;
}

.customer-data-summary__details {
    display: flex;
    flex-direction: column;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 120%;
}

.customer-data-summary__details span:empty {
    display: none;
}

.customer-data-summary__edit {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--ink-3);
    cursor: pointer;
    transition:
        background-color 0.2s,
        transform 0.2s;
}

.customer-data-summary__edit:hover,
.customer-data-summary__edit:focus {
    transform: translateY(-1px);
}

.customer-data-summary__edit img {
    width: 24px;
    height: 24px;
}

.customer-data-summary__edit span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.customer-data-editor {
    display: none;
    padding: 40px;
    background: #4b40340d;
}

.customer-data-editor.is-open {
    display: block;
}

.customer-data-editor__title {
    margin-bottom: 24px;
    color: var(--brown);
    font-family: var(--font-sans);
    line-height: 100%;
    font-weight: 400;
}

.customer-data-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.customer-data-grid > div {
    grid-column: span 2;
    min-width: 0;
}

.customer-data-grid > div:nth-child(5) {
    grid-column: span 2;
}

.customer-data-grid > div:nth-child(6),
.customer-data-grid > div:nth-child(7) {
    grid-column: span 1;
}

.customer-data-grid .customer-data-grid__full {
    grid-column: 1 / -1;
}

.customer-data-card--invoice .customer-data-grid > div:nth-child(6) {
    grid-column: span 2;
}

.customer-data-card--invoice .customer-data-grid > div:nth-child(8) {
    grid-column: span 1;
}

.customer-data-grid__with-action {
    position: relative;
}

.customer-data-grid__with-action .customer-data-input {
    padding-right: 190px;
}

.customer-data .form-group {
    margin: 0;
}

.customer-data .input-group {
    display: flex;
    width: 100%;
}

.customer-data-input {
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    border: 1px solid #0d1b2e38;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.customer-data-input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px #e0666129;
}

.customer-data-invoice-toggle {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;

    cursor: pointer;

    color: var(--brown-2);
    line-height: 160.714%;
}

.customer-data-invoice-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--coral);
}

.customer-data-gus {
    position: absolute;
    right: 18px;
    bottom: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
}

.customer-data-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
}

.customer-panel-empty {
    max-width: 560px;
    gap: 14px;
    margin: 0 auto;
    text-align: center;
}

.customer-panel-empty__title,
.customer-panel-empty__text {
    margin: 0;
}

.customer-panel-empty__text {
    color: var(--brown);
}

.customer-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.customer-orders__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.customer-orders__filter {
    padding: 8px 20px;
    opacity: 0.5;
    cursor: pointer;
    transition:
        background-color 0.2s,
        opacity 0.2s;

    border-radius: 100px;
    border: 2px solid var(--ink-3);
    background-color: transparent;
    line-height: 130%;
}

.customer-orders__filter:hover,
.customer-orders__filter:focus {
    background-color: var(--ink-3);
    opacity: 1;
}

.customer-orders__filter.is-active {
    background-color: var(--ink-3);
    opacity: 1;
}

.customer-orders__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.customer-orders__empty {
    margin: 12px 0 0;
    color: var(--brown);
    text-align: center;
}

.customer-order {
    overflow: hidden;
    border: 2px solid #4b403424;
    border-radius: 14px;
    background: #fcf8f3;
    box-shadow: 0 17px 37px #856a5114;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
}

.customer-order__summary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2vw, 64px);
    padding: 28px 20px 28px 24px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.customer-order__summary > * {
    flex: 0 1 auto;
    min-width: 0;
}

.customer-order__summary:focus:not(:focus-visible) {
    outline: none;
}

.customer-order__amount-row img {
    flex: 0 0 40px;
    border-radius: 6px;
    background: var(--ink-3);
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    width: 40px;
    height: 40px;
}

.customer-order__cell {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.customer-order__summary > .customer-order__cell {
    flex: 1 1 0;
}

.customer-order .customer-order__cell--product {
    flex-grow: 1.45;
}

.customer-order__cell--amount {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 6px;
}

.customer-order__amount-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
}

.customer-order__amount-row .customer-order__value {
    min-width: 0;
}

.customer-order__label {
    color: var(--brown);
    line-height: 175%;
}

.customer-order__value {
    font-family: var(--font-serif);
    overflow-wrap: anywhere;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 120%;
}

.customer-order__status--paid {
    color: var(--green);
}

.customer-order__status--waiting {
    color: var(--orange);
}

.customer-order__status--unpaid,
.customer-order__status--cancelled {
    color: var(--red);
}

.customer-order__status--completed {
    color: var(--green);
}

.customer-order__chevron {
    display: inline-flex;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.customer-order__chevron img {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
    transition: transform 0.24s ease;
}

.customer-order.is-open .customer-order__chevron img {
    transform: rotate(90deg);
}

.customer-order__panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.3s ease,
        opacity 0.22s ease;
}

.customer-order.is-open .customer-order__panel {
    max-height: 640px;
    opacity: 1;
}

.customer-order__panel-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 24px 24px;
}

.customer-order__details {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.45fr;
    gap: 36px;
    align-items: start;
}

.customer-order__payment {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding-top: 8px;
    border-top: 2px solid var(--ink-3);
}

.customer-order__total {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 14px;
    margin: 0;
    color: #4b4034ad;
    font-size: 24px;
    line-height: 1;
}

.customer-order__total strong {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.customer-order__payment-pill {
    --payment-pill-color: #18a158;
    --payment-pill-border: #18a1581a;
    --payment-pill-background: #18a1581a;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin: 0;
    padding: 8px 20px;
    border: 2px solid var(--payment-pill-border);
    border-radius: 999px;
    background: var(--payment-pill-background);
    color: var(--payment-pill-color);
}

.customer-order__payment-pill--status {
    font-weight: 600;
    line-height: 130%;
    color: inherit;
}

.customer-order__payment-pill--payment-date {
    line-height: 130%;
    color: inherit;
}

.customer-order__payment-pill--waiting {
    --payment-pill-color: #ce8244;
    --payment-pill-border: #ce824433;
    --payment-pill-background: #ce82441a;
}

.customer-order__payment-pill--unpaid,
.customer-order__payment-pill--cancelled {
    --payment-pill-color: var(--red);
    --payment-pill-border: #db41122e;
    --payment-pill-background: #db41121a;
}

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

.customer-panel-contact__item {
    display: flex;
    min-height: 138px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 2px solid var(--ink-3);
    border-radius: 22px;
    background: #fffaf4;
    color: var(--ink);
    text-decoration: none;
}

.customer-panel-contact__item:hover,
.customer-panel-contact__item:focus {
    border-color: var(--coral);
    color: var(--ink);
    text-decoration: none;
}

.customer-panel-contact__item span {
    color: var(--brown);
}

.customer-panel-contact__item strong {
    font-size: 18px;
    line-height: 1.3;
}

.customer-order__total--label {
    color: var(--brown);
    font-size: 20px;
    line-height: 140%;
}

.customer-order__total--value {
    line-height: 120%;
}

.contact-tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    border-radius: 32px;
    background: var(--cream);
    box-shadow:
        0 68px 68px 0 #856a5117,
        0 17px 37px 0 #856a511a;
}

.contact-tile iframe {
    width: 100%;
    height: 475px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.contact-tile__data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    padding-bottom: 32px;
}

.contact-tile__data--title {
    margin-bottom: 8px;
    text-align: center;
    line-height: 165%;
}

.contact-tile__data--address {
    color: var(--brown);
    text-align: center;
    line-height: 140%;
    margin: 0;
}

.contact-tile__data--container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-tile-section__tile {
    margin-bottom: 64px;
}

.section-title__text--coral {
    color: var(--coral);
}

.lead .section-title__small-text {
    max-width: 580px;
}

.lead {
    background: var(--cream);
    margin-top: 64px;
}

.lead__container {
    padding: 80px 24px 64px 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.lead .section-title {
    margin-bottom: 0;
}

.what-we-accept-wrapper,
.how-it-works-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.how-it-works-bg-container {
    background:
        linear-gradient(180deg, var(--peach) 0%, var(--cream-2) 100%),
        var(--peach);
    padding-block: 80px;
}

.what-we-not-accept {
    padding-block: 80px;
}

.what-we-accept-container {
    padding-block: 60px 80px;
    background: linear-gradient(180deg, #fdf1e500 0%, var(--cream-2) 100%);
}

.how-it-works-steps .step {
    padding-top: 52px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.how-it-works-steps .step:nth-of-type(1) {
    padding-top: 0;
}

.how-it-works-steps .step__num {
    position: static;
    width: 82px;
    height: 82px;
    min-width: 82px;
}

.how-it-works-steps .step__card {
    align-items: flex-start;
    flex-direction: row;
    gap: 32px;
    width: 100%;
}

.how-it-works-steps .step__title {
    text-align: left;
    margin-bottom: 16px;
}

.how-it-works-steps .step__description {
    margin-bottom: 0;
    text-align: left;
}

.how-it-works-steps .step--arrow::after {
    left: 1.5%;
    background-image: url("../image/how/arrow-down.svg");
}

.what-we-accept__button,
.how-it-works-steps__button {
    min-width: 250px;
    margin: 80px auto 0 auto;
}

.how-it-works-details {
    display: grid;
    column-gap: 45px;
    row-gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "costs preparation time" "costs preparation questions";
}

.how-it-works-details__box {
    padding: 32px;
    border-radius: 24px;
    background: var(--cream);
}

.how-it-works-details__costs {
    grid-area: costs;
    border: 2px solid var(--coral);
}

.how-it-works-details__preparation {
    grid-area: preparation;
    border: 2px solid var(--olive);
}

.how-it-works-details__time {
    grid-area: time;
    border: 2px solid var(--gold);
}

.how-it-works-details__questions {
    grid-area: questions;
    border: 2px solid var(--coral);
    padding: 22px 32px;
}

.how-it-works-container {
    padding-block: 80px;
}

.how-it-works-details__title {
    font-size: 22px;
    line-height: 150%;
    margin-bottom: 20px;
}

.how-it-works-details__cost-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 16px;
    background: #fde8d0;
}

.how-it-works-details__cost-card-title {
    color: var(--coral);
    margin: 0;
}

.how-it-works-details__cost-card-subtitle {
    color: var(--brown-2);
    letter-spacing: 0;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

.how-it-works-details__cost-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.what-we-not-accept__list,
.how-it-works-details__list {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 0;
}

.how-it-works-details__list-item img {
    margin-right: 12px;
}

.what-we-not-accept__list-item img {
    margin-right: 16px;
}

.how-it-works-details__list-item:not(:last-child) {
    margin-bottom: 8px;
}

.what-we-not-accept__list-item:not(:last-child) {
    margin-bottom: 16px;
}

.how-it-works-details__questions
    .how-it-works-details__list-item:not(:last-child) {
    margin-bottom: 12px;
}

.how-it-works-details__list-text {
    line-height: 150%;
}

.what-we-not-accept__list-text {
    color: var(--ink-2);
    line-height: 150%;
}

.how-it-works-details__preparation-title {
    color: var(--brown-2);
    line-height: 150%;
    margin-bottom: 26px;
}

.how-it-works-details__preparation-extra-info {
    color: var(--brown-2);
    line-height: 150%;
    margin-top: 26px;
    margin-bottom: 26px;
    letter-spacing: 0;
    font-weight: 400;
}

.how-it-works-details__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    width: 100%;
    row-gap: 12px;
}

.how-it-works-details__grid p {
    border-bottom: 1px solid var(--ink-3);
    margin: 0;
    padding-bottom: 12px;
    line-height: 150%;
}

.how-it-works-details__grid p:nth-last-child(2),
.how-it-works-details__grid p:nth-last-child(1) {
    border-bottom: none;
}

.how-it-works-details__grid-key {
    color: var(--brown-2);
    padding-right: 12px;
}

.how-it-works-details__grid-value {
    font-weight: 500;
}

.how-it-works-details__questions .how-it-works-details__list {
    margin-bottom: 20px;
}

.what-we-accept-hero {
    margin: 64px auto 80px auto;
}

.what-we-accept-hero .book-hero__title {
    margin-bottom: 32px;
}

.what-we-accept-hero .book-hero__lead {
    margin-bottom: 0;
}

.what-we-accept-hero .book-hero__content {
    gap: 80px;
}

.what-we-accept-hero .book-hero__content {
    padding: 64px;
}

.what-we-accept-hero .book-hero__card {
    grid-template-columns: 678px 1fr;
}

.what-we-accept__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 54px;
    row-gap: 24px;
}

.what-we-accept__box {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid var(--gold);
    background: var(--cream);
}

.what-we-accept__icon {
    padding: 13px;
    border-radius: 16px;
}

.what-we-accept__box:nth-of-type(3n + 1) .what-we-accept__icon {
    background-color: #db716e14;
}

.what-we-accept__box:nth-of-type(3n + 2) .what-we-accept__icon {
    background-color: #cb9f3c1a;
}

.what-we-accept__box:nth-of-type(3n + 3) .what-we-accept__icon {
    background: #adb6691a;
}

.what-we-accept__box-title {
    text-align: center;
}

.what-we-accept__box-description {
    color: var(--brown-2);
    text-align: center;
    font-size: 17px;
    line-height: 150%;
    margin: 0;
}

.what-we-accept__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.what-we-not-accept__card {
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 586px 1fr;
    align-items: stretch;
    background: #db716e29;
}

.what-we-not-accept__content {
    padding: 44px 64px;
}

.what-we-not-accept__subtitle {
    color: var(--coral);
    font-size: 13px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.what-we-not-accept__title {
    font-size: 40px;
    margin-bottom: 40px;
}

.accept-rules {
    padding-block: 20px 0;
}

.accept-rules__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
}

.accept-rules__box {
    padding: 22px;
}

.accept-rules__image-wrapper {
    padding: 16px;
    border-radius: 100%;
    width: fit-content;
    background: #cb9f3c1f;
    margin: 0 auto 24px auto;
}

.accept-rules__text {
    color: var(--ink-2);
    text-align: center;
    line-height: 150%;
}

.contact {
    padding-block: 60px 80px;
    background: linear-gradient(180deg, #fdf1e500 0%, var(--cream-2) 100%);
}

.contact-lead .section-title__text {
    font-size: 56px;
}

.contact-data {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: start;
    gap: 56px;
}

.contact-data__cards {
    display: grid;
    gap: 24px;
}

.contact-data-card,
.contact-hours-card {
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid var(--gold);
}

.contact-data-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    color: var(--ink);
    text-decoration: none;
}

.contact-data-card:hover,
.contact-data-card:focus {
    border-color: var(--coral);
    color: var(--ink);
    text-decoration: none;
}

.contact-data-card__icon {
    display: block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 18px;
}

.contact-data-card__title {
    margin-bottom: 12px;
    font-size: 28px;
}

.contact-data-card__strong {
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 150%;
}

.contact-data-card__text {
    color: var(--brown);
    line-height: 150%;
}

.contact-data-card__text:not(:last-child) {
    margin-bottom: 12px;
}

.contact-data-card__phone {
    color: var(--brown-2);
    line-height: 150%;
}

.contact-hours-card {
    align-self: start;
    padding: 64px 52px;
}

.contact-hours-card__title {
    margin-bottom: 40px;
    font-size: 40px;
}

.contact-hours-card__list {
    margin-bottom: 40px;
}

.contact-hours-card__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ink-3);
    line-height: 150%;
}

.contact-hours-card__row:not(:last-child) {
    margin-bottom: 20px;
}

.contact-hours-card__row strong {
    color: var(--coral);
    font-weight: 500;
}

.contact-hours-card__row strong.is-muted {
    color: #4b403466;
}

.contact-hours-card__note {
    margin: 0;
    background: #cb9f3c1f;
    padding: 16px 24px;
    border-radius: 16px;
    color: var(--brown);
    line-height: 150%;
}

.address {
    padding-block: 100px;
}

.address iframe {
    width: 100%;
    height: 100%;
}

.address .book-banner__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 110%;
    margin-top: 0;
}

.address .book-banner__subtitle {
    color: var(--brown);
    font-weight: 400;
    line-height: 150%;
}

.address .book-banner__actions {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.address .book-banner__content {
    padding: 64px;
}

.opening-hours {
    padding-block: 80px 0px;
}

.opening-hours .contact-hours-card {
    border: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1280px) {
    .booking-step__grid {
        gap: 40px;
    }

    .booking-step__section-wrapper {
        padding-right: 0;
    }

    .booking-package-cards .form-check {
        padding: 34px 18px 78px;
    }

    .booking-step__small-second-step {
        gap: 22px;
    }

    .booking-step__small-third-step {
        gap: 22px;
    }

    .booking-reservation-cards .form-check {
        max-width: 100%;
    }

    .booking-reservation-cards .form-check-label {
        font-size: 17px;
    }

    .booking-step__big-second-step {
        gap: 42px;
    }

    .booking-counter {
        display: grid;
        grid-template-columns: 76px 76px 76px;
        align-items: center;
        gap: 20px;
    }

    .booking-step-size-wrapper {
        max-width: 100%;
        min-width: inherit;
        margin-left: inherit;
    }

    .booking-step__section-box--time {
        max-width: 100%;
    }
}
@media (min-width: 1024px) {
    /*.container { padding-inline: 40px; }*/
    .pricing__shelves {
        display: block;
    }
    .steps__arrow {
        display: block;
    }
}

@media (max-width: 1023px) {
    .customer-order__summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) 32px;
        gap: 24px;
        align-items: start;
    }

    .customer-order__summary > *,
    .customer-order__summary > .customer-order__cell,
    .customer-order__summary
        > *:not(.customer-order__cell--amount):not(.customer-order__chevron) {
        flex: initial;
        margin-right: 0;
    }

    .customer-order__cell--number {
        grid-column: 1;
        grid-row: 1;
    }

    .customer-order__cell--product {
        grid-column: 2;
        grid-row: 1;
    }

    .customer-order__cell--date {
        grid-column: 1;
        grid-row: 2;
    }

    .customer-order__cell--status {
        grid-column: 2;
        grid-row: 2;
    }

    .customer-order__cell--amount {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .customer-order__chevron {
        grid-column: 3;
        grid-row: 1 / span 3;
        align-self: center;
        margin-left: 0;
    }

    .customer-order__details {
        grid-template-columns: repeat(2, minmax(0, 1fr)) 32px;
        gap: 24px;
    }

    .customer-order__cell--product-details {
        grid-column: 1 / -1;
    }

    .customer-panel__tiles {
        margin-bottom: 64px;
    }

    .hero__card {
        grid-template-columns: 1fr;
    }
    .what-we-accept-hero .book-hero__card,
    .book-banner__card,
    .book-hero__card {
        grid-template-columns: 1fr;
    }

    .book-hero__content,
    .hero__content {
        padding: 40px;
        gap: 48px;
    }
    .book-hero__media,
    .book-banner__media,
    .hero__media {
        min-height: 360px;
    }

    .what-we-not-accept__media {
        min-height: 400px;
    }

    .book-hero__title,
    .hero__title {
        font-size: 40px;
    }

    .how {
        margin-top: 64px;
        padding-block: 64px;
    }
    .how__inner {
        gap: 32px;
    }
    .how__title {
        font-size: 40px;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step__card {
        gap: 1rem;
    }

    .pricing__panel {
        padding: 24px 24px 40px;
    }
    .pricing__title {
        font-size: 32px;
    }

    .book__card {
        grid-template-columns: 1fr;
    }
    .book__form-wrap {
        padding: 32px;
    }
    .book__title {
        font-size: 28px;
    }
    .book__media {
        min-height: 320px;
    }
    .footer {
        padding: 48px 24px;
        gap: 48px;
    }

    .login__content {
        padding: 42px;
    }

    .booking-step__grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .booking-step__small-second-step {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .booking-step__big-second-step {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .divider {
        width: 100%;
        height: 2px;
    }

    .step--arrow::after {
        left: 10%;
    }

    .booking-step__small-second-step .booking-card {
        max-width: unset;
    }

    .booking-step__small-third-step {
        grid-template-columns: 1fr;
    }

    .booking-step-summary__box {
        max-width: 100%;
    }

    .book-container {
        margin: 56px auto 108px;
    }

    .book-container--small {
        margin: 64px auto;
    }

    .how-it-works__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-accordion__summary {
        min-height: 84px;
        padding: 24px;
    }

    .booking-accordion__answer-text {
        padding: 0 24px 28px;
    }

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

    .review {
        max-width: 100%;
    }

    .pricing {
        padding-block: 64px;
    }

    .choose-option__cards {
        grid-template-columns: 1fr;
    }

    .customer-panel-contact {
        grid-template-columns: 1fr;
    }

    .hero {
        margin: 64px auto;
    }

    .header {
        align-items: center;
        padding-top: 20px;
    }

    .header__nav {
        gap: 12px;
    }

    .header__menu {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 96px 24px;
        background: var(--peach);
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition:
            opacity 0.25s,
            transform 0.3s ease;
    }

    .header__menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

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

    .header__links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        padding: 0;
    }

    .header__link {
        font-size: 22px;
    }

    .mobile-nav__open,
    .mobile-nav__close {
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--ink-3);
        border-radius: 999px;
        background: var(--peach);
        cursor: pointer;
        padding: 0;
    }

    .mobile-nav__open {
        display: flex;
    }

    .mobile-nav__close {
        position: absolute;
        top: 24px;
        right: 24px;
        display: flex;
    }

    .mobile-nav__open img,
    .mobile-nav__close img {
        width: 20px;
        height: 20px;
    }

    .btn.btn-book {
        font-size: 22px;
    }

    .login__image-bg-container {
        top: 20%;
    }

    .customer-panel-tile {
        padding: 24px;
        gap: 24px;
    }

    .customer-panel-tile__icon {
        height: 40px;
    }

    .customer-panel-tile__title {
        font-size: 18px;
    }

    .customer-order__panel-inner {
        padding-top: 0;
    }

    .how-it-works-details {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "costs preparation"
            "questions preparation"
            "time time";
        gap: 24px;
    }

    .how-it-works-details__cost-card-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .what-we-accept__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .what-we-not-accept__card {
        grid-template-columns: 1fr;
    }

    .what-we-not-accept__content {
        padding: 36px;
    }

    .accept-rules__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-data {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .address .book-banner__card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .address .book-banner__content {
        padding: 42px;
    }
}

@media (max-width: 767px) {
    .btn {
        font-size: 16px;
        padding: 18px 28px;
    }

    .how-it-works-details {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "costs"
            "preparation"
            "time"
            "questions";
        gap: 16px;
    }

    .how-it-works-container {
        padding-block: 56px;
    }

    .how-it-works-details__box,
    .how-it-works-details__questions {
        padding: 24px;
        border-radius: 20px;
    }

    .how-it-works-details__cost-card-wrapper {
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 24px;
    }

    .how-it-works-details__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .how-it-works-details__preparation-title {
        margin: 0 0 20px;
    }

    .how-it-works-details__preparation-extra-info {
        margin-block: 20px;
    }

    .how-it-works-details__box .btn {
        width: 100%;
    }

    .contact {
        padding-block: 64px;
    }

    .contact-lead .section-title__text {
        font-size: 40px;
    }

    .contact-data-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .contact-hours-card {
        padding: 32px 24px;
    }

    .contact-hours-card__title {
        margin-bottom: 28px;
    }

    .contact-hours-card__list {
        margin-bottom: 28px;
    }

    .contact-hours-card__row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-bottom: 18px;
    }

    .contact-hours-card__row:not(:last-child) {
        margin-bottom: 18px;
    }

    .contact-hours-card__note {
        padding: 18px;
    }

    .customer-orders__filters {
        justify-content: flex-start;
        gap: 10px;
    }

    .customer-orders__filter {
        min-width: 0;
        flex: 1 1 calc(50% - 10px);
        padding: 12px 16px;
        font-size: 17px;
    }

    .customer-order__summary {
        grid-template-columns: 1fr auto;
        gap: 24px;
        padding: 24px 18px;
    }

    .customer-order__cell--number,
    .customer-order__cell--product,
    .customer-order__cell--date,
    .customer-order__cell--status,
    .customer-order__cell--amount {
        grid-column: 1;
        grid-row: auto;
    }

    .customer-order__chevron {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin-left: 0;
    }

    .customer-order__cell--amount {
        max-width: 100%;
    }

    .customer-order__cell {
        gap: 0px;
    }

    .customer-order__label {
        font-size: 16px;
    }

    .customer-order__value {
        font-size: 18px;
    }

    .customer-order.is-open .customer-order__panel {
        max-height: 620px;
    }

    .customer-order__panel-inner {
        padding: 24px 18px;
        padding-top: 0;
    }

    .customer-order__details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .customer-order__payment {
        align-items: center;
    }

    .customer-order__total {
        flex-wrap: wrap;
        justify-content: flex-start;
        font-size: 20px;
    }

    .customer-order__total strong {
        font-size: 30px;
    }

    .customer-order__payment-pill {
        flex-wrap: wrap;
        font-size: 18px;
    }

    .customer-panel {
        margin: 56px auto 80px;
    }

    .customer-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-panel__tiles,
    .customer-panel-form {
        grid-template-columns: 1fr;
    }

    .customer-data {
        gap: 20px;
    }

    .customer-data-summary {
        grid-template-columns: 1fr auto;
        gap: 20px;
        padding: 28px 22px;
    }

    .customer-data-summary__details {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 19px;
    }

    .customer-data-summary__name {
        font-size: 25px;
    }

    .customer-data-editor {
        padding: 30px 20px 32px;
    }

    .customer-data-editor__title {
        font-size: 22px;
    }

    .customer-data-grid {
        grid-template-columns: 1fr;
    }

    .customer-data-grid > div,
    .customer-data-grid > div:nth-child(5),
    .customer-data-grid > div:nth-child(6),
    .customer-data-grid > div:nth-child(7),
    .customer-data-grid__full {
        grid-column: 1 / -1 !important;
    }

    .customer-data-grid__with-action .customer-data-input {
        padding-right: 16px;
    }

    .customer-data-gus {
        position: static;
        margin-top: 10px;
    }

    .customer-data-actions {
        flex-direction: column-reverse;
    }

    .customer-panel-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .customer-panel-tile,
    .customer-data-actions .btn {
        width: 100%;
    }

    .customer-panel-tile {
        min-height: 96px;
        border-radius: 20px;
    }

    .customer-panel-form__actions .btn {
        width: 100%;
    }

    .book-hero__title,
    .hero__title {
        font-size: 32px;
    }
    .book-hero__lead,
    .hero__lead {
        font-size: 18px;
    }

    .book-hero__lead {
        margin: 0;
    }

    .booking-accordion {
        border-radius: 18px;
    }

    .booking-accordion__summary {
        gap: 16px;
        min-height: 76px;
        padding: 20px;
    }

    .booking-accordion__answer-text {
        padding: 0 20px 24px;
    }

    .reviews {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing__shelves {
        display: none;
    }
    .pricing__cards {
        grid-template-columns: 1fr;
    }

    .plan-v2 {
        gap: 16px;
    }
    .plan-v2-price__value {
        font-size: 42px;
    }
    .plan-v2-price__desc {
        font-size: 16px;
    }

    .fields {
        grid-template-columns: 1fr;
    }
    .field--two {
        grid-column: 1 / -1;
    }
    .booking-cards--two,
    .booking-radio-cards--two,
    .booking-cards--four,
    .booking-package-cards .input-group {
        grid-template-columns: 1fr;
    }

    .booking-package-cards .input-group {
        gap: 22px;
    }

    .booking-package-cards .form-check {
        padding: 32px 22px 74px;
    }

    .booking-package-card__title {
        font-size: 22px;
    }

    .booking-package-card__price-value {
        font-size: 32px;
    }

    .booking-package-card__list {
        font-size: 15px;
    }

    .booking-duration-cards .booking-card {
        min-height: 88px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        border-width: 2px;
        border-radius: 22px;
    }

    .booking-reservation-cards .form-check {
        min-height: 96px;
        padding: 28px 76px 28px 24px;
        border-radius: 16px;
    }

    .booking-duration-month-cards .form-check {
        border-radius: 16px;
    }

    .booking-reservation-cards .form-check-input {
        right: 24px;
        width: 34px;
        height: 34px;
    }

    .booking-duration-month-cards .form-check-input {
        left: 24px;
        width: 34px;
        height: 34px;
    }

    .booking-duration-month-cards .form-check-label {
        padding-left: 52px;
    }

    .booking-step__actions {
        flex-direction: column-reverse;
    }
    .booking-step__actions .btn {
        width: 100%;
    }

    .footer__contacts {
        flex-direction: column;
        align-items: center;
    }

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

    .login__heading {
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-top: 56px;
    }

    .login__form-actions {
        width: 100%;
    }

    .login__form-button {
        flex: 1;
    }

    .login__image-container {
        min-width: auto;
    }

    .stepper-card {
        padding: 32px 24px;
    }

    .stepper-card__title {
        font-size: 28px;
    }

    .stepper-card__subtitle {
        font-size: 16px;
    }

    .booking-step__title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .booking-step__subtitle {
        font-size: 16px;
    }

    .booking-card__name {
        font-size: 20px;
    }

    .booking-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-card {
        gap: 32px;
        max-width: 100%;
    }

    .section-title__text {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .lead .section-title__text {
        margin-bottom: 16px;
    }

    .book-banner__title {
        font-size: 32px;
        margin-top: 24px;
    }

    .book-banner__subtitle {
        font-size: 16px;
    }

    .book-banner__pills {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .plan__name {
        font-size: 28px;
    }

    .plan__head {
        gap: 24px;
    }

    .plan__check {
        width: 20px;
        height: 20px;
    }

    .plan__features {
        gap: 12px;
    }

    .plan {
        padding: 24px;
    }

    .choose-option__title {
        font-size: 28px;
    }

    .choose-option__card-icon img {
        width: 40px;
        height: 40px;
    }

    .choose-option__description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .login__image {
        position: static;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 800px;
    }

    .customer-panel__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-tile__data {
        padding: 0 16px 32px 16px;
        grid-template-columns: 1fr;
    }

    .contact-tile__data--title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .contact-tile__data--address {
        font-size: 18px;
    }

    .contact-tile-section__tile {
        margin-bottom: 64px;
    }

    .how-it-works-steps .step__card {
        padding: 16px;
        gap: 16px;
    }

    .how-it-works-steps .step__title {
        font-size: 24px;
    }

    .how-it-works-steps .step__description {
        font-size: 16px;
    }

    .how-it-works-steps .step__icon {
        width: 40px;
        height: 40px;
    }

    .how-it-works-steps .step__num {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
        position: absolute;
        top: 30px;
        left: 11px;
    }

    .how-it-works-steps .step:first-child .step__num {
        top: -25px;
    }

    .how-it-works-wrapperr {
        margin: 0 auto;
    }

    .what-we-accept-container,
    .how-it-works-bg-container,
    .what-we-not-accept {
        padding-block: 64px;
    }

    .accept-rules {
        padding-block: 20px 0;
    }

    .what-we-accept__button {
        margin-top: 38px;
    }

    .how-it-works-container {
        padding-block: 64px;
    }

    .what-we-accept-hero .book-hero__content {
        padding: 32px;
        gap: 32px;
    }

    .what-we-accept__grid {
        grid-template-columns: 1fr;
    }

    .what-we-not-accept__title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .what-we-not-accept__list-text {
        font-size: 14px;
    }

    .what-we-not-accept__list-item:not(:last-child) {
        margin-bottom: 8px;
    }

    .what-we-not-accept__list-item img {
        width: 18px;
        height: 18px;
    }

    .what-we-not-accept__subtitle {
        margin-bottom: 16px;
    }

    .accept-rules__grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .contact-data-card__title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .contact-data-card__text {
        font-size: 16px;
    }

    .contact-data-card__text:not(:last-child) {
        margin-bottom: 6px;
    }

    .contact-data-card__strong {
        margin-bottom: 6px;
    }

    .contact-data-card__icon {
        margin-bottom: 10px;
    }

    .contact-data-card__phone {
        font-size: 16px;
    }

    .contact-hours-card__title {
        font-size: 20px;
    }

    .contact-hours-card__row {
        font-size: 16px;
    }

    .contact-hours-card__note {
        font-size: 14px;
    }

    .address {
        padding-block: 64px;
    }

    .address .book-banner__title {
        font-size: 28px;
    }

    .opening-hours {
        padding-block: 64px 0;
    }

    .opening-hours .contact-hours-card__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .login__image-bg-container {
        inset: 0;
    }

    .login__content {
        padding: 32px 24px;
        gap: 24px;
    }

    .login__title {
        font-size: 36px;
    }

    .booking-card {
        gap: 16px;
        padding: 24px 16px;
    }

    .booking-step__grid {
        gap: 32px;
        margin-top: 32px;
    }

    .booking-step__small-second-step {
        gap: 32px;
        margin-top: 32px;
    }

    .booking-step__big-second-step {
        gap: 32px;
        margin-top: 32px;
    }

    .booking-step__big-third-step {
        margin-top: 32px;
    }

    .booking-step-summary--big {
        margin-top: 32px;
    }

    .booking-step__actions {
        padding-top: 32px;
    }

    .booking-counter {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .booking-counter__button {
        padding: 16px;
        font-size: 28px;
    }

    .booking-step__section-box {
        padding: 24px;
        gap: 16px;
    }

    .booking-duration-month-cards .form-check {
        padding: 22px;
    }

    .booking-step-summary__box {
        margin-right: 0;
    }

    .vertical-divider {
        width: 100%;
    }

    .booking-step__small-third-step {
        margin-top: 32px;
    }

    .booking-cards {
        grid-template-columns: 1fr;
    }

    .booking-card__description {
        margin: 0;
    }

    .booking-card__arrow-icon {
        width: 24px;
        height: 14px;
        flex-shrink: 0;
    }

    .booking-card__arrow {
        width: 38px;
        height: 38px;
    }

    .line {
        margin: 8px auto;
    }

    .booking-step-summary__title {
        font-size: 22px;
    }

    .book-hero__actions a,
    .book-banner__actions a {
        width: 100%;
    }

    .book-hero__content {
        padding: 28px;
    }

    .book-banner__content {
        padding: 20px;
        gap: 24px;
    }

    .how-it-works__grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 48px;
    }

    .choose-option__card {
        padding: 24px;
    }

    .choose-option__card button {
        width: 100%;
    }

    .section-title__top {
        margin-bottom: 12px;
    }

    .pricing__panel {
        padding: 24px 16px 16px 16px;
    }

    .how__title {
        font-size: 32px;
    }

    .step__title {
        font-size: 26px;
    }

    .step__icon {
        width: 50px;
        height: 50px;
    }

    .step__num {
        width: 40px;
        height: 40px;
        font-size: 28px;
        top: 15px;
    }

    .step__card {
        padding: 24px;
    }

    .hero__actions a {
        width: 100%;
    }

    .customer-panel__tiles {
        gap: 10px;
        margin-bottom: 38px;
    }

    .customer-panel-tile {
        padding: 16px;
        gap: 16px;
    }

    .customer-panel-tile__icon {
        height: 30px;
    }

    .customer-data-summary__details {
        font-size: 16px;
    }

    .customer-data-editor__title {
        font-size: 18px;
    }

    .contact-tile-section__tile {
        margin-bottom: 48px;
    }

    .lead__container {
        padding: 64px 16px 64px 16px;
    }

    .lead {
        margin-top: 32px;
    }

    .how-it-works-details__cost-card-title {
        font-size: 22px;
    }

    .what-we-accept-hero {
        margin: 32px auto 64px auto;
    }

    .what-we-accept__box {
        padding: 20px;
        gap: 16px;
    }

    .what-we-accept__box-title {
        font-size: 20px;
    }

    .what-we-accept__icon {
        padding: 8px;
    }

    .what-we-accept__pills {
        justify-content: center;
    }

    .what-we-not-accept__content {
        padding: 24px;
    }
}

.footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.footer__contact-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.footer__contact-item {
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    text-align: center;
}

.footer__contact-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer__contact-item strong {
    font-weight: 700;
}

.footer__contact-item--indent {
    padding-left: 20px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox input {
    display: none;
}

.checkbox__box {
    width: 20px;
    height: 20px;
    border: 2px solid #222;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: 0.2s;
}

.checkbox input:checked + .checkbox__box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #222;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox__label {
    font-size: 14px;
}

.checkbox__label {
    font-size: 14px;
    white-space: nowrap;
}

.checkbox__label a {
    color: inherit;
    text-decoration: underline;
    font-weight: inherit;
}
