.ct-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,72px); align-items: start; }
.ct-form { background: var(--bg-900); border: 1px solid var(--line); border-radius: 6px; padding: clamp(26px,3.5vw,44px); }
.ct-form h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(24px,2.8vw,34px); line-height: 1; margin-bottom: 8px; }
.ct-form > p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 26px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.field label .req { color: var(--primary-color); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--bg-base); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 14px; transition: border-color .15s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary-color); }
.field select { appearance: none; 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='%239aa1ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.ct-form button[type=submit] { width: 100%; justify-content: center; margin-top: 8px; }
.ct-ok { display: none; text-align: center; padding: 30px 10px; }
.ct-ok.is-on { display: block; } .ct-form.is-sent .ct-form__body { display: none; }
.ct-ok svg { width: 48px; height: 48px; color: var(--primary-color); margin: 0 auto 16px; }
.ct-ok h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 26px; margin-bottom: 8px; }
.ct-ok p { color: var(--text-muted); }

.ct-side h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 20px; margin-bottom: 4px; }
.ct-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.ct-item:first-of-type { border-top: 1px solid var(--line-soft); }
.ct-item svg { width: 22px; height: 22px; color: var(--primary-color); flex: 0 0 auto; margin-top: 3px; }
.ct-item .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.ct-item .v { font-size: 15.5px; color: var(--text); line-height: 1.5; }
.ct-item .v a { color: var(--text); } .ct-item .v a:hover { color: var(--primary-color); }
.ct-map { margin-top: 24px; aspect-ratio: 16/9; border-radius: 6px; }
@media (max-width: 900px){ .ct-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px){ .ct-row { grid-template-columns: 1fr; } }
