/* ──────────────────────────────────────────────────────────────────
   Pocket Cologne — Shared Components
   Buttons / cards / badges / eyebrows / inputs / nav / hero patterns.
   Loaded after tokens.css. Selectors avoid !important so the
   cascade stays clean — pages can scope-override if they need to.
   ────────────────────────────────────────────────────────────── */

/* ── ELEMENT RESETS ── */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text-primary);
}

/* Italic em-tags lose their italic and become bold-gold accent
   (replaces the Playfair italic flourish from the old design). */
.hero h1 em, .final-cta h2 em, .tiers-title em, h1 em, h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}

/* ── EYEBROW ── */
.eyebrow, .section-label, .tiers-eyebrow, .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── BUTTONS — rectangular slightly-rounded, BHN-aligned ── */
.btn,
.btn-primary,
.btn-secondary,
.btn-gold,
.btn-outline,
.btn-outline-gold,
.btn-action,
.tier-cta,
.hero-cta,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s var(--ease-out), color 0.18s, transform 0.15s, border-color 0.18s;
  white-space: nowrap;
}
.btn-primary, .hero-cta {
  background: var(--text-primary);
  color: #ffffff;
}
.btn-primary:hover, .hero-cta:hover {
  background: #000;
  transform: translateY(-1px);
}
.btn-gold, .btn-action.btn-gold, .tier-card.featured .tier-cta {
  background: var(--gold);
  color: #1a140d;
}
.btn-gold:hover, .btn-action.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-secondary, .btn-outline, .btn-outline-gold, .btn-action.btn-outline-gold {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover, .btn-outline:hover, .btn-outline-gold:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
  background: var(--bg-elevated);
}
.btn-sm {
  padding: 9px 16px;
  font-size: 0.86rem;
}
.btn:disabled, .btn-primary:disabled, .btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── CARDS ── */
.card,
.stat-card,
.tier-card,
.how-step,
.section,
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s, transform 0.2s;
}
.card:hover, .stat-card:hover, .tier-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ── BADGES (still pill-shaped — they're tags, not buttons) ── */
.badge,
.tier-card.featured::before {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── INPUTS ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="month"],
input[type="password"],
select,
textarea,
.form-input,
.field input,
.field select,
.field textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-primary);
  transition: border-color 0.15s, background 0.15s;
}
input:focus, select:focus, textarea:focus,
.form-input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  background: var(--bg-card);
}

/* ── NAV PATTERN ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── HERO TYPOGRAPHY ── */
.hero h1, .page-header h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-title, .tiers-title {
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── TRUST BAND (homepage thin gold band under hero, moonbrew pattern) ── */
.trust-band {
  background: var(--gold);
  color: #1a140d;
  padding: 14px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-band strong { font-weight: 800; }

/* ── PRESS BAND ── */
.press-band {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
  overflow: hidden;
}
.press-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  filter: grayscale(1);
  opacity: 0.65;
}
.press-band img {
  height: 24px;
  width: auto;
}

/* ── SECTION RHYTHM ── */
.section-pad-lg { padding: var(--space-9) 24px; }
.section-pad-md { padding: var(--space-7) 24px; }
.container-lg { max-width: 1200px; margin: 0 auto; }
