/* ==========================================================================
   Contact page
   ========================================================================== */
.ct-wrap { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.ct-info { flex: 1; min-width: 280px; }
.ct-map { flex: 1.2; min-width: 300px; }
.ct-block { margin-bottom: 32px; }
.ct-block h2 {
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.ct-block p, .ct-block > a {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  text-decoration: none;
  display: block;
}
.ct-block > a:hover { color: var(--gold); }
.ct-hours {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.9;
}
.ct-hours span:last-child { color: var(--muted-2); }
.ct-note { color: var(--muted-2); font-size: 14px; font-style: italic; margin-top: 10px; }

.ct-map-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.ct-map-frame iframe { width: 100%; height: 440px; border: 0; display: block; }

@media (max-width: 768px) {
  .ct-wrap { flex-direction: column; gap: 36px; }
  .ct-map { width: 100%; }
  .ct-map-frame iframe { height: 340px; }
}
