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

/* HERO */
.about-hero {
  min-height: 60vh;
  background: linear-gradient(160deg, var(--color-hero-dark) 0%, var(--color-hero-mid) 60%, var(--color-hero-light) 100%);
  display: flex;
  align-items: flex-end;
  padding: 160px 0 100px;
  color: var(--color-text-on-dark);
  position: relative;
}

.about-hero h1 {
  color: #fff;
  max-width: 700px;
}

/* FOUNDER SECTION */
.founder-section {
  padding: var(--space-2xl) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.founder-photo {
  position: relative;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.founder-photo:hover img {
  transform: scale(1.03);
}

.founder-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

.founder-bio h2 {
  margin-bottom: 8px;
}

.founder-role {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 40px;
}

.founder-bio p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
}

/* STORY SECTION */
.story-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface-alt);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story-section h2 {
  margin-bottom: 36px;
}

.story-section p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}

/* APPROACH SECTION */
.approach-section {
  padding: var(--space-2xl) 0;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.approach-step {
  text-align: left;
  padding: 40px 32px;
  border-top: 1px solid var(--color-border);
  position: relative;
}

.approach-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-brand);
}

.step-number {
  width: auto;
  height: auto;
  background: none;
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-weight: 300;
  display: block;
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

/* RETAINED SECTION */
.retained-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface-alt);
}

.retained-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.retained-section p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
}

.retained-stat {
  background: var(--color-sectors);
  padding: 72px 48px;
  color: var(--color-text-on-dark);
  text-align: center;
}

.retained-stat .stat-number {
  font-size: 72px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -2px;
}

.retained-stat .stat-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1199px) {
  .founder-grid { gap: 64px; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .retained-grid { gap: 64px; }
}

@media (max-width: 767px) {
  .about-hero { padding: 120px 0 72px; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo img { height: 360px; }
  .approach-steps { grid-template-columns: 1fr; gap: 0; }
  .retained-grid { grid-template-columns: 1fr; gap: 48px; }
}
