/* ═══════════════════════════════════════════════════
   MCR-07 - Concierge vendor directory
   Design system rules enforced here, deliberately and visibly:
     - border-radius: 0 everywhere in this block
     - flat fills only, zero colour ramps of any kind
     - no default-state box-shadow (hover only, and only a border change)
     - Inter Tight for all UI text in this block
     - section padding 160px, floor is 96px at the smallest breakpoint
     - hyphens only, no em dash, no en dash, in this file and in the markup
   ═══════════════════════════════════════════════════ */

.mcr-vendors {
  --mcr-v-ink:   #0A0A0C;
  --mcr-v-mid:   #555555;
  --mcr-v-line:  #DEDBD2;
  --mcr-v-royal: #1E3A8A;

  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--mcr-v-ink);
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 160px 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* the Elementor section wrapper must not add its own rounding or shadow */
.mcr-concierge-services,
.mcr-concierge-services .elementor-container,
.mcr-concierge-services .elementor-widget-shortcode {
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}

.mcr-vendors__grid {
  column-count: 3;
  column-gap: 56px;
  padding: 0 32px;
}

.mcr-vendors__cat {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 48px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--mcr-v-line);
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.mcr-vendors__cat-title {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mcr-v-royal);
  margin: 0 0 18px;
  padding: 0;
  border-radius: 0;
}

.mcr-vendors__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mcr-vendor {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--mcr-v-line);
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.mcr-vendor:first-child {
  border-top: 0;
  padding-top: 0;
}

.mcr-vendor__name {
  display: block;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--mcr-v-ink);
}

.mcr-vendor__meta {
  display: block;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--mcr-v-mid);
  margin-top: 2px;
}

/* Separator between meta pieces is a middle dot, not a dash.
   It hangs off the PRECEDING element, never off a link, so it can never sit
   inside a link underline. */
.mcr-vendor__meta > *:not(:last-child)::after {
  content: "\00B7";
  color: var(--mcr-v-line);
  margin: 0 8px;
  border: 0;
  text-decoration: none;
}

.mcr-vendor__phone,
.mcr-vendor__detail {
  display: inline;
  font-variant-numeric: tabular-nums;
}

.mcr-vendor__email,
.mcr-vendor__url {
  display: inline;
  color: var(--mcr-v-royal);
  text-decoration: none;
  border-bottom: 1px solid var(--mcr-v-line);
  border-radius: 0;
  box-shadow: none;
  word-break: break-word;
  transition: border-color 160ms ease;
}

.mcr-vendor__email:hover,
.mcr-vendor__url:hover,
.mcr-vendor__email:focus-visible,
.mcr-vendor__url:focus-visible {
  border-bottom-color: var(--mcr-v-royal);
}

@media (max-width: 1024px) {
  .mcr-vendors { padding: 128px 0; }
  .mcr-vendors__grid { column-count: 2; column-gap: 40px; padding: 0 28px; }
}

@media (max-width: 680px) {
  .mcr-vendors { padding: 96px 0; }
  .mcr-vendors__grid { column-count: 1; column-gap: 0; padding: 0 24px; }
  .mcr-vendors__cat { margin-bottom: 40px; }
}
