/* ===== About page specific styles ===== */

.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-points { margin-top: 26px; display: grid; gap: 16px; }
.story-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.story-points li::before { content: "✓"; color: var(--red); font-weight: 700; flex: none; }
.story-visual {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #14142b, #5a0716);
  color: #fff;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.story-visual .big { font-size: 4rem; font-weight: 700; line-height: 1; }
.story-visual .big span { color: #ff6b81; }
.story-visual hr { border: 0; border-top: 1px solid rgba(255,255,255,.15); margin: 26px 0; }
.story-visual .mini { display: flex; gap: 30px; flex-wrap: wrap; }
.story-visual .mini strong { display: block; font-size: 1.7rem; }
.story-visual .mini span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Vision & Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { border-radius: var(--radius); padding: 40px; color: #fff; }
.vm-card.vision { background: linear-gradient(135deg, #1b1c33, #3a0d1a); }
.vm-card.mission { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.vm-card p { color: rgba(255,255,255,.88); margin-bottom: 14px; }

/* Presence */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.office {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.office:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.office .city { font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.office .city .pin { color: var(--red); }
.office .tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); font-weight: 600; }
.office address { font-style: normal; font-size: .88rem; color: var(--muted); margin: 8px 0; line-height: 1.5; }
.office .meta { font-size: .84rem; color: var(--ink-soft); }
.office .meta a:hover { color: var(--red); }

.presence-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.presence-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.presence-tabs button.active { background: var(--red); color: #fff; border-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Management */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card .avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f1f3f8, #e7eaf1);
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(20,20,43,.12), 0 0 0 1px var(--line);
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 { font-size: 1.2rem; }
.team-card .role {
  color: var(--red); font-weight: 600; font-size: .86rem; margin-bottom: 14px;
  display: inline-block; padding-bottom: 12px; border-bottom: 1px solid var(--line); width: 100%;
}
.team-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* Responsibility */
.resp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.resp-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.resp-card img { width: 100%; height: 200px; object-fit: cover; }
.resp-card .rb { padding: 22px; }
.resp-card .loc { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); font-weight: 600; }
.resp-card h3 { font-size: 1.08rem; margin: 8px 0; }
.resp-more { display: inline-block; margin-top: 8px; color: var(--red); font-weight: 600; font-size: .86rem; }
.resp-card:hover .resp-more { letter-spacing: .02em; }
.resp-reports { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; justify-content: center; }
.resp-reports a { font-size: .9rem; color: var(--red); border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px; }
.resp-reports a:hover { background: var(--red); color: #fff; border-color: var(--red); }

@media (max-width: 980px) {
  .story, .vm-grid { grid-template-columns: 1fr; }
  .office-grid, .team-grid, .resp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .office-grid, .team-grid, .resp-grid { grid-template-columns: 1fr; }
}
