/* ============================================================
   Trust strip — 4-up assurance block
   Sits at the bottom of /shop/, /kits/adhd/, /buy/  (Round E).
   Scoped under .dr-trust-strip so it never collides.
   ============================================================ */

.dr-trust-strip {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 3vw, 40px);
  background: var(--ds-paper-warm, #f3ede0);
  border-top: 1px solid var(--ds-rule, #e8e1d2);
  border-bottom: 1px solid var(--ds-rule, #e8e1d2);
}
[data-theme="dark"] .dr-trust-strip {
  background: var(--ds-paper-warm, #1c1b18);
  border-color: var(--ds-rule, #2a2a25);
}

.dr-trust-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.dr-trust-strip-head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.dr-trust-strip-eyebrow {
  font-family: 'Atkinson Hyperlegible', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ds-clay, #c9613f);
  margin: 0 0 14px;
}

.dr-trust-strip-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ds-ink, #14140e);
  margin: 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.dr-trust-strip-title em {
  font-style: italic;
  color: var(--ds-clay, #c9613f);
}

.dr-trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 880px) {
  .dr-trust-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .dr-trust-strip-grid { grid-template-columns: 1fr; }
}

.dr-trust-item {
  padding: 22px 20px;
  background: var(--ds-paper, #faf9f5);
  border: 1px solid var(--ds-rule, #e8e1d2);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 220ms ease, border-color 220ms ease;
}
[data-theme="dark"] .dr-trust-item {
  background: var(--ds-paper, #1a1a17);
  border-color: var(--ds-rule, #2a2a25);
}
.dr-trust-item:hover {
  transform: translateY(-2px);
  border-color: var(--ds-clay, #c9613f);
}
@media (prefers-reduced-motion: reduce) {
  .dr-trust-item { transition: none; }
  .dr-trust-item:hover { transform: none; }
}

.dr-trust-icon {
  width: 28px;
  height: 28px;
  color: var(--ds-clay, #c9613f);
  margin-bottom: 4px;
}

.dr-trust-item-label {
  font-family: 'Atkinson Hyperlegible', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ds-ink-soft, #6a6555);
  margin: 0;
}

.dr-trust-item-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ds-ink, #14140e);
  margin: 0;
}

.dr-trust-item-detail {
  font-family: 'Atkinson Hyperlegible', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ds-ink-soft, #6a6555);
  margin: 0;
}
.dr-trust-item-detail a {
  color: var(--ds-ink, #14140e);
  border-bottom: 1px solid var(--ds-clay, #c9613f);
  text-decoration: none;
}
.dr-trust-item-detail a:hover {
  background: rgba(201, 97, 63, 0.06);
}

.dr-trust-strip-footnote {
  margin-top: clamp(24px, 3vw, 36px);
  text-align: center;
  font-family: 'Atkinson Hyperlegible', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ds-ink-soft, #6a6555);
  font-style: italic;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.dr-trust-strip-footnote a {
  color: var(--ds-ink, #14140e);
  border-bottom: 1px solid var(--ds-clay, #c9613f);
  text-decoration: none;
}
