/* ============================================================
   ABOUT CAMPAIGN — 协会概况广告级品牌页
   Tone: 庄重绿金 · 国家队机构气质 · 电影海报首屏
   ============================================================ */

.about-page {
  --ap-ink: #0c1f14;
  --ap-forest: #145c2e;
  --ap-leaf: #1b7a3d;
  --ap-gold: #d4a843;
  --ap-cream: #f4f7f4;
  --ap-display: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  background: #fff;
  color: #2a2a2a;
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.ap-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ap-hero__media {
  position: absolute;
  inset: -8% 0 0;
  will-change: transform;
}

.ap-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.03);
  transform-origin: 50% 40%;
  animation: apKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes apKenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

.ap-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 16, .78) 0%, rgba(8, 28, 16, .42) 38%, rgba(8, 28, 16, .18) 68%, rgba(8, 28, 16, .28) 100%),
    linear-gradient(180deg, rgba(8, 28, 16, .18) 0%, transparent 38%, rgba(8, 28, 16, .72) 100%);
}

.ap-hero__grain {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.ap-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px 88px;
  max-width: 920px;
  margin-right: auto;
}

.ap-hero__brand {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--ap-display);
  font-size: clamp(1.65rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.ap-hero__brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.28em;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ap-gold), rgba(212, 168, 67, .15));
  transition: width 1.1s cubic-bezier(.22, .61, .36, 1) .55s;
}

.ao-hero-d1.is-on.ap-hero__brand::after,
.ap-hero__brand.is-on::after {
  width: min(100%, 12em);
}

.ap-hero__eyebrow {
  margin: 0 0 18px;
  font-size: .75rem;
  letter-spacing: .32em;
  color: rgba(212, 168, 67, .95);
  font-weight: 500;
}

.ap-hero__title {
  margin: 0 0 18px;
  font-family: var(--ap-display);
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .08em;
  color: #fff;
}

.ap-hero__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(235, 245, 238, .88);
}

.ap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ap-hero__cta {
  position: relative;
  overflow: hidden;
}

.ap-hero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.ap-hero__cta:hover::before {
  left: 140%;
}

.ap-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .65rem;
  letter-spacing: .28em;
}

.ap-hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(212, 168, 67, .9), transparent);
  animation: apScrollPulse 1.6s ease-in-out infinite;
}

@keyframes apScrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.ao-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}
.ao-hero.is-on {
  opacity: 1;
  transform: none;
}
.ao-hero-d1 { transition-delay: .1s; }
.ao-hero-d2 { transition-delay: .25s; }
.ao-hero-d3 { transition-delay: .4s; }
.ao-hero-d4 { transition-delay: .55s; }
.ao-hero-d5 { transition-delay: .7s; }

/* ---------- Breadcrumb / TOC ---------- */
.ap-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(20, 92, 46, .08);
}

.ap-toc {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(20, 92, 46, .1);
  backdrop-filter: blur(10px);
}

.ap-toc__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.ap-toc__item {
  position: relative;
  padding: 8px 16px;
  font-size: .875rem;
  color: #567;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.ap-toc__item:hover,
.ap-toc__item.is-active {
  color: var(--ap-leaf);
  border-bottom-color: var(--ap-gold);
}

.ap-toc__item.is-active {
  background: rgba(27, 122, 61, .06);
}

/* ---------- Shared kicker ---------- */
.ap-kicker { margin-bottom: 28px; }
.ap-kicker--center { text-align: center; }
.ap-kicker__en {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--ap-leaf);
  font-weight: 600;
}
.ap-kicker__title {
  margin: 0;
  font-family: var(--ap-display);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--ap-ink);
  letter-spacing: .06em;
  line-height: 1.3;
}
.ap-kicker__desc {
  margin: 14px auto 0;
  max-width: 36em;
  font-size: .95rem;
  line-height: 1.75;
  color: #667;
}
.ap-kicker--light .ap-kicker__en { color: rgba(212, 168, 67, .9); }
.ap-kicker--light .ap-kicker__title { color: #fff; }

/* ---------- Stats ---------- */
.ap-stats {
  background: var(--ap-ink);
  color: #fff;
  padding: 0;
}

.ap-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ap-stats__item {
  padding: 34px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.ap-stats__item:last-child { border-right: none; }

.ap-stats__num {
  display: block;
  font-family: var(--ap-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ap-gold);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 0 transparent;
  transition: text-shadow .6s ease;
}

.ap-stats__item.is-visible .ap-stats__num {
  animation: apGoldPulse 1.8s ease-out both;
}

@keyframes apGoldPulse {
  0% { text-shadow: 0 0 0 rgba(212, 168, 67, 0); transform: translateY(8px); opacity: .35; }
  45% { text-shadow: 0 0 22px rgba(212, 168, 67, .55); transform: none; opacity: 1; }
  100% { text-shadow: 0 0 8px rgba(212, 168, 67, .2); }
}

.ap-stats__label {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .06em;
}

/* ---------- Manifesto ---------- */
.ap-manifesto {
  padding: 96px 0 88px;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(27, 122, 61, .08), transparent 60%),
    var(--ap-cream);
}

.ap-manifesto__quote {
  position: relative;
  margin: 0 auto 56px;
  max-width: 48rem;
  text-align: center;
  border: 0;
  padding: 0 1.5rem;
}

.ap-manifesto__quote::before,
.ap-manifesto__quote::after {
  position: absolute;
  font-family: var(--ap-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(27, 122, 61, .18);
  opacity: 0;
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}

.ap-manifesto__quote::before {
  content: "“";
  left: 0;
  top: -.35em;
  transform: translateY(12px);
}

.ap-manifesto__quote::after {
  content: "”";
  right: 0;
  bottom: -.55em;
  transform: translateY(-12px);
}

.ap-manifesto__quote.is-visible::before,
.ap-manifesto__quote.is-visible::after {
  opacity: 1;
  transform: none;
}

.ap-manifesto__quote p {
  margin: 0;
  font-family: var(--ap-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.65;
  color: var(--ap-ink);
  letter-spacing: .04em;
}

.ap-manifesto__layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.ap-manifesto__body p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.ap-manifesto__body strong { color: var(--ap-forest); }

.ap-manifesto__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ap-manifesto__meta span {
  padding: 6px 12px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--ap-forest);
  border: 1px solid rgba(27, 122, 61, .28);
  background: rgba(27, 122, 61, .05);
}

.ap-manifesto__visual {
  margin: 0;
  position: relative;
}

.ap-manifesto__visual::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 1px solid rgba(212, 168, 67, .55);
  z-index: 0;
}

.ap-manifesto__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  box-shadow: 0 18px 48px rgba(12, 31, 20, .18);
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.ap-manifesto__visual.is-visible img {
  transform: scale(1.01);
}

.ap-manifesto__visual:hover img {
  transform: scale(1.035);
}

.ap-manifesto__visual figcaption {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: .8125rem;
  letter-spacing: .12em;
  color: #678;
}

/* ---------- Mission ---------- */
.ap-mission {
  padding: 96px 0;
  background: #fff;
}

.ap-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.ap-mission__item {
  position: relative;
  overflow: hidden;
  padding: 32px 26px 28px;
  background: var(--ap-cream);
  border-top: 3px solid var(--ap-leaf);
  min-height: 210px;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s ease;
}

.ap-mission__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .22), transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}

.ap-mission__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(12, 31, 20, .1);
}

.ap-mission__item:hover::after {
  transform: translateX(120%);
}

.ap-mission__item--accent {
  background: linear-gradient(160deg, #145c2e 0%, #0d3320 100%);
  color: #fff;
  border-top-color: var(--ap-gold);
}

.ap-mission__item--accent h3,
.ap-mission__item--accent .ap-mission__index { color: #fff; }

.ap-mission__item--accent p { color: rgba(255, 255, 255, .82); }

.ap-mission__index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--ap-display);
  font-size: 1.5rem;
  color: var(--ap-gold);
  letter-spacing: .08em;
}

.ap-mission__item h3 {
  margin: 0 0 12px;
  font-family: var(--ap-display);
  font-size: 1.25rem;
  color: var(--ap-ink);
  letter-spacing: .08em;
}

.ap-mission__item p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.8;
  color: #556;
}

.ap-func {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(27, 122, 61, .15);
  overflow: hidden;
}

.ap-func li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 22px 12px;
  background: var(--ap-forest);
  color: #fff;
  transition: transform .35s ease, filter .35s ease;
}

.ap-func li:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
  z-index: 1;
}

.ap-func li:nth-child(even) { background: var(--ap-leaf); }

.ap-func strong {
  font-family: var(--ap-display);
  font-size: 1.35rem;
  color: rgba(212, 168, 67, .85);
  font-weight: 700;
}

.ap-func span {
  font-size: .9rem;
  letter-spacing: .12em;
}

/* ---------- Goals ---------- */
.ap-goals {
  padding: 88px 0;
  background: var(--ap-cream);
}

.ap-goals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ap-goals__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ap-goals__list li {
  padding: 18px 22px;
  font-family: var(--ap-display);
  font-size: 1.35rem;
  letter-spacing: .18em;
  color: var(--ap-ink);
  background: #fff;
  border-left: 4px solid var(--ap-leaf);
  box-shadow: 0 6px 20px rgba(12, 31, 20, .04);
}

.ap-goals__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-goals__tags span {
  padding: 10px 18px;
  border: 1px solid rgba(27, 122, 61, .35);
  color: var(--ap-forest);
  font-size: .9rem;
  letter-spacing: .06em;
  background: #fff;
  transition: background .2s ease, color .2s ease;
}

.ap-goals__tags span:hover {
  background: var(--ap-leaf);
  color: #fff;
  border-color: var(--ap-leaf);
}

/* ---------- Story ---------- */
.ap-story {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.ap-story__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 40%, rgba(212, 168, 67, .16), transparent 55%),
    linear-gradient(135deg, #0a2418 0%, #145c2e 48%, #0d3320 100%);
}

.ap-story__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.ap-story__text {
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(235, 245, 238, .9);
  text-align: justify;
}

.ap-story__crops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ap-story__crops span {
  padding: 8px 20px;
  border: 1px solid rgba(212, 168, 67, .45);
  color: var(--ap-gold);
  letter-spacing: .1em;
  font-size: .88rem;
  background: rgba(212, 168, 67, .08);
}

/* ---------- Honors ---------- */
.ap-honors {
  padding: 96px 0;
  background: #fff;
}

.ap-honors__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ap-honors__badge {
  padding: 12px 22px;
  font-size: .92rem;
  letter-spacing: .04em;
  color: #445;
  border: 1px solid rgba(20, 92, 46, .15);
  background: var(--ap-cream);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ap-honors__badge.is-visible:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 24px rgba(12, 31, 20, .12);
}

.ap-honors__badge--gold {
  background: linear-gradient(135deg, #fff8e4, #f3e2b0);
  border-color: rgba(212, 168, 67, .55);
  color: #6b4e08;
  font-weight: 600;
}

.ap-honors__photo {
  margin: 0 auto;
  max-width: 920px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(12, 31, 20, .12);
}

.ap-honors__photo img {
  display: block;
  width: 100%;
  transition: transform .55s ease;
}

.ap-honors__photo:hover img { transform: scale(1.02); }

/* ---------- Org ---------- */
.ap-org {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 40% 50% at 0% 20%, rgba(27, 122, 61, .07), transparent 55%),
    var(--ap-cream);
}

.ap-org__frame {
  border: 1px solid rgba(27, 122, 61, .14);
  background: #fff;
  box-shadow: 0 16px 40px rgba(12, 31, 20, .06);
}

.ap-org__panel {
  padding: 36px 40px;
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.ap-org__panel img {
  display: block;
  max-width: min(100%, 880px);
  height: auto;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.ap-org__panel p { margin: 0 0 1rem; }
.ap-org__panel p:last-child { margin-bottom: 0; }
.ap-org__empty { text-align: center; color: #778; padding: 24px 0; }

/* ---------- Finale ---------- */
.ap-finale {
  padding: 40px 0 20px;
  background: var(--ap-cream);
}

.ap-finale__box {
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(212, 168, 67, .2), transparent 55%),
    linear-gradient(135deg, #0d3320 0%, #145c2e 55%, #0a2418 100%);
}

.ap-finale__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: skewX(-18deg);
  animation: apShineSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes apShineSweep {
  0%, 55% { left: -40%; opacity: 0; }
  60% { opacity: 1; }
  85% { left: 120%; opacity: .7; }
  100% { left: 120%; opacity: 0; }
}

.ap-finale__actions .btn {
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.ap-finale__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.ap-finale__eyebrow {
  margin: 0 0 12px;
  font-size: .72rem;
  letter-spacing: .3em;
  color: rgba(212, 168, 67, .95);
}

.ap-finale__title {
  margin: 0 0 14px;
  font-family: var(--ap-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: .08em;
  line-height: 1.4;
}

.ap-finale__text {
  margin: 0 auto 26px;
  max-width: 32em;
  color: rgba(235, 245, 238, .85);
  line-height: 1.8;
}

.ap-finale__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- Contact ---------- */
.ap-contact {
  padding: 80px 0 100px;
  background: #fff;
}

.ap-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ap-contact__item {
  padding: 28px 22px;
  background: var(--ap-cream);
  border-top: 3px solid var(--ap-leaf);
  min-height: 150px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ap-contact__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 31, 20, .08);
}

.ap-contact__item h4 {
  margin: 0 0 12px;
  font-family: var(--ap-display);
  font-size: 1.05rem;
  color: var(--ap-ink);
  letter-spacing: .08em;
}

.ap-contact__item p {
  margin: 0 0 4px;
  font-size: .9rem;
  line-height: 1.75;
  color: #556;
}

.ap-contact__item a { color: var(--ap-leaf); }

/* ---------- Reveal ---------- */
.ao-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22, .61, .36, 1), transform .75s cubic-bezier(.22, .61, .36, 1);
}
.ao-reveal.ao-left { transform: translateX(-28px); }
.ao-reveal.ao-right { transform: translateX(28px); }
.ao-reveal.ao-scale { transform: scale(.94); }
.ao-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.ao-d1 { transition-delay: .05s; }
.ao-d2 { transition-delay: .15s; }
.ao-d3 { transition-delay: .25s; }
.ao-d4 { transition-delay: .35s; }
.ao-d5 { transition-delay: .45s; }
.ao-d6 { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .ao-hero,
  .ao-reveal,
  .ap-hero__scroll i,
  .ap-hero__media,
  .ap-hero__img,
  .ap-finale__box::before,
  .ap-stats__item.is-visible .ap-stats__num {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ap-hero__brand::after {
    width: min(100%, 12em);
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ap-manifesto__layout,
  .ap-goals__grid,
  .ap-mission__grid {
    grid-template-columns: 1fr;
  }

  .ap-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .ap-contact__grid { grid-template-columns: repeat(2, 1fr); }
  .ap-func { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ap-hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  .ap-hero__content { padding-bottom: 72px; }

  .ap-hero__brand {
    font-size: 1.45rem;
    letter-spacing: .08em;
  }

  .ap-hero__title {
    font-size: 1.55rem;
    letter-spacing: .04em;
  }

  .ap-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ap-stats__item:last-child { grid-column: 1 / -1; }

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

  .ap-org__panel { padding: 20px 16px; }
  .ap-finale__box { padding: 40px 20px; }

  .ap-manifesto,
  .ap-mission,
  .ap-goals,
  .ap-story,
  .ap-honors,
  .ap-org {
    padding: 64px 0;
  }
}
