@font-face {
  font-family: "Open Sans Local";
  src: url("../fonts/open-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Local";
  src: url("../fonts/playfair-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ink: #101018;
  --ink-soft: #171722;
  --paper: #f8f4ec;
  --white: #ffffff;
  --muted: #675f5a;
  --line: rgba(16, 16, 24, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --coral: #f08054;
  --coral-light: #ffc1a1;
  --pink: #d14e93;
  --blue: #202c9d;
  --violet: #7138c6;
  --container: 1180px;
  --serif: "Playfair Local", Georgia, serif;
  --sans: "Open Sans Local", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(10, 8, 20, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.page-bylaws .site-header,
.page-error .site-header,
.site-header.is-scrolled {
  background: rgba(16, 16, 24, 0.92);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.14em;
}

.brand-name small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 55px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
}

.button-solid {
  color: var(--ink);
  background: var(--white);
}

.button-accent {
  color: var(--ink);
  background: var(--coral);
}

.button-accent:hover {
  background: var(--coral-light);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--coral-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #9b4d32;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--ink);
  background-size: 52px 52px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 16, 24, 0.25), rgba(16, 16, 24, 0.03));
  content: "";
}

.hero-glow {
  position: absolute;
  top: 100px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(113, 56, 198, 0.33), rgba(32, 44, 157, 0.08) 48%, transparent 70%);
  filter: blur(20px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
  min-height: 770px;
  padding-top: 90px;
}

.hero h1,
.section-heading h2,
.impact h2,
.questions h2,
.statement h2,
.closing-cta h2,
.bylaws-hero h1,
.error-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(58px, 6.2vw, 92px);
}

.hero h1 em,
.section-heading h2 em,
.impact h2 em,
.questions h2 em,
.statement h2 em,
.closing-cta h2 em,
.bylaws-hero h1 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
}

.hero-art::before {
  top: -22px;
  right: -22px;
  width: 140px;
  height: 140px;
  border-top: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
}

.hero-art::after {
  bottom: 42px;
  left: -27px;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  opacity: 0.9;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.art-caption {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.art-caption span {
  color: var(--coral-light);
}

.hero-pillar-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.8);
  border-right: 1px solid var(--line-dark);
}

.hero-pillar:not(:first-child) {
  padding-left: 32px;
}

.hero-pillar:last-child {
  border-right: 0;
}

.hero-pillar span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 16px;
}

.hero-pillar strong {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(44px, 5vw, 70px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-card {
  min-height: 350px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.pillar-card:hover {
  color: var(--white);
  background: var(--ink-soft);
  transform: translateY(-6px);
}

.pillar-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.pillar-card img {
  width: 60px;
  height: 60px;
  padding: 11px;
  background: var(--ink);
  object-fit: contain;
  transition: background-color 220ms ease;
}

.pillar-card:hover img {
  background: var(--coral);
}

.pillar-card-top span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 18px;
}

.pillar-card h3 {
  margin: 58px 0 15px;
  font-family: var(--serif);
  font-size: 34px;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pillar-card:hover p {
  color: rgba(255, 255, 255, 0.63);
}

.impact {
  color: var(--white);
  background: var(--ink);
}

.impact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 110px;
}

.impact-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.impact h2 {
  max-width: 520px;
  font-size: clamp(46px, 5vw, 72px);
}

.impact-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.boxcar-card {
  position: relative;
  margin-top: 55px;
  padding: 30px 34px;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
}

.boxcar-card::after {
  position: absolute;
  right: -25px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(16, 16, 24, 0.28);
  border-radius: 50%;
  content: "";
}

.boxcar-card > p:first-of-type {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.boxcar-card h3 {
  max-width: 330px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.08;
}

.boxcar-card p:last-child {
  max-width: 310px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.boxcar-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 22px;
}

.impact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.impact-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.impact-list span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 17px;
}

.impact-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.statement {
  padding: 130px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(209, 78, 147, 0.62), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(32, 44, 157, 0.76), transparent 38%),
    var(--violet);
}

.statement-inner {
  text-align: center;
}

.statement-inner > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.statement h2 {
  max-width: 930px;
  margin: 0 auto 44px;
  font-size: clamp(46px, 6vw, 80px);
}

.statement h2 em {
  color: var(--coral-light);
}

.questions-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.questions-intro h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.questions-intro h2 em {
  color: #9b4d32;
}

.questions-intro > p:last-child {
  max-width: 380px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: #9b4d32;
  font-family: var(--serif);
  font-size: 14px;
}

.faq-item summary i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 48px 28px 60px;
}

.faq-answer p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.closing-cta {
  padding: 95px 0;
  color: var(--white);
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line-dark);
}

.closing-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.closing-cta h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 68px);
}

.site-footer {
  padding: 75px 0 26px;
  color: rgba(255, 255, 255, 0.66);
  background: #09090e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.8fr 0.6fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-grid section > h2,
.footer-intro h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-intro {
  display: flex;
  gap: 22px;
}

.footer-intro img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
}

.footer-intro p,
.footer-grid section > p {
  margin: 0;
  font-size: 13px;
}

.footer-intro p {
  max-width: 330px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-email {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
}

/* Bylaws */
.bylaws-hero {
  position: relative;
  padding: 185px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--ink);
  background-size: 52px 52px;
}

.bylaws-hero::after {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(209, 78, 147, 0.24), transparent 67%);
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--coral-light);
}

.bylaws-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.bylaws-hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 7vw, 96px);
}

.bylaws-hero-copy {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.bylaws-hero-copy p:first-child {
  margin-top: 0;
}

.document-meta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.document-meta span {
  padding: 7px 11px;
  color: var(--coral-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 128, 84, 0.45);
}

.bylaws-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 120px;
}

.bylaws-toc {
  position: sticky;
  top: 120px;
  align-self: start;
}

.bylaws-toc h2 {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bylaws-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.bylaws-toc li {
  border-bottom: 1px solid var(--line);
}

.bylaws-toc a {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.bylaws-toc a:hover {
  color: #9b4d32;
}

.bylaws-document {
  max-width: 790px;
}

.document-note {
  margin: 0 0 48px;
  padding: 22px 24px;
  color: #5e4438;
  background: #f2dfd1;
  border-left: 3px solid var(--coral);
  font-size: 13px;
}

.bylaw-article {
  padding: 0 0 58px;
  scroll-margin-top: 120px;
  border-bottom: 1px solid var(--line);
}

.bylaw-article + .bylaw-article {
  padding-top: 58px;
}

.article-kicker {
  margin: 0 0 9px;
  color: #9b4d32;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bylaw-article > h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 37px;
  line-height: 1.15;
}

.bylaw-article h3 {
  margin: 32px 0 9px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.bylaw-article p {
  color: #443f3b;
}

.bylaw-article ul,
.bylaw-article ol {
  padding-left: 22px;
}

.bylaw-article li {
  margin: 8px 0;
  padding-left: 5px;
  color: #443f3b;
}

.legal-review {
  margin-top: 55px;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-review strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 20px;
}

.legal-review p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Error */
.error-page {
  display: grid;
  min-height: 82vh;
  padding: 180px 0 100px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.error-page h1 {
  font-size: clamp(80px, 15vw, 170px);
}

.error-page h2 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 34px;
}

.error-page p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 170ms; }
.reveal[data-delay="3"] { transition-delay: 250ms; }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    padding: 115px 40px 50px;
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
    background: var(--ink-soft);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .main-nav[data-open] {
    transform: translateX(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .main-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .hero-art {
    justify-self: center;
    width: min(82vw, 500px);
  }

  .hero-pillar-row {
    width: 100%;
  }

  .hero-pillar:first-child {
    padding-left: 24px;
  }

  .hero-pillar:not(:first-child) {
    padding-left: 24px;
  }

  .pillar-card {
    min-height: 320px;
    padding: 30px;
  }

  .impact-layout,
  .questions-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .impact-intro {
    position: static;
  }

  .closing-cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bylaws-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .bylaws-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .bylaws-toc {
    position: static;
  }

  .bylaws-toc ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .bylaws-toc li {
    border-right: 1px solid var(--line);
  }

  .bylaws-toc a {
    padding: 10px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-grid {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .text-link {
    text-align: center;
  }

  .hero-art::before {
    display: none;
  }

  .hero-pillar-row {
    grid-template-columns: 1fr;
  }

  .hero-pillar,
  .hero-pillar:not(:first-child) {
    padding: 15px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-pillar:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading h2,
  .impact h2,
  .questions h2,
  .statement h2,
  .closing-cta h2 {
    font-size: 44px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .impact-layout {
    gap: 50px;
  }

  .boxcar-card {
    padding: 26px;
  }

  .impact-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .statement {
    padding: 85px 0;
  }

  .questions-layout {
    gap: 44px;
  }

  .faq-item summary {
    grid-template-columns: 1fr 28px;
    gap: 15px;
    font-size: 18px;
  }

  .faq-item summary > span {
    display: none;
  }

  .faq-answer {
    padding-left: 0;
  }

  .closing-cta {
    padding: 75px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .bylaws-hero {
    padding: 140px 0 70px;
  }

  .bylaws-hero h1 {
    font-size: 56px;
  }

  .bylaws-layout {
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .bylaws-toc ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .bylaw-article > h2 {
    font-size: 31px;
  }
}

/* ========================================================================== */
/* Heritage Foundation art direction                                           */
/* ========================================================================== */

:root {
  --ink: #090d22;
  --ink-soft: #111631;
  --paper: #fbf5e9;
  --paper-deep: #f0e4cf;
  --gold: #f2ba52;
  --gold-light: #ffe0a0;
  --coral: #ed744f;
  --coral-light: #ffb08f;
  --pink: #c74291;
  --blue: #263aa8;
  --violet: #6d3ac2;
  --jade: #14766f;
  --line: rgba(9, 13, 34, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 186, 82, 0.08), transparent 20%),
    var(--paper);
}

body::after {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.65) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(9, 13, 34, 0.4) 0 0.5px, transparent 0.8px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.heritage-bar {
  color: var(--ink);
  background: var(--gold);
  border-bottom: 1px solid rgba(9, 13, 34, 0.24);
}

.heritage-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

.heritage-bar p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.heritage-bar p:last-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.heritage-bar i {
  width: 3px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-header {
  background: linear-gradient(180deg, rgba(9, 13, 34, 0.66), transparent);
}

.site-header.is-scrolled,
.page-bylaws .site-header,
.page-error .site-header {
  background: rgba(9, 13, 34, 0.94);
}

.header-inner {
  min-height: 82px;
}

.brand img {
  border: 1px solid rgba(242, 186, 82, 0.55);
  box-shadow: 0 0 0 5px rgba(242, 186, 82, 0.08);
}

.brand-name strong {
  color: var(--gold-light);
  font-size: 20px;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.28), transparent 66%);
  content: "";
  transform: translateX(-110%);
  transition: transform 500ms ease;
}

.button:hover::before {
  transform: translateX(110%);
}

.button-accent {
  background: var(--gold);
  box-shadow: 8px 8px 0 rgba(237, 116, 79, 0.82);
}

.button-accent:hover {
  background: #ffd273;
}

.hero {
  min-height: 1000px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 78% 36%, rgba(199, 66, 145, 0.22), transparent 25%),
    radial-gradient(circle at 86% 72%, rgba(38, 58, 168, 0.35), transparent 32%),
    linear-gradient(135deg, #080b1d 0%, #101633 60%, #090d22 100%);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.hero::before {
  background:
    linear-gradient(118deg, rgba(9, 13, 34, 0.1), rgba(9, 13, 34, 0.62)),
    repeating-linear-gradient(135deg, transparent 0 80px, rgba(242, 186, 82, 0.035) 80px 81px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--gold) 0 25%, var(--coral) 25% 50%, var(--pink) 50% 75%, var(--blue) 75%);
  content: "";
}

.hero-glow {
  top: 110px;
  right: -80px;
  width: 740px;
  height: 740px;
  background: radial-gradient(circle, rgba(109, 58, 194, 0.44), rgba(38, 58, 168, 0.12) 48%, transparent 70%);
}

.hero-constellation {
  position: absolute;
  top: 18%;
  right: 5%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(242, 186, 82, 0.11);
  border-radius: 50%;
  animation: heritageSpin 28s linear infinite;
}

.hero-constellation::before,
.hero-constellation::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-constellation::after {
  inset: 26%;
  border-color: rgba(237, 116, 79, 0.2);
}

.hero-constellation span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(242, 186, 82, 0.75);
}

.hero-constellation span:nth-child(1) { top: -4px; left: 50%; }
.hero-constellation span:nth-child(2) { top: 24%; right: 3%; background: var(--coral); }
.hero-constellation span:nth-child(3) { right: 18%; bottom: 8%; background: var(--pink); }
.hero-constellation span:nth-child(4) { bottom: 8%; left: 18%; background: var(--blue); }
.hero-constellation span:nth-child(5) { top: 24%; left: 3%; }

.hero-side-note {
  position: absolute;
  top: 50%;
  left: 26px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero-grid {
  grid-template-columns: 1.14fr 0.86fr;
  gap: 110px;
  min-height: 875px;
  padding-top: 134px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-title-lockup {
  position: relative;
}

.hero-monogram {
  position: absolute;
  top: -86px;
  left: -46px;
  z-index: -1;
  color: transparent;
  font-family: var(--serif);
  font-size: 270px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.21;
  -webkit-text-stroke: 1px var(--gold);
}

.hero h1 {
  max-width: 730px;
  color: #fffaf0;
  font-size: clamp(62px, 6.6vw, 102px);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  position: relative;
  color: var(--gold);
}

.hero h1 em::after {
  position: absolute;
  right: 2%;
  bottom: 3px;
  left: 2%;
  height: 7px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  content: "";
  opacity: 0.72;
  transform: skewX(-18deg);
  z-index: -1;
}

.hero-lead {
  padding-left: 22px;
  border-left: 2px solid var(--coral);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line-dark);
}

.hero-proof p:not(:first-child) {
  padding-left: 18px;
}

.hero-proof p:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-art {
  width: min(100%, 500px);
}

.hero-art::before {
  top: -30px;
  right: -30px;
  width: 190px;
  height: 190px;
  border-color: var(--gold);
}

.hero-art::after {
  bottom: 72px;
  left: -36px;
  width: 105px;
  height: 105px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue), var(--pink));
  background-size: 15px 15px, 15px 15px, auto;
  box-shadow: 14px 14px 0 rgba(242, 186, 82, 0.75);
}

.mosaic-halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 580px;
  height: 580px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mosaic-halo span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 186, 82, 0.18);
}

.mosaic-halo span:nth-child(2) { inset: 10%; border-color: rgba(237, 116, 79, 0.24); }
.mosaic-halo span:nth-child(3) { inset: 21%; border-color: rgba(199, 66, 145, 0.28); }
.mosaic-halo span:nth-child(4) { inset: 33%; border-color: rgba(38, 58, 168, 0.5); }

.hero-card {
  padding: 12px;
  background: #fffaf0;
  border: 1px solid rgba(242, 186, 82, 0.72);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42), 15px 15px 0 rgba(9, 13, 34, 0.76), 16px 16px 0 var(--gold);
  transform: rotate(2.2deg);
}

.hero-card-label {
  display: flex;
  justify-content: space-between;
  padding: 4px 4px 11px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nonprofit-stamp {
  position: absolute;
  z-index: 4;
  right: -44px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 112px;
  height: 112px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--gold), 0 0 0 7px rgba(9, 13, 34, 0.7);
  transform: rotate(-9deg);
}

.nonprofit-stamp strong {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.nonprofit-stamp span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.art-caption {
  margin-top: 40px;
}

.hero-pillar-row {
  z-index: 3;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  backdrop-filter: blur(12px);
}

.hero-pillar {
  padding: 22px 28px;
}

.hero-pillar span {
  color: var(--gold);
  font-size: 22px;
}

.culture-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-bottom: 1px solid var(--ink);
}

.culture-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 72px;
  animation: culturalDrift 32s linear infinite;
}

.culture-marquee span {
  padding: 0 30px;
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.culture-marquee i {
  color: var(--coral);
  font-size: 14px;
}

.pillars {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(199, 66, 145, 0.11), transparent 20%),
    radial-gradient(circle at 5% 92%, rgba(38, 58, 168, 0.09), transparent 23%),
    var(--paper);
}

.pillars::before {
  position: absolute;
  top: 90px;
  right: -55px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(9, 13, 34, 0.1);
  content: "";
  transform: rotate(45deg);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index span {
  width: 56px;
  height: 1px;
  background: currentColor;
}

.section-index-dark {
  color: var(--gold);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.44fr 1.56fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(52px, 5.5vw, 80px);
}

.section-heading h2 em,
.questions h2 em {
  color: var(--coral);
}

.pillar-grid {
  border-color: rgba(9, 13, 34, 0.22);
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.pillar-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(9, 13, 34, 0.22);
}

.pillar-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--gold);
  content: "";
}

.pillar-card:nth-child(2)::before { background: var(--coral); }
.pillar-card:nth-child(3)::before { background: var(--pink); }

.pillar-card::after {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(9, 13, 34, 0.13);
  content: "";
  transform: rotate(45deg);
}

.pillar-card:hover {
  background: var(--ink-soft);
  transform: translateY(-10px) rotate(-0.4deg);
  box-shadow: 0 30px 55px rgba(9, 13, 34, 0.18);
}

.pillar-card img {
  background: var(--blue);
  box-shadow: 7px 7px 0 var(--gold);
}

.pillar-card:nth-child(2) img { background: var(--coral); box-shadow-color: var(--pink); }
.pillar-card:nth-child(3) img { background: var(--pink); box-shadow-color: var(--blue); }

.pillar-kicker {
  margin: 48px 0 0 !important;
  color: #8c6330 !important;
  font-size: 8px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-card h3 {
  margin-top: 10px;
  font-size: 40px;
}

.pillar-card:hover .pillar-kicker {
  color: var(--gold-light) !important;
}

.pillar-arrow {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.pillar-card:hover .pillar-arrow {
  color: var(--gold);
  border-color: rgba(242, 186, 82, 0.45);
}

.legacy-ribbon {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--coral);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.legacy-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(45deg, transparent 42%, rgba(9, 13, 34, 0.24) 42% 45%, transparent 45% 55%, rgba(9, 13, 34, 0.24) 55% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(255, 255, 255, 0.16) 42% 45%, transparent 45% 55%, rgba(255, 255, 255, 0.16) 55% 58%, transparent 58%);
  background-size: 72px 72px;
}

.legacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.5fr 1.4fr 0.8fr;
  gap: 50px;
  align-items: center;
  min-height: 360px;
}

.legacy-number {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(150px, 18vw, 250px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.7;
  text-shadow: 10px 10px 0 rgba(9, 13, 34, 0.16);
}

.legacy-copy .eyebrow {
  color: var(--ink);
}

.legacy-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.legacy-copy h2 em {
  color: var(--ink);
}

.legacy-note {
  padding: 28px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(9, 13, 34, 0.2);
  transform: rotate(2deg);
}

.legacy-note span {
  font-size: 20px;
}

.legacy-note p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
}

.impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 50%, rgba(38, 58, 168, 0.34), transparent 29%),
    radial-gradient(circle at 100% 0, rgba(199, 66, 145, 0.2), transparent 25%),
    var(--ink);
}

.impact-ghost {
  position: absolute;
  right: -30px;
  bottom: -52px;
  margin: 0;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(130px, 18vw, 300px);
  font-weight: 900;
  letter-spacing: -0.04em;
  opacity: 0.12;
  -webkit-text-stroke: 1px var(--gold);
}

.boxcar-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 45%),
    var(--gold);
  border: 1px solid var(--coral);
  box-shadow: 14px 14px 0 rgba(237, 116, 79, 0.75);
  transform: rotate(-1deg);
}

.impact-list li {
  transition: padding 180ms ease, background-color 180ms ease;
}

.impact-list li:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.04);
}

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

.statement {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 66, 145, 0.72), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(38, 58, 168, 0.86), transparent 38%),
    var(--violet);
}

.statement::before,
.statement::after {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
  transform: rotate(45deg);
}

.statement::before { top: -55px; left: 12%; }
.statement::after { right: 12%; bottom: -55px; }

.statement-mosaic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.18;
}

.statement-mosaic span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--white);
}

.statement-mosaic span:nth-child(2) { inset: 10%; }
.statement-mosaic span:nth-child(3) { inset: 20%; }
.statement-mosaic span:nth-child(4) { inset: 30%; }
.statement-mosaic span:nth-child(5) { inset: 40%; background: var(--gold); border: 0; }

.statement-inner {
  position: relative;
  z-index: 2;
}

.statement h2 em {
  color: var(--gold-light);
}

.questions {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.93%, rgba(9, 13, 34, 0.055) 50%, transparent 50.07%),
    var(--paper);
}

.questions-seal {
  display: grid;
  width: 150px;
  height: 150px;
  margin-top: 50px;
  color: var(--paper);
  background: var(--ink);
  border: 7px double var(--gold);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
  place-content: center;
}

.questions-seal span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.08em;
}

.questions-seal small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accordion {
  box-shadow: 14px 14px 0 var(--paper-deep);
}

.faq-item {
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.55);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.faq-item[open] {
  background: var(--white);
}

.faq-item summary > span {
  color: var(--coral);
}

.faq-item summary i {
  background: var(--gold);
  border-color: var(--ink);
}

.closing-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(38, 58, 168, 0.38), transparent 38%),
    var(--ink-soft);
}

.closing-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28%;
  background:
    linear-gradient(45deg, transparent 43%, rgba(242, 186, 82, 0.13) 43% 47%, transparent 47% 53%, rgba(242, 186, 82, 0.13) 53% 57%, transparent 57%);
  background-size: 70px 70px;
  content: "";
}

.closing-wordmark {
  position: absolute;
  top: 50%;
  left: -24px;
  margin: 0;
  color: transparent;
  font-family: var(--serif);
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  transform: translateY(-50%);
  -webkit-text-stroke: 1px var(--white);
}

.closing-cta-inner {
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #060815;
  background-size: 46px 46px;
}

.footer-wordmark {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto 70px;
  padding-bottom: 28px;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.footer-wordmark span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 155px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.footer-wordmark i {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.35;
  text-align: right;
}

.footer-intro h2,
.footer-grid section > h2 {
  color: var(--gold-light);
}

/* Carry the heritage identity onto the governing-document pages. */
.bylaws-hero {
  padding-top: 220px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 45%, rgba(199, 66, 145, 0.26), transparent 25%),
    linear-gradient(135deg, var(--ink), #161d48);
  background-size: 58px 58px, 58px 58px, auto, auto;
  border-bottom: 9px solid var(--gold);
}

.bylaws-hero::before {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(242, 186, 82, 0.2);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.bylaws-hero h1 em {
  color: var(--gold);
}

.document-meta span {
  color: var(--gold-light);
  border-color: rgba(242, 186, 82, 0.46);
}

.bylaws-toc {
  padding: 25px;
  color: var(--white);
  background: var(--ink);
  border-top: 7px solid var(--gold);
  box-shadow: 10px 10px 0 var(--paper-deep);
}

.bylaws-toc h2 {
  color: var(--gold-light);
}

.bylaws-toc ol,
.bylaws-toc li {
  border-color: var(--line-dark);
}

.bylaws-toc a {
  color: rgba(255, 255, 255, 0.68);
}

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

.bylaws-document {
  position: relative;
  max-width: 850px;
  padding: clamp(30px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(9, 13, 34, 0.12);
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.bylaws-document::before {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  pointer-events: none;
  border: 1px solid rgba(237, 116, 79, 0.2);
  content: "";
}

.bylaw-article,
.document-note,
.legal-review {
  position: relative;
  z-index: 1;
}

.bylaw-article > h2 {
  color: var(--ink);
  font-size: 42px;
}

.article-kicker {
  color: #936224;
}

.bylaw-article h3 {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
}

.error-page {
  background:
    radial-gradient(circle at 50% 45%, rgba(109, 58, 194, 0.42), transparent 28%),
    var(--ink);
}

@keyframes culturalDrift {
  to { transform: translateX(-50%); }
}

@keyframes heritageSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .culture-marquee-track,
  .hero-constellation {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .hero-side-note {
    display: none;
  }

  .nonprofit-stamp {
    right: -12px;
  }

  .legacy-grid {
    grid-template-columns: 0.38fr 1.25fr 0.8fr;
  }
}

@media (max-width: 980px) {
  .heritage-bar-inner p:first-child {
    display: none;
  }

  .heritage-bar-inner {
    justify-content: center;
  }

  .main-nav {
    padding-top: 145px;
    background:
      linear-gradient(45deg, transparent 43%, rgba(242, 186, 82, 0.055) 43% 47%, transparent 47% 53%, rgba(242, 186, 82, 0.055) 53% 57%, transparent 57%),
      var(--ink-soft);
    background-size: 70px 70px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 205px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    margin-top: 40px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legacy-grid {
    grid-template-columns: 0.45fr 1fr;
    padding: 70px 0;
  }

  .legacy-note {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-left: auto;
  }

  .questions-seal {
    display: none;
  }

  .footer-wordmark {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-wordmark i {
    text-align: left;
  }

  .bylaws-toc {
    padding: 20px;
  }
}

@media (max-width: 700px) {
  .heritage-bar {
    display: none;
  }

  .header-inner {
    min-height: 78px;
  }

  .hero-grid {
    padding-top: 150px;
  }

  .hero-monogram {
    top: -50px;
    left: -20px;
    font-size: 170px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 74px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof p,
  .hero-proof p:not(:first-child) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-proof p:last-child {
    border-bottom: 0;
  }

  .mosaic-halo {
    width: 420px;
    height: 420px;
  }

  .nonprofit-stamp {
    right: -4px;
    bottom: 22px;
    width: 88px;
    height: 88px;
  }

  .nonprofit-stamp strong {
    font-size: 21px;
  }

  .culture-marquee-track {
    min-height: 58px;
  }

  .culture-marquee span {
    padding: 0 20px;
    font-size: 24px;
  }

  .section-heading h2,
  .legacy-copy h2 {
    font-size: 43px;
  }

  .pillar-grid {
    box-shadow: 10px 10px 0 var(--paper-deep);
  }

  .pillar-card {
    min-height: 370px;
  }

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

  .legacy-number {
    font-size: 145px;
  }

  .legacy-note {
    grid-column: auto;
    margin: 0;
  }

  .impact-ghost {
    display: none;
  }

  .faq-item {
    padding: 0 18px;
  }

  .footer-wordmark {
    width: min(calc(100% - 32px), var(--container));
    margin-bottom: 55px;
  }

  .footer-wordmark span {
    font-size: 72px;
  }

  .bylaws-hero {
    padding-top: 160px;
  }

  .bylaws-document {
    padding: 42px 26px;
    box-shadow: 10px 10px 0 var(--paper-deep);
  }

  .bylaws-document::before {
    inset: 10px;
  }

  .bylaw-article > h2 {
    font-size: 33px;
  }
}
