/* CONTACT */
#contact { position: relative; }
.contact-intro { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.contact-intro .section-tag { justify-content: center; }
.contact-intro .section-tag::before { display: none; }
.contact-intro p { font-size: 18px; color: var(--text-secondary); max-width: 460px; margin: 14px auto 0; font-weight: 300; }

/* Template's "Form" component is always a solid black panel, regardless of
   the section it sits in — re-fix the tokens to the dark palette here. */
.contact-form-container {
    --bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.6);
    --text-muted: rgba(255,255,255,0.5);
    --border: rgba(255,255,255,0.15);
    --gold-300: #ffffff;
    --gold-400: #ffffff;
    --gold-500: #ffffff;
    --brand-300: var(--gold-300);
    --brand-400: var(--gold-400);
    --brand-500: var(--gold-500);

    color: #ffffff;
    background: #000000;
    padding: clamp(32px, 5vw, 56px);
    border-radius: 0;
    border: none;
    max-width: 760px; margin: 0 auto;
    position: relative; overflow: hidden;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 4px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.form-group label {
    font-family: var(--font-display);
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted);
}
input:not([type="checkbox"]), select, textarea {
    width: 100%; padding: 10px 2px;
    border-radius: 0;
    border: none; border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    transition: border-color 0.25s ease; appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); font-weight: 300; }
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
select option { background: #000000; color: #ffffff; }
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--text-primary);
    background: transparent;
    box-shadow: none;
}
input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--text-primary); cursor: pointer; flex-shrink: 0; }
.checkbox-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.checkbox-row label { font-size: 13px; color: var(--text-secondary); font-weight: 300; letter-spacing: 0; text-transform: none; }
.checkbox-row a { color: var(--text-primary); text-decoration: underline; text-underline-offset: 3px; }
.checkbox-row a:hover { color: var(--text-secondary); }
.btn-submit { width: 100%; justify-content: center; padding: 15px 32px; font-size: 12px; letter-spacing: 2px; }
