:root {
  --brand: #b3181f;
  --brand-dark: #7d1015;
  --text: #222;
  --muted: #666;
  --bg: #f6f6f4;
  --card: #ffffff;
  --border: #e2e2e2;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
.page {
  display: flex;
  min-height: 100vh;
}
.col-form {
  width: 35%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow-y: auto;
  background: var(--bg);
}
.col-form-inner {
  width: 100%;
  padding: 2.5rem 2rem;
}
.col-background {
  width: 65%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-image: linear-gradient(rgba(20, 6, 7, 0.6), rgba(20, 6, 7, 0.6)), url('images/background.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
header { text-align: center; margin-bottom: 1.5rem; }
header img { max-width: 240px; width: 100%; height: auto; }
h1 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  text-align: center;
  margin: 1rem 0 0.25rem;
}
.tagline { text-align: center; color: var(--muted); margin: 0 0 2rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.field { margin-bottom: 1rem; }
label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.92rem; }
input[type=text], input[type=email], input[type=tel], input[type=number], textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.captcha-row { display: flex; align-items: center; gap: 0.75rem; }
.captcha-row input { max-width: 100px; }
button[type=submit] {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
button[type=submit]:hover { background: var(--brand-dark); }
.alert { padding: 0.85rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.95rem; }
.alert-success { background: #e6f6ea; color: #1e6b32; border: 1px solid #b6e3c2; }
.alert-error { background: #fdecea; color: #9c2b21; border: 1px solid #f6c4bf; }
.alert-error ul { margin: 0.3rem 0 0 1.1rem; padding: 0; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  margin: 1.75rem 0 0;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-list a:hover { text-decoration: underline; }
.contact-list .icon { width: 16px; height: 16px; flex-shrink: 0; }
.coming-soon {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 480px;
}
.coming-soon h2 { margin: 0 0 0.5rem; font-size: 2.2rem; text-transform: uppercase; letter-spacing: 0.03em; }
.coming-soon p { margin: 0; font-size: 1.1rem; }
.coming-soon a { color: #fff; text-decoration: underline; }
footer { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; }

@media (max-width: 900px) {
  .page { flex-direction: column; }
  .col-form, .col-background { width: 100%; }
  .col-background { min-height: 320px; padding: 3rem 1.5rem; }
}
