/* =========================================================================
   CONTACT.CSS — Contact page sections only
   (Hero uses shared page-hero from component.css.)
   ========================================================================= */

/* ---- 02 Contact Details + Map ----------------------------------------- */
.contact-details {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info .section-title {
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--gold);
  font-size: 1.0625rem;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

a.contact-value:hover {
  color: var(--accent-dark);
}

.contact-map {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* ---- 03 Contact Form (GHL embed placeholder) -------------------------- */
.contact-form-section {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.contact-form-inner {
  max-width: 720px;
}

.form-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(40px, 6vw, 64px) 32px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.form-embed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.5rem;
}

.form-embed-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.form-embed-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

.proposal-note {
  margin-top: 22px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.proposal-note a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}
