/* =========================================================================
   Contact page. Scoped under .lsa-home to reuse the home design tokens
   (--green, --ink, --line, --r-*, --shadow-*) and shared .wrap / .btn.
   ========================================================================= */

.lsa-home.lsa-contact {
    background: var(--bg);
}

/* ---------- Hero ---------- */
.lsa-home .contact-hero {
    padding: clamp(52px, 7vw, 92px) 0 clamp(28px, 4vw, 44px);
    background: linear-gradient(180deg, var(--green-soft) 0%, var(--bg) 100%);
    text-align: center;
}

.lsa-home .contact-hero__inner {
    max-width: 680px;
    margin: 0 auto;
}

.lsa-home .contact-hero .section-eyebrow {
    justify-content: center;
}

.lsa-home .contact-hero h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 16px 0 14px;
    text-wrap: balance;
}

.lsa-home .contact-hero h1 .accent {
    color: var(--green);
}

.lsa-home .contact-hero__lead {
    color: var(--ink-2);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Body grid ---------- */
.lsa-home .contact-body {
    padding: clamp(8px, 2vw, 24px) 0 clamp(64px, 8vw, 104px);
}

.lsa-home .contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
}

/* ---------- Info panel (green) ---------- */
.lsa-home .contact-info {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(28px, 3.4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lsa-home .contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(45% 60% at 100% 0%, rgba(255, 255, 255, .1), transparent 60%),
        radial-gradient(45% 60% at 0% 100%, rgba(220, 38, 38, .16), transparent 60%);
    pointer-events: none;
}

.lsa-home .contact-info__head {
    position: relative;
    margin-bottom: 30px;
}

.lsa-home .contact-info__head h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.lsa-home .contact-info__head p {
    margin: 0;
    color: #C6E0CF;
    font-size: 14.5px;
    line-height: 1.6;
}

.lsa-home .contact-methods {
    position: relative;
    display: grid;
    gap: 20px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.lsa-home .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lsa-home .contact-method__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    flex-shrink: 0;
}

.lsa-home .contact-method__label {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #C8ECD4;
    font-family: var(--lsa-font-num);
    font-weight: 600;
}

.lsa-home .contact-method__value {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    word-break: break-word;
}

.lsa-home a.contact-method__value:hover {
    text-decoration: underline;
}

.lsa-home .contact-social {
    position: relative;
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.lsa-home .contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    transition: background .15s ease, transform .15s ease;
}

.lsa-home .contact-social a:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

/* ---------- Form card ---------- */
.lsa-home .contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(26px, 3.4vw, 44px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lsa-home .contact-form-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
}

.lsa-home .contact-form-card__sub {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.lsa-home .contact-form {
    display: grid;
    gap: 18px;
}

.lsa-home .contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lsa-home .contact-field {
    display: grid;
    gap: 7px;
}

.lsa-home .contact-field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.lsa-home .contact-field label .req {
    color: var(--red);
}

.lsa-home .contact-field input,
.lsa-home .contact-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.lsa-home .contact-field textarea {
    min-height: 148px;
    resize: vertical;
    line-height: 1.6;
}

.lsa-home .contact-field input::placeholder,
.lsa-home .contact-field textarea::placeholder {
    color: var(--muted);
}

.lsa-home .contact-field input:focus,
.lsa-home .contact-field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 110, 58, .14);
}

.lsa-home .contact-field.has-error input,
.lsa-home .contact-field.has-error textarea {
    border-color: var(--red);
    background: var(--red-soft);
}

.lsa-home .contact-field__error {
    font-size: 12.5px;
    color: #B91C1C;
}

.lsa-home .contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lsa-home .contact-form__foot {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.lsa-home .contact-form__note {
    font-size: 12.5px;
    color: var(--muted);
}

/* ---------- Alerts ---------- */
.lsa-home .contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.lsa-home .contact-alert__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}

.lsa-home .contact-alert b {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.lsa-home .contact-alert p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
}

.lsa-home .contact-alert.is-success {
    background: var(--green-tint);
    border: 1px solid rgba(14, 110, 58, .2);
}

.lsa-home .contact-alert.is-success .contact-alert__icon {
    background: var(--green);
}

.lsa-home .contact-alert.is-success b {
    color: var(--green-deep);
}

.lsa-home .contact-alert.is-success p {
    color: #2C5A3E;
}

.lsa-home .contact-alert.is-error {
    background: var(--red-soft);
    border: 1px solid #F5C7C5;
}

.lsa-home .contact-alert.is-error .contact-alert__icon {
    background: var(--red);
}

.lsa-home .contact-alert.is-error b {
    color: #991B1B;
}

.lsa-home .contact-alert.is-error p {
    color: #B14B47;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .lsa-home .contact-grid {
        grid-template-columns: 1fr;
    }

    .lsa-home .contact-info {
        order: 2;
    }
}

@media (max-width: 560px) {
    .lsa-home .contact-row {
        grid-template-columns: 1fr;
    }
}
