/* ── CONTACT PAGE ── */
.page-contact {
  margin-top: 62px;
  padding: clamp(60px,8vh,100px) clamp(20px,5vw,60px);
  background: #e3ecf1; min-height: calc(100vh - 62px);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
}
.contact__info-sub {
  font-size: 16px; color: var(--mid); line-height: 1.85;
  margin-bottom: 40px; font-weight: 300;
}
.contact__methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.contact-method__icon {
  width: 38px; height: 38px; background: var(--cream2);
  border: 1px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-method__label {
  font-size: 11px; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px;
}
.contact-method__value { font-size: 15px; font-weight: 600; color: var(--accent); }
.contact-method__value--plain { font-size: 15px; color: var(--ink2); font-weight: 400; }

/* Form card */
.contact__form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: clamp(24px,3vw,36px);
}
.contact__form-title {
  font-family: var(--fontd); font-size: 24px; font-weight: 700;
  color: var(--ink); margin-bottom: 22px; letter-spacing: -0.01em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; color: var(--ink2);
  margin-bottom: 5px; letter-spacing: 0.04em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  border-radius: 3px; padding: 11px 14px; font-size: 15px;
  font-family: var(--font); color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; }
.form-submit {
  width: 100%; justify-content: center; padding: 14px 0;
  font-size: 15px; margin-top: 4px;
}
.form-note {
  font-size: 12px; color: var(--mid); text-align: center;
  margin-top: 10px; font-weight: 300;
}
.form-success {
  text-align: center; padding: 40px 0; display: none;
}
.form-success__heading {
  font-family: var(--fontd); font-size: 32px; font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.form-success__sub { color: var(--mid); font-size: 15px; font-weight: 300; }
.form-success__sub a { color: var(--accent); font-weight: 600; }

/* map strip at bottom of contact page */
.contact__map {
  height: 340px; border-top: 1px solid var(--border);
  position: relative;
}
.contact__map iframe {
  display: block; width: 100%; height: 340px; border: 0;
  filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
/* ── FORM UNAVAILABLE OVERLAY ── */
.form-unavailable {
  background: #0a0806;
  border-radius: 4px;
  padding: 48px 28px;
  text-align: center;
  margin-bottom: 0;
}
.form-unavailable__heading {
  color: #fff; font-family: var(--fontd);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600; margin-bottom: 12px; line-height: 1.2;
}
.form-unavailable__sub {
  color: rgba(255,255,255,0.6); font-size: 14px;
  font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 300px;
  margin-left: auto; margin-right: auto;
}
.form-unavailable__phone {
  color: #fff; font-size: 20px; font-weight: 600;
  letter-spacing: 0.01em; margin-bottom: 10px; display: block;
  text-decoration: none;
}
.form-unavailable__phone:hover { opacity: 0.8; }
.form-unavailable__email {
  color: rgba(255,255,255,0.55); font-size: 13px;
  font-weight: 400; text-decoration: underline;
  text-underline-offset: 3px; display: block;
}
.form-unavailable__email:hover { color: #fff; }
