.svap {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    color: #f4f0e8;
    background: #070b10;
}

.svap-hero {
    max-width: 920px;
    padding: 72px 0 42px;
}

.svap-kicker {
    margin: 0 0 12px;
    color: #d7a646;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.svap h1,
.svap h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
}

.svap h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
}

.svap h2 {
    font-size: 24px;
}

.svap-hero p:last-child {
    max-width: 720px;
    margin: 20px 0 0;
    color: #c9c4ba;
    font-size: 17px;
    line-height: 1.7;
}

.svap-message {
    margin: 0 0 26px;
    padding: 16px 18px;
    border: 1px solid rgba(201, 148, 56, .35);
    background: rgba(201, 148, 56, .08);
    color: #f7ead0;
}

.svap-message--error {
    border-color: rgba(198, 72, 72, .55);
    background: rgba(198, 72, 72, .12);
}

.svap-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
    gap: 28px;
    align-items: start;
    padding-bottom: 76px;
}

.svap-calendar,
.svap-panel,
.svap-day {
    border: 1px solid rgba(201, 148, 56, .22);
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
}

.svap-calendar {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.svap-day {
    padding: 18px;
}

.svap-day h2 {
    margin-bottom: 16px;
    font-size: 21px;
}

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

.svap-slot {
    min-height: 76px;
    padding: 12px 10px;
    border: 1px solid rgba(215, 166, 70, .42);
    background: rgba(10, 15, 21, .78);
    color: #f4f0e8;
    cursor: pointer;
    text-align: center;
}

.svap-slot span,
.svap-slot small {
    display: block;
}

.svap-slot span {
    font-size: 22px;
    font-weight: 800;
}

.svap-slot small {
    margin-top: 5px;
    color: #d7a646;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.svap-slot.is-selected {
    background: linear-gradient(135deg, #b98028, #e0b65c);
    color: #14100a;
}

.svap-slot.is-selected small {
    color: #14100a;
}

.svap-slot.is-booked,
.svap-slot:disabled {
    cursor: not-allowed;
    opacity: .48;
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .035);
}

.svap-panel {
    position: sticky;
    top: 112px;
    padding: 26px;
}

.svap-selected {
    min-height: 52px;
    margin: 14px 0 22px;
    color: #d7d0c3;
    line-height: 1.55;
}

.svap-form {
    display: grid;
    gap: 13px;
}

.svap-form label {
    display: grid;
    gap: 7px;
}

.svap-form label span {
    color: #c9c4ba;
    font-size: 13px;
}

.svap-form input,
.svap-form select,
.svap-form textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(201, 148, 56, .22);
    background: rgba(2, 6, 10, .72);
    color: #f4f0e8;
    padding: 12px 13px;
    font: inherit;
}

.svap-form textarea {
    min-height: 112px;
    resize: vertical;
}

.svap-check {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px !important;
    color: #c9c4ba;
    font-size: 13px;
    line-height: 1.45;
}

.svap-check input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.svap-form button {
    min-height: 52px;
    margin-top: 6px;
    border: 0;
    background: linear-gradient(135deg, #b98028, #e0b65c);
    color: #14100a;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.svap-note {
    margin: 18px 0 0;
    color: #aaa297;
    font-size: 13px;
}

.svap-note a {
    color: #d7a646;
}

@media (max-width: 1020px) {
    .svap-layout {
        grid-template-columns: 1fr;
    }

    .svap-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .svap {
        width: min(100% - 28px, 1280px);
    }

    .svap-hero {
        padding: 48px 0 28px;
    }

    .svap h1 {
        font-size: 42px;
    }

    .svap-layout {
        gap: 18px;
        padding-bottom: 48px;
    }

    .svap-calendar,
    .svap-day,
    .svap-panel {
        padding: 14px;
    }

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