/* ==========================================================================
   BAAN PHO — contacto.css  ·  página de Contacto (sin formulario)
   Valores de "Baan Pho - Contacto.dc.html" (style=, móvil) y su bloque
   @media (min-width:900px) del <helmet> (líneas 85–96).
   ========================================================================== */

/* ---- Hero ---- */
.bp-cthero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bp-cthero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-cthero-velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--velo-hero), 0.9) 0%, rgba(var(--velo-hero), 0.35) 50%, rgba(var(--velo-hero), 0.25) 100%);
}

.bp-cthero-inner {
  position: relative;
  z-index: 2;
  padding: 0 28px 44px;
}

.bp-cthero-inner .bp-eyebrow-raya { background: var(--oro-300); }
.bp-cthero-inner .bp-eyebrow span:last-child {
  color: var(--oro-300);
  letter-spacing: var(--ls-eyebrow-pie);
}

.bp-cthero-inner h1 {
  font-family: var(--font-serif);
  font-weight: var(--fw-serif-fuerte);
  font-size: var(--fs-5xl);
  line-height: 1.05;
  margin: 0;
  color: var(--blanco-foto);
  text-shadow: var(--sombra-h1-ficha);
}

/* ---- Datos ---- */
.bp-ct-datos {
  padding: 76px 30px 60px;
  background: var(--crema);
}

.bp-ct-datos > p {
  font-family: var(--font-serif);
  font-size: var(--fs-hub-intro);
  line-height: 1.4;
  color: var(--tinta);
  margin: 0 0 40px;
  font-weight: var(--fw-serif);
}

.bp-ct-filas {
  display: flex;
  flex-direction: column;
}

.bp-ct-fila {
  padding: 22px 0;
  border-top: 1px solid var(--linea-suave);
}
.bp-ct-fila--ultima { border-bottom: 1px solid var(--linea-suave); }

.bp-ct-fila-titulo {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-cta);
  color: var(--oro-700);
  text-transform: uppercase;
  font-weight: var(--fw-fuerte);
  margin-bottom: 8px;
}

.bp-ct-fila-valor {
  font-size: var(--fs-base-desktop);   /* 18px literal del prototipo */
  color: var(--tinta);
  line-height: 1.6;
}

a.bp-ct-fila-valor { font-weight: var(--fw-fuerte); }
a.bp-ct-fila-valor:hover { color: var(--tinta); }

.bp-ct-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

/* ---- Mapa a sangre ---- */
.bp-ct-mapa-seccion { padding: 0 0 8px; }

.bp-ct-mapa {
  height: 320px;
  background-image: repeating-linear-gradient(135deg, var(--salvia-raya-3) 0 14px, var(--salvia-raya-4) 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bp-ct-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Cómo llegar ---- */
.bp-ct-llegar {
  background: var(--salvia);
  padding: 70px 30px 68px;
}

.bp-ct-llegar .bp-eyebrow { margin-bottom: 14px; }

.bp-ct-llegar h2 {
  font-family: var(--font-serif);
  font-weight: var(--fw-serif);
  font-size: var(--fs-h2-faq);
  line-height: var(--lh-titular);
  margin: 0 0 30px;
  color: var(--tinta);
}

.bp-ct-medios {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bp-ct-medio h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-serif-fuerte);
  font-size: var(--fs-logo);   /* 21px literal del prototipo */
  margin: 0 0 6px;
  color: var(--tinta);
}

.bp-ct-medio p {
  font-size: var(--fs-cuerpo-panel);
  line-height: 1.6;
  color: var(--texto);
  margin: 0;
}

.bp-ct-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border: 1.5px solid var(--linea-oliva);
  color: var(--tinta);
  background: var(--blanco);
  padding: 15px 30px;
  font-size: var(--fs-nav-compacta);
  letter-spacing: var(--ls-boton);
  text-transform: uppercase;
  font-weight: var(--fw-fuerte);
  border-radius: var(--r-pastilla);
}
.bp-ct-maps:hover { color: var(--tinta); }

/* ==========================================================================
   Desktop (helmet, líneas 85–96)
   ========================================================================== */
@media (min-width: 900px) {
  .bp-cthero {
    height: 60vh;
    max-height: 640px;
  }
  .bp-cthero-inner {
    max-width: var(--contenedor-texto);
    margin: 0 auto;
    width: 100%;
    padding: 0 6vw 56px;
  }
  .bp-cthero-inner h1 { font-size: var(--fs-h1-sobre-desktop); }

  .bp-ct-datos {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    column-gap: 100px;
    padding: 100px max(6vw, calc((100% - var(--contenedor-texto)) / 2)) 90px;
  }
  .bp-ct-datos > p {
    grid-column: 1;
    font-size: var(--fs-cita);   /* 33px literal del prototipo */
    max-width: 560px;
  }
  .bp-ct-filas { grid-column: 1; }
  .bp-ct-ctas {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 10px;
    position: sticky;
    top: 110px;
  }

  .bp-ct-mapa { height: 460px; }

  .bp-ct-llegar {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 100px;
    padding: 100px max(6vw, calc((100% - var(--contenedor-texto)) / 2)) 96px;
  }
  .bp-ct-llegar h2 { font-size: var(--fs-h1-ficha); }   /* 44px literal */
}
