/* ============================================================
   collection.css — Trump Brand Portfolio Page Styles
   ============================================================ */

.collection-intro {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.collection-intro p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
}

/* ── Brand Section ───────────────────────────────────────────── */
.brand-section {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.brand-section:last-child { border-bottom: none; }

.brand-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .brand-section-inner { grid-template-columns: 1fr 1fr; }
  .brand-section:nth-child(even) .brand-img { order: 2; }
  .brand-section:nth-child(even) .brand-content { order: 1; }
}

.brand-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.brand-img:hover img { transform: scale(1.04); }

.brand-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.4) 0%, transparent 60%);
}

.brand-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.brand-description {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

/* ── Mini Stats ──────────────────────────────────────────────── */
.brand-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-mini-stat {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background: rgba(201,161,50,0.05);
  border-right: 1px solid var(--color-border);
}

.brand-mini-stat:last-child { border-right: none; }

.brand-mini-stat .bms-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-xs);
}

.brand-mini-stat .bms-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Light-bg overrides */
.brand-section.section-light .brand-title      { color: var(--color-navy); }
.brand-section.section-light .brand-description { color: var(--color-text-muted); }
.brand-section.section-light .brand-mini-stat   { background: rgba(10,22,40,0.05); }
.brand-section.section-light .bms-label         { color: var(--color-text-muted); }
.brand-section.section-light .brand-mini-stats,
.brand-section.section-light .brand-mini-stat   { border-color: rgba(10,22,40,0.15); }
