.newmenu-page {
    padding: 36px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(217, 90, 43, 0.06), transparent 28%),
        linear-gradient(180deg, #fbf4ee 0%, #f8f1ea 100%);
}

.newmenu-hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
    padding: 26px 28px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff4ec 100%);
    border: 1px solid #ead9cf;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(90, 58, 36, 0.06);
}

.newmenu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4ec;
    border: 1px solid #f0d7c8;
    color: #985333;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.newmenu-hero h1 {
    margin: 16px 0 10px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: #181311;
}

.newmenu-hero p {
    margin: 0;
    max-width: 760px;
    color: #60534d;
    font-size: 17px;
    line-height: 1.8;
}

.newmenu-errors {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff2ee;
    border: 1px solid #f0c7b9;
    color: #8d3f24;
    box-shadow: 0 10px 22px rgba(90, 58, 36, 0.04);
}

.newmenu-errors ul {
    margin: 0;
    padding-left: 18px;
}

.newmenu-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.newmenu-form-card,
.newmenu-side-card {
    background: #fff;
    border: 1px solid #ead9cf;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(90, 58, 36, 0.06);
}

.newmenu-form-card {
    padding: 26px;
}

.newmenu-side-card {
    padding: 22px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff5ef 100%);
}

.newmenu-section-head {
    margin-bottom: 18px;
}

.newmenu-section-kicker {
    color: #a15f40;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 900;
}

.newmenu-section-head h2,
.newmenu-side-card h3 {
    margin: 8px 0 0;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #181311;
}

.newmenu-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.newmenu-form-row {
    display: grid;
    gap: 8px;
}

.newmenu-form-row-full {
    grid-column: 1 / -1;
}

.newmenu-form-row label {
    font-size: 14px;
    font-weight: 800;
    color: #3f302a;
}

.newmenu-form-row input,
.newmenu-form-row select,
.newmenu-form-row textarea {
    width: 100%;
    border: 1px solid #e5d4c9;
    background: #fffdfa;
    color: #181311;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    font-family: inherit;
}

.newmenu-form-row textarea {
    resize: vertical;
    min-height: 150px;
}

.newmenu-form-row input:focus,
.newmenu-form-row select:focus,
.newmenu-form-row textarea:focus {
    border-color: #d95a2b;
    box-shadow: 0 0 0 4px rgba(217, 90, 43, 0.10);
}

.newmenu-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.newmenu-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #5f524b;
}

.newmenu-check input {
    accent-color: #d95a2b;
}

.newmenu-success {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f3fff6;
    border: 1px solid #cfe9d6;
    color: #2f6a3b;
    box-shadow: 0 10px 22px rgba(90, 58, 36, 0.04);
    font-weight: 700;
}

.newmenu-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.newmenu-tip-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.newmenu-tip-item {
    background: #fff;
    border: 1px solid #ead9cf;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(90, 58, 36, 0.03);
}

.newmenu-tip-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #181311;
}

.newmenu-tip-item span {
    color: #7a6b63;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .newmenu-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .newmenu-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .newmenu-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .newmenu-page {
        padding: 22px 0 46px;
    }

    .newmenu-hero,
    .newmenu-form-card,
    .newmenu-side-card {
        padding: 20px;
        border-radius: 24px;
    }

    .newmenu-hero h1 {
        font-size: 34px;
    }

    .newmenu-hero p {
        font-size: 16px;
    }
}