/* ================================================================
   CONTACT
   ================================================================ */
#contact { background: var(--white); padding: 56px 0; }
.contact-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-name { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--heading-dark); margin-bottom: 4px; }
.contact-biz { font-weight: 300; font-size: 15px; color: var(--muted); margin-bottom: 20px; }

.contact-lines { display: flex; flex-direction: column; gap: 8px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  text-decoration: none;
  min-height: 44px;
  transition: color 200ms ease;
  width: fit-content;
}
.contact-line:hover { color: var(--olive); }
.contact-line svg { width: 20px; height: 20px; stroke: var(--olive); fill: none; flex-shrink: 0; }

/* Form */
.form-group { position: relative; margin-bottom: 16px; }
.form-field {
  width: 100%;
  padding: 14px 12px 6px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  color: var(--body);
  transition: border-color 200ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field:focus { border-color: var(--olive); }

.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  pointer-events: none;
  transition: top 200ms var(--ease-out), font-size 200ms var(--ease-out), color 200ms ease;
}
.form-field:focus ~ .form-label,
.form-field.has-value ~ .form-label {
  top: 10px;
  transform: none;
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.05em;
}

textarea.form-field { resize: vertical; min-height: 120px; padding-top: 24px; }
textarea.form-field ~ .form-label { top: 20px; transform: none; }
textarea.form-field:focus ~ .form-label,
textarea.form-field.has-value ~ .form-label { top: 8px; font-size: 11px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--olive);
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms var(--ease-spring), box-shadow 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
}
.form-submit:hover { background: var(--olive-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,63,0.35); }
.form-submit.success { background: #2d7d32; }

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 600ms linear infinite;
  display: none;
}
.form-submit.loading .btn-spinner { display: block; }
.form-submit.loading .btn-text { display: none; }

.form-note { font-weight: 300; font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { padding: 0 20px; }
}
