/* ============================================================
   UNIKA — about.css
   ============================================================ */

/* ── STORY SECTION ── */
.about-story {
  background: var(--white);
  padding: 100px 56px;
  border-top: 1px solid var(--light-border);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-story-left {}
.about-story-right {}

.about-story-right .s-title-light {
  margin-bottom: 36px;
}
.about-story-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin-top: 48px;
  padding: 32px 0;
}
.about-stat {
  padding: 0 24px 0 0;
}
.about-stat:first-child { padding-left: 0; }
.about-stat-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-num em { font-style: normal; }
.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── FOUNDER SECTION ── */
.about-founder {
  background: var(--dark2);
  padding: 100px 56px;
  border-top: 1px solid var(--dark-border);
}
.about-founder-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.about-founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1e1e, #282828);
  position: relative;
  flex-shrink: 0;
}
.about-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.about-founder-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}
.about-founder-photo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.about-founder-photo-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--mint);
  margin-top: 2px;
}

.about-founder-content {}
.about-founder-content .s-label { margin-bottom: 24px; }
.about-founder-content .s-title-dark { margin-bottom: 32px; }
.about-founder-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,249,247,0.45);
  margin-bottom: 20px;
}

/* ── VALUES SECTION ── */
.about-values {
  background: var(--off-white);
  padding: 100px 56px;
  border-top: 1px solid var(--light-border);
}
.about-values-header {
  margin-bottom: 56px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--white);
  padding: 40px 40px;
  border: 1px solid var(--light-border);
}
.value-card:nth-child(1) { border-radius: 4px 0 0 0; }
.value-card:nth-child(2) { border-radius: 0 4px 0 0; }
.value-card:nth-child(3) { border-radius: 0 0 0 4px; }
.value-card:nth-child(4) { border-radius: 0 0 4px 0; }
.value-num {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1;
}
.value-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .about-founder-inner {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }
}
@media (max-width: 1024px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-stat {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--light-border);
  }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) { border-bottom: none; }

  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-founder-photo {
    max-width: 320px;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .about-story { padding: 64px 24px; }
  .about-founder { padding: 64px 24px; }
  .about-values { padding: 64px 24px; }

  .about-values-grid { grid-template-columns: 1fr; }
  .value-card { border-radius: 0 !important; }
  .value-card:first-child { border-radius: 4px 4px 0 0 !important; }
  .value-card:last-child { border-radius: 0 0 4px 4px !important; }
}
