/* Brand sections extend global .split patterns but add brand-specific features */

.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.brand-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: var(--garage-texture);
}

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

.brand-section:last-of-type::after {
  display: none;
}

.brand-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-content .label {
  margin-bottom: 12px;
}

.brand-content h2 {
  margin-bottom: 16px;
}

.brand-content .markets {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.brand-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.brand-photo {
  position: relative;
  overflow: hidden;
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3);
}

.brand-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.35);
}

.brand-section--reversed .brand-photo {
  order: -1;
}

@media (max-width: 1199px) {
  .brand-section { grid-template-columns: 1fr; }
  .brand-photo { min-height: 300px; }
  .brand-content { padding: 56px 40px; }
  .brand-section--reversed .brand-photo { order: 0; }
}

@media (max-width: 767px) {
  .brand-content { padding: 40px 24px; }
  .brand-photo { min-height: 220px; }
}
