/* ── UI Components & Utility Classes ─────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  /* holds the shine, and clips it to the pill */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all .18s var(--ease);
}

/* Mirror of the hover shine in index.html's inline block — the shared header's
 * button appears on every sub-page, so the two have to agree. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(105deg,
      transparent 38%,
      rgba(255, 253, 248, .55) 50%,
      transparent 62%);
  translate: -130% 0;
}

.btn-primary {
  background: var(--marigold);
  color: var(--ink);
  box-shadow: var(--shadow-note);
}

@media(hover:hover) {
  .btn-primary:hover {
    background: var(--marigold-deep);
    translate: 0 -2px;
  }

  /* Transition declared only on the hover state, so the light resets to its
   * start instantly on the way out instead of sliding back across. */
  .btn:hover::after {
    translate: 130% 0;
    transition: translate .62s var(--ease);
  }
}

.btn-cream {
  background: var(--butter);
  color: var(--ink);
  box-shadow: var(--shadow-note);
}

.card-callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}

.card-callout h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--pine);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-card);
}

.values-banner {
  background: var(--grad-pine);
  color: #fffdf8;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.values-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: #fffdf8;
  margin-bottom: 16px;
}

.values-banner p {
  color: #cfe0d6;
  font-size: 16.5px;
  max-width: 58ch;
}
