/* ============================================================
   CRCGS — ABOUT PAGE — about.css
   Prefix: crcgs-abt-
   Variables + reset are SCOPED to .crcgs-abt-root (not :root),
   so this file cannot leak into / collide with any other page,
   and no other stylesheet can affect this page either.
   Brand colours match styles.css / events.css exactly.
   ============================================================ */

/* ── SCOPED RESET ─────────────────────────────────────────── */
.crcgs-abt-root *,
.crcgs-abt-root *::before,
.crcgs-abt-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SCOPED DESIGN TOKENS (BRAND PALETTE) ───────────────────── */
.crcgs-abt-root {
  --abt-navy:        #1D3461;
  --abt-navy-deep:   #111F3D;
  --abt-navy-mid:    #243a6e;
  --abt-navy-light:  #2a4580;
  --abt-gold:        #D4A84A;
  --abt-gold-light:  #E8C97A;
  --abt-gold-pale:   #f5e8c4;
  --abt-orange:      #C4572D;
  --abt-cream:       #F5EDE0;
  --abt-warm-white:  #FDFAF5;
  --abt-pearl:       #FAFAF7;
  --abt-off-white:   #f3efe6;
  --abt-text:        #1A1A2E;
  --abt-muted:       #6B7280;
  --abt-border:      #ddd0b8;
  --abt-border-lt:   #ece5d5;
  --abt-transition:  0.35s cubic-bezier(0.4,0,0.2,1);

  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  color: var(--abt-text);
  background: var(--abt-warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.crcgs-abt-root h1, .crcgs-abt-root h2, .crcgs-abt-root h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.crcgs-abt-root img { max-width: 100%; display: block; }

/* ── FOCUS VISIBILITY ────────────────────────────────────────── */
.crcgs-abt-root a:focus-visible,
.crcgs-abt-root button:focus-visible {
  outline: 2px solid var(--abt-gold);
  outline-offset: 3px;
}

/* ── PAPER-GRAIN NOISE OVERLAY (subtle, ties to "charter" theme) */
.crcgs-abt-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── SHARED: SECTION HEAD / LABEL / TITLE ───────────────────── */
.crcgs-abt-section-head { text-align: center; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.crcgs-abt-section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--abt-orange);
  font-weight: 700;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.crcgs-abt-section-label::before,
.crcgs-abt-section-label::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1px;
  background: var(--abt-orange);
}
.crcgs-abt-section-label--gold { color: var(--abt-gold); }
.crcgs-abt-section-label--gold::before,
.crcgs-abt-section-label--gold::after { background: var(--abt-gold); }
.crcgs-abt-section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 300;
  color: var(--abt-navy);
  line-height: 1.2;
}
.crcgs-abt-section-title em { font-style: italic; color: var(--abt-navy-mid); }
.crcgs-abt-section-title--light { color: var(--abt-warm-white); }
.crcgs-abt-section-title--light em { color: var(--abt-gold-light); }
.crcgs-abt-section-head--light { color: var(--abt-warm-white); }

/* ── SHARED: BUTTONS ─────────────────────────────────────────── */
.crcgs-abt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 2.1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--abt-transition);
  white-space: nowrap;
}
.crcgs-abt-btn-primary {
  background: var(--abt-gold);
  color: var(--abt-navy-deep);
  border-color: var(--abt-gold);
}
.crcgs-abt-btn-primary:hover { background: var(--abt-gold-light); transform: translateY(-2px); }
.crcgs-abt-btn-ghost {
  background: transparent;
  color: var(--abt-warm-white);
  border-color: rgba(253,250,245,0.35);
}
.crcgs-abt-btn-ghost:hover { border-color: var(--abt-gold); color: var(--abt-gold); }

/* ── SHARED: SCROLL REVEAL ───────────────────────────────────── */
/* Default = fully visible. Only once about.js confirms it is running
   does it add ".crcgs-abt-js" to the root, which is what opts these
   sections into the hidden -> reveal-on-scroll animation below. This
   way a blocked/broken script can never leave content stuck invisible. */
.crcgs-abt-js .crcgs-abt-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.crcgs-abt-js .crcgs-abt-reveal.crcgs-abt-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.crcgs-abt-hero {
  position: relative;
  overflow: hidden;
  background: var(--abt-navy);
  padding: 80px clamp(20px, 6vw, 80px) 56px;
}
/* Grid-boxes background removed for a clean hero background */
.crcgs-abt-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 15%, rgba(212,168,74,.10) 0%, transparent 65%);
  pointer-events: none;
}
/* Two-column hero layout — mirrors the home page hero grid so the
   logo emblem sits on the right, exactly like index.html */
.crcgs-abt-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.crcgs-abt-hero-right {
  /* column positioning only — the emblem itself is styled entirely by
     the shared crcgs-hp-* rules in styles.css, identical to home page */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 3rem 3rem 1rem;
  position: relative;
  z-index: 1;
  animation: crcgsAbtFadeUp .7s .2s ease both;
}
.crcgs-abt-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.crcgs-abt-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--abt-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: crcgsAbtFadeUp 0.7s ease both;
}
.crcgs-abt-hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--abt-gold);
  flex-shrink: 0;
}
.crcgs-abt-hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 400;
  color: var(--abt-warm-white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  animation: crcgsAbtFadeUp 0.7s 0.12s ease both;
}
.crcgs-abt-hero-title em { font-style: italic; font-weight: 600; color: var(--abt-gold-light); }
.crcgs-abt-hero-title strong { font-weight: 600; color: var(--abt-warm-white); }
.crcgs-abt-hero-sub {
  font-size: 1rem;
  color: rgba(253,250,245,.7);
  max-width: 52ch;
  margin-bottom: 1.6rem;
  line-height: 1.8;
  font-weight: 300;
  animation: crcgsAbtFadeUp 0.7s 0.24s ease both;
}
/* CTA buttons — same as index page */
.crcgs-abt-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: crcgsAbtFadeUp 0.7s 0.32s ease both;
}
.crcgs-abt-cta-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  background: var(--abt-gold);
  color: var(--abt-navy-deep);
  border: 1px solid var(--abt-gold);
  transition: background 0.22s ease, transform 0.22s ease;
  display: inline-flex;
  align-items: center;
}
.crcgs-abt-cta-primary:hover {
  background: var(--abt-gold-light);
  transform: translateY(-2px);
}
.crcgs-abt-cta-secondary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  background: transparent;
  color: rgba(253,250,245,.82);
  border: 1px solid rgba(253,250,245,.35);
  transition: border-color 0.22s ease, color 0.22s ease;
  display: inline-flex;
  align-items: center;
}
.crcgs-abt-cta-secondary:hover {
  border-color: var(--abt-gold);
  color: var(--abt-gold);
}
/* Stats row */
.crcgs-abt-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem; /* spacing formerly provided by the removed CTA row */
  padding-top: 1.5rem;
  position: relative;
  animation: crcgsAbtFadeUp 0.7s 0.4s ease both;
}
/* Shortened divider line — anchored left, trimmed from the right */
.crcgs-abt-hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: min(400px, 62%);
  height: 1px;
  background: rgba(212,168,74,0.2);
}
.crcgs-abt-stat { display: flex; flex-direction: column; gap: 0.2rem; margin-right: 1.6rem; }
.crcgs-abt-stat:last-child { margin-right: 0; }
.crcgs-abt-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--abt-gold);
  line-height: 1;
}
.crcgs-abt-stat-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,.45);
  white-space: nowrap;
}
.crcgs-abt-stat-div {
  width: 1px;
  height: 30px;
  background: rgba(212,168,74,.2);
}
.crcgs-abt-stat-div { width: 1px; height: 34px; background: rgba(212,168,74,.2); }
.crcgs-abt-hero-scroll {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.crcgs-abt-hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,250,245,.4);
}
.crcgs-abt-hero-scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, var(--abt-gold), transparent);
  animation: crcgsAbtScrollPulse 2.2s ease-in-out infinite;
}

@keyframes crcgsAbtFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes crcgsAbtScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ════════════════════════════════════════════════════════════
   THE CHARTER  (signature element)
════════════════════════════════════════════════════════════ */
.crcgs-abt-charter {
  background: var(--abt-cream);
  padding: 3rem clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.crcgs-abt-charter-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.crcgs-abt-charter-doc {
  background: var(--abt-warm-white);
  border: 1px solid var(--abt-border);
  border-top: 3px solid var(--abt-gold);
  box-shadow: 0 18px 60px rgba(29,52,97,0.1);
  padding: clamp(1.5rem, 3vw, 2.3rem);
}
.crcgs-abt-article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.crcgs-abt-article-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--abt-gold);
  line-height: 1;
  text-align: center;
}
.crcgs-abt-article-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--abt-orange);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.crcgs-abt-article-heading {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--abt-navy);
  margin-bottom: 0.45rem;
}
.crcgs-abt-article-body {
  font-size: 0.92rem;
  color: var(--abt-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 58ch;
}
.crcgs-abt-article-rule {
  height: 1px;
  background: var(--abt-border-lt);
  margin: 1rem 0;
}
.crcgs-abt-values-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.crcgs-abt-value-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--abt-navy);
  background: var(--abt-gold-pale);
  border: 1px solid rgba(212,168,74,0.4);
  padding: 0.45rem 0.95rem;
}

/* ════════════════════════════════════════════════════════════
   HISTORY / TIMELINE
════════════════════════════════════════════════════════════ */
.crcgs-abt-history {
  background: var(--abt-navy-deep);
  padding: 3rem clamp(20px, 6vw, 80px);
  position: relative;
}
.crcgs-abt-history::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--abt-gold), transparent);
}
.crcgs-abt-history-inner { max-width: 1000px; margin: 0 auto; }
.crcgs-abt-timeline { position: relative; padding: 1rem 0; }
.crcgs-abt-tl-line {
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(212,168,74,0.35) 8%, rgba(212,168,74,0.35) 92%, transparent);
}
.crcgs-abt-tl-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  margin-bottom: 1.1rem;
}
.crcgs-abt-tl-item--right { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 30px); }
.crcgs-abt-tl-item:last-child { margin-bottom: 0; }
.crcgs-abt-tl-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--abt-navy-deep);
  border: 2px solid rgba(212,168,74,0.45);
  z-index: 2;
  transition: var(--abt-transition);
}
.crcgs-abt-tl-item:hover .crcgs-abt-tl-dot { border-color: var(--abt-gold); transform: translateX(-50%) scale(1.25); }
.crcgs-abt-tl-dot--accent { border-color: var(--abt-gold); background: var(--abt-gold); }
.crcgs-abt-tl-card {
  max-width: 380px;
  background: rgba(253,250,245,0.035);
  border: 1px solid rgba(212,168,74,0.14);
  padding: 1.05rem 1.3rem;
  transition: var(--abt-transition);
}
.crcgs-abt-tl-item:hover .crcgs-abt-tl-card {
  border-color: rgba(212,168,74,0.4);
  background: rgba(212,168,74,0.05);
  transform: translateY(-3px);
}
.crcgs-abt-tl-card--accent { border-color: rgba(212,168,74,0.3); background: rgba(212,168,74,0.06); }
.crcgs-abt-tl-phase {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--abt-gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.crcgs-abt-tl-text {
  font-size: 0.88rem;
  color: rgba(253,250,245,0.6);
  line-height: 1.55;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════
   WHAT WE DO / PILLARS
════════════════════════════════════════════════════════════ */
.crcgs-abt-pillars {
  background: var(--abt-warm-white);
  padding: 6.5rem clamp(20px, 6vw, 80px);
}
.crcgs-abt-pillars-inner { max-width: 1200px; margin: 0 auto; }
.crcgs-abt-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.crcgs-abt-pillar-card {
  background: var(--abt-cream);
  border-top: 2px solid transparent;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: var(--abt-transition);
}
.crcgs-abt-pillar-card:hover {
  border-top-color: var(--abt-gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(29,52,97,0.1);
}
.crcgs-abt-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--abt-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.crcgs-abt-pillar-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--abt-navy);
  margin-bottom: 0.6rem;
}
.crcgs-abt-pillar-text {
  font-size: 0.86rem;
  color: var(--abt-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════════════ */
.crcgs-abt-team {
  background: var(--abt-pearl);
  padding: 6.5rem clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--abt-border-lt);
  border-bottom: 1px solid var(--abt-border-lt);
}
.crcgs-abt-team-inner { max-width: 1200px; margin: 0 auto; }
.crcgs-abt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.crcgs-abt-team-card {
  background: var(--abt-warm-white);
  border: 1px solid var(--abt-border-lt);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--abt-transition);
}
.crcgs-abt-team-card:hover {
  transform: translateY(-5px);
  border-color: var(--abt-gold);
  box-shadow: 0 14px 40px rgba(29,52,97,0.1);
}
.crcgs-abt-team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--abt-navy);
  color: var(--abt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
}
.crcgs-abt-team-name {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--abt-navy);
  margin-bottom: 0.3rem;
}
.crcgs-abt-team-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--abt-orange);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.crcgs-abt-team-bio {
  font-size: 0.85rem;
  color: var(--abt-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════
   CLOSING CTA
════════════════════════════════════════════════════════════ */
.crcgs-abt-closing {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212,168,74,.1) 0%, transparent 60%),
    var(--abt-navy);
  padding: 6rem clamp(20px, 6vw, 80px);
  text-align: center;
  position: relative;
  border-top: 3px solid var(--abt-gold);
}
.crcgs-abt-closing-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.crcgs-abt-closing-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 300;
  color: var(--abt-warm-white);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.crcgs-abt-closing-title em { font-style: italic; color: var(--abt-gold-light); }
.crcgs-abt-closing-sub {
  font-size: 0.96rem;
  color: rgba(253,250,245,.62);
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.crcgs-abt-closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .crcgs-abt-hero { padding: 64px clamp(20px,5vw,48px) 44px; }
  /* Stack hero: content on top, logo emblem below — same as home page.
     Emblem sizes at each breakpoint are inherited from styles.css. */
  .crcgs-abt-hero-layout { grid-template-columns: 1fr; }
  .crcgs-abt-hero-right { padding: 2.5rem 0 0; }
  .crcgs-abt-charter,
  .crcgs-abt-history,
  .crcgs-abt-pillars,
  .crcgs-abt-team { padding: 5rem clamp(20px,5vw,48px); }
  .crcgs-abt-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .crcgs-abt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .crcgs-abt-closing { padding: 5rem clamp(20px,5vw,48px); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TIMELINE COLLAPSE ≤768px
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .crcgs-abt-tl-line { left: 7px; }
  .crcgs-abt-tl-item,
  .crcgs-abt-tl-item--right {
    justify-content: flex-start;
    padding-left: 38px;
    padding-right: 0;
  }
  .crcgs-abt-tl-dot { left: 7px; }
  .crcgs-abt-tl-card { max-width: 100%; }
  .crcgs-abt-article { grid-template-columns: 56px 1fr; gap: 1.1rem; }
  .crcgs-abt-article-num { font-size: 2.4rem; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤600px
════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .crcgs-abt-hero { padding: 56px 20px 36px; }
  .crcgs-abt-hero-title { font-size: 2rem; }
  .crcgs-abt-hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.22em; }
  .crcgs-abt-hero-sub { font-size: 0.9rem; }
  .crcgs-abt-hero-ctas { flex-direction: column; }
  .crcgs-abt-cta-primary, .crcgs-abt-cta-secondary { width: 100%; justify-content: center; }
  .crcgs-abt-hero-stats { flex-direction: column; gap: 0.7rem; align-items: flex-start; }
  .crcgs-abt-stat { flex-direction: row; align-items: baseline; gap: 0.5rem; margin-right: 0; }
  .crcgs-abt-stat-div { display: none; }

  .crcgs-abt-charter, .crcgs-abt-history, .crcgs-abt-pillars,
  .crcgs-abt-team, .crcgs-abt-closing { padding: 3.6rem 20px; }
  .crcgs-abt-charter-doc { padding: 1.6rem; }
  .crcgs-abt-article-heading { font-size: 1.25rem; }

  .crcgs-abt-pillar-grid { grid-template-columns: 1fr; }
  .crcgs-abt-team-grid { grid-template-columns: 1fr; }
  .crcgs-abt-team-card { padding: 1.8rem 1.4rem; }

  .crcgs-abt-closing-ctas { flex-direction: column; width: 100%; }
  .crcgs-abt-closing-ctas .crcgs-abt-btn { width: 100%; justify-content: center; }

  .crcgs-abt-section-title { font-size: 1.7rem; }
}

@media (max-width: 420px) {
  .crcgs-abt-article { grid-template-columns: 1fr; text-align: left; }
  .crcgs-abt-article-num { text-align: left; font-size: 2rem; }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .crcgs-abt-root * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .crcgs-abt-reveal,
  .crcgs-abt-js .crcgs-abt-reveal { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════════════════════
   HOME-PAGE LOGO EMBLEM — COPIED EXACTLY FROM styles.css
   Full functionality: slow rotating rings, reverse rings,
   orbiting light flares, twinkling particles, glow pulse,
   floating logo. Self-contained here so the About page logo
   behaves identical to the home page even without styles.css.
   Class names + values are same-to-same as the home page.
════════════════════════════════════════════════════════════ */

.crcgs-abt-hero-right,
.crcgs-hp-hero-right.crcgs-abt-hero-right {
  padding: 3rem 3rem 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: crcgsHpFadeUp .7s .2s ease both;
}

.crcgs-hp-hero-emblem {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,74,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 50px rgba(212,168,74,.4),
    0 0 100px rgba(212,168,74,.18),
    0 30px 60px -20px rgba(17,31,61,.55);
}
.crcgs-hp-hero-emblem::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,74,.15);
}
.crcgs-hp-hero-emblem img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,.45));
}

/* Soft golden + navy blurred lighting directly behind the logo */
.crcgs-hp-emblem-glow {
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(232,201,122,.35) 0%, transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(29,52,97,.55) 0%, transparent 60%);
  filter: blur(30px);
  z-index: 0;
  animation: crcgsHpGlowPulse 7s ease-in-out infinite;
}

/* Three rings — slowly rotating round, different speeds/directions,
   exactly the same as the home page */
.crcgs-hp-emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,74,.28);
  z-index: 1;
  pointer-events: none;
}
.crcgs-hp-emblem-ring--a { inset: -18px; animation: crcgsHpSpin 34s linear infinite; }
.crcgs-hp-emblem-ring--b { inset: -46px; border-color: rgba(212,168,74,.16); animation: crcgsHpSpinReverse 52s linear infinite; }
.crcgs-hp-emblem-ring--c { inset: -78px; border-style: dashed; border-color: rgba(253,250,245,.14); animation: crcgsHpSpin 90s linear infinite; }

/* Two orbit paths, each carrying a small travelling flare */
.crcgs-hp-emblem-orbit {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: crcgsHpSpin 16s linear infinite;
}
.crcgs-hp-emblem-orbit--b { inset: -60px; animation: crcgsHpSpinReverse 24s linear infinite; }
.crcgs-hp-emblem-orbit span {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #E8C97A;
  box-shadow: 0 0 8px 2px rgba(232,201,122,.8), 0 0 16px 4px rgba(212,168,74,.4);
}
.crcgs-hp-emblem-orbit--b span {
  width: 4px;
  height: 4px;
  background: #FDFAF5;
  box-shadow: 0 0 6px 2px rgba(253,250,245,.7);
}

/* Ambient glowing particles — soft twinkling light flares */
.crcgs-hp-emblem-particles { position: absolute; inset: -90px; z-index: 1; pointer-events: none; }
.crcgs-hp-emblem-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #E8C97A;
  box-shadow: 0 0 6px 2px rgba(232,201,122,.7);
  animation: crcgsHpTwinkle 4.5s ease-in-out infinite;
}
.crcgs-hp-emblem-particles span:nth-child(1) { top: 6%;  left: 12%; animation-delay: 0s; }
.crcgs-hp-emblem-particles span:nth-child(2) { top: 22%; left: 88%; animation-delay: .6s; }
.crcgs-hp-emblem-particles span:nth-child(3) { top: 78%; left: 90%; animation-delay: 1.3s; }
.crcgs-hp-emblem-particles span:nth-child(4) { top: 92%; left: 20%; animation-delay: 2s; }
.crcgs-hp-emblem-particles span:nth-child(5) { top: 50%; left: 2%;  animation-delay: 2.6s; }
.crcgs-hp-emblem-particles span:nth-child(6) { top: 4%;  left: 55%; animation-delay: 3.3s; }

/* Logo floats gently up/down — same as home page */
.crcgs-hp-emblem-float {
  position: relative;
  z-index: 2;
  animation: crcgsHpFloat 6s ease-in-out infinite;
}

/* ── Keyframes (identical to styles.css) ── */
@keyframes crcgsHpSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes crcgsHpSpinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes crcgsHpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes crcgsHpGlowPulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
@keyframes crcgsHpTwinkle {
  0%, 100% { opacity: .15; transform: scale(.7); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
@keyframes crcgsHpFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced-motion preferences — same guard as home page */
@media (prefers-reduced-motion: reduce) {
  .crcgs-hp-emblem-glow, .crcgs-hp-emblem-ring, .crcgs-hp-emblem-orbit,
  .crcgs-hp-emblem-particles span, .crcgs-hp-emblem-float {
    animation: none !important;
  }
}

/* ── Responsive emblem sizes — same breakpoint values as home page ── */
@media (max-width: 1024px) {
  .crcgs-abt-hero-right { padding: 0 1.5rem 3rem; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem { width: 230px; height: 230px; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem img { width: 170px; height: 170px; }
  .crcgs-abt-hero .crcgs-hp-emblem-glow { inset: -50px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--a { inset: -14px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--b { inset: -34px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--c { inset: -58px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--a { inset: -26px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--b { inset: -46px; }
  .crcgs-abt-hero .crcgs-hp-emblem-particles { inset: -66px; }
}
@media (max-width: 768px) {
  .crcgs-abt-hero-right { padding: 0 1.2rem 2.5rem; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem { width: 200px; height: 200px; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem img { width: 150px; height: 150px; }
  .crcgs-abt-hero .crcgs-hp-emblem-glow { inset: -38px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--a { inset: -10px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--b { inset: -26px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--c { inset: -44px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--a { inset: -20px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--b { inset: -36px; }
  .crcgs-abt-hero .crcgs-hp-emblem-particles { inset: -50px; }
}
@media (max-width: 480px) {
  .crcgs-abt-hero .crcgs-hp-hero-emblem { width: 168px; height: 168px; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem img { width: 126px; height: 126px; }
  .crcgs-abt-hero .crcgs-hp-emblem-glow { inset: -30px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--a { inset: -8px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--b { inset: -20px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--c { inset: -34px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--a { inset: -16px; }
  .crcgs-abt-hero .crcgs-hp-emblem-orbit--b { inset: -28px; }
  .crcgs-abt-hero .crcgs-hp-emblem-particles { inset: -40px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — FULL SCREEN-SIZE COVERAGE (all devices)
════════════════════════════════════════════════════════════ */

/* Large desktops / wide monitors ≥1440px — keep hero content and
   emblem comfortably placed, matching the home page's wide layout */
@media (min-width: 1440px) {
  .crcgs-abt-hero { padding: 96px clamp(48px, 8vw, 120px) 72px; }
  .crcgs-abt-hero-right { padding-right: 5rem; }
  .crcgs-abt-hero-inner { max-width: 760px; }
}

/* Small laptops / large tablets 1025–1200px — slightly narrow the
   emblem column so text never feels squeezed */
@media (max-width: 1200px) and (min-width: 1025px) {
  .crcgs-abt-hero-layout { grid-template-columns: 1.3fr .7fr; }
  .crcgs-abt-hero-right { padding: 3rem 1.5rem 3rem 0.5rem; }
}

/* Tablets ≤1024px — hero already stacks to one column (rule above);
   center the text block for a balanced stacked layout */
@media (max-width: 1024px) {
  .crcgs-abt-hero-inner { max-width: 640px; }
}

/* Phones ≤600px — tighten hero stat row spacing */
@media (max-width: 600px) {
  .crcgs-abt-hero-stats { margin-top: 1.4rem; padding-top: 1.2rem; }
  .crcgs-abt-hero-right { padding: 0 0 2rem; }
}

/* Very small phones ≤360px — keep everything readable and on-screen */
@media (max-width: 360px) {
  .crcgs-abt-hero { padding: 48px 16px 32px; }
  .crcgs-abt-hero-title { font-size: 1.75rem; }
  .crcgs-abt-hero-sub { font-size: 0.85rem; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem { width: 148px; height: 148px; }
  .crcgs-abt-hero .crcgs-hp-hero-emblem img { width: 110px; height: 110px; }
  .crcgs-abt-hero .crcgs-hp-emblem-glow { inset: -24px; }
  .crcgs-abt-hero .crcgs-hp-emblem-ring--c { inset: -28px; }
  .crcgs-abt-hero .crcgs-hp-emblem-particles { inset: -32px; }
  .crcgs-abt-charter, .crcgs-abt-history, .crcgs-abt-pillars,
  .crcgs-abt-team, .crcgs-abt-closing { padding: 3rem 16px; }
  .crcgs-abt-section-title { font-size: 1.5rem; }
}
