/* ================================================
   SJ Men's Fashion - About Page Styles
   ================================================ */

/* ---------- About Hero ---------- */
.about-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(59,130,246,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,130,246,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
}
.about-hero .badge-blue {
  background: rgba(59,130,246,0.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.about-hero h1 em {
  font-style: normal;
  color: #3b82f6;
}
.about-hero > .container > .about-hero-inner > p {
  color: #9ca3af;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* Hero stats row */
.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.about-hero-stat:last-child { border-right: none; }
.about-hero-stat .hs-num {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.about-hero-stat .hs-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b7280;
  margin-top: 7px;
  display: block;
}

/* ---------- Story Section ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.about-story-text p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--grey-600);
  font-size: 0.95rem;
}
.about-story-text p:last-child { margin-bottom: 0; }

/* Stat grid inside story */
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-stat-card {
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
}
.about-stat-card .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.about-stat-card .stat-lbl {
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

/* ---------- Values Section ---------- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  border-color: transparent;
}
.vc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.vc-icon svg {
  width: 24px;
  height: 24px;
}
.vc-blue  { background: #eff6ff; }
.vc-blue  svg { stroke: #3b82f6; }
.vc-amber { background: #fffbeb; }
.vc-amber svg { stroke: #d97706; }
.vc-green { background: #f0fdf4; }
.vc-green svg { stroke: #16a34a; }
.vc-purple{ background: #f5f3ff; }
.vc-purple svg { stroke: #7c3aed; }
.vc-sky   { background: #f0f9ff; }
.vc-sky   svg { stroke: #0284c7; }
.vc-red   { background: #fff1f2; }
.vc-red   svg { stroke: #e11d48; }

.value-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: -0.2px;
}
.value-card p {
  font-size: 0.86rem;
  color: var(--grey-500);
  line-height: 1.72;
}

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px 24px 32px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.team-avatar-1 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.team-avatar-2 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.team-avatar-3 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.team-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.team-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  background: var(--grey-100);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey-600);
  letter-spacing: 0.3px;
}

/* ---------- About CTA ---------- */
.about-cta {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}
.about-cta h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
.about-cta p {
  color: var(--grey-500);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About Responsive ---------- */
@media (max-width: 1024px) {
  .about-hero h1 { font-size: 3rem; }
  .about-story-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .about-hero { padding: 64px 0 48px; }
  .about-hero h1 { font-size: 2.4rem; letter-spacing: -1.2px; }
  .about-hero-stats {
    flex-wrap: wrap;
    padding-top: 32px;
    margin-top: 36px;
  }
  .about-hero-stat {
    flex: 0 0 50%;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .about-hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .about-hero-stat:last-child,
  .about-hero-stat:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .about-cta h2 { font-size: 1.8rem; }
}

@media (max-width: 576px) {
  .about-hero { padding: 52px 0 40px; }
  .about-hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .about-hero > .container > .about-hero-inner > p { font-size: 0.92rem; }
  .about-hero-stat .hs-num { font-size: 1.7rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; }
  .about-stat-card .stat-num { font-size: 1.9rem; }
  .about-cta { padding: 56px 0; }
  .about-cta h2 { font-size: 1.5rem; }

  /* Value cards — center align on mobile */
  .value-card { text-align: center; }
  .vc-icon { margin-left: auto; margin-right: auto; }
}
