/* ============================================================
   Contact page styles
   ============================================================ */

.ct-dark { position: relative; background: var(--dark); overflow: hidden; padding: 0 var(--pad) 110px; }
.ct-dark::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/images/MN43Zofxvadkiar87bdIaRj9NxE.svg') center / cover no-repeat;
  filter: invert(1); opacity: .12; pointer-events: none;
}


.ct-hero { position: relative; z-index: 2; padding: 90px 0 110px; color: var(--bg); }
.ct-hero__intro { max-width: 340px; margin-top: 26px; font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, .75); }

.ct-panel {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.08fr;
  max-width: 1100px; margin: 0 auto;
}

/* left: contact details */
.ct-info {
  background: #181713; border: 1px solid var(--w-line); border-right: 0;
  color: var(--bg); display: flex; flex-direction: column; justify-content: center;
}
.ct-info__row {
  display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start;
  padding: 30px 34px; border-top: 1px solid var(--w-line);
}
.ct-info__row:first-child { border-top: 0; }
.ct-info__label { font-size: 11px; text-transform: uppercase; color: var(--w-50); display: flex; align-items: center; gap: 8px; }
.ct-info__val { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, .9); }
.ct-info__val a { color: inherit; }
.ct-info__map { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; margin-top: 14px; color: var(--w-50); }
.ct-info__map .arr { width: 11px; height: 11px; }

/* right: form (field styles come from main.css .ff classes) */
.ct-form { background: var(--white); color: var(--ink); padding: 34px 38px 30px; }
.ct-form h2 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.ct-form__intro { font-size: 13.5px; color: var(--ink-80); margin: 10px 0 24px; }
.ct-form__mail { display: block; text-align: center; margin-top: 16px; font-size: 12px; color: rgba(20, 20, 20, .35); }
.ct-form__mail:hover { color: var(--ink-80); }

@media (max-width: 900px) {
  .ct-panel { grid-template-columns: 1fr; }
  .ct-info { border-right: 1px solid var(--w-line); }
  .ct-info__row { padding: 24px 26px; }
}

/* full-width map above the footer */
.ct-map iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(1); }
