/* ============================================================
   CONTACT PAGE — contact.css
   ============================================================ */

.contact-section {
  background: #000;
  padding: 128px 0 56px; /* live: H1 sits 128px from top */
}

.contact-wrap {
  max-width: 1280px;   /* live max-w-7xl: 1216px content + 2 × 32px */
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .contact-wrap { padding: 0 20px; } }

/* ── Page header ── */
.contact-header { margin-bottom: 24px; }
.contact-title {
  font-family: var(--lx-font-accent);
  font-size: clamp(32px, 4vw, 40px);   /* live text-4xl */
  line-height: 1.111;                  /* 44.4px */
  font-weight: 300;
  letter-spacing: .025em;              /* 1px — was 2px */
  text-transform: uppercase;
  color: var(--lx-zinc-50);
  margin-bottom: 24px;
}
.contact-sub {
  font-family: var(--lx-font-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--lx-zinc-50);
}

/* ── Two-column grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;             /* live: gap-12 */
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Contact Form Card ── */
.contact-form-card {
  background: #1a1a19;                      /* live bg-zinc-800 */
  border: 1px solid rgba(248, 247, 247, .9); /* live border-zinc-50/90 */
  border-radius: 16px;
  padding: 24px;                             /* live p-6 */
}
.contact-alert {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.45;
}
.contact-alert strong {
  color: #fff;
  font-size: 14px;
}
.contact-alert span {
  color: rgba(255,255,255,.72);
}
.contact-alert-success {
  border: 1px solid rgba(34,197,94,.32);
  background: rgba(34,197,94,.12);
}
.contact-alert-error {
  border: 1px solid rgba(255,47,66,.36);
  background: rgba(255,47,66,.12);
}
.cf-row { margin-bottom: 0; }
.cf-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) { .cf-two { grid-template-columns: 1fr; } }
.cf-field { position: relative; padding-bottom: 24px; }
.cf-full  { width: 100%; }

.cf-inp {
  display: block;   /* kills the inline descender gap under the textarea */
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--lx-zinc-300); /* live border-b-2 zinc-300 */
  outline: none;
  font-family: var(--lx-font-body);
  font-size: 14px;                             /* live text-sm */
  line-height: 20px;                           /* live text-sm rhythm */
  font-weight: 300;                            /* live: font-light */
  color: var(--lx-zinc-50);
  padding: 10px 8px;                           /* live py-2.5 px-2 */
  transition: border-color .2s;
}
.cf-inp::placeholder { color: var(--lx-zinc-50); }
.cf-inp:focus { border-bottom-color: var(--lx-gold-border); } /* live amber-300 */

.cf-textarea {
  resize: none;
  min-height: 37px;
  line-height: 20px;   /* live text-sm rhythm */
}

/* Checkbox */
.cf-checkbox-row { margin-bottom: 24px; margin-top: 0; }
.cf-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  font-family: var(--lx-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--lx-zinc-300); line-height: 20px;
}
.cf-checkbox {
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #fff;
}
.cf-checkmark { display: none; }

/* Submit button */
.cf-submit-btn {
  width: 100%;
  background: var(--lx-zinc-50); color: #000;
  border: none; border-radius: 6px;              /* live rounded-md */
  font-family: var(--lx-font-body);
  font-size: 14px; font-weight: 600;             /* live text-sm font-semibold */
  line-height: 20px;
  padding: 10px;                                 /* live py-2.5 → 40px tall */
  cursor: pointer;
  transition: background .18s;
  letter-spacing: normal;
}
.cf-submit-btn:hover { background: var(--lx-gold); }  /* live hover:bg-amber-200 */

/* ── Right side: Info + image ── */
.contact-info-wrap { padding-top: 4px; }

.contact-info-title {
  font-family: var(--lx-font-accent);
  font-size: 32px;               /* live h2 text-3xl */
  line-height: 38.4px;
  font-weight: 300;
  letter-spacing: .025em;
  color: var(--lx-zinc-50);
  margin-bottom: 24px;
}

/* live: flex max-md:flex-col gap-x-8 gap-y-4 — one column below 768px
   with a 16px gap, a single row with 32px gaps above it */
.contact-info-links {
  display: flex; align-items: center;
  gap: 16px 32px; flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .contact-info-links {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
}
.contact-info-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--lx-zinc-50); text-decoration: none;
  font-family: var(--lx-font-body);
  font-size: 16px; font-weight: 300;
  line-height: 24px;
  transition: color .2s;
}
.contact-info-link i { font-size: 16px; color: var(--lx-zinc-50); }
.contact-info-link:hover { color: var(--lx-gold); }


.contact-img-wrap {
  border-radius: 16px; overflow: hidden;
}
.contact-img-wrap img {
  width: 100%; height: 262px;    /* live: 584 × 262 */
  object-fit: cover; display: block;
}

/* ---------- Inline success confirmation.
   Replaces the old modal on this page. Colours are live's exact values; the
   metrics were measured off a side-by-side capture (both panels 584 CSS px). */
.cf-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #006145;
  color: #85d7b4;   /* the icon inherits this too */
  border-radius: 14px;
  padding: 20px 16px;
  margin-bottom: 24px;
  font-family: var(--lx-font-body);   /* same stack as the rest of the page */
}

.cf-success[hidden] { display: none; }

.cf-success-icon {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1.2;
}

.cf-success-title {
  margin: 0 0 8px;
  font-family: var(--lx-font-accent);   /* Mulish, same as the CONTACT US heading */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.cf-success-text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;   /* matches the light body copy used across this page */
  line-height: 1.5;
}
