/* ===========================
   COMPANY PAGE
=========================== */

/* ページヒーロー */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 60%, #0a0a0a 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.page-hero__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* 現在ページハイライト */
.header__nav-list a.is-current {
  color: var(--color-primary);
}

/* ===========================
   BRAND STORY
=========================== */
.brand-story {
  background-color: var(--color-bg);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.brand-story__header {
  position: sticky;
  top: 100px;
}

.brand-story__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 12px;
}

.brand-story__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-story__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.95;
}

.brand-story__quote {
  border-left: 3px solid var(--color-primary);
  padding: 16px 24px;
  background-color: var(--color-bg-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  font-style: normal;
  line-height: 1.9;
  color: var(--color-text);
}

/* ===========================
   FOUNDER
=========================== */
.founder {
  background-color: var(--color-bg-2);
}

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* 画像 */
.founder__image {
  position: relative;
}

.founder__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-bg-3);
  border: 1px solid var(--color-border);
  z-index: 1;
}

.founder__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder__image-wrap.no-image::after {
  content: 'PHOTO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

.founder__image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  opacity: 0.25;
  z-index: 0;
}

/* コンテンツ */
.founder__role {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.founder__name {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.founder__title {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.founder__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.95;
  margin-bottom: 16px;
}

.founder__text:last-child { margin-bottom: 0; }

/* ===========================
   NUMBERS
=========================== */
.numbers {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 0;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.numbers__item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--color-border);
}

.numbers__item:last-child { border-right: none; }

.numbers__value {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.numbers__value span { font-size: 0.55em; }

.numbers__label {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .brand-story__header { position: static; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }

  .brand-story__inner,
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder__image-wrap { aspect-ratio: 1/1; }

  .founder__image-accent {
    bottom: -10px;
    left: -10px;
  }

  .numbers__grid { grid-template-columns: repeat(2, 1fr); }

  .numbers__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 32px 16px;
  }

  .numbers__item:nth-child(odd) { border-right: 1px solid var(--color-border); }
  .numbers__item:last-child,
  .numbers__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
