/* about.html 固有スタイル */

.about-hero {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 50%;
}
.about-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(200,169,110,0.08);
  border-radius: 50%;
}
.about-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.about-hero-label { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 16px; }
.about-hero-title { font-family: var(--serif); font-size: 36px; font-weight: 700; color: white; line-height: 1.6; letter-spacing: 0.03em; margin-bottom: 20px; }
.about-hero-copy { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.6); line-height: 2; letter-spacing: 0.05em; }

.about-main { max-width: 760px; margin: 0 auto; padding: 64px 32px; }

.about-section { margin-bottom: 56px; }
.about-section-label { font-size: 10px; letter-spacing: 0.3em; color: var(--gold2); margin-bottom: 8px; }
.about-section-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1.5px solid var(--ink); letter-spacing: 0.03em; }
.about-body { font-size: 15px; line-height: 2.2; color: var(--ink2); }
.about-body p { margin-bottom: 20px; }

.about-philosophy {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0;
}
.about-philosophy-copy {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.about-philosophy-sub { font-size: 13px; color: var(--ink2); line-height: 1.9; }

/* Enemy list */
.enemy-list { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.enemy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.enemy-num { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--border); flex-shrink: 0; width: 28px; }
.enemy-text { font-size: 14px; color: var(--ink2); line-height: 1.8; }

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 32px 0;
}
.stat-item {
  background: white;
  padding: 24px;
  text-align: center;
}
.stat-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.stat-num span { font-size: 16px; }
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; }

/* Team */
.team-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.team-avatar {
  width: 56px;
  height: 56px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-name { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 10px; color: var(--gray); letter-spacing: 0.15em; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--ink2); line-height: 1.9; }

/* CTA */
.about-cta {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.about-cta-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.about-cta-desc { font-size: 13px; color: var(--ink2); line-height: 1.9; margin-bottom: 24px; }
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.about-cta-btn:hover { background: var(--gold2); }

@media (max-width: 600px) {
  .about-hero { padding: 48px 0; }
  .about-hero-inner { padding: 0 16px; }
  .about-hero-title { font-size: 26px; }
  .about-main { padding: 40px 16px; }
  .about-stats { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 14px; }
  .about-cta { padding: 28px 20px; }
}