/* ===== SABII AUTO — ABOUT PAGE CSS ===== */

.about-ph {
  position: relative;
  overflow: hidden;
}

.aph-bg {
  position: absolute;
  inset: 0;
}

.aph-bg svg { width: 100%; height: 100%; }

/* STORY */
.story-section {
  padding: 8rem 0;
  background: var(--bg2);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.story-text h2 { margin: 0.5rem 0 1.5rem; }
.story-text p { color: var(--cream-dim); margin-bottom: 1.25rem; line-height: 1.75; }

.story-timeline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 2.5rem;
}

.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.tl-item:last-child { border-bottom: none; }
.tl-item.active .tl-year { color: var(--orange); }
.tl-item.active .tl-body h4 { color: var(--orange); }

.tl-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--steel-light);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.tl-body h4 {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.tl-body p { font-size: 0.875rem; color: var(--cream-dim); }

/* VALUES */
.values-section {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.vs-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(240,90,0,0.015) 40px,
    rgba(240,90,0,0.015) 41px
  );
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.value-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  transition-delay: calc(var(--i,0) * 0.1s);
}

.value-card:hover { background: var(--surface2); }

.vc-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(240,90,0,0.06);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.vc-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.value-card p { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.65; }

/* TEAM */
.team-section {
  padding: 8rem 0;
  background: var(--bg2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  transition-delay: calc(var(--i,0)*0.1s);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.team-card:hover { transform: translateY(-6px); border-color: rgba(240,90,0,0.3); }

.tc-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  color: #fff;
}

.tc-avatar {
  width: 70px;
  height: 70px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 auto 1.5rem;
}

.team-card h3 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.tc-role {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.tc-bio { color: var(--cream-dim); font-size: 0.875rem; margin-bottom: 1.25rem; }

.tc-certs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tc-certs span {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}

/* WORKSHOP */
.workshop-section {
  padding: 8rem 0;
  background: var(--bg);
}

.ws-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.ws-text h2 { margin: 0.5rem 0 1.25rem; }
.ws-text p { color: var(--cream-dim); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.75; }

.ws-specs {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ws-spec { display: flex; flex-direction: column; }

.ws-n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1;
}

.ws-spec span:last-child {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.ws-visual { flex-shrink: 0; }

.ws-shape {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240,90,0,0.25);
}

.r1 { inset: 0; animation: spinSlow 12s linear infinite; }
.r2 { inset: 20px; border-style: dashed; animation: spinSlow 8s linear infinite reverse; }

.ws-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ws-icon {
  font-size: 3rem;
  display: block;
  color: var(--orange);
  animation: spinSlow 6s linear infinite;
}

.ws-center p {
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  margin-top: 0.5rem;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CTA BAND (shared from home) */
.cta-band { position: relative; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg svg { width: 100%; height: 100%; }
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; padding-top: 4rem; padding-bottom: 4rem; flex-wrap: wrap;
}
.btn-cta-band {
  background: #fff; color: var(--orange);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  white-space: nowrap; font-size: 1rem;
}
.btn-cta-band:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .ws-card { grid-template-columns: 1fr; }
  .ws-visual { display: none; }
}

@media (max-width: 600px) {
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .ws-specs { gap: 1.5rem; flex-wrap: wrap; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
