.page-hero {
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); max-width: 20ch; margin-bottom: 16px; }
.page-hero .lede { margin-bottom: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(56px, 8vw, 96px);
  align-items: start;
}

/* Left: info */
.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, oklch(0.2 0.008 150 / 0.4), oklch(0.16 0.006 150 / 0.25));
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.channel-item:hover {
  border-color: oklch(0.45 0.04 152 / 0.5);
  background: linear-gradient(180deg, oklch(0.22 0.01 152 / 0.45), oklch(0.16 0.006 150 / 0.3));
}
.channel-ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: oklch(0.78 0.17 152 / 0.12);
  border: 1px solid oklch(0.78 0.17 152 / 0.22);
  color: var(--accent);
  flex-shrink: 0;
}
.channel-ic svg { width: 20px; height: 20px; }
.channel-label { font-size: 12px; color: var(--text-faint); margin-bottom: 2px; }
.channel-value { font-size: 14.5px; font-weight: 500; color: var(--text); }

/* Right: form */
.contact-form-wrap {
  background: linear-gradient(180deg, oklch(0.2 0.008 150 / 0.5), oklch(0.16 0.006 150 / 0.3));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: oklch(0.14 0.006 150 / 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: oklch(0.45 0.06 152 / 0.7);
  background: oklch(0.16 0.008 152 / 0.5);
}
.field select option { background: #0f1210; }
.field textarea { min-height: 120px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  border-radius: 12px;
  margin-top: 6px;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
