.brand-catalog-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: #f7f7f7;
  color: #111111;
}

.brand-catalog-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.08);
  filter: blur(48px);
  pointer-events: none;
}

.brand-catalog-section .container {
  position: relative;
  z-index: 2;
}

.brand-catalog-head {
  max-width: 840px;
}

.brand-catalog-head h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.45rem, 11vw, 4.5rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.brand-catalog-head p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.7;
}

.brand-catalog-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 32px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.brand-card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.48) 46%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.brand-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}

.brand-card-content > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ff8d72;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-card-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 18vw, 6rem);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.brand-card-content p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.58;
}

.brand-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.brand-card-btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #ffffff;
}

.brand-card-kappa {
  min-height: 560px;
}

.brand-card-kappa::before {
  content: "KAPPA";
  position: absolute;
  right: -0.08em;
  top: 0.08em;
  z-index: 3;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(5rem, 24vw, 14rem);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.brand-card-macron {
  min-height: 420px;
}

.brand-card-macron::before {
  content: "MACRON";
  position: absolute;
  right: -0.08em;
  top: 0.1em;
  z-index: 3;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 18vw, 10rem);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.1em;
  pointer-events: none;
}

@media (min-width: 768px) {
  .brand-catalog-section {
    padding: 110px 0;
  }

  .brand-catalog-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
    align-items: stretch;
    margin-top: 46px;
  }

  .brand-card {
    border-radius: 38px;
  }

  .brand-card-kappa {
    min-height: 640px;
  }

  .brand-card-macron {
    min-height: 640px;
  }

  .brand-card-content {
    left: 34px;
    right: 34px;
    bottom: 34px;
  }

  .brand-card-macron .brand-card-content h3 {
    font-size: clamp(3rem, 7vw, 5rem);
  }
}

@media (min-width: 1120px) {
  .brand-catalog-section {
    padding: 130px 0;
  }

  .brand-catalog-head {
    max-width: 980px;
  }

  .brand-catalog-head h2 {
    font-size: clamp(4rem, 6vw, 6.6rem);
  }

  .brand-catalog-head p {
    font-size: 1.12rem;
  }

  .brand-card {
    border-radius: 46px;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }

  .brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.24);
  }

  .brand-card-image img {
    transition: transform 0.8s ease;
  }

  .brand-card:hover .brand-card-image img {
    transform: scale(1.05);
  }

  .brand-card-content {
    left: 44px;
    right: 44px;
    bottom: 44px;
  }

  .brand-card-kappa .brand-card-content h3 {
    font-size: clamp(5rem, 9vw, 9rem);
  }
}

@media (max-width: 420px) {
  .brand-card {
    min-height: 480px;
    border-radius: 28px;
  }

  .brand-card-kappa,
  .brand-card-macron {
    min-height: 500px;
  }

  .brand-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .brand-card-content h3 {
    font-size: clamp(3rem, 20vw, 5rem);
  }

  .brand-card-content p {
    font-size: 0.95rem;
  }

  .brand-card-btn {
    width: 100%;
  }
}

.brand-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brand-card-actions .brand-card-btn {
  margin-top: 0;
}

.brand-card-btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-card-btn-outline:hover {
  background: #ffffff;
  color: #111111;
}