/* ═══════════════════════════════════════════════════
   BLADE SOCIETY — About Page Styles
═══════════════════════════════════════════════════ */

/* ─── Story Section ─────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.story-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.story-layout__media {
  position: relative;
  height: 560px;
}

.story-img { position: absolute; overflow: hidden; }

.story-img--main {
  top: 0; left: 0;
  width: 80%; height: 80%;
}

.story-img--accent {
  bottom: 0; right: 0;
  width: 52%; height: 50%;
  border: 3px solid var(--bg);
}

.story-img img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}

.story-img:hover img { transform: scale(1.04); }

/* ─── About Stats ───────────────────────────────── */
.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-stat {
  padding: 50px 36px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  text-align: center;
  transition: border-color var(--t), background var(--t);
}

.about-stat:hover {
  border-color: var(--gold-border);
  background: var(--surface-3);
}

.about-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-stat__label {
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── Team Section ──────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--t);
}

.team-card:hover { border-color: var(--gold-border); }

.team-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  filter: brightness(0.8) saturate(0.9);
  transition: transform 0.7s var(--ease), filter 0.5s ease;
}

.team-card:hover .team-card__img img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1);
}

.team-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(9,9,9,0.6) 100%);
}

.team-card__info {
  padding: 30px 28px;
}

.team-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.team-card__exp { font-size: 0.7rem !important; }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1;
}

.team-card__bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-card__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-card__specialties span {
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ─── Values ────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-block {
  padding: 44px 32px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: border-color var(--t), background var(--t);
  position: relative;
  overflow: hidden;
}

.value-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t);
}

.value-block:hover { border-color: var(--gold-border); }
.value-block:hover::after { width: 100%; }

.value-block__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dim);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.value-block__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-block__desc {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.8;
}

/* ─── About CTA ─────────────────────────────────── */
.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.about-cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 50px; }
  .story-layout__media { height: 400px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid .team-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .about-cta__inner { flex-direction: column; align-items: flex-start; gap: 30px; padding: 40px; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:last-child { max-width: 100%; }
  .about-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .story-layout__media { height: 320px; }
}
