*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  img { max-width: 100%; height: auto; }

  :root {
    /* Brand colors pulled from the logo */
    --cream: #FDF8EE;
    --deep-green: #7A2E0C;           /* Deep burnt orange (replaces green) */
    --leaf-green: #C24813;           /* Mid burnt orange (replaces green) */
    --warm-amber: #E55B1A;           /* Logo "Pages" orange */
    --soft-amber: #F5A85C;           /* Lighter accent from kente patterns */
    --brown: #7A4A28;                /* Logo "Reading and Activity Club" brown */
    --brown-soft: #A56C42;
    --dusty-rose: #D9523E;           /* Reds in kente patterns */
    --sky: #4FA3C7;                  /* Adinkra accent in logo */
    --sky-pale: #D6EEF8;
    --gold: #F2C24A;                 /* Yellow stars / sparkles in logo */
    --text-dark: #2A1A0E;
    --text-mid: #5A4636;
    --text-muted: #998877;
    --white: #fff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(253, 246, 236, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1.5px solid rgba(194,72,19,0.12);
  }
  .nav-logo {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 900;
    color: var(--deep-green); letter-spacing: -0.3px;
    text-decoration: none; line-height: 1.15;
  }
  .nav-logo img { height: 44px; width: auto; display: block; }
  .nav-logo-text { display: inline-flex; flex-direction: column; }
  .nav-logo-text .nav-logo-primary { color: var(--deep-green); }
  .nav-logo-text .nav-logo-primary span { color: var(--warm-amber); }
  .nav-logo-text .nav-logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.4px;
    color: var(--brown); margin-top: 1px;
  }
  @media (max-width: 640px) { .nav-logo-text { display: none; } }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 0.875rem; font-weight: 500;
    color: var(--text-mid); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--leaf-green); }
  .nav-cta {
    background: var(--leaf-green); color: white !important;
    padding: 0.5rem 1.25rem; border-radius: 100px;
    font-weight: 600 !important; transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--deep-green) !important; }

  /* HAMBURGER MENU */
  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; padding: 6px; position: relative; z-index: 110;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    display: block; width: 24px; height: 2.5px; background: var(--deep-green);
    border-radius: 2px; transition: all 0.3s ease; margin: 5px auto;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  @media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
      display: flex; flex-direction: column; gap: 0;
      position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
      background: var(--cream); padding: 5rem 2rem 2rem;
      box-shadow: -4px 0 24px rgba(0,0,0,0.12);
      transition: right 0.35s ease; z-index: 105;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
      font-size: 1.05rem; padding: 0.9rem 0;
      border-bottom: 1px solid rgba(194,72,19,0.08);
    }
    .nav-cta { text-align: center; margin-top: 1rem; display: block; }
    .nav-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.4);
      z-index: 104; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-overlay.visible { opacity: 1; visibility: visible; }
  }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 7rem 2.5rem 4rem; position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(91,168,212,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 10% 80%, rgba(194,72,19,0.08) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 90% 10%, rgba(232,132,42,0.09) 0%, transparent 50%);
  }
  .float-shape {
    position: absolute; border-radius: 4px; opacity: 0.18;
    animation: floatY 6s ease-in-out infinite;
  }
  .shape1 { width: 28px; height: 40px; background: var(--leaf-green); top: 15%; right: 22%; animation-delay: 0s; transform: rotate(-8deg); }
  .shape2 { width: 22px; height: 32px; background: var(--warm-amber); top: 35%; right: 15%; animation-delay: 1.2s; transform: rotate(6deg); }
  .shape3 { width: 18px; height: 26px; background: var(--sky); top: 60%; right: 25%; animation-delay: 2.4s; transform: rotate(-12deg); }
  .shape4 { width: 32px; height: 44px; background: var(--dusty-rose); top: 25%; right: 38%; animation-delay: 0.8s; transform: rotate(10deg); }
  .shape5 { width: 14px; height: 20px; background: var(--deep-green); top: 70%; right: 10%; animation-delay: 3s; transform: rotate(-5deg); }

  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  .hero-content { max-width: 600px; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(194,72,19,0.1); color: var(--leaf-green);
    font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem;
    border-radius: 100px; margin-bottom: 1.5rem; letter-spacing: 0.3px;
  }
  .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--leaf-green); animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 900;
    line-height: 1.1; color: var(--deep-green); margin-bottom: 1.5rem;
  }
  .hero h1 em { font-style: italic; color: var(--warm-amber); }
  .hero p {
    font-size: 1.1rem; line-height: 1.7; color: var(--text-mid);
    margin-bottom: 2.5rem; max-width: 500px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--leaf-green); color: white;
    padding: 0.9rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    border: none; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--deep-green); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--deep-green);
    padding: 0.9rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    border: 2px solid var(--deep-green); cursor: pointer; transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-outline:hover { background: var(--deep-green); color: white; }

  .hero-stats { margin-top: 3.5rem; display: flex; gap: 2.5rem; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--deep-green); line-height: 1;
  }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

  .hero-illustration {
    position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
    width: 44%; max-width: 520px; overflow: hidden; border-radius: 24px;
    box-shadow: 0 18px 40px rgba(122,46,12,0.15), 0 4px 12px rgba(229,91,26,0.12);
  }
  .hero-collage {
    display: grid; width: 100%; aspect-ratio: 1 / 1;
    grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  }
  .hero-collage-item {
    width: 100%; height: 100%; overflow: hidden; min-height: 0;
  }
  .hero-collage-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* QUOTE BAND */
  .quote-band {
    background: var(--deep-green); color: white;
    text-align: center; padding: 2.5rem 2rem;
  }
  .quote-band blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic;
    opacity: 0.9; max-width: 700px; margin: 0 auto 0.5rem; line-height: 1.6;
  }
  .quote-band cite { font-size: 0.8rem; opacity: 0.55; font-style: normal; letter-spacing: 0.5px; text-transform: uppercase; }

  /* SECTIONS */
  section { padding: 5rem 2.5rem; }
  .section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--warm-amber); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900;
    color: var(--deep-green); line-height: 1.15; margin-bottom: 1.25rem;
  }
  .section-sub { font-size: 1.05rem; line-height: 1.7; color: var(--text-mid); max-width: 560px; }
  .container { max-width: 1100px; margin: 0 auto; }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
  .about-visual { position: relative; aspect-ratio: 1; max-width: 420px; }
  .about-card-main {
    position: absolute; inset: 0; background: var(--leaf-green);
    border-radius: 24px; display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .about-card-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-card-main svg { width: 75%; opacity: 0.9; }
  .about-floating-card {
    position: absolute; background: white; border-radius: 16px;
    padding: 1rem 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 0.75rem;
  }
  .afc-1 { bottom: -1rem; left: -1.5rem; }
  .afc-2 { top: 1.5rem; right: -1.5rem; }
  .afc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .afc-green { background: rgba(194,72,19,0.12); }
  .afc-amber { background: rgba(232,132,42,0.12); }
  .afc-text { font-size: 0.8rem; color: var(--text-muted); }
  .afc-num { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); line-height: 1; margin-bottom: 2px; }
  .about-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .about-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
  .about-list-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(194,72,19,0.12); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; margin-top: 2px;
  }
  .about-list-icon svg { width: 12px; height: 12px; stroke: var(--leaf-green); fill: none; stroke-width: 2.5; }
  .about-list li p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.5; }

  /* PROGRAMS */
  .programs-section { background: white; }
  .programs-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .program-card {
    background: var(--cream); border-radius: 20px; padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s; border: 1.5px solid transparent;
  }
  .program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); border-color: rgba(194,72,19,0.15); }
  .pc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
  .pc-green { background: rgba(194,72,19,0.12); }
  .pc-amber { background: rgba(232,132,42,0.12); }
  .pc-sky { background: rgba(91,168,212,0.15); }
  .pc-rose { background: rgba(224,123,106,0.12); }
  .pc-purple { background: rgba(130,80,180,0.1); }
  .program-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--deep-green); margin-bottom: 0.5rem; }
  .program-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
  .pc-tag {
    display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 600;
    color: var(--leaf-green); background: rgba(194,72,19,0.1); padding: 0.25rem 0.75rem; border-radius: 100px;
  }

  /* SCHEDULE */
  .schedule-section { background: var(--deep-green); color: white; }
  .schedule-section .section-title { color: white; }
  .schedule-section .section-sub { color: rgba(255,255,255,0.65); }
  .schedule-section .section-label { color: var(--soft-amber); }
  .schedule-layout {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 2.5rem; margin-top: 3rem; align-items: start;
  }
  .schedule-flyer {
    position: sticky; top: 6rem;
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .schedule-flyer img {
    display: block; width: 100%; height: auto;
  }
  @media (max-width: 860px) {
    .schedule-layout {
      grid-template-columns: 1fr;
      max-width: 500px; margin-left: auto; margin-right: auto;
    }
    .schedule-flyer { position: static; max-width: 360px; margin: 0 auto; }
  }
  .schedule-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  .schedule-item {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 1.25rem; transition: background 0.2s;
  }
  .schedule-item:hover { background: rgba(255,255,255,0.11); }
  .sched-time { font-size: 0.75rem; font-weight: 600; color: var(--soft-amber); letter-spacing: 0.5px; margin-bottom: 0.5rem; }
  .sched-name { font-size: 0.95rem; font-weight: 500; color: white; line-height: 1.3; }
  .sched-detail { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.4; margin-top: 0.35rem; }
  .sched-bar { height: 3px; border-radius: 2px; margin-top: 1rem; }
  .bar-green { background: rgba(245,168,92,0.55); }
  .bar-amber { background: rgba(245,185,110,0.45); }
  .bar-sky { background: rgba(91,168,212,0.45); }
  .bar-rose { background: rgba(224,123,106,0.45); }
  .bar-teal { background: rgba(80,200,180,0.45); }
  .schedule-notes { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .schedule-note { font-size: 0.8rem; font-weight: 600; color: var(--soft-amber); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 0.4rem 1rem; letter-spacing: 0.3px; }

  /* AGE GROUPS */
  .ages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .age-card { border-radius: 20px; padding: 2rem; text-align: center; transition: transform 0.2s; }
  .age-card:hover { transform: translateY(-4px); }
  .age-green { background: rgba(194,72,19,0.08); }
  .age-amber { background: rgba(232,132,42,0.1); }
  .age-sky { background: rgba(91,168,212,0.1); }
  .age-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem; }
  .age-green .age-num { color: var(--leaf-green); }
  .age-amber .age-num { color: var(--warm-amber); }
  .age-sky .age-num { color: var(--sky); }
  .age-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; color: var(--text-muted); }
  .age-card h3 { font-size: 1rem; font-weight: 600; color: var(--deep-green); margin-bottom: 0.5rem; }
  .age-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

  /* GALLERY */
  .gallery-section { background: white; }
  .gallery-slideshow {
    position: relative; margin-top: 3rem; border-radius: 20px; overflow: hidden;
    background: var(--cream); box-shadow: 0 8px 32px rgba(122,46,12,0.12);
    aspect-ratio: 16 / 10; max-width: 900px; margin-left: auto; margin-right: auto;
  }
  .gallery-track {
    display: flex; width: 100%; height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-slide {
    min-width: 100%; height: 100%; position: relative; flex-shrink: 0; min-height: 0; overflow: hidden;
  }
  .gallery-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .gallery-caption-slide {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(42,26,14,0.82) 0%, rgba(42,26,14,0) 100%);
    color: white; font-size: 1rem; font-weight: 500; line-height: 1.4;
  }
  .gallery-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
    border: none; cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    color: var(--deep-green); font-size: 1.2rem;
  }
  .gallery-nav-btn:hover { background: white; transform: translateY(-50%) scale(1.08); }
  .gallery-nav-btn.prev { left: 1rem; }
  .gallery-nav-btn.next { right: 1rem; }
  .gallery-dots {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .gallery-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(194,72,19,0.2); border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s; padding: 0;
  }
  .gallery-dot.active { background: var(--leaf-green); transform: scale(1.25); }
  .gallery-counter {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(42,26,14,0.6); backdrop-filter: blur(4px);
    color: white; font-size: 0.8rem; font-weight: 600;
    padding: 0.3rem 0.75rem; border-radius: 100px; z-index: 5;
  }
  @media (max-width: 768px) {
    .gallery-slideshow { aspect-ratio: 4 / 3; border-radius: 16px; }
    .gallery-nav-btn { width: 36px; height: 36px; font-size: 1rem; }
    .gallery-nav-btn.prev { left: 0.5rem; }
    .gallery-nav-btn.next { right: 0.5rem; }
    .gallery-caption-slide { font-size: 0.88rem; padding: 1.5rem 1rem 1rem; }
  }

  /* VISION */
  .vision-section { background: white; }
  .vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .vision-quote {
    font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; font-style: italic; color: var(--deep-green); line-height: 1.4;
    border-left: 4px solid var(--warm-amber); padding-left: 1.5rem; margin-bottom: 1.5rem;
  }
  .objectives-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
  .obj-item {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--cream); border-radius: 12px; padding: 1rem 1.25rem;
  }
  .obj-badge {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: white; flex-shrink: 0;
  }
  .ob-green { background: var(--leaf-green); }
  .ob-amber { background: var(--warm-amber); }
  .ob-sky { background: var(--sky); }
  .obj-item-text strong { display: block; font-size: 0.9rem; color: var(--deep-green); margin-bottom: 0.2rem; }
  .obj-item-text span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

  /* FOUNDER */
  .founder-section { background: var(--cream); }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--deep-green) 100%);
    padding: 5rem 2.5rem;
  }
  .cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--leaf-green);
    padding: 0.85rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  }
  .btn-white:hover { background: var(--cream); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: white;
    padding: 0.85rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.45);
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
  .founder-card {
    max-width: 760px; margin: 3rem auto 0; background: white;
    border-radius: 24px; padding: 2.5rem; display: flex; gap: 2rem; align-items: flex-start;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  }
  .founder-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-amber) 0%, var(--leaf-green) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: white; flex-shrink: 0;
    overflow: hidden;
  }
  .founder-avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .founder-name { font-size: 1.2rem; font-weight: 600; color: var(--deep-green); margin-bottom: 0.2rem; }
  .founder-role { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
  .founder-bio { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

  /* FOOTER */
  footer { background: var(--deep-green); color: white; padding: 3rem 2.5rem 2rem; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
    max-width: 1100px; margin: 0 auto 2.5rem;
  }
  .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
  .footer-logo img { height: 60px; width: auto; }
  .footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
  .footer-logo-primary { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; }
  .footer-logo-primary span { color: var(--soft-amber); }
  .footer-logo-sub { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.4px; margin-top: 2px; }
  .footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 280px; }
  .footer-contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
  .footer-contact a { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
  .footer-contact a:hover { color: var(--soft-amber); }
  .footer-social { margin-top: 1rem; display: flex; gap: 0.75rem; }
  .footer-social a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-social a:hover { color: var(--soft-amber); }
  .footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: white; }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
  }

  /* REGISTRATION FORM */
  .join-section { background: linear-gradient(135deg, var(--leaf-green) 0%, var(--deep-green) 100%); padding: 5rem 2rem; }
  .join-inner { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
  .join-text { color: white; }
  .join-text h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900; line-height: 1.2; margin-bottom: 1rem;
  }
  .join-text p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .join-contact-info { display: flex; flex-direction: column; gap: 0.5rem; }
  .join-contact-info a {
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem;
    transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem;
  }
  .join-contact-info a:hover { color: white; }
  .join-form-card {
    background: white; border-radius: 20px; padding: 2.25rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  }
  .join-form-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
    color: var(--deep-green); margin-bottom: 0.35rem;
  }
  .join-form-card .form-subtitle {
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
  .form-group { display: flex; flex-direction: column; margin-bottom: 0.75rem; }
  .form-group label {
    font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
    margin-bottom: 0.3rem; letter-spacing: 0.3px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.9rem; border: 1.5px solid rgba(194,72,19,0.15);
    border-radius: 10px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    color: var(--text-dark); background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--leaf-green);
    box-shadow: 0 0 0 3px rgba(194,72,19,0.1);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%235A4636' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem;
  }
  .form-submit {
    width: 100%; background: var(--leaf-green); color: white;
    padding: 0.85rem; border-radius: 100px; font-size: 0.95rem; font-weight: 700;
    border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif; margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--deep-green); transform: translateY(-2px); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-success {
    text-align: center; padding: 2rem 1rem; display: none;
  }
  .form-success.show { display: block; }
  .form-success .success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(194,72,19,0.1); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem;
  }
  .form-success h4 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    font-weight: 700; color: var(--deep-green); margin-bottom: 0.5rem;
  }
  .form-success p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
  @media (max-width: 768px) {
    .join-inner { grid-template-columns: 1fr; gap: 2rem; }
    .join-text { text-align: center; }
    .join-contact-info { align-items: center; }
    .join-form-card { padding: 1.75rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 768px) {
    .about-grid, .ages-grid, .vision-inner, .footer-grid { grid-template-columns: 1fr; }
    .hero-illustration { display: none; }
    nav { padding: 1rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .founder-card { flex-direction: column; align-items: center; text-align: center; }
    .hero-stats { gap: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { text-align: center; justify-content: center; }
    .about-visual { max-width: 100%; width: 100%; margin: 0 auto; }
    .about-floating-card.afc-1 { left: 0.5rem; bottom: -0.5rem; }
    .about-floating-card.afc-2 { right: 0.5rem; top: 1rem; }
    .schedule-grid { grid-template-columns: 1fr; }
    .ages-grid { gap: 1rem; }
    .age-card { padding: 1.5rem; }
    .age-num { font-size: 2.5rem; }
    .footer-grid { gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .vision-inner { gap: 2.5rem; }
    .programs-grid { grid-template-columns: 1fr; }
    .quote-band { padding: 2rem 1.5rem; }
  }
  @media (max-width: 480px) {
    .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-item { display: flex; align-items: baseline; gap: 0.5rem; }
    section { padding: 3rem 1rem; }
    .hero { padding: 5.5rem 1rem 2.5rem; }
    nav { padding: 0.75rem 1rem; }
    .nav-logo img { height: 36px; }
    .gallery-slideshow { border-radius: 12px; }
  }

  /* PROGRAMS COLLAGE */
  .programs-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    aspect-ratio: 2.2 / 1;
  }
  .programs-collage-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0;
  }
  .programs-collage-item:nth-child(1) {
    grid-row: 1 / 3;
  }
  .programs-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .programs-collage-item:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .programs-collage {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      aspect-ratio: auto;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .programs-collage-item {
      border-radius: 16px;
    }
    .programs-collage-item:nth-child(1) {
      grid-column: 1 / 3;
      grid-row: auto;
      aspect-ratio: 16/10;
    }
    .programs-collage-item:nth-child(2),
    .programs-collage-item:nth-child(3) {
      aspect-ratio: 1;
    }
  }

  /* SCHEDULE COLLAGE */
  .schedule-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  .schedule-collage-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
  }
  .schedule-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .schedule-collage-item:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .schedule-collage {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .schedule-collage-item {
      border-radius: 16px;
    }
  }
