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

/* Hero header */
.about-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, #1a1410 0%, #0f0d0b 100%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.about-hero-logo {
  margin: 0 auto 1.5rem;
  width: 96px;
  height: 96px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(201,168,76,0.08);
}

.about-hero-logo img {
  width: 62px;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.45));
}

.about-hero-slogan {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.8rem;
}

/* Active nav link */
.nav-links a.active {
  color: var(--gold);
}

/* =============================================
   STORY SECTION
   ============================================= */
.about-story {
  padding: 6rem 0;
  background: #0f0d0b;
}

.about-story-container {
  max-width: 780px;
}

.story-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
}

.story-chapter-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.3rem;
  position: sticky;
  top: 7rem;
}

.story-content p {
  color: #b5afa6;
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.story-content p em {
  color: var(--white);
  font-style: italic;
}

.story-content p:last-child { margin-bottom: 0; }

.story-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.25), transparent);
  margin: 4rem 0;
}

/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.about-pillar {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.pillar-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--crimson-lt);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  padding-top: 0.05rem;
}

.pillar-body strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.pillar-body p {
  color: #b5afa6;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   FOUNDERS SECTION
   ============================================= */
.founders-section {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #0f0d0b 0%, #161210 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.founders-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Two-photo layout (kept for fallback) */
.founders-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

/* Single wide photo layout */
.founders-single {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.founders-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.08);
  aspect-ratio: 4/5;
}

.founders-photo-wide {
  aspect-ratio: 3/2;
}

.founders-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

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

.founders-sign {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.founders-sign p {
  font-size: 1rem;
  color: #b5afa6;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.founders-sign span {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 700px) {
  .story-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .story-chapter-label {
    position: static;
  }
  .founders-single {
    max-width: 100%;
  }
  .founders-photo-wide {
    aspect-ratio: 4/3;
  }
}
