:root {
  --red: #c81e2c;
  --red-dark: #a8121e;
  --navy: #0d1b2e;
  --navy-dark: #081220;
  --dark: #14181f;
  --gold: #d4af37;
  --text: #2b2b2b;
  --muted: #6b7280;
  --border: #d9dce1;
  --font-body: "Roboto", "Segoe UI", Arial, sans-serif;
  --font-heading: "Roboto Slab", "Roboto", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #eef0f3;
}

img { max-width: 100%; display: block; }

/* Banner */
.banner {
  background: #14181f;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.banner__image {
  width: 100%;
  height: auto;
  max-width: 1100px;
}

/* Contact bar */
.contact-bar {
  background: var(--red);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 16px 24px;
}

.contact-bar__item {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.contact-bar__item svg { flex-shrink: 0; }

/* Lead form */
.lead-form-section {
  display: flex;
  justify-content: center;
  padding: 48px 20px;
}

.lead-form {
  background: #fff;
  width: 100%;
  max-width: 620px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lead-form__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 28px 24px;
}

.lead-form__header h1 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 26px;
}

.lead-form__header p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.lead-form__body {
  padding: 28px 32px 32px;
}

.field-row {
  display: flex;
  gap: 16px;
}

.field-row .field { flex: 1; min-width: 0; }

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}

.required { color: var(--red); }

.field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.15s;
}

.field input:focus {
  outline: none;
  border-color: var(--red);
}

.lead-form__submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.lead-form__submit:hover { background: var(--navy-dark); }
.lead-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  min-height: 20px;
  font-size: 14px;
  margin-bottom: 14px;
}

.form-feedback.success { color: #1a7f37; }
.form-feedback.error { color: var(--red); }

/* Instagram section */
.instagram-section {
  text-align: center;
  padding: 40px 20px 56px;
}

.instagram-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
}

.instagram-embed {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.instagram-embed iframe {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.instagram-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #c7cbd3;
  text-align: center;
  padding: 28px 20px;
  font-size: 14px;
}

.site-footer__social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 12px 0 0;
  padding: 0;
}

.site-footer__social a {
  color: #c7cbd3;
  text-decoration: none;
}

.site-footer__social a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .lead-form__body { padding: 24px 20px 28px; }
}

@media (max-width: 360px) {
  .field-row { gap: 8px; }
  .field input { padding: 11px 10px; font-size: 14px; }
}
