/* ============================================================
   LA HINCHADA USA — POST-WORLD CUP COMMUNITY HOMEPAGE
   home-community.css — loaded AFTER style.css, only on the
   community homepage. Everything is scoped under .community-home
   so nothing leaks into the other pages.

   Aesthetic: cinematic sports-editorial. Broadcast-scale Bebas
   display type, deep-ink backgrounds with grain + gradient
   atmosphere, the Colombian tricolor reduced to a jersey-trim
   ribbon (2:1:1 flag proportion) used as section punctuation.
   ============================================================ */

.community-home {
  --ch-ink: #060a16;            /* deeper than --color-primary-dark */
  --ch-ink-soft: #0b1122;
  --ch-gold: #fcd116;
  --ch-blue: #003893;
  --ch-red: #ce1126;
  --ch-line: rgba(255, 255, 255, 0.1);
  --ch-text-dim: rgba(255, 255, 255, 0.68);
  --ch-display: 'Bebas Neue', 'DM Sans', sans-serif;
  background: var(--ch-ink);
}

/* Film-grain overlay for atmosphere (pure CSS, no asset) */
.community-home::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  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'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.community-home main { position: relative; z-index: 2; }

/* ---------- Shared editorial primitives ---------- */
.ch-kicker {
  display: block;
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin-bottom: 1.1rem;
}

.ch-display {
  font-family: var(--ch-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0;
}

.ch-display--xl { font-size: clamp(3.4rem, 9vw, 8.2rem); }
.ch-display--lg { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.ch-display--md { font-size: clamp(2rem, 4vw, 3.4rem); }

.ch-lede {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  color: var(--ch-text-dim);
  max-width: 56ch;
}

.ch-section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 1.5rem;
  overflow: hidden;
}

.ch-container { max-width: 1160px; margin: 0 auto; position: relative; }

/* Colombian tricolor ribbon — flag proportion 2:1:1 */
.ch-ribbon {
  height: 6px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    to bottom,
    var(--ch-gold) 0 50%,
    var(--ch-blue) 50% 75%,
    var(--ch-red) 75% 100%
  );
}
.ch-ribbon--hair { height: 3px; width: 88px; border-radius: 2px; margin: 1.4rem 0 0; }

/* Scroll-reveal (driven by script.js IntersectionObserver on
   [data-scroll-animation]; these override style.css defaults) */
.community-home [data-scroll-animation] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.community-home [data-scroll-animation].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO — full-bleed video, editorial bottom-left composition
   ============================================================ */
.ch-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ch-ink);
}

.ch-hero__media,
.ch-hero__media video,
.ch-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-hero__media video { filter: saturate(0.92) contrast(1.05); }
.ch-hero__video--mobile { display: none; }

.ch-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ch-ink) 4%, rgba(6, 10, 22, 0.55) 38%, rgba(6, 10, 22, 0.25) 70%, rgba(6, 10, 22, 0.55) 100%);
}

.ch-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 9rem 1.5rem clamp(5rem, 10vh, 7.5rem);
}

.ch-hero__title span { display: block; }
.ch-hero__title .ch-hero__accent { color: var(--ch-gold); }

.ch-hero__sub {
  margin-top: 1.6rem;
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.ch-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Staggered page-load reveal */
.ch-hero__kicker, .ch-hero__title span, .ch-hero__sub, .ch-hero__cta {
  animation: chRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ch-hero__title span:nth-child(1) { animation-delay: 0.12s; }
.ch-hero__title span:nth-child(2) { animation-delay: 0.24s; }
.ch-hero__sub { animation-delay: 0.42s; }
.ch-hero__cta { animation-delay: 0.56s; }

@keyframes chRise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

.ch-scroll-cue {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.ch-scroll-cue::after {
  content: '';
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--ch-gold), transparent);
  animation: chCue 2s ease-in-out infinite;
}
@keyframes chCue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* Buttons (extend style.css .btn) */
.community-home .btn-gold {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius-full);
  background: var(--ch-gold);
  color: #0a0f1e;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--ch-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.community-home .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(252, 209, 22, 0.28);
}
.community-home .btn-ghost {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.community-home .btn-ghost:hover { border-color: var(--ch-gold); transform: translateY(-2px); }

/* Nav "Join" pill */
.community-home .nav-join-pill a {
  background: var(--ch-gold);
  color: #0a0f1e !important;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.15rem !important;
  font-weight: 800;
}
.community-home .nav-join-pill a:hover { opacity: 0.88; }

/* ============================================================
   STATS — broadcast-scoreboard numerals
   ============================================================ */
.ch-stats { background: var(--ch-ink); padding-top: 0; }

.ch-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--ch-line);
  border-bottom: 1px solid var(--ch-line);
}

.ch-stat {
  padding: clamp(2rem, 4vw, 3.4rem) 1rem;
  text-align: center;
  position: relative;
}
.ch-stat + .ch-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--ch-line);
}

.ch-stat__num {
  font-family: var(--ch-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ch-gold);
  display: block;
}

.ch-stat__label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ch-text-dim);
}

/* ============================================================
   RECAP — "An Unforgettable Summer" editorial split
   ============================================================ */
.ch-recap { background: linear-gradient(to bottom, var(--ch-ink), var(--ch-ink-soft)); }

.ch-recap__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.ch-recap__copy p { margin-top: 1.4rem; }

.ch-recap__photos {
  position: relative;
  min-height: 480px;
}
.ch-recap__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ch-recap__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ch-recap__photo--a {
  width: 62%;
  height: 82%;
  top: 0;
  left: 0;
  border-top: 6px solid var(--ch-gold);
}
.ch-recap__photo--b {
  width: 52%;
  height: 62%;
  right: 0;
  bottom: 0;
  border-bottom: 6px solid var(--ch-red);
  transform: rotate(1.5deg);
}

/* ============================================================
   TIMELINE — La Cronología
   ============================================================ */
.ch-timeline { background: var(--ch-ink-soft); }

.ch-timeline__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.ch-timeline__head .ch-lede { margin: 1rem auto 0; }

.ch-timeline__track {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 0;
}
.ch-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--ch-line);
}
.ch-timeline__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--ch-gold), #e0b400);
  box-shadow: 0 0 12px rgba(252, 209, 22, 0.5);
}

.ch-moment {
  position: relative;
  width: 50%;
  padding: 0 2.6rem 3.2rem;
}
.ch-moment--l { left: 0; text-align: right; }
.ch-moment--r { left: 50%; text-align: left; }

.ch-moment__dot {
  position: absolute;
  top: 0.4rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ch-ink);
  border: 3px solid var(--ch-gold);
  z-index: 2;
}
.ch-moment--l .ch-moment__dot { right: -8px; }
.ch-moment--r .ch-moment__dot { left: -8px; }

/* Timeline CTA button keeps left alignment inside right-aligned nodes */
.ch-moment--l .btn-ghost { margin-left: auto; }

/* a11y utility (style.css has none) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.ch-moment__date {
  font-family: var(--ch-display);
  font-size: 1.35rem;
  color: var(--ch-gold);
  letter-spacing: 0.04em;
  display: block;
}
.ch-moment__title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0.3rem 0 0.35rem;
}
.ch-moment__meta {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ch-text-dim);
}

/* Closing "journey continues" node */
.ch-moment--next .ch-moment__dot {
  background: var(--ch-gold);
  box-shadow: 0 0 0 6px rgba(252, 209, 22, 0.18), 0 0 24px rgba(252, 209, 22, 0.55);
  animation: chPulse 2.4s ease-in-out infinite;
}
@keyframes chPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(252, 209, 22, 0.18), 0 0 24px rgba(252, 209, 22, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(252, 209, 22, 0.08), 0 0 34px rgba(252, 209, 22, 0.75); }
}
.ch-moment--next .ch-moment__title { color: var(--ch-gold); font-size: 1.35rem; }

/* ============================================================
   GALLERY — Los Recuerdos (CSS-columns masonry)
   ============================================================ */
.ch-gallery { background: var(--ch-ink); }

.ch-gallery__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.6rem;
}

.ch-gallery__wall {
  columns: 3 300px;
  column-gap: 14px;
}
.ch-gallery__item {
  position: relative;
  display: block;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
}
.ch-gallery__item img {
  width: 100%;
  height: auto; /* beats the width/height attrs used for CLS reservation */
  display: block;
  transform: scale(1.001);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: saturate(0.95);
}
.ch-gallery__item:hover img { transform: scale(1.045); filter: saturate(1.1); }
.ch-gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.2rem 1rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(to top, rgba(6, 10, 22, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ch-gallery__item:hover figcaption { opacity: 1; }

/* ============================================================
   ARCHIVE BAND — the permanent record
   ============================================================ */
.ch-archive {
  position: relative;
  background:
    linear-gradient(rgba(6, 10, 22, 0.88), rgba(6, 10, 22, 0.88)),
    url('images/hero-fans.jpg') center/cover no-repeat;
  text-align: center;
}
.ch-archive .ch-lede { margin: 1.2rem auto 2rem; }
.ch-archive .ch-ribbon--hair { margin: 1.6rem auto 0; }

/* ============================================================
   FUTURE — Lo Que Viene
   ============================================================ */
.ch-future { background: var(--ch-ink-soft); }

.ch-future__head { max-width: 720px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.ch-future__head .ch-lede { margin-top: 1.2rem; }

.ch-future__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ch-card {
  position: relative;
  border: 1px solid var(--ch-line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  overflow: hidden;
}
.ch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 209, 22, 0.55);
  background: rgba(252, 209, 22, 0.03);
}

.ch-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  background:
    linear-gradient(to top, rgba(6, 10, 22, 0.92) 20%, rgba(6, 10, 22, 0.35)),
    url('images/stadium-lights.jpg') center/cover no-repeat;
  border-color: rgba(252, 209, 22, 0.3);
}

.ch-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ch-gold);
  border: 1px solid rgba(252, 209, 22, 0.45);
  border-radius: var(--radius-full);
  padding: 0.28rem 0.75rem;
  margin-bottom: 0.9rem;
}
.ch-card__icon { font-size: 1.5rem; display: block; margin-bottom: 0.7rem; }
.ch-card__title {
  font-family: var(--ch-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.35rem;
}
.ch-card--feature .ch-card__title { font-size: clamp(2rem, 3.2vw, 2.9rem); }
.ch-card__meta { font-size: 0.9rem; line-height: 1.55; color: var(--ch-text-dim); margin: 0; }

/* ============================================================
   JOIN — the massive community CTA
   ============================================================ */
.ch-join {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(252, 209, 22, 0.13), transparent 65%),
    var(--ch-ink);
  text-align: center;
}
.ch-join__head { max-width: 780px; margin: 0 auto; }
.ch-join__head .ch-lede { margin: 1.3rem auto 0; }

.ch-join__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.2rem auto 2.6rem;
  max-width: 760px;
  padding: 0;
  list-style: none;
}
.ch-join__benefits li {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ch-line);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.05rem;
}

.ch-join__form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.ch-join__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 10px;
}
.ch-join__form input[type='text'],
.ch-join__form input[type='email'] {
  width: 100%;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.ch-join__form input:focus {
  outline: none;
  border-color: var(--ch-gold);
  background: rgba(255, 255, 255, 0.08);
}
.ch-join__form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.ch-join__submit {
  padding: 1rem 1.9rem;
  border-radius: var(--radius-md);
  border: 0;
  background: var(--ch-gold);
  color: #0a0f1e;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.ch-join__submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(252, 209, 22, 0.3); }
.ch-join__submit:disabled { opacity: 0.55; cursor: wait; transform: none; }

.ch-join__consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 0.95rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.ch-join__consent input { margin-top: 0.2rem; accent-color: var(--ch-gold); }
.ch-join__consent a { color: rgba(255, 255, 255, 0.75); }

.ch-join__status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}
.ch-join__status.is-ok {
  display: block;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #a7f3c4;
}
.ch-join__status.is-err {
  display: block;
  background: rgba(206, 17, 38, 0.12);
  border: 1px solid rgba(206, 17, 38, 0.5);
  color: #fda4ae;
}

/* ============================================================
   SOCIAL — live + coming channels
   ============================================================ */
.ch-social { background: var(--ch-ink); padding-top: 0; }
.ch-social__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2.2rem;
}
.ch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--ch-line);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
a.ch-chip:hover { border-color: var(--ch-gold); transform: translateY(-2px); }
.ch-chip--soon { color: rgba(255, 255, 255, 0.45); border-style: dashed; }
.ch-chip--soon small {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ch-gold);
  opacity: 0.8;
}
.ch-social__head { text-align: center; }

/* ============================================================
   VOICES — testimonial placeholders (intentional, not empty)
   ============================================================ */
.ch-voices { background: var(--ch-ink-soft); }
.ch-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 2.6rem;
}
.ch-voice {
  border: 1px solid var(--ch-line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  position: relative;
}
.ch-voice::before {
  content: '\201C';
  font-family: var(--ch-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(252, 209, 22, 0.35);
  display: block;
  margin-bottom: 0.4rem;
}
.ch-voice__bar {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(100deg, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.07) 70%);
  background-size: 200% 100%;
  animation: chShimmer 2.2s linear infinite;
  margin-bottom: 0.7rem;
}
.ch-voice__bar:nth-child(3) { width: 92%; }
.ch-voice__bar:nth-child(4) { width: 74%; }
@keyframes chShimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.ch-voice__hint {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.ch-voice--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  border-color: rgba(252, 209, 22, 0.4);
}
.ch-voice--cta::before { display: none; }

/* Sponsors heading spacing tweak on this page */
.community-home .sponsors-section { border-top: 1px solid var(--ch-line); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .ch-recap__grid { grid-template-columns: 1fr; }
  .ch-recap__photos { min-height: 400px; }
  .ch-future__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-voices__grid { grid-template-columns: 1fr; }
  .ch-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-stat:nth-child(3)::before { display: none; }
  .ch-stat:nth-child(1), .ch-stat:nth-child(2) { border-bottom: 1px solid var(--ch-line); }
}

@media (max-width: 720px) {
  .ch-hero__video--desktop { display: none; }
  .ch-hero__video--mobile { display: block; }
  .ch-hero__content { padding-top: 7rem; }
  .ch-scroll-cue { display: none; }

  .ch-timeline__line { left: 10px; }
  .ch-moment,
  .ch-moment--l,
  .ch-moment--r {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 2.6rem 2.4rem;
  }
  .ch-moment--l .ch-moment__dot,
  .ch-moment--r .ch-moment__dot { left: 4px; right: auto; }
  .ch-moment--l .btn-ghost { margin-left: 0; }

  .ch-join__row { grid-template-columns: 1fr; }
  .ch-card--feature { grid-column: span 2; min-height: 280px; }
  .ch-gallery__wall { columns: 2 160px; }
}

@media (max-width: 480px) {
  .ch-future__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ch-card { padding: 1.2rem 1rem 1.1rem; }
  .ch-card__title { font-size: 1.25rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ch-hero__media video { display: none; }
  .ch-hero__kicker, .ch-hero__title span, .ch-hero__sub, .ch-hero__cta {
    animation: none;
  }
  .ch-scroll-cue::after, .ch-moment--next .ch-moment__dot, .ch-voice__bar {
    animation: none;
  }
  .community-home [data-scroll-animation] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ch-gallery__item img { transition: none; }
}
