/* Reusable pieces: buttons, lists, cards, photo mats, forms, FAQ.
   Everything consumes the scoped band tokens (--tx/--tx-muted/--line) so the
   same component is correct on daylight, white and spruce surfaces. */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: background var(--speed), color var(--speed), border-color var(--speed), transform var(--speed) var(--ease);
}

/* Every button pops on hover — a small lift + zoom, same move as the cards */
.btn:hover { transform: translateY(-2px) scale(1.03); }

/* .btn's display would otherwise override the hidden attribute (author
   styles beat UA styles), leaving all form-nav buttons visible at once. */
.btn[hidden] { display: none; }

.btn--primary {
  background: var(--c-fill);
  color: var(--text-on-gran);
}

.btn--primary:hover { background: var(--c-fill-djup); }

/* White button for spruce blocks (kundcase CTA) */
.btn--light {
  background: var(--c-vit);
  color: var(--c-granit);
}

.btn--light:hover { background: var(--c-dis); }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--tx);
}

.btn--ghost:hover {
  border-color: var(--c-gran);
  color: var(--c-gran-djup);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Quiet phone link that rides next to a primary button */
.link-phone {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--tx);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--speed), border-color var(--speed);
}

.link-phone:hover {
  color: var(--c-gran-djup);
  border-color: var(--c-gran);
}

