
.reservation-hero {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 86% 25%,
            rgba(255, 255, 255, .12),
            transparent 25%
        ),
        linear-gradient(135deg, #07543b, #08764c);
    color: #fff;
}

.reservation-hero__inner {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.reservation-kicker {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .13em;
}

.reservation-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 53px);
    line-height: 1.03;
}

.reservation-hero__inner > div:first-child > p:last-child {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, .83);
    font-size: 15px;
}

.reservation-today {
    display: grid;
    min-width: 190px;
    padding: 18px 21px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 13px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(6px);
}

.reservation-today small {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.reservation-today strong {
    margin-top: 3px;
    font-size: 25px;
    line-height: 1.15;
}

.reservation-today span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
}

.reservation-section {
    padding-top: 38px;
    padding-bottom: 22px;
}

.reservation-toolbar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.month-control {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #d6e3dc;
    border-radius: 10px;
    background: #fff;
    color: #087148;
    font-size: 21px;
    font-weight: 800;
}

.month-control:hover {
    border-color: #a8cfba;
    background: #f0f7f3;
}

.reservation-month {
    text-align: center;
}

.reservation-month small {
    color: #718078;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .11em;
}

.reservation-month h2 {
    margin: 2px 0 0;
    color: #163126;
    font-size: clamp(26px, 3.3vw, 36px);
}

.reservation-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-bottom: 15px;
    color: #65756d;
    font-size: 11px;
}

.reservation-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legend-swatch {
    width: 11px;
    height: 11px;
    border-radius: 4px;
}

.legend-swatch--free {
    border: 1px solid #dce6e1;
    background: #fff;
}

.legend-swatch--reserved {
    background: #dceddf;
    box-shadow: inset 0 0 0 1px #93c2a7;
}

.legend-swatch--today {
    border: 2px solid #087148;
    background: #fff;
}

.reservation-calendar {
    overflow: hidden;
    border: 1px solid #d7e3dd;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 13px 34px rgba(24, 60, 44, .07);
}

.reservation-weekdays,
.reservation-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.reservation-weekdays {
    border-bottom: 1px solid #dce6e1;
    background: #f1f6f3;
}

.reservation-weekdays span {
    padding: 10px 5px;
    color: #5e7167;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
}

.reservation-day {
    position: relative;
    display: flex;
    min-height: 99px;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    border-right: 1px solid #e3ebe7;
    border-bottom: 1px solid #e3ebe7;
    background: #fff;
}

.reservation-day:nth-child(7n) {
    border-right: 0;
}

.reservation-day time {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 999px;
    color: #283a32;
    font-size: 13px;
    font-weight: 800;
}

.reservation-day > span {
    align-self: flex-start;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.reservation-day.is-reserved {
    background:
        linear-gradient(
            135deg,
            rgba(219, 239, 225, .88),
            rgba(243, 249, 245, .92)
        );
}

.reservation-day.is-reserved > span {
    background: #087148;
    color: #fff;
}

.reservation-day.is-today {
    box-shadow: inset 0 0 0 2px #087148;
}

.reservation-day.is-today time {
    background: #087148;
    color: #fff;
}

.reservation-day.is-outside {
    background: #fafcfb;
    opacity: .42;
}

.reservation-day.is-outside > span {
    display: none;
}

.reservation-summary {
    margin-top: 15px;
    padding: 12px 15px;
    border: 1px solid #dce6e1;
    border-radius: 10px;
    background: #f6f9f7;
    color: #607068;
    font-size: 12px;
    text-align: center;
}

.reservation-summary strong {
    color: #174b37;
}

.reservation-privacy {
    margin-top: 22px;
    padding: 17px 19px;
    border-left: 4px solid #087148;
    border-radius: 0 10px 10px 0;
    background: #f1f7f4;
}

.reservation-privacy strong {
    color: #164632;
}

.reservation-privacy p {
    margin: 4px 0 0;
    color: #65756d;
    font-size: 12px;
}

@media (max-width: 700px) {
    .reservation-hero__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .reservation-today {
        width: 100%;
        min-width: 0;
    }

    .reservation-calendar {
        overflow-x: auto;
    }

    .reservation-weekdays,
    .reservation-days {
        min-width: 630px;
    }

    .reservation-day {
        min-height: 88px;
    }
}
