/* =================== hc-trust-cards.css =================== */
/* hc-trust-cards — premium 4-cell trust grid on home page below hero.
 *
 * Each card: gold-tinted icon → big serif number → mono uppercase label
 * → soft sans description. Visible on >= 720px, stacks 2×2 on tablet,
 * single column on phone. Cards animate in via `.hz-fx-reveal` (handled
 * by global reveal IO observer).
 *
 * Strict isolation: .hc-trust-cards / .hc-trust-cards__* / .hc-trust-card / .hc-trust-card__*. */

.hc-trust-cards {
  display: block;
  padding: clamp(28px, 4vw, 56px) 0;
  background: linear-gradient(180deg, transparent, rgba(212, 184, 150, 0.05) 40%, transparent);
}

.hc-trust-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  width: 100%;
  max-width: var(--hc-wrap, 1344px);
  margin: 0 auto;
  padding: 0 clamp(20px, 2.4vw, 40px);
  box-sizing: border-box;
}

.hc-trust-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 20px;
  border: 1px solid rgba(26,23,20,.09);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(250,246,238,.9));
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hc-trust-card:hover,
.hc-trust-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(141,109,71,.34);
  box-shadow: 0 18px 36px -26px rgba(26,23,20,.45);
}
.hc-trust-card--link {
  display: block;
  text-decoration: none;
}
.hc-trust-card::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-radius: 50%;
  border: 1px dashed rgba(212, 184, 150, 0);
  pointer-events: none;
  transition: border-color 0.32s ease, transform 14s linear;
}
.hc-trust-card:hover::after {
  border-color: rgba(212, 184, 150, 0.32);
  transform: rotate(360deg);
}

.hc-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.18), rgba(184, 154, 111, 0.08));
  border: 0.5px solid var(--hc-gold-border, rgba(212, 184, 150, 0.45));
  border-radius: 12px;
  color: var(--hc-accent-dark, #7a6548);
}

.hc-trust-card__num {
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hc-ink, #1a1714);
  margin-bottom: 6px;
}

.hc-trust-card__lbl {
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-accent-dark, #7a6548);
  margin-bottom: 10px;
}

.hc-trust-card__sub {
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 13px;
  line-height: 1.5;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.62));
  max-width: 28ch;
}

@media (max-width: 920px) {
  .hc-trust-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hc-trust-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* v7.66 — accent the +/5 in the big trust number */
.hc-trust-card__num small { font-size: .5em; vertical-align: super; color: var(--hc-accent, #8b7355); font-weight: 700; }
