.booking-page {
    --gold: #99783a;
    --cream: #faf7f2;
    --blush: #f1e2dd;
    --dark: #181614;
    --muted: #7d756e;
}

.booking-page h1,
.booking-page h2,
.booking-page p {
    margin-top: 0;
}

.booking-eyebrow {
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}


/* HERO */

.booking-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 75px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(183,151,96,.11),
            transparent 30%
        ),
        var(--cream);
}

.booking-watermark {
    position: absolute;
    top: -160px;
    right: 0;
    color: rgba(153,120,58,.04);
    font-family: "Italianno", cursive;
    font-size: 430px;
    line-height: 1;
}

.booking-hero .container {
    position: relative;
    z-index: 2;
}

.booking-hero h1 {
    max-width: 850px;
    margin: 18px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(60px,7vw,96px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.05em;
}

.booking-hero h1 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.booking-hero p {
    max-width: 530px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.85;
}


/* LAYOUT */

.booking-main {
    padding: 75px 0 120px;
    background: #fff;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 340px;
    gap: 65px;
    align-items: start;
}

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


/* PROGRESS */

.booking-progress {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9e1db;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: #aaa19a;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.progress-step span {
    font-family: "Playfair Display", serif;
    font-size: 10px;
}

.progress-step.active {
    color: var(--dark);
}

.progress-step.active span,
.progress-step.complete span {
    color: var(--gold);
}

.booking-progress i {
    width: 40px;
    height: 1px;
    margin: 0 17px;
    background: #ddd3cc;
}


/* STEPS */

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step-head {
    margin-bottom: 35px;
}

.booking-step-head > span {
    color: var(--gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;
}

.booking-step-head h2 {
    margin: 10px 0 0;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -.03em;
}

.booking-step-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.75;
}


/* SERVICES */

.booking-category {
    margin-bottom: 32px;
}

.booking-category-title {
    margin-bottom: 9px;
    color: #8f857d;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.booking-service-list {
    border-top: 1px solid #e8dfd9;
}

.booking-service-card {
    width: 100%;
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 14px 17px;
    border: 0;
    border-bottom: 1px solid #e8dfd9;
    background: #fff;
    color: inherit;
    cursor: pointer;
    text-align: left;
    transition: .18s ease;
}

.booking-service-card:hover {
    padding-left: 22px;
    background: #faf6f3;
}

.booking-service-card.selected {
    background: var(--blush);
}

.booking-service-card.not-ready {
    cursor: not-allowed;
    opacity: .45;
}

.booking-service-card strong,
.booking-service-card span {
    display: block;
}

.booking-service-card strong {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
}

.booking-service-card span {
    margin-top: 4px;
    color: #9a9189;
    font-size: 8px;
}

.service-book-price {
    flex: none;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 17px;
}


/* DATE */

.booking-date-wrap {
    max-width: 420px;
}

.booking-date-wrap label > span {
    display: block;
    margin-bottom: 8px;
    color: #8b8179;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.booking-date-wrap input {
    width: 100%;
    height: 53px;
    padding: 0 15px;
    border: 1px solid #dfd5ce;
    outline: none;
    background: #fff;
    color: var(--dark);
}

.booking-date-wrap input:focus {
    border-color: var(--gold);
}


/* SLOTS */

.booking-slots {
    margin-top: 32px;
}

.slots-label {
    margin-bottom: 13px;
    color: #8b8179;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 9px;
}

.slot-button {
    min-height: 48px;
    border: 1px solid #e1d7d0;
    background: #fff;
    cursor: pointer;
    font-size: 11px;
    transition: .18s;
}

.slot-button:hover,
.slot-button.selected {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

.slots-placeholder,
.booking-empty,
.booking-loading {
    padding: 38px 25px;
    border: 1px dashed #ddd2ca;
    color: #968d85;
    text-align: center;
    font-size: 10px;
}

.slots-placeholder span,
.booking-empty > span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 20px;
}

.booking-empty strong {
    display: block;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
}

.booking-empty p {
    margin: 6px 0 0;
}


/* FORM */

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

.booking-form-grid label {
    display: block;
}

.booking-form-grid label.full {
    grid-column: 1 / -1;
}

.booking-form-grid label > span {
    display: block;
    margin-bottom: 7px;
    color: #827970;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-form-grid input,
.booking-form-grid textarea {
    width: 100%;
    border: 1px solid #dfd5ce;
    outline: 0;
    background: #fff;
    font-size: 11px;
}

.booking-form-grid input {
    height: 50px;
    padding: 0 14px;
}

.booking-form-grid textarea {
    resize: vertical;
    min-height: 105px;
    padding: 13px 14px;
}

.booking-form-grid input:focus,
.booking-form-grid textarea:focus {
    border-color: var(--gold);
}

.booking-navigation,
.booking-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.booking-back {
    border: 0;
    background: transparent;
    color: #817870;
    cursor: pointer;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.booking-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 26px;
    border: 0;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.booking-submit:disabled {
    opacity: .55;
    cursor: wait;
}

.booking-error {
    margin-top: 18px;
    padding: 13px 15px;
    background: #f8eaea;
    color: #994a4a;
    font-size: 10px;
}


/* SUMMARY */

.booking-summary {
    position: sticky;
    top: 110px;
}

.booking-summary-card {
    padding: 27px;
    border: 1px solid #e4dad3;
    background: #faf7f3;
}

.booking-summary-card h2 {
    margin: 8px 0 28px;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 400;
}

.summary-row {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #e5dcd5;
}

.summary-row span {
    color: #9b9189;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.summary-row strong {
    text-align: right;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
}

.summary-price span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.summary-price strong {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
}

.summary-note {
    margin: 20px 0 0 !important;
    color: #9a9189;
    font-size: 8px;
    line-height: 1.7;
}

.booking-help {
    display: flex;
    gap: 13px;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid #eee6e0;
}

.booking-help > span {
    color: var(--gold);
}

.booking-help strong {
    font-size: 9px;
    font-weight: 500;
}

.booking-help p {
    margin: 5px 0 0;
    color: #958c85;
    font-size: 8px;
    line-height: 1.7;
}


/* SUCCESS */

.booking-success {
    padding: 40px 0 20px;
    text-align: center;
}

.success-mark {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    border: 1px solid #cdb689;
    border-radius: 50%;
    color: var(--gold);
    font-size: 25px;
}

.booking-success h2 {
    margin: 14px 0 0;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.05;
}

.booking-success h2 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.booking-success > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.success-details {
    max-width: 500px;
    margin: 32px auto;
    border-top: 1px solid #e3d9d2;
}

.success-details > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #e3d9d2;
}

.success-details span {
    color: #9a9189;
    font-size: 8px;
    text-transform: uppercase;
}

.success-details strong {
    font-size: 10px;
    font-weight: 500;
}

.booking-success > a {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid #baa57c;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 900px) {

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

    .booking-summary {
        position: static;
    }
}


@media (max-width: 620px) {

    .booking-hero {
        padding: 65px 0 55px;
    }

    .booking-hero h1 {
        font-size: 55px;
    }

    .booking-main {
        padding: 55px 0 85px;
    }

    .booking-progress {
        overflow-x: auto;
    }

    .progress-step {
        flex: none;
    }

    .booking-progress i {
        width: 20px;
        margin: 0 10px;
        flex: none;
    }

    .booking-step-head h2 {
        font-size: 34px;
    }

    .booking-service-card {
        padding: 13px 5px;
    }

    .booking-service-card:hover {
        padding-left: 5px;
    }

    .slots-grid {
        grid-template-columns: repeat(3,1fr);
    }

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

    .booking-form-grid label.full {
        grid-column: auto;
    }

    .booking-submit-row {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .booking-submit {
        justify-content: center;
        width: 100%;
    }

    .booking-back {
        align-self: flex-start;
    }

    .booking-summary-card {
        padding: 22px;
    }
}
