// Блок «Контакты» — финальная секция главной. Форма заявки по центру. // Стиль главной: бежевый фон, чёрный гротеск, терракотовый акцент. const labelCss = { display: 'block', marginBottom: 8, fontFamily: 'JetBrains Mono,monospace', fontSize: 10.5, fontWeight: 700, letterSpacing: '0.18em', textTransform: 'uppercase', color: 'rgba(26,26,30,0.5)', }; function Field({ label, placeholder, multiline, type = 'text', name, autoComplete, value, onChange, disabled }) { const base = { width: '100%', boxSizing: 'border-box', padding: multiline ? '14px 16px' : '0 16px', height: multiline ? 112 : 48, border: '1.5px solid rgba(26,26,30,0.25)', borderRadius: 8, background: '#fff', color: 'var(--ink)', fontFamily: 'Inter Tight,sans-serif', fontSize: 16, outline: 'none', transition: 'border-color .2s', resize: 'none', lineHeight: multiline ? 1.5 : undefined, opacity: disabled ? 0.6 : 1, }; const onFocus = (e) => { e.target.style.borderColor = 'var(--accent)'; }; const onBlur = (e) => { e.target.style.borderColor = 'rgba(26,26,30,0.25)'; }; const handle = (e) => { if (onChange) onChange(e.target.value); }; return (
{label} {multiline ?