/* ABOUT PAGE */

.about-body {
  padding: 5rem 0 6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}

/* SIDEBAR */
.about-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-inner {
  border-top: 2px solid var(--gold);
  padding-top: 1.5rem;
}

.sidebar-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
}

.sidebar-link {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.8rem;
  transition: all 0.2s;
  line-height: 1.4;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--ink);
  border-left-color: var(--gold);
}

.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.ss-item { display: flex; flex-direction: column; gap: 0.2rem; }

.ss-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.ss-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ARTICLE */
.about-article {
  max-width: 680px;
}

.story-section {
  margin-bottom: 1rem;
}

.story-year {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}

.story-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.about-article p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #3d3830;
  margin-bottom: 1.3rem;
}

.story-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}
.story-divider::before,
.story-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.now-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-sidebar {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
  }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .sidebar-link { border-left: none; border-bottom: 2px solid transparent; padding-left: 0; padding-bottom: 0.3rem; }
  .sidebar-link:hover,
  .sidebar-link.active { border-left-color: transparent; border-bottom-color: var(--gold); }
  .sidebar-stats { flex-direction: row; gap: 2rem; }
}
