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

.about-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 48px 80px;
  overflow: hidden;
  gap: 60px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  margin: 20px 0 28px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-400);
  max-width: 420px;
  line-height: 1.7;
}

.about-hero-logo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* STORY */
.story-section {
  padding: 100px 0;
  border-top: 1px solid var(--grey-200);
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}

.story-quote blockquote {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 48px;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}

.s-stat:last-child {
  border-bottom: none;
}

.s-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}

.s-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.story-body h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  margin: 48px 0 16px;
  color: var(--white);
}

.story-body h2:first-child {
  margin-top: 0;
}

.story-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 600px;
}

/* MATERIALS */
.materials-section {
  padding: 100px 0;
  border-top: 1px solid var(--grey-200);
  background: var(--grey-100);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.material-card {
  padding: 48px;
  background: var(--grey-200);
  transition: background 0.3s;
}

.material-card:hover {
  background: var(--grey-300);
}

.material-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.material-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.75;
}

/* FOUNDERS */
.founders-section {
  padding: 100px 0;
  border-top: 1px solid var(--grey-200);
}

.founders-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founders-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.founders-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founders-ph {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.founders-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  margin: 16px 0 28px;
}

.founders-text > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
}

.founders-names {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.founder-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.founder-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-300);
}

.founders-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 !important;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
  }
  .about-hero-title { font-size: clamp(44px, 12vw, 72px); }
  .about-hero-logo {
    display: none;
  }
  .story-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .founders-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
}

/* ── SA ORIGIN BAND ── */

.sa-origin {
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-100);
  padding: 80px 48px;
}

.sa-origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 80px;
}

.sa-origin-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sa-origin-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.sa-origin-desc {
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 440px;
  margin: 0;
}

.sa-origin-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-map-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  transition: transform 0.4s var(--ease-out);
}

.sa-map-img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .sa-origin {
    padding: 60px 24px;
  }
  .sa-origin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sa-origin-map {
    order: -1;
  }
  .sa-map-img {
    max-width: 260px;
  }
}
