/* ═══════════════════════════════════════════
   about.css
   about.html 固有のスタイル
   - Hero ビジュアル拡張
   - Philosophy セクション
   - History セクション
   - Team セクション
   - Company セクション
   - Contact CTA セクション
   ═══════════════════════════════════════════ */


/* ── Hero Visual (画像プレースホルダー) ───── */

.hero__visual {
  margin-top: 48px;
  width: 100%;
  max-width: 480px;
  align-self: center;
}

.hero__visual img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.hero__visual--placeholder {
  display: none;
}


/* ── Philosophy ───────────────────────────── */

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 48px;
  text-align: left;
}

.philosophy__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.philosophy__heading {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.6;
}

.philosophy__body {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2;
}


/* ── History ──────────────────────────────── */

.history__list {
  margin-top: 48px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.history__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.history__item:first-child {
  border-top: 1px solid var(--border);
}

.history__year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.history__event {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.6;
}

.history__desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.9;
}


/* ── Team ─────────────────────────────────── */

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
  margin-top: 48px;
  text-align: left;
}

.team__photo-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: #edf0f3;
  margin-bottom: 20px;
}

.team__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.team__role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team__bio {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2;
}


/* ── Company ──────────────────────────────── */

.company__table {
  margin-top: 48px;
  text-align: left;
  width: 100%;
}

.company__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.company__row:first-child {
  border-top: 1px solid var(--border);
}

.company__key {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 400;
  padding-top: 2px;
}

.company__val {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

.company__map-placeholder {
  margin-top: 48px;
  width: 100%;
  height: 240px;
  background: #edf0f3;
  border-radius: 2px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}


/* ── Contact CTA ──────────────────────────── */

.contact-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.contact-cta__body {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 2;
}


/* ── Responsive ───────────────────────────── */

@media (max-width: 640px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team__photo-wrap {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .history__item {
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
  }

  .history__year {
    font-size: 0.95rem;
  }

  .company__row {
    grid-template-columns: 110px 1fr;
    gap: 0 16px;
  }
}
.team__grid--single {
  display: flex;
  justify-content: center;
}

.team__grid--single .team__member {
  max-width: 420px;
  width: 100%;
}