/**
 * BrandStrat Form — front-end styles
 * Designed to match the screenshot: uppercase heavy heading,
 * coral accent (#ef5241), soft rounded inputs, pill submit button.
 */

.brandstrat-form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    color: #1a1a1a;
    font-family: inherit;
}

/* --- Header ------------------------------------------------------------ */
.brandstrat-form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.brandstrat-form-header h3 {
    letter-spacing: 0.01em;
    margin: 0 0 1rem 0;
    color: #111;
    font-family: REM, sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 43px;
    text-transform: capitalize;
}
.brandstrat-form-header h3 span {
    color: #ef5241;
}
.brandstrat-form-header .brandstrat-subhead {
    font-size: 1.05rem;
    margin: 0;
}

/* --- Thank-you banner -------------------------------------------------- */
.brandstrat-thanks {
    background: #fff4f1;
    border: 1px solid #f7c7bd;
    color: #8a2a1a;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.brandstrat-thanks strong { display: block; margin-bottom: .25rem; font-size: 1.05rem; }
.brandstrat-thanks p { margin: 0; }

/* --- Layout ------------------------------------------------------------ */
.brandstrat-form { display: block; }

.brandstrat-field {
    margin-bottom: 1.35rem;
}

.brandstrat-row {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 0;
}
.brandstrat-row-2 {
    grid-template-columns: 1fr 1fr;
}
.brandstrat-row .brandstrat-field { margin-bottom: 1.35rem; }

@media (max-width: 600px) {
    .brandstrat-row-2 { grid-template-columns: 1fr; gap: 0; }
}

/* --- Labels ------------------------------------------------------------ */
.brandstrat-form label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #111;
}
.brandstrat-req {
    color: #ef5241;
    font-weight: 700;
    margin-left: 2px;
}

/* --- Inputs / selects -------------------------------------------------- */
.brandstrat-form input[type="text"],
.brandstrat-form input[type="email"],
.brandstrat-form input[type="tel"],
.brandstrat-form select {
    width: 100%;
    box-sizing: border-box;
    padding: 0px 1rem;
    font-size: 1rem;
    line-height: 1.3;
    color: #333;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
}
.brandstrat-form input::placeholder { color: #b8b8b8; }

.brandstrat-form input:focus,
.brandstrat-form select:focus {
    outline: none;
    border-color: #ef5241;
    box-shadow: 0 0 0 3px rgba(239, 82, 65, 0.15);
}

/* Native select caret */
.brandstrat-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23999' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
}
.brandstrat-form select:invalid { color: #8a8a8a; } /* keeps "- Select -" looking like placeholder */
.brandstrat-form select option { color: #333; }

/* --- Submit button ----------------------------------------------------- */
.brandstrat-submit-wrap {
    margin-top: 1.75rem;
}
.brandstrat-submit {
    display: inline-block;
    background: #ef5241;
    color: #fff;
    font-weight: 400;
    font-size: 1.05rem;
    padding: 0.95rem 2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .15s ease, transform .05s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
}
.brandstrat-submit:hover {
    background: #e04431;
}
.brandstrat-submit:active {
    transform: translateY(1px);
}
.brandstrat-submit:focus-visible {
    outline: 3px solid rgba(239, 82, 65, 0.35);
    outline-offset: 2px;
}

/* --- Honeypot (hidden without JS) ------------------------------------- */
.brandstrat-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
