.commission-hero {
    padding: 55px 30px;
    text-align: center;
    background: #e8dfd2;
}

.commission-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.commission-hero p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.commission-info {
    padding: 40px 30px;
    background: white;
    text-align: center;
}

.commission-info h2 {
    color: #6b4f2a;
}

.commission-info p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

.commission-form-section {
    padding: 45px 20px;
    background: #f8f6f2;
}

.commission-form {
    max-width: 760px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.commission-form h2 {
    margin-top: 30px;
    color: #6b4f2a;
}

.commission-form h2:first-child {
    margin-top: 0;
}

.commission-form label {
    display: block;
    margin-top: 18px;
    font-weight: bold;
}

.commission-form input,
.commission-form textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 7px;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

.commission-form textarea {
    resize: vertical;
}

.form-note {
    line-height: 1.6;
    background: #f3eee6;
    padding: 15px;
    border-left: 4px solid #6b4f2a;
}

.selected-files {
    margin-top: 15px;
    padding: 10px 12px;
    background: #f3eee6;
    border-left: 4px solid #6b4f2a;
    border-radius: 4px;
    white-space: pre-line;
    min-height: 24px;
}

.warning {
    color: #9b1c1c;
    font-weight: bold;
}

.commission-gallery {
    padding: 45px 30px;
    background: #f8f6f2;
    text-align: center;
}

.commission-gallery h2 {
    color: #6b4f2a;
    font-size: 2rem;
}

.commission-gallery p {
    max-width: 760px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.commission-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1050px;
    margin: 0 auto;
}

.commission-gallery-item {
    margin: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.commission-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border-radius: 0;
}

.commission-gallery-item figcaption {
    padding: 14px;
    font-weight: bold;
}

@media (max-width: 760px) {
    .commission-gallery-grid {
        grid-template-columns: 1fr;
    }
}