/* =======================================================================
   BESTVINHOMES — English Contact page (/contact-us-en/)
   Extras on top of info.css (bi-* Editorial Luxury system).
   Scope: .bvh-contact — every rule prefixed so nothing leaks.
   ======================================================================= */

/* Section background rhythm: ivory hero -> white spotlight -> ivory channels
   -> white why -> navy CTA (bi-why + bi-cta already styled in info.css). */
.bvh-contact .bc-spotlight-sec { background: var(--bi-bg-card); }
.bvh-contact .bc-channels-sec  { background: var(--bi-bg); }

/* Hero H1: keep line breaks tidy, avoid touching letters. */
.bvh-contact .bi-h1 { text-wrap: balance; }

/* ── AGENT SPOTLIGHT ── */
.bvh-contact .bc-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: center;
}

/* Champagne double-bezel photo frame (echoes .bi-agent-shell). */
.bvh-contact .bc-photo-frame {
  background: var(--bi-accent-tint);
  border: 1px solid var(--bi-line);
  padding: 8px;
  border-radius: 20px;
}
.bvh-contact .bc-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 13px;
  background: var(--bi-accent-tint);
}

.bvh-contact .bc-person-name {
  font-family: var(--bi-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--bi-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.bvh-contact .bc-person-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--bi-accent-deep);
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.bvh-contact .bc-person-bio {
  font-size: 16px;
  color: var(--bi-ink-2);
  line-height: 1.75;
  max-width: 62ch;
  margin: 0 0 22px;
}
.bvh-contact .bc-person-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.bvh-contact .bc-person-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--bi-accent-deep);
  background: var(--bi-accent-tint);
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(178,142,75,0.2);
}
.bvh-contact .bc-person-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Nút full-width (mobile) không tràn: tính cả padding vào width. */
.bvh-contact .bi-btn { box-sizing: border-box; max-width: 100%; }

/* ── CONTACT CHANNELS ── */
.bvh-contact .bc-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.bvh-contact .bc-channel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 15px;
  background: var(--bi-bg-card);
  border: 1px solid var(--bi-line);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
}
.bvh-contact a.bc-channel:hover {
  border-color: var(--bi-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(178,142,75,0.12);
}
.bvh-contact .bc-channel--static { cursor: default; }

/* Icon trong chip tròn tint, span 2 hàng bên trái */
.bvh-contact .bc-channel img,
.bvh-contact .bc-channel svg {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--bi-accent-tint);
}
/* Tên (trên) + số (dưới) xếp dọc ở cột phải */
.bvh-contact .bc-ch-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--bi-ink);
  line-height: 1.25;
}
.bvh-contact .bc-ch-val {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  color: var(--bi-muted);
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
}

/* ── OFFICE / DETAILS ROW ── */
.bvh-contact .bc-office {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px 40px;
  padding-top: 40px;
  border-top: 1px solid var(--bi-line);
}
.bvh-contact .bc-office-cell .bi-detail-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(178,142,75,0.35);
  transition: border-color 0.2s ease;
}
.bvh-contact .bc-office-cell .bi-detail-val a:hover {
  border-color: var(--bi-accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .bvh-contact .bc-spotlight {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .bvh-contact .bc-person-actions .bi-btn,
  .bvh-contact .bi-hero-actions .bi-btn { width: 100%; justify-content: center; }
  .bvh-contact .bc-channels { margin-bottom: 44px; }
  .bvh-contact .bc-office { gap: 28px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .bvh-contact .bc-channel,
  .bvh-contact .bc-office-cell .bi-detail-val a { transition: none; }
  .bvh-contact a.bc-channel:hover { transform: none; }
}
