.about-page { min-height: 70vh; }
.about-hero { padding-bottom: clamp(3rem, 6vw, 5rem); }
.about-hero h1 {
  max-width: none;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.about-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0.8rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.about-section-alt {
  max-width: none;
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-section-alt .about-layout { max-width: 1200px; margin: 0 auto; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-layout-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}
.about-copy { max-width: 760px; }
.about-copy h2 { margin-bottom: 1.2rem; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-copy strong { color: var(--text); }
.about-principles {
  padding: 1.5rem;
  background: rgba(23, 21, 18, 0.96);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.about-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.about-principle:first-of-type { border-top: 0; }
.about-principle > span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(185, 139, 71, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
}
.about-principle h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.about-principle p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.about-statement {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(145deg, var(--panel-2), #111);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.about-statement p {
  margin: 0;
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.45;
}
.about-community { max-width: 900px; }
.about-community p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}
.about-closing {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
}
.about-closing > p:not(.eyebrow):not(.about-tagline) {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.about-tagline {
  margin: 2rem 0 0;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 820px) {
  .about-layout,
  .about-layout-reverse { grid-template-columns: 1fr; }
  .about-copy { max-width: none; }
}
@media (max-width: 520px) {
  .about-principles,
  .about-statement { padding: 1.25rem; }
  .about-actions { display: grid; }
  .about-actions .button { width: 100%; }
}
