/* Contact page. Same tokens as css/home.css (loaded first); this file only
   styles the form and the two-column layout. verify-assets: 1.0.0 */
.ct-hero { background: var(--ink); color: var(--square); padding: clamp(2.4rem, 5vw, 4rem) 0; }
.ct-hero h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem); font-variation-settings: "opsz" 144; color: #fff; margin-bottom: 0.8rem; }
.ct-hero p { max-width: 52ch; margin: 0; font-size: 1.08rem; }
.ct-body { padding: clamp(2.4rem, 5vw, 4rem) 0; }
.ct-body .wrap { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 2.5rem 4rem; align-items: start; }
.ct-aside h2 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.ct-aside p, .ct-aside li { color: var(--slate); font-size: 0.98rem; }
.ct-aside ul { padding-left: 1.1rem; margin-bottom: 1.4rem; }
.ct-aside .ct-note { border-left: 3px solid var(--rule); padding-left: 1rem; }
.ct-form { background: var(--paper); border: 1px solid var(--rule); border-top: 3px solid var(--green); padding: clamp(1.2rem, 3vw, 2rem); }
.ct-field { margin-bottom: 1.1rem; }
.ct-field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.35rem; }
.ct-field label small { font-weight: 400; color: var(--mute); }
.ct-field input, .ct-field select, .ct-field textarea {
    display: block; width: 100%; font: inherit; color: var(--ink); background: var(--paper);
    border: 1px solid var(--rule); border-radius: 4px; padding: 0.6rem 0.75rem; -webkit-appearance: none; appearance: none;
}
.ct-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6770' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.2rem; }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: var(--amber); }
.ct-field textarea { min-height: 160px; resize: vertical; }
.ct-alert { padding: 0.8rem 1rem; border-radius: 4px; margin-bottom: 1.2rem; font-size: 0.95rem; }
.ct-alert-error { background: #FBEDEA; border: 1px solid #E5B4AA; color: #7A2E1F; }
.ct-alert-ok { background: var(--tint); border: 1px solid var(--rule); border-left: 4px solid var(--green); color: var(--ink); }
.ct-form .cf-turnstile { margin-bottom: 1.1rem; }
.ct-submit { width: 100%; cursor: pointer; font: inherit; }
.ct-honeypot { position: absolute; left: -5000px; }
@media (max-width: 720px) {
    .ct-body .wrap { grid-template-columns: minmax(0, 1fr); }
}
