/* contact.html — page-specific styles */
.page-header { padding: 56px 5% 36px; max-width: 640px; margin: 0 auto; text-align: center; }
.page-header h1 { font-size: clamp(26px,5vw,42px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 10px; }
.page-header p { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto; }

.form-wrap { padding: 0 5% 72px; max-width: 640px; margin: 0 auto; }

.field { margin-bottom: 18px; }
label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
input[type=text], input[type=email], select, textarea {
  display: block; width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: 6px;
  color: var(--text); font-family: inherit; font-size: 14px; padding: 10px 13px;
  outline: none; transition: border-color .12s;
}
input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus { border-color: var(--accent); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23777'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 32px; cursor: pointer; }
select option { background: var(--bg2); }
textarea { resize: vertical; min-height: 130px; line-height: 1.55; }

.captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.captcha-q { font-size: 14px; font-weight: 600; color: var(--text); background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; flex-shrink: 0; }
.captcha-row input { width: 90px; flex-shrink: 0; }

.btn-submit { display: block; width: 100%; background: var(--accent); border: none; border-radius: 7px; color: #fff; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: .02em; padding: 12px; transition: background .12s; margin-top: 24px; }
.btn-submit:hover { background: var(--accent-h); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }

.msg-box { border-radius: 7px; padding: 13px 16px; font-size: 13px; margin-bottom: 20px; display: none; }
.msg-box.error { background: #2a1010; border: 1px solid #5a1a1a; color: #e07070; }
.msg-box.success { background: #0d2a18; border: 1px solid #1a5a30; color: #3dbe5e; }

.alt-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.alt-contact a { color: var(--accent); text-decoration: none; }
.alt-contact a:hover { text-decoration: underline; }
