/* Brand Section */
.brand {
  padding: 40px;
  background-color: var(--color-background);
}

.brand-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.brand-head {
  text-align: center;
  margin-bottom: 40px;
}

.brand-head--sub {
  margin-top: 100px;
}

.brand-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.brand-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.brand-logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}

.brand-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.brand-product-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.brand-product-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.brand-product-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  min-height: calc(1.6em * 2);
  margin-bottom: 20px;
}

.brand-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-background);
  text-decoration: none;
  padding: 10px 24px;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  transition: all 0.6s ease-out;
}

.brand-product-btn:hover {
  background-color: var(--color-background);
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .brand {
    padding: 80px 20px;
  }

  .brand-head {
    margin-bottom: 24px;
  }

  .brand-head--sub {
    margin-top: 60px;
  }

  .brand-product-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-product-name {
    min-height: 0;
  }
}
