:root { color-scheme: light; --ink: #182031; --muted: #536078; --blue: #3568ff; --line: #d8dce5; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: linear-gradient(115deg,#e7ecff 0%,#f7f4ed 65%,#ffe9d5 100%); min-height: 100vh; font: 16px/1.5 Arial,sans-serif; }
.contact-page { width: min(680px, calc(100% - 40px)); margin: 36px auto 0; padding-bottom: 32px; }
.contact-brand { display: inline-block; }
.contact-brand img { display: block; max-width: 100%; height: auto; }
h1 { margin: 22px 0 8px; font-size: clamp(32px, 6vw, 42px); line-height: 1.15; letter-spacing: -.035em; }
header p { margin: 0 0 28px; color: var(--muted); }
.contact-form, .contact-success { padding: 28px; border: 1px solid var(--line); background: #fffdf8; border-radius: 12px; box-shadow: 4px 5px 0 #1820310b; }
.contact-form { display: grid; gap: 20px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; align-content: start; gap: 8px; font-weight: 600; min-width: 0; }
label span { font-weight: 400; color: var(--muted); display: contents; }
input, select, textarea { min-width: 0; width: 100%; padding: 12px; border: 1px solid #adb8c9; border-radius: 6px; background: #fff; color: var(--ink); font: inherit; line-height: 1.5; }
textarea { resize: vertical; min-height: 160px; }
.contact-hint { margin: -10px 0 0; color: var(--muted); font-size: 14px; }
.contact-privacy { margin: 0; color: var(--muted); font-size: 14px; }
a { color: #244bc1; text-underline-offset: 3px; }
button { padding: 13px 22px; width: fit-content; border: 0; border-radius: 7px; background: var(--blue); color: #fff; font: 600 16px/1.4 Arial,sans-serif; cursor: pointer; }
button:hover { background: #244bc1; }
button:disabled { opacity: .6; cursor: default; }
:is(input,select,textarea,button,a):focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.contact-success h2 { margin: 0 0 8px; font-size: 24px; line-height: 1.3; }
footer { display: flex; flex-wrap: wrap; gap: 10px; padding: 26px 0 0; color: var(--muted); font-size: 14px; }
[hidden] { display: none !important; }
@media (max-width: 540px) { .contact-page { width: calc(100% - 28px); margin-top: 26px; } .contact-form, .contact-success { padding: 20px; } .contact-row { grid-template-columns: 1fr; gap: 20px; } }
