/* ─── TOKENS ──────────────────────────────────────────────── */
  :root {
    --gray:      #363636;
    --orange:    #D9593C;
    --wine:      #803723;
    --terracota: #B75C3C;
    --cream:     #FAF7F4;
    --light:     #F3EDE7;
    --white:     #FFFFFF;

    --canela: 'Georgia', 'Times New Roman', serif;   /* fallback editorial serif */
    --poppins: 'Poppins', sans-serif;

    --max: 1180px;
    --gap: 2rem;
  }

  /* ─── RESET ───────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  body { font-family: var(--poppins); color: var(--gray); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
  main { overflow-x: hidden; }
  img  { display: block; width: 100%; }
  a    { text-decoration: none; color: inherit; }

  /* ─── UTILITY ─────────────────────────────────────────────── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .tag { display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terracota); margin-bottom: .75rem; }
  .serif { font-family: var(--canela); font-weight: normal; font-style: italic; }

  /* ─── BUTTONS ─────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--poppins); font-size: .8rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .8rem 1.8rem; border-radius: 50px; transition: all .25s ease; cursor: pointer; border: none;
  }
  .btn-primary   { background: var(--orange); color: #fff; }
  .btn-primary:hover { background: var(--wine); }
  .btn-outline   { background: transparent; color: var(--gray); border: 1.5px solid rgba(54,54,54,.3); }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); background: transparent; }

  /* Hero outline — efecto referencia: borde orange sólido, sin fill */
  #hero .btn-outline {
    color: var(--gray);
    border: 2px solid rgba(54,54,54,.28);
    background: transparent;
    transition: border-color .25s ease, color .25s ease, box-shadow .25s ease;
  }
  #hero .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--orange);
  }
  .btn-dark      { background: var(--gray); color: #fff; }
  .btn-dark:hover{ background: #222; }
  .btn-ghost     { background: var(--orange); color: #fff; border: 1.5px solid var(--orange); }
  .btn-ghost:hover { background: var(--wine); border-color: var(--wine); }

  /* ─── NAV (legacy — replaced by header.css) ───────────────── */
  /* NOTE: rule removed — nav tag now lives inside .site-header */

  /* ─── HERO ─────────────────────────────────────────────────── */
  #hero {
    min-height: 100vh; display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    overflow: hidden;
  }
  .hero-content {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
    position: relative; z-index: 2;
    text-align: left;
  }
  .hero-content .hero-h1,
  .hero-content .hero-sub { text-align: left; }
  .hero-eyebrow {
    display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
  }
  /* home hero-eyebrow has no ::before line — page-specific versions handle their own */
  .hero-eyebrow span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
  .hero-h1 {
    font-family: var(--canela); font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: normal;
    line-height: 1.07; color: var(--gray); margin-bottom: 1.5rem;
  }
  .hero-h1 em { font-style: italic; color: var(--gray); }
  .hero-h1-accent { color: #D9593C; display: block; }
  .hero-sub {
    font-size: clamp(.9rem, 1.5vw, 1.05rem); font-weight: 400; line-height: 1.7;
    color: var(--gray); opacity: .72; max-width: 460px; margin-bottom: 2.5rem;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

  .hero-photo {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    background: var(--cream);
  }

  /* Marco con esquinas redondeadas y sombra sutil */
  .hero-photo-frame {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    width: 100%;
  }

  .hero-photo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    filter: grayscale(100%);
    box-shadow: 0 8px 40px rgba(54,54,54,.13);
    display: block;
  }

  /* Indicador tipo carrusel: punto naranja + línea */
  .hero-photo-indicator {
    display: flex; align-items: center; gap: .5rem;
  }
  .hero-indicator-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }
  .hero-indicator-line {
    width: 32px; height: 3px;
    border-radius: 2px;
    background: var(--terracota);
    opacity: .5;
  }

  /* ─── BELIEF STATEMENT ────────────────────────────────────── */
  #belief {
    background: var(--white); padding: clamp(4rem, 8vw, 8rem) 0;
    text-align: center;
    border-top: 1px solid rgba(54,54,54,.07);
    overflow: hidden;
  }
  .belief-text {
    max-width: 900px; margin: 0 auto; text-align: center;
  }
  .belief-line {
    font-family: var(--canela); font-size: clamp(1.2rem, 2.8vw, 1.85rem);
    font-weight: normal; font-style: normal;
    color: var(--gray); line-height: 1.6; margin: 0;
  }
  .belief-key {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(54,54,54,.5);
  }
  .belief-line--accent {
    color: #D9593C;
  }
  .belief-divider {
    width: 48px; height: 3px; background: var(--orange);
    margin: 2rem auto 0; border-radius: 2px;
  }

  /* ─── VIDEO / STORY ──────────────────────────────────────── */
  #video {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--light);
    overflow: hidden;
  }
  .video-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: center; }
  .video-text .tag { margin-bottom: 1rem; }
  .video-text h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; line-height: 1.2; color: var(--gray); margin-bottom: 1.25rem;
  }
  .video-text p { font-size: .95rem; line-height: 1.8; color: var(--gray); opacity: .72; margin-bottom: 1.75rem; }
  .video-embed {
    aspect-ratio: 16/9; background: #000;
    border-radius: 16px; overflow: hidden; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .video-embed:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.10);
  }
  .video-embed iframe { width: 100%; height: 100%; border: none; display: block; }
  .video-play-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a1810, var(--wine));
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    position: relative;
  }
  .video-play-placeholder::after {
    content: ''; display: block;
    border-left: 36px solid rgba(255,255,255,.9);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 6px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  }

  /* ─── PROGRAMS ──────────────────────────────────────────── */
  #programs { padding: clamp(4rem, 8vw, 8rem) 0; background: var(--cream); overflow: hidden; }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); margin-bottom: 1rem;
  }
  .section-header p { font-size: .95rem; line-height: 1.8; color: var(--gray); opacity: .68; max-width: 540px; margin: 0 auto 1.5rem; }
  #programs .programs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
  #programs .program-card {
    border-radius: 20px; padding: 1.25rem 1.5rem 1.5rem;
    position: relative; overflow: hidden; min-height: 220px;
    display: flex !important; flex-direction: column !important;
    background: var(--gray) center/cover no-repeat;
    transition: transform .28s ease, box-shadow .28s ease;
  }
  #programs .program-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(20,15,10,.05) 0%, rgba(20,15,10,.50) 50%);
    border-radius: 20px;
  }
  #programs .program-card:nth-child(1) { background-image: url('../images/programs/entrepreneurship.jpg'); }
  #programs .program-card:nth-child(2) { background-image: url('../images/programs/financial.jpg'); }
  #programs .program-card:nth-child(3) { background-image: url('../images/programs/english.jpg'); }
  #programs .program-card:nth-child(4) { background-image: url('../images/programs/mental-health.jpg'); }
  #programs .program-card:nth-child(5) { background-image: url('../images/programs/technology.jpg'); background-position: right center; }
  #programs .program-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(20,15,10,.28); }
  #programs .program-icon {
    position: relative; z-index: 2;
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--terracota); display: flex !important; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  #programs .program-icon svg { width: 22px; height: 22px; }
  #programs .program-card h3 {
    position: relative; z-index: 2; margin-top: auto !important; padding-top: .65rem;
    font-size: 1rem; font-weight: 600; color: #fff !important; margin-bottom: .4rem; line-height: 1.3;
    text-align: left;
  }
  #programs .program-card p {
    position: relative; z-index: 2;
    font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.82) !important;
    opacity: 1 !important; text-align: left;
  }
  .programs-cta { text-align: center; }

  /* ─── HOW IT WORKS ──────────────────────────────────────── */
  #home-how {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--terracota); color: var(--white);
    overflow: hidden;
  }
  #home-how .section-header { text-align: center; }
  #home-how .section-header h2 { color: var(--white); }
  #home-how .section-header p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }
  .steps {
    display: flex; justify-content: center; align-items: flex-start;
    gap: 0; margin-top: 3.5rem; background: none; border-radius: 0; overflow: visible;
  }
  .step {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 0 2rem; background: none; position: relative;
  }
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 35px;
    left: calc(50% + 35px); width: calc(100% - 70px);
    height: 1.5px; background: rgba(255,255,255,.4);
  }
  .step-circle {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--white); color: var(--terracota);
    font-family: var(--canela); font-size: 1.7rem; font-style: italic;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.75rem; position: relative; z-index: 1;
  }
  .step h3 {
    font-family: var(--canela); font-size: 1.35rem; font-weight: normal;
    font-style: italic; color: var(--white); margin-bottom: .75rem;
  }
  .step p  { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.8); max-width: 220px; }

  /* ─── STATS ─────────────────────────────────────────────── */
  #stats { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--white); overflow: hidden; }
  .stats-intro { text-align: center; margin-bottom: 3.5rem; }
  .stats-eyebrow {
    display: block; font-size: .65rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gray); opacity: .5; margin-bottom: .6rem;
  }
  .stats-intro h2 {
    font-family: var(--canela); font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: normal; font-style: italic; color: var(--gray);
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  #stats .stat-card {
    padding: 2rem 2.5rem; text-align: center;
    border-left: 1px solid rgba(54,54,54,.12);
    display: flex !important; flex-direction: column !important; align-items: center !important;
    background: transparent; border-top: none; border-radius: 0;
  }
  #stats .stat-card:first-child { border-left: none; }
  #stats .stat-top-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 1rem; line-height: 1.4; text-align: center;
  }
  #stats .stat-number {
    font-family: var(--canela); font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: normal; color: var(--orange); line-height: 1; margin-bottom: .75rem; text-align: center;
  }
  #stats .stat-desc { font-size: .8rem; line-height: 1.6; color: var(--gray); opacity: .65; text-align: center; }

  /* ─── TESTIMONIAL ────────────────────────────────────────── */
  #testimonial {
    background: #1f0e08;
    padding: clamp(5rem, 10vw, 10rem) 0; text-align: center; position: relative; overflow: hidden;
  }
  #testimonial::before {
    content: '"';
    position: absolute; top: -2rem; left: 50%; transform: translateX(-50%);
    font-family: var(--canela); font-size: 28rem; color: var(--wine); opacity: .08; line-height: 1;
    pointer-events: none;
  }
  .testimonial-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
  .testimonial-inner blockquote {
    font-family: var(--canela); font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: normal; font-style: italic; color: var(--white);
    line-height: 1.45; margin-bottom: 2.5rem;
  }
  .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
  .testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota), var(--wine));
    flex-shrink: 0;
  }
  .testimonial-meta { text-align: left; }
  .testimonial-name { font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
  .testimonial-role { font-size: .74rem; color: rgba(255,255,255,.45); letter-spacing: .06em; }
  .testimonial-link { margin-top: 2.5rem; }
  .testimonial-link a { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--terracota); text-decoration: underline; text-underline-offset: 4px; }

  /* ─── NEWSLETTER ─────────────────────────────────────────── */
  #newsletter { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--white); overflow: hidden; }
  .newsletter-box {
    background: var(--orange); border-radius: 6px; padding: clamp(2.5rem, 6vw, 4.5rem);
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }
  .newsletter-text h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: normal; color: var(--white); margin-bottom: .75rem;
  }
  .newsletter-text p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.8); }
  .newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
  .newsletter-form input[type="email"] {
    width: 100%; padding: .9rem 1.25rem;
    border: none; border-radius: 2px;
    font-family: var(--poppins); font-size: .88rem;
    background: rgba(255,255,255,.15); color: var(--white);
    outline: none; border: 1.5px solid rgba(255,255,255,.3);
    transition: border-color .2s;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
  .newsletter-form input:focus { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.22); }
  .newsletter-form button {
    align-self: flex-start; background: var(--white); color: var(--orange);
    border: none; padding: .9rem 2rem; border-radius: 50px;
    font-family: var(--poppins); font-size: .8rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .newsletter-form button:hover { background: var(--cream); transform: translateY(-1px); }

  /* ─── COMMUNITY GALLERY ──────────────────────────────────── */
  #community { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream); overflow: hidden; }
  .community-header { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2.5rem; }
  .community-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: normal; color: var(--gray); line-height: 1.15;
  }
  .community-header p { font-size: .88rem; line-height: 1.7; color: var(--gray); opacity: .65; max-width: 480px; }
  .gallery-track {
    position: relative;
    padding: 0 clamp(2.5rem, 5vw, 4rem);
  }
  .gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(54,54,54,.22);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--gray);
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
  }
  .gallery-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(217,89,60,.3); }
  .gallery-arrow-prev { left: clamp(.25rem, 1vw, .75rem); }
  .gallery-arrow-next { right: clamp(.25rem, 1vw, .75rem); }
  .gallery-dots-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; margin-top: 1.25rem;
  }
  .gallery-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gray); opacity: .2;
    cursor: pointer;
    transition: opacity .25s, transform .25s, background .25s;
  }
  .gallery-dot.active {
    background: var(--orange); opacity: 1; transform: scale(1.35);
  }
  .gallery-scroll {
    display: flex; gap: 1rem; overflow-x: auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) 1rem;
    scrollbar-width: none; scroll-behavior: smooth;
  }
  .gallery-scroll::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 420px; height: 360px; border-radius: 8px; overflow: hidden; position: relative;
  }
  .gallery-item-bg {
    width: 100%; height: 100%;
    background: var(--gray);
    display: flex; align-items: center; justify-content: center;
    transition: transform .4s ease;
  }
  .gallery-item:hover .gallery-item-bg { transform: scale(1.04); }
  .gallery-item-bg.c1 { background: url('../images/community/event-1.jpg') center/cover no-repeat; }
  .gallery-item-bg.c2 { background: url('../images/community/event-2.jpg') center/cover no-repeat; }
  .gallery-item-bg.c3 { background: url('../images/community/event-3.jpg') center/cover no-repeat; }
  .gallery-item-bg.c4 { background: url('../images/community/event-4.jpeg') center/cover no-repeat; }
  .gallery-item-bg.c5 { background: url('../images/community/event-5.jpg') center/cover no-repeat; }
  .gallery-item-label {
    position: absolute; bottom: 1rem; left: 1rem;
    font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.7); background: rgba(0,0,0,.35);
    padding: .3rem .7rem; border-radius: 2px;
  }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  footer { background: #1a0a04; color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: var(--canela); font-size: 1.4rem; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
  .footer-logo span { display: block; font-family: var(--poppins); font-size: .6rem; font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota); margin-top: 4px; }
  .footer-tagline { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 220px; }
  .footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .55rem; }
  .footer-col a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color .2s; }
  .footer-col a:hover { color: var(--orange); }
  .social-links { display: flex; gap: .75rem; margin-top: .25rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: rgba(255,255,255,.65); transition: background .2s, color .2s;
  }
  .social-link:hover { background: var(--orange); color: var(--white); }
  .footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
  .footer-mission { font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; font-family: var(--canela); }

  /* ─── ANIMATIONS ─────────────────────────────────────────── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 5rem 1.5rem 2rem; }
    .hero-photo { padding: 0 1.5rem 3.5rem; align-items: flex-start; }
    .hero-photo-img { aspect-ratio: 3/2; border-radius: 12px; }
    .hero-photo-indicator { display: none; }
    .video-grid, .newsletter-box, .stats-grid, .programs-grid, .footer-top { grid-template-columns: 1fr 1fr; }
    #programs .programs-grid { grid-template-columns: repeat(2, 1fr); }
    #programs .program-card { height: 150px; min-height: unset; border-radius: 14px; }
    .steps { flex-direction: column; align-items: center; gap: 2.5rem; }
    .step { max-width: 280px; }
    .step:not(:last-child)::after { display: none; }
  }
  @media (max-width: 600px) {
    .hero-h1 { font-size: 2.4rem; }
    .stats-grid, .programs-grid, .newsletter-box, .footer-top { grid-template-columns: 1fr; }
    #programs .programs-grid { display: flex !important; flex-direction: column; }
    #programs .program-card { width: 100% !important; height: 180px !important; min-height: unset; border-radius: 14px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    #stats .stat-card { padding: 1.25rem 1rem; }
    .community-header { flex-direction: column; align-items: flex-start; }
    .video-grid { grid-template-columns: 1fr; }
  }