
  body.page-template-stitch *, 
  body.page-template-stitch *::before, 
  body.page-template-stitch *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
  }
  :root,
  body.page-template-stitch {
    --navy: #0a1f44;
    --navy-mid: #122d62;
    --navy-light: #1a3f87;
    --blue: #1e5fbe;
    --blue-light: #3378d6;
    --sky: #d6e8ff;
    --sky-light: #eef4ff;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --off-white: #f7f9fd;
    --text-dark: #0a1f44;
    --text-mid: #2c4070;
    --text-muted: #5a7299;
  }

  body.page-template-stitch { 
    scroll-behavior: smooth; 
  }

  #stitch-home-takeover {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  #stitch-home-takeover nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(10, 31, 68, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  #stitch-home-takeover .nav-logo {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  #stitch-home-takeover .nav-logo span { color: var(--gold); }

  #stitch-home-takeover .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  #stitch-home-takeover .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  #stitch-home-takeover .nav-links a:hover { color: var(--gold); }

  #stitch-home-takeover .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600 !important;
  }

  #stitch-home-takeover .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,95,190,0.3) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
      linear-gradient(135deg, #0a1f44 0%, #122d62 50%, #0f2550 100%);
    z-index: 0;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(30,95,190,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,95,190,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  .hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero-img-frame {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201,168,76,0.3);
  }

  .hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,95,190,0.4) 0%, rgba(10,31,68,0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .hero-img-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
  }

  .hero-img-placeholder p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px;
    padding: 1rem 1.3rem;
    color: var(--white);
  }

  .hero-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .hero-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
  }

  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── STATS ── */
  .stats-bar {
    background: var(--navy-mid);
    padding: 3rem 5%;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .stat-item { padding: 1rem; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
  }

  .stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
  }

  /* ── SECTIONS COMMON ── */
  #stitch-home-takeover section { padding: 6rem 5%; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-title em {
    font-style: italic;
    color: var(--blue);
  }

  .section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
  }

  /* ── ABOUT ── */
  .about { background: var(--off-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-img-stack {
    position: relative;
    height: 520px;
  }

  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(30,95,190,0.15);
  }

  .about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 8px 32px rgba(10,31,68,0.12);
  }

  .img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--sky) 0%, #c0d8f5 100%);
  }

  .img-placeholder p {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 0 1rem;
  }

  .about-gold-accent {
    position: absolute;
    top: 40%;
    left: -2rem;
    width: 4px;
    height: 80px;
    background: var(--gold);
    border-radius: 2px;
  }

  .about-text .section-sub { max-width: 100%; margin-bottom: 2rem; }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(30,95,190,0.1);
  }

  .about-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--sky);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .about-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
  }

  .about-feature h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .about-feature p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ── PROGRAMS ── */
  .programs { background: var(--white); }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .program-card {
    background: var(--off-white);
    border: 1px solid rgba(30,95,190,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10,31,68,0.12);
  }

  .program-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .program-card-img img, .program-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .program-card-body { padding: 1.5rem; }

  .program-badge {
    display: inline-block;
    background: var(--sky);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
  }

  .program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .program-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .program-link {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
  }

  .program-link:hover { gap: 0.7rem; }

  .program-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
  }

  /* ── GALLERY ── */
  .gallery { background: var(--navy); padding: 6rem 5%; }

  .gallery .section-label { color: var(--gold); }
  .gallery .section-title { color: var(--white); }
  .gallery .section-sub { color: rgba(255,255,255,0.55); }

  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
  }

  .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,31,68,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover::after { opacity: 1; }

  .gallery-item img, .gallery-item .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .gallery-item:hover img { transform: scale(1.04); }

  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 3; }
  .gallery-item:nth-child(5) { grid-column: span 4; }

  .gallery-caption {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-caption { opacity: 1; }

  /* ── EVENTS ── */
  .events { background: var(--off-white); }

  .events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .event-card {
    background: var(--white);
    border: 1px solid rgba(30,95,190,0.1);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: border-color 0.2s, transform 0.2s;
  }

  .event-card:hover {
    border-color: var(--blue);
    transform: translateX(4px);
  }

  .event-date-badge {
    text-align: center;
    background: var(--navy);
    border-radius: 8px;
    padding: 0.6rem;
  }

  .event-date-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .event-date-mon {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .event-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .event-meta {
    display: flex;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
  }

  .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .event-meta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  .event-type {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .event-type.graduation { background: rgba(201,168,76,0.15); color: #8a6a1a; }
  .event-type.concert { background: var(--sky); color: var(--blue); }
  .event-type.lecture { background: rgba(30,95,190,0.08); color: var(--navy-mid); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--white); overflow: hidden; }

  .testimonials-header { text-align: center; margin-bottom: 3rem; }
  .testimonials-header .section-sub { margin: 0 auto; }

  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    background: var(--off-white);
    border: 1px solid rgba(30,95,190,0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    line-height: 1;
  }

  .testimonial-text {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(30,95,190,0.08);
    padding-top: 1rem;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-light), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
  }

  .author-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
  }

  .author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
  }

  .stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    stroke: none;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(30,95,190,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,95,190,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .cta-band-inner { position: relative; }

  .cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .cta-band h2 em { font-style: italic; color: var(--gold); }

  .cta-band p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

  /* ── FOOTER ── */
  #stitch-home-takeover footer {
    background: #060f22;
    padding: 4rem 5% 2rem;
    color: rgba(255,255,255,0.55);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand .nav-logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 260px;
  }

  .footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    cursor: pointer;
  }

  .social-btn:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); }

  .social-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.6);
  }

  .footer-col h5 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
  }

  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
  }

  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.78rem;
  }

  .footer-bottom-links a:hover { color: var(--white); }

  /* ── FLOATING NOTE DECO ── */
  .deco-note {
    position: absolute;
    color: rgba(201,168,76,0.12);
    font-size: 6rem;
    font-family: serif;
    pointer-events: none;
    user-select: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; padding-top: 100px; }
    .hero-image-wrap { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-divider { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-stack { display: none; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
    .testimonials-track { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }

  @media (max-width: 600px) {
    .programs-grid { grid-template-columns: 1fr; }
    .event-card { grid-template-columns: 60px 1fr; }
    .event-type { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
  }
