/* ===== ABOUT PAGE STYLES ===== */

/* Hero */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.about-hero-overlay {
  position: relative; z-index: 1;
  width: 100%;
  background: rgba(250,250,248,0.88);
  min-height: 420px;
  display: flex;
  align-items: center;
}
body.dark-mode .about-hero-overlay {
  background: rgba(20,20,18,0.88);
}
.about-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 3rem;
}
.about-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--purple-600);
}
.about-hero-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.about-hero-title em {
  font-style: normal;
  color: var(--purple-600);
}
.about-hero-lead {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Shared lead text */
.about-lead-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2rem;
}
body.dark-mode .value-card {
  background: #1C1B18;
}
.value-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-50);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.value-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.value-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* Stages */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
body.dark-mode .stage-card {
  background: #1C1B18;
  border-color: #2E2D2A;
}
.stage-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 8px;
}
.stage-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.stage-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
}
.stage-role {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-primary);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.stage-role-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--purple-600);
  margin-bottom: 4px;
}

/* Categories */
.about-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-cat-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.about-cat-card:hover {
  border-color: var(--purple-400);
  box-shadow: 0 2px 12px rgba(83,74,183,0.08);
}
body.dark-mode .about-cat-card {
  border-color: #2E2D2A;
}
body.dark-mode .about-cat-card:hover {
  border-color: var(--purple-400);
}
.about-cat-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.about-cat-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Company */
.company-block {
  max-width: 680px;
  margin: 0 auto;
}
.company-body {
  margin-bottom: 2rem;
}
.company-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.company-body p:last-child { margin-bottom: 0; }
.company-body strong {
  color: var(--text-primary);
  font-weight: 500;
}
.company-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.15s;
}
.company-link:hover {
  border-color: var(--purple-400);
  color: var(--purple-600);
}
.company-link.primary {
  background: var(--purple-600);
  color: #fff;
  border-color: var(--purple-600);
}
.company-link.primary:hover {
  opacity: 0.9;
}
.company-link.primary svg { stroke: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-hero { min-height: 320px; }
  .about-hero-overlay { min-height: 320px; }
  .about-hero-inner { padding: 3rem 1rem; }
  .about-hero-title { font-size: 22px; }
  .about-hero-lead { font-size: 13px; }
  .about-lead-text { font-size: 13px; }
  .values-grid { grid-template-columns: 1fr; }
  .stages-grid { grid-template-columns: 1fr; }
  .about-cat-grid { grid-template-columns: 1fr; }
  .company-links { flex-direction: column; }
  .company-link { justify-content: center; }
}
