/* Trendy Peek — Concept 3 brand tokens */
:root {
  --tp-charcoal: #232426;
  --tp-ink: #17181A;
  --tp-gold: #B5965B;
  --tp-gold-dark: #8F7445;
  --tp-warm-white: #F7F3EA;
  --tp-stone: #B8B0A3;

  --tp-font-display: "Montserrat", "Avenir Next", Arial, sans-serif;
  --tp-font-editorial: "Cormorant Garamond", Georgia, serif;

  --tp-radius-sm: 8px;
  --tp-radius-md: 16px;
  --tp-shadow-soft: 0 12px 36px rgba(23, 24, 26, .10);
}

.tp-brand {
  background: var(--tp-warm-white);
  color: var(--tp-charcoal);
}

.tp-brand-accent {
  color: var(--tp-gold);
}

.tp-brand-button {
  appearance: none;
  border: 1px solid var(--tp-charcoal);
  background: var(--tp-charcoal);
  color: var(--tp-warm-white);
  border-radius: 999px;
  padding: .8rem 1.2rem;
  font: 600 0.95rem/1 var(--tp-font-display);
}

.tp-brand-button:hover {
  background: var(--tp-gold);
  border-color: var(--tp-gold);
  color: var(--tp-ink);
}
