:root {
    --site-ink: #231f20;
    --site-green: #3f883f;
    --site-green-deep: #2d6646;
    --site-olive: #c2c86c;
    --site-sand: #f5f2ec;
    --site-mist: #e7efe9;
    --site-paper: #ffffff;
    --site-paper-soft: rgba(255, 255, 255, 0.8);
    --site-line: #d9ddd7;
    --site-muted: #586156;
    --site-danger: #a11f1f;
    --site-danger-bg: #fdeaea;
    --site-success: #1f6b2a;
    --site-success-bg: #e7f6ea;
    --site-shadow: 0 22px 60px rgba(35, 31, 32, 0.08);
    --site-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: var(--site-ink);
    background:
        radial-gradient(circle at top left, rgba(194, 200, 108, 0.18), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(63, 136, 63, 0.14), transparent 22%),
        linear-gradient(160deg, var(--site-sand) 0%, #f3f2ec 42%, var(--site-mist) 100%);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(35, 31, 32, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 31, 32, 0.02) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 70%);
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 32px 18px 56px;
    position: relative;
    z-index: 1;
}

.page-intro {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.page-intro--split {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
}

.page-intro--split > * {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(35, 31, 32, 0.08);
    color: var(--site-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--site-olive), var(--site-green));
    box-shadow: 0 0 0 6px rgba(194, 200, 108, 0.15);
}

.hero-plate,
.page-card,
.table-panel,
.cookie-banner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(35, 31, 32, 0.08);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(8px);
}

.hero-plate {
    padding: 26px 28px;
    border-radius: calc(var(--site-radius) + 8px);
    position: relative;
    overflow: hidden;
}



.hero-plate h1,
.page-card h1,
.page-card h2 {
    margin: 0;
    line-height: 1.05;
}

.hero-plate h1 {
    max-width: 10ch;
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.hero-plate p,
.page-card p,
.muted-text {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.65;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.intro-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(35, 31, 32, 0.06);
}

.intro-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.toolbar--space {
    justify-content: space-between;
}

.page-card {
    border-radius: var(--site-radius);
    overflow: hidden;
}

.page-card__body {
    padding: 24px;
}

.page-flash {
    margin-bottom: 24px;
}

.stack {
    display: grid;
    gap: 18px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.event-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(35, 31, 32, 0.08);
    box-shadow: 0 16px 38px rgba(35, 31, 32, 0.08);
    transition: none;
}

.event-card:hover,
.event-card:focus-within,
.event-card.is-tilting {
    border-color: rgba(63, 136, 63, 0.24);
    box-shadow: 0 24px 42px rgba(35, 31, 32, 0.12);
}

.event-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.event-card__media {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #e7e7e3;
}

.event-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(35, 31, 32, 0.38), transparent 34%),
        linear-gradient(to top, rgba(35, 31, 32, 0.52), transparent 54%);
}

.event-image,
.event-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.no-image {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #7a7a74;
    background:
        linear-gradient(135deg, rgba(194, 200, 108, 0.3), rgba(63, 136, 63, 0.12)),
        #ebece6;
}

.event-card__status {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    transform: translateZ(28px);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: min(100%, 280px);
    padding: 11px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 26px rgba(35, 31, 32, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.status-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 8px;
    background: currentColor;
    opacity: 0.92;
}

.status-chip--closed {
    background: rgba(35, 31, 32, 0.84);
    color: #fff;
}

.status-chip--success {
    background: rgba(45, 102, 70, 0.92);
    color: #fff;
}

.event-card__body {
    position: relative;
    z-index: 2;
    padding: 22px;
    transform: translateZ(18px);
}

.event-card__title,
.event-detail__title {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.meta-list,
.meta-grid {
    display: grid;
    gap: 12px;
}

.meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.meta-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(35, 31, 32, 0.06);
}

.meta-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--site-muted);
    font-size: 13px;
}

.event-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.btn,
.btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: none;
}


.btn-primary {
    background: var(--site-green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--site-green-deep);
}

.btn-secondary {
    background: var(--site-olive);
    color: var(--site-ink);
}

.btn-secondary:hover {
    background: #b6bd5b;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(35, 31, 32, 0.1);
    color: var(--site-ink);
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(35, 31, 32, 0.14);
    color: rgba(35, 31, 32, 0.75);
}

.event-detail {
    display: grid;
    gap: 22px;
}

.event-detail__media {
    height: 360px;
    background: #e7e7e3;
}

.event-detail__content {
    padding: 24px;
}

.body-copy {
    line-height: 1.75;
    color: #394238;
    white-space: pre-line;
}

.form-shell {
    display: grid;
    gap: 24px;
}

.form-progress {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(35, 31, 32, 0.08);
}

.form-progress__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.form-progress__title,
.form-progress__count {
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.form-progress__count {
    color: var(--site-muted);
}

.form-progress__track {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(35, 31, 32, 0.08);
}

.form-progress__bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--site-olive), var(--site-green));
    box-shadow: 0 8px 18px rgba(63, 136, 63, 0.28);
    transition: width 0.2s ease;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.form-shell > .field-grid,
.form-shell > .table-panel--questionnaire,
.form-shell > .field--full,
.form-shell > .consent-panel,
.form-shell > .button-row {
    min-width: 0;
}

.form-shell > .field-grid + .table-panel--questionnaire {
    margin-top: 4px;
}

.form-shell > .table-panel--questionnaire + .field--full {
    margin-top: 8px;
}

.form-shell > .field--full + .consent-panel {
    margin-top: 6px;
}

.form-shell > .consent-panel + .button-row {
    margin-top: 4px;
}

.field,
.field--full {
    display: grid;
    gap: 7px;
}

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

.field label {
    font-size: 13px;
    color: var(--site-muted);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select,
.table-panel textarea,
.table-panel input[type="text"],
.table-panel input[type="email"],
.table-panel input[type="tel"] {
    width: 100%;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: var(--site-ink);
    transition: none;
}

.field textarea,
.table-panel textarea {
    min-height: 118px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.table-panel textarea:focus,
.table-panel input:focus {
    outline: none;
    border-color: rgba(63, 136, 63, 0.48);
    box-shadow: 0 0 0 4px rgba(63, 136, 63, 0.08);
    background: #fff;
}

.message {
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 14px;
}

.message--success {
    background: var(--site-success-bg);
    color: var(--site-success);
}

.message--error {
    background: var(--site-danger-bg);
    color: var(--site-danger);
}

.message--muted {
    background: rgba(255, 255, 255, 0.62);
    color: var(--site-muted);
    border: 1px dashed rgba(35, 31, 32, 0.12);
}

.table-panel {
    border-radius: 22px;
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

th,
td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(35, 31, 32, 0.08);
    vertical-align: top;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--site-ink);
    color: #fff;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

tbody tr:nth-child(even) {
    background: rgba(245, 242, 236, 0.48);
}

.checkbox-cell {
    text-align: center;
    vertical-align: middle;
}

.checkbox-cell input,
.consent-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--site-green);
}

.consent-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(35, 31, 32, 0.08);
}

.consent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.consent-item label {
    margin: 0;
    color: #394238;
    line-height: 1.55;
}

.section-note {
    font-size: 13px;
    color: var(--site-muted);
}

.empty-state {
    padding: 26px;
    border-radius: 22px;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    max-width: 860px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 22px;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.cookie-banner__title {
    margin: 0 0 6px;
    font-size: 1rem;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.is-new-card {
    animation: none;
}

.intro-aside {
    display: grid;
    gap: 12px;
    align-self: stretch;
    min-width: 0;
}

.brand-showcase {
    display: grid;
    place-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.brand-showcase__logo {
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .page-intro--split,
    .cookie-banner__content {
        grid-template-columns: 1fr;
    }

    .hero-plate h1 {
        max-width: none;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }

    .intro-aside {
        order: 2;
    }

    .brand-showcase {
        min-height: 0;
    }
}
.field[hidden],
.field--full[hidden] {
    display: none !important;
}

.table-panel__intro {
    padding: 16px 18px 0;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.questionnaire-comment-label {
    display: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--site-muted);
}

@media (max-width: 640px) {
    .site-shell {
        padding-inline: 14px;
        padding-top: 22px;
    }

    .page-intro--split {
        gap: 16px;
    }

    .intro-aside {
        gap: 16px;
    }

    .hero-plate,
    .page-card__body,
    .event-card__body,
    .event-detail__content {
        padding: 18px;
    }

    .hero-plate h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .brand-showcase__logo {
        width: min(100%, 240px);
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

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

    .event-detail__media,
    .event-card__media {
        height: 220px;
    }

    .button-row,
    .event-actions {
        flex-direction: column;
    }

    .btn,
    .btn-inline,
    .btn-disabled {
        width: 100%;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .form-shell {
        gap: 28px;
    }

    .form-shell > .field-grid + .table-panel--questionnaire,
    .form-shell > .table-panel--questionnaire + .field--full,
    .form-shell > .field--full + .consent-panel,
    .form-shell > .consent-panel + .button-row {
        margin-top: 0;
    }

    .table-panel--questionnaire {
        overflow: visible;
    }

    .table-panel--questionnaire .table-panel__intro {
        padding: 0 0 12px;
    }

    .table-panel--questionnaire .table-scroll {
        overflow: visible;
        padding: 0 0 2px;
    }

    .table-panel--questionnaire .questionnaire-table,
    .table-panel--questionnaire .questionnaire-table thead,
    .table-panel--questionnaire .questionnaire-table tbody {
        display: block;
        min-width: 0;
    }

    .table-panel--questionnaire .questionnaire-table {
        width: 100%;
    }

    .table-panel--questionnaire .questionnaire-table thead {
        display: none;
    }

    .table-panel--questionnaire .questionnaire-table tbody {
        display: grid;
        gap: 18px;
    }

    .table-panel--questionnaire .questionnaire-table tr {
        display: grid;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
        border: 0;
        box-shadow: 0 14px 32px rgba(35, 31, 32, 0.08);
    }

    .table-panel--questionnaire .questionnaire-table td {
        display: grid;
        gap: 8px;
        padding: 0;
        border: 0;
        min-width: 0;
    }

    .table-panel--questionnaire .questionnaire-table td::before {
        content: attr(data-label);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--site-muted);
    }

    .table-panel--questionnaire .questionnaire-table__number {
        order: 1;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 12px;
        font-weight: 700;
    }

    .table-panel--questionnaire .questionnaire-table__decor {
        order: 2;
        font-size: 1.02rem;
        font-weight: 700;
    }

    .table-panel--questionnaire .questionnaire-table__selection {
        order: 3;
        justify-items: start;
    }

    .table-panel--questionnaire .questionnaire-table__selection input {
        width: 22px;
        height: 22px;
    }

    .table-panel--questionnaire .questionnaire-table__comment {
        order: 4;
    }

    .table-panel--questionnaire .questionnaire-table__comment::before {
        display: none;
    }

    .table-panel--questionnaire .questionnaire-comment-label {
        display: block;
    }

    .table-panel--questionnaire .questionnaire-table textarea {
        min-height: 96px;
    }
}
@media (max-width: 640px) {
    .table-panel--questionnaire,
    .table-panel--questionnaire .questionnaire-table,
    .table-panel--questionnaire .questionnaire-table tbody {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .table-panel--questionnaire .questionnaire-table {
        border-collapse: separate;
        border-spacing: 0;
    }
}

.furniture-request {
    overflow: hidden;
}

.furniture-request__table {
    margin-top: 18px;
    border: 1px solid rgba(35, 31, 32, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
}

.furniture-request__row {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(150px, 0.6fr) minmax(170px, 0.7fr);
    border-bottom: 1px solid rgba(35, 31, 32, 0.08);
}

.furniture-request__row:last-child {
    border-bottom: 0;
}

.furniture-request__row--head {
    background: rgba(245, 242, 236, 0.92);
}

.furniture-request__label,
.furniture-request__option-head,
.furniture-request__choice {
    min-width: 0;
    padding: 18px 20px;
    border-right: 1px solid rgba(35, 31, 32, 0.08);
}

.furniture-request__row > :last-child {
    border-right: 0;
}

.furniture-request__label {
    display: flex;
    align-items: center;
    color: var(--site-ink);
    line-height: 1.55;
}

.furniture-request__row--head .furniture-request__label,
.furniture-request__option-head {
    font-weight: 700;
}

.furniture-request__option-head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--site-ink);
}

.furniture-request__choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
}

.furniture-request__choice-text {
    display: none;
    color: var(--site-muted);
    font-size: 0.92rem;
}

.furniture-request__choice input {
    width: 22px;
    height: 22px;
    accent-color: var(--site-green);
}

.furniture-request__priority {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(170px, 1fr));
    margin-top: 18px;
    border: 1px solid rgba(35, 31, 32, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.furniture-request__priority-head,
.furniture-request__priority-option {
    min-width: 0;
    min-height: 136px;
    padding: 22px 20px;
    border-right: 1px solid rgba(35, 31, 32, 0.08);
    display: flex;
}

.furniture-request__priority > :last-child {
    border-right: 0;
}

.furniture-request__priority-head {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.furniture-request__priority-head strong {
    color: var(--site-ink);
    font-size: 1.02rem;
    line-height: 1.4;
}

.furniture-request__priority-head span {
    color: var(--site-muted);
    line-height: 1.45;
}

.furniture-request__priority-option {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    cursor: pointer;
    color: var(--site-ink);
    font-weight: 700;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.76);
}

.furniture-request__priority-option input {
    width: 24px;
    height: 24px;
    accent-color: var(--site-green);
}

@media (max-width: 900px) {
    .furniture-request__row {
        grid-template-columns: minmax(0, 1.6fr) minmax(130px, 0.7fr) minmax(150px, 0.8fr);
    }

    .furniture-request__label,
    .furniture-request__option-head,
    .furniture-request__choice {
        padding: 16px;
    }

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

    .furniture-request__priority-head,
    .furniture-request__priority-option {
        min-height: 120px;
        padding: 18px 16px;
        border-bottom: 1px solid rgba(35, 31, 32, 0.08);
    }

    .furniture-request__priority > :nth-child(2n) {
        border-right: 0;
    }

    .furniture-request__priority > :nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .furniture-request__table {
        border-radius: 18px;
    }

    .furniture-request__row {
        grid-template-columns: 1fr;
    }

    .furniture-request__row--head {
        display: none;
    }

    .furniture-request__label,
    .furniture-request__choice {
        border-right: 0;
    }

    .furniture-request__label {
        padding-bottom: 12px;
    }

    .furniture-request__choice {
        justify-content: space-between;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .furniture-request__choice-text {
        display: inline;
    }

    .furniture-request__priority {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .furniture-request__priority-head,
    .furniture-request__priority-option {
        min-height: auto;
        padding: 18px;
        border-right: 0;
    }

    .furniture-request__priority > :nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(35, 31, 32, 0.08);
    }

    .furniture-request__priority > :last-child {
        border-bottom: 0;
    }
}

.questionnaire-embossings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.questionnaire-embossings.is-disabled,
.questionnaire-edge.is-disabled {
    opacity: 0.55;
}

.questionnaire-embossing-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(35, 31, 32, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--site-ink);
    cursor: pointer;
}

.questionnaire-embossing-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--site-green);
}

.questionnaire-embossings-empty {
    color: var(--site-muted);
}

.questionnaire-edge {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(245, 242, 236, 0.74);
    border: 1px solid rgba(35, 31, 32, 0.08);
}

.questionnaire-edge__head {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.questionnaire-edge__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.questionnaire-edge-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(35, 31, 32, 0.1);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.questionnaire-edge-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--site-green);
}

.questionnaire-edge__width {
    display: grid;
    gap: 7px;
}

.questionnaire-edge__width span {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-muted);
}

@media (max-width: 640px) {
    .table-panel--questionnaire .questionnaire-table__embossings {
        order: 3;
    }

    .table-panel--questionnaire .questionnaire-table__selection {
        order: 4;
    }

    .table-panel--questionnaire .questionnaire-table__comment {
        order: 5;
    }

    .questionnaire-embossing-option {
        width: 100%;
        justify-content: space-between;
    }

    .questionnaire-edge__options {
        display: grid;
        gap: 10px;
    }

    .questionnaire-edge-option {
        width: 100%;
        justify-content: space-between;
    }
}
