/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE — aboutus.css
   Legion Twelve — All sections styled to match site design system
   ═══════════════════════════════════════════════════════════ */

/* ── Shared label / rule utilities for this page ─── */
.au-section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
  text-align: center;
  max-width: none;
  width: 100%;
  display: block;
}
.au-section-label--light {
  color: var(--parchment);
  opacity: 0.7;
}
.au-section-rule {
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--s6);
}
.au-section-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Shared button styles (if not already in style.css) ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--crimson);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--crimson);
  border-radius: 2px;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
.btn-primary:hover {
  background: var(--crimson-bright);
  border-color: var(--crimson-bright);
  transform: translateY(-2px);
}
.btn-primary--lg {
  font-size: var(--text-base);
  padding: 1rem 2.8rem;
}
.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--gold);
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--gold);
  border-radius: 2px;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.btn-ghost--lg {
  font-size: var(--text-base);
  padding: 1rem 2.8rem;
}

/* ══════════════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════════════ */
.au-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.au-hero__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
}
.au-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    color-mix(in oklch, var(--crimson) 30%, transparent) 0%,
    var(--navy-deep) 60%);
  pointer-events: none;
}
.au-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  text-align: center;
  padding: clamp(var(--s16), 10vw, var(--s32)) var(--s6);
}
.au-hero__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s4);
  text-align: center !important;
  max-width: none !important;
  width: 100% !important;
  display: block !important;
}
.au-hero__rule {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto var(--s6);
}
.au-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s8);
}
.au-hero__title span:nth-child(2) {
  color: var(--crimson);
  -webkit-text-stroke: 0px;
}
.au-hero__title span:nth-child(3) {
  color: var(--parchment);
  font-size: clamp(3.2rem, 11vw, 8rem);
}
.au-hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-align: center !important;
  max-width: none !important;
  width: 100% !important;
  display: block !important;
}
.au-hero--martyrs .au-hero__sub {
  color: var(--crimson-bright);
  opacity: 1;
}
.au-hero--martyrs {
  min-height: 100vh;
  justify-content: center;
}
.au-hero--martyrs .au-hero__content {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.au-hero__scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.au-hero__scroll-cue span {
  display: block;
  width: 2px; height: 8px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 2px;
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
.au-hero__scroll-cue span:nth-child(2) { animation-delay: 0.2s; }
.au-hero__scroll-cue span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 0.7; transform: scaleY(1); }
}

/* ══════════════════════════════════════════════════
   WHO WE ARE
   ══════════════════════════════════════════════════ */
.au-who {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.au-who__cross-bg {
  display: none;
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.08;
  pointer-events: none;
}
.au-who__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
}
.au-who__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s7);
}
.au-who__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--parchment);
  opacity: 0.85;
  max-width: 52ch;
  margin-bottom: var(--s5);
}

/* Pillars row */
.au-who__pillars {
  display: flex;
  gap: var(--s4);
  margin-top: var(--s8);
  flex-wrap: wrap;
}
.au-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  border: 1px solid color-mix(in oklch, var(--gold) 30%, transparent);
  border-top: 3px solid var(--gold);
  background: color-mix(in oklch, var(--navy-deep) 60%, transparent);
  padding: var(--s5) var(--s6);
  min-width: 100px;
  flex: 1;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.2s, border-color 0.2s;
}
.au-pillar:hover {
  transform: translateY(-4px);
  border-top-color: var(--crimson);
}
.au-pillar__cross {
  display: block;
  margin-bottom: var(--s1);
}
.au-pillar__strong {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.au-pillar__word {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.8;
}

/* Right card */
.au-who__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.au-who__card {
  background: color-mix(in oklch, var(--navy-deep) 80%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 20%, transparent);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s10) var(--s8);
  backdrop-filter: blur(12px);
  max-width: 480px;
  width: 100%;
}
.au-who__card-cross {
  margin-bottom: var(--s6);
}
.au-who__card-quote {
  margin-bottom: var(--s8);
}
.au-who__card-quote p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.65;
  margin-bottom: var(--s4);
}
.au-who__card-quote footer {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* Trait bars */
.au-who__traits {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.au-trait {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.au-trait__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  min-width: 70px;
  opacity: 0.8;
}
.au-trait__bar {
  flex: 1;
  height: 4px;
  background: color-mix(in oklch, var(--white) 10%, transparent);
  border-radius: 2px;
  overflow: hidden;
}
.au-trait__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.au-trait__fill.animated {
  transform: scaleX(1);
}

/* ══════════════════════════════════════════════════
   OUR MISSION
   ══════════════════════════════════════════════════ */
.au-mission {
  position: relative;
  background: var(--crimson);
  overflow: hidden;
}
.au-mission::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-red);
  background-size: 40px 40px;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(330deg) brightness(0.4);
  pointer-events: none;
}
.au-mission__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(var(--s10), 8vw, var(--s24));
  align-items: center;
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
  max-width: 1200px;
  margin: 0 auto;
}
.au-mission__label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
}
.au-mission__cross-stack {
  margin-top: var(--s6);
}
.au-mission__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: var(--s6);
}
.au-mission__latin {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════
   THE FOUR VIRTUES
   ══════════════════════════════════════════════════ */
.au-virtues {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
}
.au-virtues__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}
.au-virtues__header {
  text-align: center;
  margin-bottom: clamp(var(--s10), 5vw, var(--s16));
}
.au-virtues__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.au-virtues__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  max-width: 1200px;
  margin: 0 auto;
}
.au-virtue {
  background: color-mix(in oklch, var(--navy) 80%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--s8) var(--s6);
  text-align: center;
  transition: transform 0.22s, border-top-color 0.22s;
  backdrop-filter: blur(8px);
}
.au-virtue:nth-child(odd) { border-top-color: var(--gold); }
.au-virtue:nth-child(even) { border-top-color: var(--crimson); }
.au-virtue:hover { transform: translateY(-6px); }
.au-virtue__icon {
  margin-bottom: var(--s5);
}
.au-virtue__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: var(--s4);
}
.au-virtue__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--parchment);
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════
   THE VISION
   ══════════════════════════════════════════════════ */
.au-vision {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.au-vision__cross-bg {
  display: none;
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.07;
  pointer-events: none;
}
.au-vision__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 8vw, var(--s24));
  align-items: start;
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
  max-width: 1200px;
  margin: 0 auto;
}
.au-vision__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s8);
}
.au-vision__adams {
  border-left: 3px solid var(--gold);
  padding-left: var(--s6);
  margin: 0;
}
.au-vision__adams p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.7;
  margin-bottom: var(--s3);
  opacity: 0.85;
}
.au-vision__adams footer {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.au-vision__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: var(--s6);
  max-width: 60ch;
}
.au-vision__divider {
  width: 48px; height: 2px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: var(--s6);
}
.au-vision__cta-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: var(--s8);
}
.au-vision__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FOUNDERS
   ══════════════════════════════════════════════════ */
.au-founders {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
  overflow: hidden;
}
.au-founders::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.08;
  pointer-events: none;
}
.au-founders__header {
  text-align: center;
  margin-bottom: clamp(var(--s10), 5vw, var(--s16));
  position: relative; z-index: 1;
}
.au-founders__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.au-founders__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 5vw, var(--s20));
  max-width: 1100px;
  margin: 0 auto;
}
.au-founder {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  background: color-mix(in oklch, var(--navy) 60%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 18%, transparent);
  border-radius: var(--radius-md);
  transition: transform 0.22s;
  padding: var(--s5);
}
.au-founder:hover { transform: translateY(-4px); }
.au-founder__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: color-mix(in oklch, var(--navy-deep) 90%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: calc(var(--s5) * -1) calc(var(--s5) * -1) 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.au-founder__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.au-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.au-founder__corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.au-founder__corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.au-founder__corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.au-founder__info {
  padding: 0;
}
.au-founder__role {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: var(--s2);
}
.au-founder__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--s4);
}

/* Three-column grid: shrink name so it fits without wrapping awkwardly */
.au-founders__grid--three .au-founder__name {
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  letter-spacing: 0.01em;
}
.au-founder__bio {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--parchment);
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════ */
.au-final-cta {
  position: relative;
  background: var(--crimson);
  overflow: hidden;
}
.au-final-cta__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-red);
  background-size: 40px 40px;
  filter: brightness(0) invert(1) opacity(0.12);
  pointer-events: none;
}
.au-final-cta__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(var(--s16), 8vw, var(--s32)) var(--s6);
  max-width: 1200px;
  margin: 0 auto;
}
.au-final-cta__cross {
  margin-bottom: var(--s6);
}
.au-final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: var(--s6);
}
.au-final-cta__sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: var(--s10);
}
.au-final-cta__actions {
  display: flex;
  gap: var(--s5);
  flex-wrap: wrap;
  justify-content: center;
}
.au-final-cta__actions .btn-primary {
  background: var(--navy-deep) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy-deep) !important;
}
.au-final-cta__actions .btn-primary:hover {
  background: var(--crimson) !important;
  color: var(--white) !important;
  border: 2px solid var(--crimson) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.au-final-cta__actions .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}
.au-final-cta__actions .btn-ghost:hover {
  background: var(--white);
  color: var(--crimson);
}

/* ══════════════════════════════════════════════════
   ACTIVE NAV STATE
   ══════════════════════════════════════════════════ */
.nav__active {
  color: var(--gold) !important;
  position: relative;
}
.nav__active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .au-who__grid,
  .au-vision__inner,
  .au-mission__inner {
    grid-template-columns: 1fr;
  }
  .au-virtues__grid {
    grid-template-columns: 1fr 1fr;
  }
  .au-founders__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .au-who__card {
    max-width: 100%;
  }
  .au-mission__inner {
    gap: var(--s8);
  }
}
@media (max-width: 600px) {
  .au-virtues__grid {
    grid-template-columns: 1fr;
  }
  .au-who__pillars {
    gap: var(--s3);
  }
  .au-vision__actions {
    flex-direction: column;
  }
  .au-final-cta__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════════════════
   FORTY MARTYRS OF SEBASTE SECTION
   ══════════════════════════════════════════════════ */
.au-martyrs {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(var(--s16), 8vw, var(--s32)) 0;
}
.au-martyrs__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}
.au-martyrs__inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* Header */
.au-martyrs__header {
  text-align: center;
  margin-bottom: clamp(var(--s12), 6vw, var(--s20));
}
.au-martyrs__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s5);
  text-align: center;
}
.au-martyrs__subhead {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  text-align: center;
  max-width: none;
  width: 100%;
  display: block;
}

/* Two-column content */
.au-martyrs__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
  margin-bottom: clamp(var(--s12), 5vw, var(--s16));
}

/* Left — story text */
.au-martyrs__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: var(--s5);
  max-width: 62ch;
}
.au-martyrs__body--lead {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  opacity: 1;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: var(--s7);
}
.au-martyrs__body em {
  font-style: italic;
  color: var(--gold);
  opacity: 1;
}

/* Right — meaning card + stats */
.au-martyrs__meaning {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}
.au-martyrs__meaning-card {
  background: color-mix(in oklch, var(--crimson) 15%, var(--navy) 85%);
  border: 1px solid color-mix(in oklch, var(--crimson) 40%, transparent);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius-md);
  padding: var(--s8) var(--s8);
  backdrop-filter: blur(8px);
}
.au-martyrs__meaning-cross {
  margin-bottom: var(--s5);
}
.au-martyrs__meaning-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: var(--s5);
  line-height: 1.2;
}
.au-martyrs__meaning-body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--parchment);
  opacity: 0.85;
  margin-bottom: var(--s4);
}
.au-martyrs__meaning-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin: var(--s5) 0;
}
.au-martyrs__meaning-motto {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* Stat callouts */
.au-martyrs__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.au-martyrs__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: color-mix(in oklch, var(--navy) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 20%, transparent);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s5) var(--s4);
  gap: var(--s2);
}
.au-martyrs__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.au-martyrs__stat-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.7;
  line-height: 1.3;
}

/* Bottom quote bar */
.au-martyrs__quote-bar {
  display: flex;
  align-items: center;
  gap: var(--s7);
  background: color-mix(in oklch, var(--navy) 60%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s7) var(--s8);
  backdrop-filter: blur(6px);
}
.au-martyrs__quote-bar-cross {
  flex-shrink: 0;
  align-self: center;
  margin-left: var(--s3);
}
.au-martyrs__quote-bar-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.7;
  color: var(--parchment);
  opacity: 0.85;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .au-martyrs__content {
    grid-template-columns: 1fr;
  }
  .au-martyrs__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .au-martyrs__stats {
    grid-template-columns: 1fr;
  }
  .au-martyrs__quote-bar {
    flex-direction: column;
    gap: var(--s3);
  }
}

/* ══════════════════════════════════════════════════════════════
   FOUNDER'S LETTER
   ══════════════════════════════════════════════════════════════ */
.au-letter {
  padding-block: clamp(var(--s16), 7vw, var(--s24));
  background: color-mix(in oklch, var(--navy-deep) 60%, var(--navy));
  border-top: 1px solid color-mix(in oklch, var(--gold) 12%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 12%, transparent);
}
.au-letter__inner { max-width: 700px; margin-inline: auto; padding-inline: var(--s6); }
.au-letter__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--parchment);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: var(--s8);
}
.au-letter__body { display: flex; flex-direction: column; gap: var(--s5); }
.au-letter__salutation {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--gold);
}
.au-letter__body p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in oklch, var(--parchment) 85%, transparent);
}
.au-letter__close {
  font-family: var(--font-display) !important;
  font-size: var(--text-sm) !important;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
  margin-top: var(--s4);
}
.au-letter__sig {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-top: var(--s4);
  border-top: 1px solid color-mix(in oklch, var(--gold) 20%, transparent);
}
.au-letter__sig strong {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--parchment);
}
.au-letter__sig span { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ══════════════════════════════════════════════════════════════
   THREE-COLUMN FOUNDERS GRID
   ══════════════════════════════════════════════════════════════ */
.au-founders__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  gap: clamp(var(--s10), 4vw, var(--s16));
}
@media (max-width: 900px) {
  .au-founders__grid--three {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   THREE ARCHETYPES
   ══════════════════════════════════════════════════════════════ */
.au-archetypes {
  padding-block: clamp(var(--s16), 7vw, var(--s24));
  background: var(--navy-deep);
}
.au-archetypes__header { text-align: center; margin-bottom: var(--s12); }
.au-archetypes__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--parchment);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: var(--s4);
}
.au-archetypes__sub {
  max-width: 56ch;
  margin-inline: auto;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.au-archetypes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
@media (max-width: 768px) {
  .au-archetypes__grid { grid-template-columns: 1fr; }
}
.au-archetype {
  background: color-mix(in oklch, var(--navy) 60%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.au-archetype:hover {
  border-color: color-mix(in oklch, var(--gold) 35%, transparent);
  transform: translateY(-3px);
}
.au-archetype__icon { margin-bottom: var(--s2); }
.au-archetype__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--parchment);
  letter-spacing: 0.06em;
}
.au-archetype__verse {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin: 0;
}
.au-archetype__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}
.au-archetypes__footer {
  text-align: center;
  margin-top: var(--s10);
  max-width: 64ch;
  margin-inline: auto;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   FORMATION PRACTICES
   ══════════════════════════════════════════════════════════════ */
.au-practices {
  position: relative;
  padding-block: clamp(var(--s16), 7vw, var(--s24));
  background: var(--navy);
}
.au-practices__cross-bg {
  position: absolute;
  inset: 0;
  background-image: url('cross-potent.svg');
  background-repeat: space;
  background-size: 32px 32px;
  opacity: 0.025;
  pointer-events: none;
}
.au-practices__header { text-align: center; margin-bottom: var(--s12); }
.au-practices__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--parchment);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: var(--s4);
}
.au-practices__sub {
  max-width: 58ch;
  margin-inline: auto;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.au-practices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
@media (max-width: 900px) {
  .au-practices__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .au-practices__grid { grid-template-columns: 1fr; }
}
.au-practice {
  background: color-mix(in oklch, var(--navy-deep) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--crimson) 20%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.au-practice:hover {
  border-color: color-mix(in oklch, var(--crimson) 45%, transparent);
  transform: translateY(-3px);
}
.au-practice__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: color-mix(in oklch, var(--crimson-bright) 30%, transparent);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.au-practice__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--parchment);
  letter-spacing: 0.05em;
}
.au-practice__tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.au-practice__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--color-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONSTITUTION (namesake.html)
   ══════════════════════════════════════════════════════════════ */
.au-constitution {
  margin-top: var(--s16);
  padding-top: var(--s12);
  border-top: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
}
.au-constitution__header { text-align: center; margin-bottom: var(--s10); }
.au-constitution__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--parchment);
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-align: center;
  max-width: none;
  width: 100%;
}
.au-constitution__articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}
@media (max-width: 640px) {
  .au-constitution__articles { grid-template-columns: 1fr; }
}
.au-article {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.au-article__cross { flex-shrink: 0; margin-top: 3px; }
.au-article__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--s2);
}
.au-article__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SHIELD FRAMEWORK — theplan.html
   ═══════════════════════════════════════════════════ */

/* ── Shield Intro (replaces au-who) ── */
.shield-intro {
  position: relative;
  background: var(--navy-deep);
  padding: 120px 0 100px;
  overflow: hidden;
}
.shield-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.shield-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--parchment);
  line-height: 1.05;
  margin: var(--s6) 0 var(--s8);
}
.shield-intro__lead {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--parchment);
  line-height: 1.75;
  margin-bottom: var(--s6);
  max-width: 56ch;
}
.shield-intro__body-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(245,240,220,0.92);
  line-height: 1.8;
  margin-bottom: var(--s5);
  max-width: 60ch;
}
.shield-intro__body-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* Center call badge */
.shield-center-call {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s2);
  border-left: 3px solid var(--crimson);
  padding: var(--s5) var(--s7);
  background: rgba(139,26,26,0.10);
  border-radius: 0 6px 6px 0;
  margin: var(--s6) 0 var(--s8);
}
.shield-center-call__cross { margin-bottom: var(--s2); }
.shield-center-call__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.12em;
  color: var(--parchment);
  margin: 0;
  line-height: 1.2;
}
.shield-center-call__sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.04em;
}

/* ── Four Pillars Section ── */
.shield-pillars {
  background: var(--navy);
  padding: 100px 0 90px;
  position: relative;
}
.shield-pillars__header { text-align: center; margin-bottom: var(--s12); }
.shield-pillars__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: 0.08em;
  color: var(--parchment);
  line-height: 1.1;
  margin: var(--s4) 0 var(--s5);
}
.shield-pillars__sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(245,240,220,0.92);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}
.shield-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.shield-pillar-card {
  background: rgba(14,17,24,0.6);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  padding: var(--s8) var(--s7);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.shield-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
}
.shield-pillar-card__icon { margin-bottom: var(--s5); }
.shield-pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.shield-pillar-card__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.98rem;
  color: rgba(245,240,220,0.92);
  line-height: 1.75;
  margin: 0;
}

/* ── Seven Domains Section ── */
.shield-domains {
  background: var(--navy-deep);
  padding: 100px 0 90px;
  position: relative;
}
.shield-domains__header { text-align: center; margin-bottom: var(--s12); }
.shield-domains__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: 0.08em;
  color: var(--parchment);
  line-height: 1.1;
  margin: var(--s4) 0 var(--s5);
}
.shield-domains__sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(245,240,220,0.92);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}
.shield-domains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
/* 7 items — last row: 3 centered */
.shield-domain:nth-child(5) { grid-column: 1; }
.shield-domains__grid .shield-domain:nth-last-child(-n+3):first-child ~ .shield-domain:nth-last-child(-n+3) {
  /* handled via JS or just let flow naturally — 4+3 grid looks fine */
}
.shield-domain {
  background: rgba(26,30,46,0.7);
  border-top: 2px solid var(--crimson);
  padding: var(--s7) var(--s6);
  border-radius: 0 0 4px 4px;
  transition: border-color 0.2s ease;
}
.shield-domain:hover { border-top-color: var(--gold); }
.shield-domain__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--crimson);
  display: block;
  margin-bottom: var(--s3);
}
.shield-domain__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--parchment);
  margin-bottom: var(--s4);
}
.shield-domain__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(245,240,220,0.92);
  line-height: 1.72;
  margin: 0;
}

/* Practice domain tag */
.au-practice__domain {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: var(--s4);
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .shield-intro__inner { grid-template-columns: 1fr; gap: var(--s10); }
  .shield-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .shield-domains__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .shield-pillars__grid { grid-template-columns: 1fr; }
  .shield-domains__grid { grid-template-columns: 1fr; }
  .shield-intro { padding: 80px 0 70px; }
}

/* ═══════════════════════════════════════════════════
   SHIELD WHEEL SECTION
   ═══════════════════════════════════════════════════ */
.shield-wheel-section {
  background: var(--navy-deep);
  padding: 0 0 60px;
  position: relative;
  overflow: hidden;
}

@keyframes hubPulse {
  0%, 100% { filter: url(#hubGlow); opacity: 1; }
  50% { opacity: 0.82; }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.shield-wheel-section__header {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 32px;
}
.shield-wheel-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.08em;
  color: var(--parchment);
  line-height: 1.1;
  margin: var(--s4) 0 var(--s5);
}
.shield-wheel-section__sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(245,240,220,0.92);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}
.shield-wheel-section__diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.wheel-wrap {
  position: relative;
  width: min(560px, 88vw);
  height: min(560px, 88vw);
}

/* ═══════════════════════════════════════════════════
   FORMATION CATEGORIES GRID
   ═══════════════════════════════════════════════════ */
.formation-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s7);
  margin-top: var(--s6);
}
.fcat {
  background: rgba(14,17,24,0.55);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: var(--s8) var(--s7);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fcat:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.fcat__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--crimson);
  margin-bottom: var(--s3);
}
.fcat__title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--s5);
}
.fcat__body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.98rem;
  color: rgba(245,240,220,0.92);
  line-height: 1.78;
  margin-bottom: var(--s5);
}
.fcat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.fcat__list li {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.9rem;
  color: rgba(245,240,220,0.92);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  max-width: 100%;
}
.fcat__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--crimson);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .formation-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .formation-cats { grid-template-columns: 1fr; }
  .wheel-wrap { width: min(92vw, 420px); height: min(92vw, 420px); }
}
