/* BE CERA — Brand page */

/* Brand story */
.brand-story {
  padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg);
}
.brand-story__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.brand-story__inner .eyebrow { display: inline-block; margin-bottom: 20px; }
.brand-story__title { margin-bottom: 40px; }
.brand-story__text {
  font-size: 16px;
  line-height: 2.2;
  text-align: left;
  letter-spacing: 0.04em;
}
.brand-story__quote {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--accent);
  text-align: center;
  margin: 56px auto 0;
  line-height: 1.6;
  max-width: 640px;
}

/* Brand list — alternating editorial rows */
.brand-list {
  padding: clamp(80px, 10vw, 140px) 0 clamp(100px, 14vw, 180px);
  background: var(--bg-alt);
}
.brand-list__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.brand-list__head .eyebrow { display: block; margin-bottom: 14px; }
.brand-list__head .count {
  justify-self: end;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: none;
  color: var(--ink-mute);
}
.brand-list__head .count .num { font-size: 44px; font-weight: 300; color: var(--ink); display: block; line-height: 1; margin-bottom: 6px; }

.brand-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.brand-row:last-child { border-bottom: 1px solid var(--line); }
.brand-row--reverse { direction: rtl; }
.brand-row--reverse > * { direction: ltr; }

.brand-row__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.brand-row__img img,
.brand-row__img .ph-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.brand-row:hover .brand-row__img img { transform: scale(1.04); }
.brand-row__idx {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #fff;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
}

.brand-row__body { max-width: 520px; }
.brand-row__name-en {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.brand-row__name-en em { font-style: italic; font-weight: 300; }
.brand-row__name-jp {
  display: block;
  font-family: var(--serif-jp);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.brand-row__desc {
  line-height: 2;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.brand-row__desc-lead {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 10px;
}
.brand-row__meta {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.brand-row__meta > div { min-width: 80px; }
.brand-row__meta dt {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--ink-mute);
  margin-bottom: -5px;
}
.brand-row__meta dd {
  font-family: var(--serif-jp);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* footer cta */
.brand-list__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 80px);
}

@media (max-width: 960px) {
  .brand-list__head,
  .brand-row { grid-template-columns: 1fr; }
  .brand-list__head .count { justify-self: start; }
  .brand-row--reverse { direction: ltr; }
}
