.about-section {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text);
}

.about-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.taxonomy {
  margin: 32px 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.taxonomy h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text);
}

.taxonomy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.taxonomy li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.taxonomy li:last-child {
  border-bottom: none;
}

.taxonomy code {
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 13px;
  color: #c7cbd1;
  background: rgba(255,255,255,0.03);
  padding: 2px 6px;
  border-radius: 3px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.sample-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0c0f12;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}

.sample-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.sample-photo:hover img {
  opacity: 0.8;
}

.contact-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-section p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-section strong {
  color: var(--text);
}

.contact-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: text-decoration-color 0.2s ease;
}

.contact-section a:hover {
  text-decoration-color: rgba(255,255,255,0.4);
}

.meta-info {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.meta-info p {
  margin: 8px 0;
}

