/* ═══════════════════════════════════════════════════════════════
   Burke Williams — Contact Page
   Phase 1 Figma node: 1972:118055
   Full-page bg image + glass form card
   ═══════════════════════════════════════════════════════════════ */

/* Full-page bg wrapper */
.bw-contact-wrap {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}
.bw-contact-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.bw-contact-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Frame 2147203215 [1920×856] — centred content */
.bw-contact-hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  gap: 32px;
}
/* "Contact us" La Belle Aurore 60px wt=400 lh=72px #fffdf8 */
.bw-contact-heading {
  font-family: var(--font-script);
  font-size: 60px; font-weight: 400; line-height: 72px;
  color: #fffdf8; margin: 0; text-align: center;
}

/* Card [828×570] fill:#fffdf8 radius:10px glass effect */
.bw-contact-card {
  width: 100%; max-width: 828px;
  background: #fffdf8;
  border-radius: 10px;
  padding: 54px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  display: flex; flex-direction: column; gap: 32px;
}
/* Barlow 20px wt=400 lh=24px #363636 */
.bw-contact-card-intro {
  font-family: var(--font-body); font-size: 20px; font-weight: 400; line-height: 24px;
  color: #363636; margin: 0;
}

/* Form */
.bw-contact-form { display: flex; flex-direction: column; gap: 20px; }
/* Frame 2147203934: two-column rows */
.bw-contact-form-row { display: flex; gap: 24px; }
.bw-contact-field {
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.bw-contact-field--full { flex: none; }
.bw-contact-field label {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: #6c6c6c; text-transform: uppercase; letter-spacing: 0.08em;
}
.bw-contact-field input,
.bw-contact-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid #e5e5e5; border-radius: 8px;
  background: #fff;
  font-family: var(--font-body); font-size: 16px; font-weight: 400; color: #1a1712;
  outline: none; transition: border-color 0.2s;
  resize: vertical;
  box-sizing: border-box;
}
.bw-contact-field input:focus,
.bw-contact-field textarea:focus { border-color: #335d88; }
.bw-contact-field input::placeholder,
.bw-contact-field textarea::placeholder { color: #b3b3b3; }

/* Frame 1291 footer: SPACE_BETWEEN */
.bw-contact-form-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* Submit btn: fill:#335d88 radius:100px Barlow 15px wt=600 TITLE */
.bw-contact-submit {
  display: inline-flex; align-items: center; height: 44px; padding: 0 32px;
  border-radius: 100px; border: none; background: #335d88;
  color: #fffcf6; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: 0.3px; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s;
}
.bw-contact-submit:hover { background: #0b2e56; }

/* Phone link */
.bw-contact-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: #335d88;
  text-decoration: none;
}
.bw-contact-phone-link:hover { color: #0b2e56; }

/* Success */
.bw-contact-success {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 40px; text-align: center;
}
.bw-contact-success p {
  font-family: var(--font-body); font-size: 18px; font-weight: 500; color: #1a1712;
}

/* Errors */
.bw-contact-errors {
  background: #fff3f3; border-left: 3px solid #d75f3d;
  padding: 12px 16px; border-radius: 6px;
}
.bw-contact-errors p {
  font-family: var(--font-body); font-size: 14px; color: #d75f3d; margin: 0 0 4px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bw-contact-card { padding: 32px; }
  .bw-contact-form-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .bw-contact-heading { font-size: clamp(36px, 8vw, 60px); }
  .bw-contact-hero { padding: 120px 16px 60px; }
  .bw-contact-card { padding: 24px 16px; }
  .bw-contact-form-footer { flex-direction: column; align-items: flex-start; }
}
