/* Página Contacto: titular grande, collage de dos fotos y los datos de contacto. */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 56px) 0 clamp(64px, 8vw, 120px);
}
.glow--ch-tr { top: -180px; right: -120px; width: 640px; height: 580px; opacity: .16; filter: blur(100px); }
.glow--ch-bl { bottom: -200px; left: -140px; width: 520px; height: 480px; opacity: .22; filter: blur(100px); }

.contact-hero__title {
  margin: 0 0 clamp(48px, 7vw, 110px);
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 86px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.04em;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 4vw, 64px);
}

/* ---------- collage ---------- */

.contact-hero__collage {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-self: start;
}
.contact-hero__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.2;
  border-radius: 20px;
  background: #E6E4DD;
}
.contact-hero__photo img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.contact-hero__photo--b { margin-top: clamp(20px, 3vw, 48px); }

/* ---------- datos de contacto ---------- */

.contact-hero__body {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.4vw, 44px);
}
.contact-hero__lede {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  color: var(--ink);
}
.contact-hero__rule { height: 1px; background: rgba(16, 16, 20, 0.16); }

.contact-hero__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(28px, 3.4vw, 48px);
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-col__label {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-col__name {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5C5A66;
}
.contact-col__role {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-55);
}
.contact-col__field {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5C5A66;
}
.contact-col__value {
  display: inline-block;
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
}
.contact-col__value:hover { color: var(--violet); text-decoration: none; }
.contact-col__value--mail { word-break: break-all; }

.contact-col__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-col__links .contact-col__value { margin: 0; }
