/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — supplemental styles
═══════════════════════════════════════════════════════════ */

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero--about {
  background: var(--navy);
  padding: 9rem var(--pad-x) 5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background for about hero */
.page-hero--about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero--about .page-hero__inner { position: relative; z-index: 1; max-width: 760px; }

.page-hero--about h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.6rem 0 1.2rem;
}

.page-hero--about p {
  font-size: 1.05rem;
  color: rgba(248,246,240,0.62);
  max-width: 500px;
  line-height: 1.7;
}

.page-hero__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin-top: 3rem;
}


/* ── History Timeline ─────────────────────────────────────── */
.history-section {
  background: var(--cream);
  padding: 6rem 0;
}

.history-block {
  padding: 0 0 4rem;
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 2rem;
  position: relative;
}

/* Gold dot on the timeline line */
.history-block::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* Year label — sits inline above the heading */
.history-block__year {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.history-block__content { display: flex; flex-direction: column; gap: 1rem; }

.history-block__content h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.history-block__content p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.history-block__content p strong { color: var(--navy); font-weight: 600; }

.history-block:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

@media (max-width: 680px) {
  .history-block {
    padding-left: 1.5rem;
  }
}


/* ── Notable Members ──────────────────────────────────────── */
.members-section {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.members-intro {
  font-size: 0.93rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-top: 0.5rem;
  line-height: 1.7;
}

/* Featured member card */
.member-featured {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 3rem;
  margin: 2.5rem 0 3.5rem;
}

.member-featured__glyph {
  color: var(--gold);
  opacity: 0.65;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.member-featured__role {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.member-featured__text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
}

.member-featured__dates {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin: 0.3rem 0 1.2rem;
}

.member-featured__text p {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.member-featured__text p:last-child { margin-bottom: 0; }
.member-featured__text p em { font-style: italic; color: var(--navy); }
.member-featured__text p strong { color: var(--navy); font-weight: 600; }

@media (max-width: 680px) {
  .member-featured {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }
  .member-featured__glyph { display: none; }
}

/* Charter members grid */
.charter-grid { margin-top: 1rem; }

.charter-grid__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15,30,61,0.1);
}

.charter-grid__members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(15,30,61,0.08);
  border: 1px solid rgba(15,30,61,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.charter-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
}

.charter-card__name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.charter-card__trade {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.charter-card--add {
  background: var(--cream);
}
.charter-card--add .charter-card__name {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.9rem;
}
.charter-card--add .charter-card__trade a {
  color: var(--gold);
  font-size: 0.75rem;
}


/* ── Community Section ────────────────────────────────────── */
.community-section {
  background: var(--cream);
  padding: 6rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.community-intro {
  font-size: 0.93rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-top: 0.5rem;
  line-height: 1.7;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.community-card {
  background: var(--white);
  border: 1px solid rgba(15,30,61,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color var(--transition);
}
.community-card:hover { border-color: rgba(201,168,76,0.45); }

.community-card__icon { color: var(--gold); }

.community-card h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.community-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .community-grid { grid-template-columns: 1fr; }
}


/* ── Sacred Roll ──────────────────────────────────────────── */
.sacred-roll {
  background: var(--navy);
  padding: 6rem 0;
  color: var(--cream);
}

.sacred-roll__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.sacred-roll__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4));
}
.sacred-roll__rule:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.4), transparent);
}

.sacred-roll__title-block { flex-shrink: 0; }

.sacred-roll .label--light { color: rgba(201,168,76,0.8); }

.sacred-roll h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0.4rem 0 1rem;
}

.sacred-roll p {
  font-size: 0.88rem;
  color: rgba(248,246,240,0.55);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Roll entries */
.roll-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.roll-entry {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.roll-entry__symbol { color: var(--gold); opacity: 0.5; }

.roll-entry__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.roll-entry__dates {
  font-size: 0.78rem;
  color: rgba(248,246,240,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.roll-entry__note {
  grid-column: 2 / -1;
  font-size: 0.75rem;
  color: rgba(248,246,240,0.35);
  letter-spacing: 0.04em;
  margin-top: -0.5rem;
}

.roll-entry--placeholder .roll-entry__name {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(248,246,240,0.3);
  font-style: italic;
}

.roll-note {
  max-width: 680px;
  margin: 2.5rem auto 0;
  font-size: 0.78rem;
  color: rgba(248,246,240,0.35);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 560px) {
  .sacred-roll__header { grid-template-columns: 1fr; }
  .sacred-roll__rule { display: none; }
  .roll-entry { grid-template-columns: 24px 1fr; }
  .roll-entry__dates { display: none; }
}
