/* ── BRAND HERO ── */
.brand-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.brand-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
}

.brand-hero-logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(192, 57, 43, 0.3));
}

.brand-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0.4rem 0 0.6rem;
}

.brand-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SECTIONS ── */
.brand-section {
  padding: 3rem 0;
  border-bottom: 1px solid #1f1f1f;
}

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

.brand-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.brand-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #bbb;
  max-width: 720px;
  margin-bottom: 1rem;
}

.brand-section p:last-of-type {
  margin-bottom: 0;
}

.brand-section p strong {
  color: var(--light);
  font-weight: 600;
}

.brand-section-sub {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  margin-bottom: 2rem !important;
}

/* ── ASSETS GRID ── */
.brand-assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-asset-card {
  background: var(--mid);
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.brand-asset-card:hover {
  border-color: var(--red);
}

.brand-asset-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: 1;
}

.brand-asset-preview--dark {
  background: #111;
}

.brand-asset-preview--light {
  background: #e8e8e8;
}

.brand-asset-preview img {
  width: 70%;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-asset-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.brand-asset-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--light);
}

.brand-asset-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #888;
  flex: 1;
  margin: 0;
}

.brand-asset-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--red);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.brand-asset-btn:hover {
  background: var(--red);
  color: var(--light);
}

@media (max-width: 600px) {
  .brand-hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
