*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand: #0371aa;
    --brand-dark: #025f8e;
    --brand-tint: #e8f4fb;
    --text-1: #1a1a1a;
    --text-2: #555;
    --text-3: #888;
    --border: #e2e2e2;
    --surface: #f8f8f8;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-pill: 100px;
}

.page-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem;
}

.page-hero .inner {
    max-width: 1120px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 8px;
}

.page-hero h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 15px;
    color: var(--text-2);
    max-width: 460px;
}

.main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.15s;
}

.info-card:hover {
    border-color: #b8d9ee;
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--brand-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.info-body .label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    margin-bottom: 3px;
}

.info-body .value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-1);
    line-height: 1.5;
}

.info-body a {
    color: var(--brand);
    text-decoration: none;
}

.info-body a:hover {
    text-decoration: underline;
}

.socials-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.social-pill:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-tint);
}

.map-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.form-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.3rem;
}

.form-card .subtitle {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
}

.field input,
.field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-1);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(3, 113, 170, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-3);
}

.field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.captcha-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.04em;
}

.captcha-eq {
    font-size: 15px;
    color: var(--text-2);
}

.captcha-input {
    width: 64px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-1);
    outline: none;
    text-align: center;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.captcha-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(3, 113, 170, 0.12);
}

.captcha-hint {
    font-size: 12px;
    color: var(--text-3);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.15s, transform 0.1s;
}

.submit-btn:hover {
    background: var(--brand-dark);
}

.submit-btn:active {
    transform: scale(0.99);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 860px) {
    .main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    nav {
        display: none;
    }
}

@media (max-width: 540px) {
    .page-hero h1 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}