/* ===================================================
   ABOUT PAGE — specific styles
   =================================================== */

/* shared section spacing */
.about-concept,
.about-features,
.about-company,
.about-producers,
.about-partners {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.about-features  { background: #0d0d0d; }
.about-company   { background: #080808; }
.about-producers { background: #0d0d0d; }
.about-partners  { background: #080808; }

/* inner wrapper */
.about-concept__inner,
.about-features__inner,
.about-company__inner,
.about-producers__inner,
.about-partners__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ---- eyebrow ---- */
.about-eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: #e0202a;
  text-transform: uppercase;
  padding-left: 2em;
  position: relative;
  margin-bottom: .8rem;
}
.about-eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 1.4em; height: 1px;
  background: #e0202a;
}

/* ---- section heading ---- */
.about-section-head {
  display: flex; flex-direction: column;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.about-section-title {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: .06em;
  color: #f5f0ea;
  line-height: 1.2;
}
.about-section-title em {
  font-style: normal;
  color: #e0202a;
}

/* ===== CONCEPT ===== */
.about-concept__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.about-concept__label {
  padding-top: .3rem;
}
.about-concept__catch {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: .06em;
  color: #f5f0ea;
  margin-bottom: 1.8rem;
  line-height: 1.3;
  border-left: 3px solid #e0202a;
  padding-left: 1rem;
}
.about-concept__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(.88rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(245,240,234,.78);
  margin-bottom: 1.2rem;
}

/* ===== FEATURES ===== */
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.about-feat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  transition: border-color .3s, background .3s;
}
.about-feat:hover {
  border-color: rgba(224,32,42,.4);
  background: rgba(224,32,42,.04);
}
.about-feat__no {
  display: block;
  font-family: "Anton", "Oswald", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(224,32,42,.18);
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.about-feat__en {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: .12em;
  color: #f5f0ea;
  margin: 0 0 .5rem;
}
.about-feat__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: #e0202a;
  margin-bottom: 1.1rem;
  letter-spacing: .06em;
}
.about-feat__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,240,234,.62);
}

/* ===== COMPANY TABLE ===== */
.about-table {
  width: 100%;
  border-collapse: collapse;
}
.about-table th,
.about-table td {
  padding: 1.1rem 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(.82rem, 1.2vw, .95rem);
  border-bottom: 1px solid rgba(255,255,255,.07);
  vertical-align: top;
  text-align: left;
}
.about-table th {
  width: 210px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  white-space: nowrap;
}
.about-table td {
  font-weight: 300;
  color: rgba(245,240,234,.82);
  line-height: 1.7;
}
.about-table td a {
  color: #e0202a;
  text-decoration: none;
  transition: opacity .2s;
}
.about-table td a:hover { opacity: .75; }
.about-table tr:first-child th,
.about-table tr:first-child td {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ===== PRODUCERS ===== */
.about-producer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.about-producer--reverse {
  grid-template-columns: 1fr 280px;
}
.about-producer--reverse .about-producer__media {
  order: 2;
}
.about-producer--reverse .about-producer__info {
  order: 1;
}
.about-producer__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}
.about-producer__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
}
.about-producer__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.15) contrast(1.05);
}
.about-producer__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid rgba(255,255,255,.07);
}
.about-producer__initial {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(224,32,42,.3);
  line-height: 1;
}
.about-producer__badge {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: .65rem;
  letter-spacing: .22em;
  color: #e0202a;
  border: 1px solid rgba(224,32,42,.5);
  padding: .25rem .8rem;
  margin-top: .9rem;
}
.about-producer__label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.about-producer__name {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #f5f0ea;
  line-height: 1.2;
  margin-bottom: .4rem;
}
.about-producer__name em {
  font-style: normal;
  font-size: .55em;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  margin-left: .4em;
}
.about-producer__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.4rem;
  letter-spacing: .06em;
}
.about-producer__bio p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(245,240,234,.72);
  margin-bottom: 1.1rem;
}
.about-producer__works {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.about-producer__works li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245,240,234,.65);
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}
.about-producer__works li::before {
  content: "—";
  position: absolute; left: 0;
  color: #e0202a;
  font-size: .7em;
}
.about-producer__highlight {
  background: rgba(255,255,255,.03);
  border-left: 2px solid #e0202a;
  padding: 1rem 1.2rem;
  margin-bottom: 1.1rem;
}
.about-producer__highlight-label {
  font-family: "Oswald", sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  color: #e0202a;
  margin-bottom: .7rem;
  text-transform: uppercase;
}
.about-producer__highlight ul {
  list-style: none; padding: 0; margin: 0;
}
.about-producer__highlight li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245,240,234,.7);
  line-height: 1.75;
  padding-left: 1em;
  position: relative;
}
.about-producer__highlight li::before {
  content: "▶";
  position: absolute; left: 0;
  color: #e0202a;
  font-size: .6em;
  top: .3em;
}
.about-producer__contact {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(255,255,255,.08);
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(245,240,234,.5);
  line-height: 1.8;
}
.about-producer__contact a {
  color: #e0202a;
  text-decoration: none;
}
.about-producer__contact a:hover { text-decoration: underline; }

/* ===== PRODUCER MV ===== */
.about-producer__mvs {
  margin-top: 1.6rem;
}
.about-producer__mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: .8rem;
}
.about-producer__mv-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.about-producer__mv-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-producer__mv-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .78rem;
  color: rgba(245,240,234,.55);
  margin-top: .5rem;
  letter-spacing: .06em;
}
@media (max-width: 600px) {
  .about-producer__mv-grid { grid-template-columns: 1fr; }
}

/* ===== PARTNERS / RELATED ORGS ===== */
.about-rel-block {
  margin-bottom: 3rem;
}
.about-rel-block__label {
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-left: .2rem;
}
.about-partner__logo-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.about-partner__logo {
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
}
.about-partner__logo--dark {
  border-radius: 4px;
}
.about-partner__logo--invert {
  filter: invert(1);
}
.about-partner__logo-fallback {
  display: none;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}
.about-partner--label {
  border-color: rgba(224,32,42,.25);
  background: rgba(224,32,42,.04);
}
.about-partner--label::before { background: #e0202a; }
.about-partners__grid--label {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .about-partners__grid--label { grid-template-columns: 1fr; }
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.about-partner {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.about-partner::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: #e0202a;
}
.about-partner:hover {
  border-color: rgba(224,32,42,.3);
  background: rgba(224,32,42,.03);
}
.about-partner__cat {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: .65rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.about-partner__name {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: #f5f0ea;
  letter-spacing: .06em;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.about-partner__name small {
  display: block;
  font-size: .7em;
  color: rgba(245,240,234,.55);
  letter-spacing: .04em;
  margin-top: .2rem;
}
.about-partner__person {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(245,240,234,.5);
  letter-spacing: .06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-concept__inner {
    grid-template-columns: 1fr;
  }
  .about-features__grid {
    grid-template-columns: 1fr;
  }
  .about-producer,
  .about-producer--reverse {
    grid-template-columns: 1fr;
  }
  .about-producer__img-wrap {
    max-width: 220px;
  }
  .about-producer--reverse .about-producer__media,
  .about-producer--reverse .about-producer__info {
    order: unset;
  }
}
@media (max-width: 600px) {
  .about-table th { width: 110px; }
  .about-partners__grid { grid-template-columns: 1fr; }
}
