:root {
    --reservation-bg: #f4ede2;
    --reservation-panel: rgba(255, 251, 245, 0.88);
    --reservation-card: rgba(255, 255, 255, 0.76);
    --reservation-ink: #16120f;
    --reservation-muted: #61564d;
    --reservation-soft: #8d7f71;
    --reservation-line: rgba(22, 18, 15, 0.12);
    --reservation-line-strong: rgba(22, 18, 15, 0.2);
    --reservation-gold: #a67b2d;
    --reservation-gold-soft: rgba(166, 123, 45, 0.14);
    --reservation-accent: #844933;
    --reservation-shadow: 0 28px 80px rgba(43, 29, 10, 0.12);
    --reservation-radius-xl: 34px;
    --reservation-radius-lg: 26px;
    --reservation-radius-md: 18px;
    --reservation-radius-sm: 14px;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: 88px;
    color: var(--reservation-muted);
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top left, rgba(166, 123, 45, 0.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(132, 73, 51, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f1e8 0%, #f3ecdf 42%, #efe6d9 100%);
}

.site-header {
    background: rgba(255, 251, 245, 0.88) !important;
    backdrop-filter: blur(26px) saturate(1.15) !important;
    -webkit-backdrop-filter: blur(26px) saturate(1.15) !important;
    border-bottom: 1px solid rgba(166, 123, 45, 0.09);
    box-shadow: 0 10px 24px rgba(24, 17, 10, 0.04);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(24, 17, 10, 0.07);
}

.menu-icon span {
    background: var(--reservation-ink) !important;
}

.menu-icon:hover span,
.menu-icon.active span {
    background: var(--reservation-gold) !important;
}

.reservation-page {
    position: relative;
    overflow: hidden;
}

.reservation-page::before,
.reservation-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(8px);
}

.reservation-page::before {
    top: 110px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(166, 123, 45, 0.11);
}

.reservation-page::after {
    right: -80px;
    bottom: 60px;
    width: 220px;
    height: 220px;
    background: rgba(132, 73, 51, 0.08);
}

.reservation-shell {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 20px 88px;
    display: block;
}

.reservation-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: var(--reservation-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.reservation-panel {
    background: var(--reservation-panel);
    border-radius: var(--reservation-radius-xl);
    padding: 36px;
}

.panel-overline {
    margin: 0 0 14px;
    color: var(--reservation-gold);
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 600;
}

.panel-header h2 {
    margin: 0;
    color: var(--reservation-ink);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.panel-copy {
    margin: 22px 0 0;
    font-size: 1.04rem;
    line-height: 1.72;
    max-width: 34rem;
}

.panel-legal-note {
    margin: 14px 0 0;
    color: var(--reservation-soft);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
}

.panel-header {
    padding-bottom: 28px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(22, 18, 15, 0.08);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.form-field label {
    color: var(--reservation-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    border-radius: var(--reservation-radius-sm);
    border: 1px solid rgba(22, 18, 15, 0.11);
    background: var(--reservation-card);
    color: var(--reservation-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    appearance: none;
}

.form-field select {
    padding-right: 56px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--reservation-gold) 50%),
        linear-gradient(135deg, var(--reservation-gold) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 2px),
        calc(100% - 16px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(166, 123, 45, 0.72);
    box-shadow: 0 0 0 4px rgba(166, 123, 45, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a09385;
}

.consents {
    padding: 28px;
    border-radius: var(--reservation-radius-lg);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(22, 18, 15, 0.08);
}

.consents-header {
    margin-bottom: 18px;
}

.consents-header h3 {
    margin: 0;
    color: var(--reservation-ink);
    font-size: 1.8rem;
    line-height: 1.05;
    font-weight: 500;
}

.consent-required,
.consent-group,
.accept-all {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--reservation-radius-md);
}

.consent-required {
    background: rgba(132, 73, 51, 0.05);
    border: 1px solid rgba(132, 73, 51, 0.12);
}

.consent-group {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(22, 18, 15, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.consent-group:hover {
    transform: translateY(-1px);
    border-color: rgba(166, 123, 45, 0.22);
    background: rgba(255, 255, 255, 0.76);
}

.accept-all {
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(166, 123, 45, 0.09), rgba(255, 255, 255, 0.52));
    border: 1px dashed rgba(166, 123, 45, 0.26);
}

.consent-required input[type="checkbox"],
.consent-group input[type="checkbox"],
.accept-all input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--reservation-gold);
    cursor: pointer;
}

.consent-required label,
.consent-group label,
.accept-all label {
    color: var(--reservation-muted);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    cursor: pointer;
}

.accept-all label {
    color: var(--reservation-ink);
    font-weight: 600;
}

.consent-required a,
.consent-group a,
.accept-all a {
    color: var(--reservation-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(132, 73, 51, 0.22);
}

.consent-required a:hover,
.consent-group a:hover,
.accept-all a:hover {
    border-bottom-color: rgba(132, 73, 51, 0.5);
}

.consent-note {
    margin: 16px 0 0;
    color: var(--reservation-soft);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
}

.submit-btn {
    min-height: 64px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f1813 0%, #3b2618 48%, #8b5b2f 100%);
    color: #f6efe4;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 22px 34px rgba(46, 28, 11, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 38px rgba(46, 28, 11, 0.22);
    filter: saturate(1.04);
}

.submit-btn:active {
    transform: translateY(0);
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.errorlist li {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(165, 40, 40, 0.08);
    color: #8f2323;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.55;
}

.reservation-form > .errorlist {
    margin-top: -2px;
}

@media (max-width: 1100px) {
    .reservation-shell {
        max-width: 780px;
    }
}

@media (max-width: 820px) {
    body {
        padding-top: 72px;
    }

    .reservation-shell {
        padding: 30px 16px 72px;
    }

    .reservation-panel {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .panel-header h2 {
        line-height: 1;
    }

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

    .consents {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    body {
        padding-top: 64px;
    }

    .reservation-shell {
        padding: 20px 12px 52px;
    }

    .reservation-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .panel-copy {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .consent-required,
    .consent-group,
    .accept-all {
        grid-template-columns: 22px 1fr;
        padding: 14px;
    }

    .submit-btn {
        min-height: 58px;
        font-size: 0.8rem;
        letter-spacing: 0.16em;
    }
}
