/* ===== Contact page ===== */
.contact-hero {
  padding: 130px 0 68px;
  background-color: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-hero .eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 14px;
}
.contact-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--white);
  max-width: 780px;
}
.contact-hero h1 em { color: var(--light-blue); font-style: normal; }
.contact-hero p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0;
}

.contact-section {
  padding: 80px 0 110px;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
}

/* Left column */
.contact-info h2 { font-size: 26px; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--ink); }
.contact-info > p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 30px; }
.info-item { margin-bottom: 22px; }
.info-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}
.info-value { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.info-value a { color: var(--blue); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(28, 33, 40, 0.08);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--blue); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(28, 33, 40, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(28, 33, 40, 0.38); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.5; }

/* custom select arrow */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.field.error input,
.field.error select,
.field.error textarea { border-color: #ef4444; }

.contact-submit {
  margin-top: 8px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 100px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, box-shadow 0.3s;
}
.contact-submit:hover { background: #1d4fd8; box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28); }

.form-status {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  display: none;
}
.form-status.show { display: block; }
.form-status a { color: var(--blue); font-weight: 600; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}
