/* Contact page — Contact Us + Follow Us. Ported verbatim from the mockup. */

/* First subsection on this page always uses the muted chevron color. */
#contact-us .sc-chevron { color: var(--t2); }

.sc-card.card-blue { background: var(--b-blue); }
.sc-card.card-blue.is-open { border-color: rgba(9,175,246,0.32); }
.sc-card.card-blue .sc-toggle:hover,
.sc-card.card-blue.is-open .sc-toggle { background: rgba(9,175,246,0.08); }
.sc-card.card-blue .sc-toggle-text p { color: var(--t1); }

/* ── Contact Us ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 2.5rem;
  align-items: start;
}
.contact-name {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--t1); margin-bottom: 1.5rem;
}
.contact-rows { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row i {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--b-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.85rem;
}
.contact-label {
  display: block; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t2); margin-bottom: 0.2rem;
}
.contact-row a, .contact-row span.contact-value {
  font-size: 1rem; color: var(--t1); text-decoration: none; transition: color var(--ease);
}
.contact-row a:hover { color: var(--blue); }
.contact-map-wrap {
  border: 1px solid var(--b-dim);
  overflow: hidden;
  background: #fff;
  height: 100%;
  min-height: 340px;
}
.contact-map-wrap iframe {
  display: block; width: 100%; height: 100%; min-height: 340px; border: 0;
}

/* ── Follow Us ────────────────────────────────────────────────── */
.follow-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.follow-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1rem; color: var(--t1); line-height: 1.6;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--b-dim);
}
.follow-list li:last-child { border-bottom: none; padding-bottom: 0; }
.follow-list li.no-link { color: var(--t2); }
.follow-list li i {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--b-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.9rem;
}
.follow-list a {
  color: var(--t1); text-decoration: none; transition: color var(--ease);
}
.follow-list a:hover { color: var(--blue); }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 280px; }
  .contact-map-wrap iframe { min-height: 280px; }
}
