/* =========================================
   ABOUT PAGE — story section layout
   ========================================= */

.about-story {
  padding: 100px 48px;
  background: var(--bg-2);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-story-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-story-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.about-story-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-story-body:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .about-story {
    padding: 80px 24px;
  }
}
