/* ── Start Your Order — Public Form Styles ── */

.syo-wrap {
    background: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #111111;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0 56px;
}

.syo-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    color: #111;
    line-height: 1.1;
}

.syo-subtitle {
    font-size: 14px;
    color: #111;
    margin: 0 0 36px;
    line-height: 1.6;
}

/* ── Notices ── */
.syo-notice {
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.syo-success {
    background: #f0faf3;
    border: 1px solid #b5dfc0;
    color: #111;
}
.syo-error {
    background: #fff5f5;
    border: 1px solid #f5c6c6;
    color: #111;
}

/* ── Grid rows ── */
.syo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}
.syo-row--full {
    grid-template-columns: 1fr;
}

/* ── Fields ── */
.syo-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.syo-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111;
    text-transform: uppercase;
}

.syo-req {
    color: #c0392b;
}

.syo-hint {
    font-weight: 400;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
}

.syo-field input[type="text"],
.syo-field input[type="email"],
.syo-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d6d0c8;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-family: inherit;
    padding: 10px 13px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.15s;
}

.syo-field input[type="text"]:focus,
.syo-field input[type="email"]:focus,
.syo-field textarea:focus {
    border-color: #111;
}

.syo-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* ── File drop zone ── */
.syo-file-area {
    border: 1px dashed #c5bdb2;
    border-radius: 2px;
    background: #fafaf9;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}

.syo-file-area.syo-dragging,
.syo-file-area:hover {
    border-color: #111;
    background: #f5f3f0;
}

.syo-file-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.syo-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

.syo-file-icon {
    font-size: 24px;
    color: #111;
}

#syo-file-text {
    font-size: 14px;
    color: #111;
}
#syo-file-text u {
    cursor: pointer;
}

.syo-file-types {
    font-size: 11px;
    color: #111;
    letter-spacing: 0.04em;
}

/* ── Submit button ── */
.syo-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    padding: 13px 36px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    margin-top: 8px;
}

.syo-btn:hover {
    background: #111;
    color: #fff;
}

.syo-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── Responsive ── */
@media ( max-width: 640px ) {
    .syo-row {
        grid-template-columns: 1fr;
    }
    .syo-title {
        font-size: 26px;
    }
}

/* Anti-spam honeypot; hidden visually but kept in the DOM for bots. */
.syo-hp { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
