/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — contact.html
═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.contact-hero {
  position: relative;
  height: 55vh; min-height: 400px;
  overflow: hidden;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
}
.contact-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.38) saturate(0.75);
}
.contact-hero-fog {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,13,13,0.90) 0%, rgba(17,13,13,0.30) 70%);
}
.contact-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 64px;
}
.ch-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: chFade 0.9s 0.2s ease forwards;
}
.ch-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold-light); opacity: 0.6; }
.ch-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400; line-height: 1;
  color: white;
  opacity: 0; animation: chFade 1s 0.4s ease forwards;
}
.ch-h1 em { font-style: italic; color: var(--gold-pale); }
@keyframes chFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── MAIN CONTACT ── */
.contact-main {
  padding: 100px 64px;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  max-width: 1300px; margin: 0 auto;
  align-items: start;
}

/* ── LEFT INFO SIDE ── */
.ci-intro {
  font-size: 16px; font-weight: 400;
  line-height: 1.9; color: var(--text-mid);
  margin-bottom: 36px;
}

/* Person cards */
.person-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
.person-card {
  padding: 22px 24px;
  background: var(--charcoal);
  text-align: center;
}
.person-card-name {
  font-family: 'Cinzel', serif;
  font-size: 17px; font-weight: 400;
  color: white; margin-bottom: 5px;
}
.person-card-role {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.person-card-phone {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.60);
}
.person-card-phone a { color: var(--gold-light); transition: color 0.3s; }
.person-card-phone a:hover { color: var(--gold-pale); }

/* WA direct button */
.wa-direct {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 32px;
  background: #25D366; color: white;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  transition: background 0.3s; margin-bottom: 28px;
}
.wa-direct:hover { background: #1da851; }
.wa-direct svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* Contact info cards */
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border-left: 3px solid var(--maroon);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon {
  width: 42px; height: 42px;
  background: white; border: 1.5px solid var(--beige2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.3s;
}
.contact-card:hover .contact-card-icon { border-color: var(--maroon); }
.contact-card-icon svg { width: 17px; height: 17px; stroke: var(--maroon); fill: none; stroke-width: 1.8; }
.contact-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 5px;
}
.contact-card-val {
  font-size: 15px; font-weight: 300;
  color: var(--text-mid); line-height: 1.65;
}

/* ── RIGHT FORM SIDE ── */
.contact-form {}
.form-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--maroon);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.form-eyebrow::after { content: ''; flex: 0 0 28px; height: 1.5px; background: var(--maroon); opacity: 0.4; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg { margin-bottom: 20px; }
.fl {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 9px;
}
.fi {
  width: 100%; padding: 14px 17px;
  border: 1.5px solid var(--beige2);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  appearance: none;
}
.fi::placeholder { color: rgba(155,138,128,0.45); }
.fi:focus { border-color: var(--maroon); }
textarea.fi { min-height: 120px; }
.f-submit {
  width: 100%; padding: 17px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--maroon); color: white;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.f-submit:hover { background: var(--maroon-dark); transform: translateY(-2px); }

/* ── VISION STRIP ── */
.vision-strip {
  padding: 90px 64px;
  background: var(--maroon-deep);
  text-align: center;
}
.vs-quote {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.6vw, 32px);
  font-weight: 400; font-style: normal;
  color: rgba(255,255,255,0.88); line-height: 1.65;
  max-width: 860px; margin: 16px auto 18px;
}
.vs-attr {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ── OFFICES ── */
.map-section {
  padding: 90px 64px;
  background: var(--beige);
}
.map-inner { max-width: 1100px; margin: 0 auto; }
.map-offices {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-office {
  background: white;
  padding: 40px;
  border-top: 3px solid var(--maroon);
}
.map-office-name {
  font-family: 'Cinzel', serif;
  font-size: 22px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 8px;
}
.map-office-type {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 18px;
}
.map-office-detail {
  font-size: 15px; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .person-cards { grid-template-columns: 1fr; }
  .map-offices { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-hero-content { padding: 0 28px 48px; }
  .contact-main { padding: 70px 22px; }
  .vision-strip { padding: 70px 22px; }
  .map-section { padding: 70px 22px; }
  .ch-h1 { font-size: clamp(36px, 10vw, 56px); }
}
