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

/* ---- ORIGIN SPLIT ---- */
.origin-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: center;
}
.origin-visual { position: relative; height: 540px; }
.origin-frame { position: absolute; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.origin-frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-a { top: 0; left: 6%; width: 75%; height: 78%; z-index: 2; border: 1px solid rgba(217,154,43,0.18); }
.frame-b { bottom: 0; right: 0; width: 46%; height: 48%; z-index: 3; border: 2px solid var(--turmeric); }
.origin-text .lede { max-width: 560px; }

/* ---- VALUES GRID ---- */
.values-block { background: var(--betel); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: rgba(5,20,19,0.25);
  border: 1px solid rgba(217,154,43,0.2);
  padding: 2.6rem;
}
.value-mark {
  display: block;
  width: 42px; height: 42px;
  margin-bottom: 1.4rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.value-card p { color: rgba(243,234,217,0.82); font-size: 0.92rem; line-height: 1.75; }

/* ---- TEAM GRID ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(217,154,43,0.18);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-silk); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.team-role { display: block; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--turmeric); margin-bottom: 0.8rem; }
.team-card p { color: var(--ink-muted); font-size: 0.88rem; line-height: 1.65; }

/* ---- HISTORY LIST ---- */
.studio-history { background: var(--teal-shadow); }
.history-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(217,154,43,0.16);
}
.history-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(217,154,43,0.16);
  align-items: baseline;
}
.history-year { font-family: var(--font-display); color: var(--turmeric); font-size: 1.3rem; }
.history-row p { color: var(--ink-muted); font-size: 0.96rem; line-height: 1.7; }

@media (max-width: 992px) {
  .origin-grid { grid-template-columns: 1fr; gap: 3rem; }
  .origin-visual { height: 420px; margin-bottom: 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .history-row { grid-template-columns: 1fr; gap: 0.4rem; }
}
