:root {
    --gold: #C9A84C;
    --gold-light: #e2c46e;
    --dark-bg: #111111;
    --card-bg: #1a1a1a;
    --card-border: #3a3020;
    --text-white: #f0f0f0;
    --text-muted: #b0a080;
}

/* ── CONTACT SECTION ── */
.contact-section-pixel {
    background-color: var(--dark-bg);
    padding: 80px 40px 100px;
    text-align: center;
}

.contact-underline {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 60px;
    border-radius: 2px;
}

/* ── TWO COLUMNS ── */
.contact-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ── LEFT: SEND MESSAGE CARD ── */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 36px 32px;
    width: 360px;
    text-align: center;
    flex-shrink: 0;
}

.form-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 90%;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--text-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #888;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--gold-light);
}

.contact-form-card textarea {
    height: 100px;
}

.send-btn {
    width: 100%;
    background: #5a4a1a;
    border: none;
    border-radius: 6px;
    padding: 14px;
    color: var(--text-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.send-btn:hover {
    background: var(--gold);
    color: #111;
}

.form-footer-text {
    font-size: 0.82rem;
    color: #888;
    letter-spacing: 0.04em;
}

.form-footer-text a {
    color: var(--gold-light);
    text-decoration: none;
}

.form-footer-text a:hover {
    text-decoration: underline;
}

/* ── RIGHT: INFO CARD ── */
.contact-info-card {
    background: linear-gradient(160deg, #e8c96a 0%, #c9a030 50%, #a07820 100%);
    border-radius: 16px;
    padding: 36px 36px 36px;
    width: 360px;
    text-align: left;
    flex-shrink: 0;
    color: #1a1200;
}

.info-label {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #3a2800;
    margin-bottom: 8px;
    margin-top: 22px;
}

.info-label:first-child {
    margin-top: 0;
}

.info-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #2a1e00;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* Social icons */
.social-row {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #2a1e00cc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0d070;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.25s;
}

.social-icon:hover {
    background: #1a1000;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .contact-section-pixel { padding: 60px 20px 70px; }
    .contact-body { flex-direction: column; align-items: center; }
    .contact-form-card, .contact-info-card { width: 100%; max-width: 400px; }
}