/* ==========================================================
   CONTACT — form + socials
   ========================================================== */
.contact-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 44px 120px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  background: var(--card-gray);
  border-radius: 24px;
  padding: 56px;
}

.contact-left h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
}

.contact-sub {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 28px;
}

.contact-book { margin-bottom: 36px; }

.contact-socials { display: flex; gap: 10px; }

.contact-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(16,16,20,0.2);
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 44px -26px rgba(16,16,20,0.18);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field { margin-bottom: 18px; }

.cf-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-body);
  margin-bottom: 7px;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--card-gray);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
}

.cf-submit { width: 100%; justify-content: center; margin-top: 4px; }

.cf-note {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1db56c;
  text-align: center;
  min-height: 18px;
}


/* Honeypot — visually removed, still in the DOM for bots to trip over */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

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

@media (max-width: 640px) {
  .contact-section { padding: 24px 20px 90px; }
  .contact-inner { padding: 28px 22px; border-radius: 18px; }
  .contact-form { padding: 22px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
}
