/* ── CONTACT PAGE ── */

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

/* ── HERO ── */
.contact-hero {
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative; overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
    pointer-events: none;
}
.contact-hero-content {
    position: relative; z-index: 1;
    max-width: 1080px; margin: 0 auto;
    padding: 0 24px; text-align: center;
}
.contact-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px; font-weight: 500;
    letter-spacing: -1.92px; line-height: 56px;
    color: var(--white); margin-bottom: 16px;
}
.contact-hero .subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 26px; letter-spacing: -0.01em;
    max-width: 600px; margin: 0 auto;
}

/* ── SPLIT CONTACT BLOCK ── */
.contact-split {
    max-width: 1080px; margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

/* Left: Corporate Info */
.contact-info {}
.contact-info .section-label { margin-bottom: 20px; }
.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 39.2px; font-weight: 500;
    letter-spacing: -1.6px; line-height: 48px;
    color: var(--dark); margin-bottom: 32px;
}
.contact-details {
    display: flex; flex-direction: column; gap: 28px;
    margin-bottom: 40px;
}
.contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-detail-icon {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: var(--radius-pill);
    background: rgba(41,102,77,0.08);
    color: var(--green);
}
.contact-detail-text {}
.contact-detail-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    color: var(--dark-50);
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 500;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.contact-detail-value a {
    color: var(--dark); text-decoration: none;
    transition: color var(--transition);
}
.contact-detail-value a:hover { color: var(--green); }
.contact-routing {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px; color: var(--dark-50);
    line-height: 22px; font-style: italic;
    border-left: 2px solid rgba(17,17,17,0.08);
    padding-left: 16px;
}
.contact-routing a {
    color: var(--green); text-decoration: underline;
}

/* Right: Form */
.contact-form {}
.contact-form h2 {
    font-family: 'Inter', sans-serif;
    font-size: 27.2px; font-weight: 500;
    letter-spacing: -0.56px; line-height: 33.6px;
    color: var(--dark); margin-bottom: 28px;
}
.contact-field { margin-bottom: 20px; }
.contact-field label {
    display: block;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--dark-70);
    margin-bottom: 6px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px; color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--green);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--dark-30); }
.contact-field textarea {
    height: 140px; resize: none;
}
.contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.contact-submit {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 56px;
    background: var(--green); color: var(--white);
    border: none; border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-size: 16px; font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}
.contact-submit:hover { background: var(--green-dark); }

/* ── MAP / VISUAL ANCHOR ── */
.contact-visual {
    position: relative;
    height: 40vh; min-height: 300px;
    overflow: hidden;
}
.contact-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(0.8);
}
.contact-visual::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(8,18,13,0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .contact-hero h1 { font-size: 36px; line-height: 44px; }
    .contact-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
