/*
 * about.css
 * Styles specific to the /about page.
 * Depends on styles.css being loaded first for design tokens.
 */

/* =========================================================
   PAGE HERO
   ========================================================= */
.page-hero {
  position: relative;
  height: 48vh;
  min-height: 360px;
  max-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.6) 0%,
    rgba(10, 9, 7, 0.4) 40%,
    rgba(10, 9, 7, 0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.18s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.6rem;
  opacity: 0.6;
}

.breadcrumb span {
  color: var(--gold);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  max-width: 660px;
  line-height: 1.2;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-hero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.6;
}

/* =========================================================
   OUR FOUNDATION (TEXT-ONLY EDITORIAL LAYOUT)
   ========================================================= */
.about-story {
  padding: 110px 0;
  background: var(--cream);
}

.editorial-foundation {
  max-width: 780px;
  margin: 0 auto;
}

.editorial-foundation h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 12px 0 24px;
  color: var(--text-dark);
}

.editorial-foundation p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.editorial-foundation p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   THREEFOLD MISSION (EDITORIAL LIST)
   ========================================================= */
.about-mandate-list {
  padding: 90px 0;
  background: var(--cream-2);
}

.about-mandate-list .section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

.mandate-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.mandate-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(20, 18, 14, 0.1);
}

.mandate-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mandate-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
  flex: none;
}

.mandate-text-block h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.mandate-text-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

/* =========================================================
   WHAT GOVERNS OUR HOUSE (NON-GENERIC 2x2 GRID)
   ========================================================= */
.about-beliefs {
  background: var(--cream);
  padding: 110px 0;
}

.about-beliefs-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.convictions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.conviction-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.conviction-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.conviction-header i {
  color: var(--gold-deep);
  font-size: 1.1rem;
  flex: none;
}

.conviction-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.conviction-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 980px) {
  .convictions-grid {
    gap: 36px 32px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    height: 42vh;
    min-height: 280px;
  }

  .page-hero-content {
    padding-bottom: 30px;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .page-hero p {
    font-size: 0.88rem;
  }

  .about-story,
  .about-mandate-list,
  .about-beliefs {
    padding: 70px 0;
  }

  .editorial-foundation h2,
  .about-mandate-list .section-head h2,
  .about-beliefs-head h2 {
    font-size: 1.6rem;
  }

  .editorial-foundation p {
    font-size: 0.95rem;
  }

  .mandate-item {
    gap: 20px;
  }

  .mandate-num {
    font-size: 1.8rem;
  }

  .convictions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
