    /* Skip to content — accessibility */
    .skip-link {
      position: absolute; top: -100%; left: 1rem;
      background: var(--ink); color: #fff;
      padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
      font-weight: 800; font-size: 0.9rem; text-decoration: none;
      z-index: 9999; transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --pink:    #F65472;
      --blue:    #69CFED;
      --green:   #8CC63E;
      --purple:  #9A50A5;
      --orange:  #F07F1B;
      --yellow:  #FFD93D;
      --cream:   #FFFDF5;
      --white:   #ffffff;
      --ink:     #1A1A2E;
      --ink-soft: #4a4a5a;
      --pink-pale:   #FEE8ED;
      --blue-pale:   #E3F7FD;
      --green-pale:  #EAF6D8;
      --purple-pale: #F2E6F8;
      --orange-pale: #FEF0E0;
      --yellow-pale: #FFFBE5;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.15; text-wrap: balance; }
    p { text-wrap: pretty; }

    /* ─────────────────────────────────────
       NAV
    ───────────────────────────────────── */
    nav {
      position: fixed; top: 0; width: 100%;
      background: rgba(255,253,245,0.95);
      backdrop-filter: blur(14px);
      z-index: 200;
      border-bottom: 3px dashed var(--yellow);
    }
    .nav-inner {
      max-width: 1140px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.55rem 1.5rem;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.5rem;
      text-decoration: none;
    }
    .nav-logo img { height: 44px; width: auto; }
    nav ul { list-style: none; display: flex; gap: 1.75rem; }
    nav a {
      font-family: 'Baloo 2', cursive; font-weight: 700;
      font-size: 0.95rem; text-decoration: none; color: var(--ink);
      transition: color 0.2s;
    }
    nav a:hover { color: var(--pink); }
    .nav-social {
      display: flex; align-items: center; gap: 0.35rem;
      margin-left: 1rem;
      padding-left: 1rem;
      border-left: 2px solid rgba(0,0,0,0.08);
    }
    .nav-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 50%;
      color: var(--ink-soft);
      transition: color 0.2s, background 0.2s;
    }
    .nav-social a:hover { color: var(--pink); background: var(--pink-pale); }
    .mobile-toggle {
      display: none; background: none; border: none;
      font-size: 1.5rem; cursor: pointer; color: var(--purple);
    }

    /* ─────────────────────────────────────
       HERO
    ───────────────────────────────────── */
    .hero {
      display: flex; align-items: center; justify-content: center;
      padding: 7rem 1.5rem 4rem;
      position: relative; overflow: hidden;
      background: var(--cream);
    }
    .hero-blob {
      position: absolute; pointer-events: none; border-radius: 50%;
    }
    .blob-1 {
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(105,207,237,0.22) 0%, transparent 70%);
      top: -140px; right: -120px;
    }
    .blob-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(246,84,114,0.18) 0%, transparent 70%);
      bottom: -80px; left: -100px;
    }
    .blob-3 {
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(140,198,62,0.2) 0%, transparent 70%);
      top: 30%; left: 5%;
    }
    .blob-4 {
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(240,127,27,0.18) 0%, transparent 70%);
      top: 15%; right: 20%;
    }
    .hero-confetti {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(circle, #F65472 2.5px, transparent 2.5px),
        radial-gradient(circle, #69CFED 2.5px, transparent 2.5px),
        radial-gradient(circle, #8CC63E 2px, transparent 2px),
        radial-gradient(circle, #F07F1B 2px, transparent 2px),
        radial-gradient(circle, #9A50A5 2px, transparent 2px);
      background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px, 140px 140px;
      background-position: 10px 10px, 40px 60px, 20px 50px, 70px 20px, 50px 90px;
      opacity: 0.15;
    }
    .star {
      position: absolute; pointer-events: none; font-size: 1.4rem; opacity: 0.18;
    }
    .hero-content {
      position: relative; z-index: 1;
      text-align: center; max-width: 820px;
    }
    .hero-logo-wrap {
      margin: 0 auto 1.75rem;
      display: inline-block;
    }
    .hero-logo-wrap img {
      width: clamp(260px, 50vw, 460px);
      height: auto;
      filter: drop-shadow(0 6px 24px rgba(0,0,0,0.10));
    }
    .hero-tagline {
      font-size: clamp(1.1rem, 2.5vw, 1.25rem);
      color: var(--ink-soft);
      font-weight: 700;
      max-width: 560px;
      margin: 0 auto 2rem;
    }
    .hero-chips {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 0.65rem;
      margin-bottom: 2rem;
    }
    .chip {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.55rem 1.2rem;
      border-radius: 50px;
      font-family: 'Baloo 2', cursive;
      font-weight: 700; font-size: 0.95rem;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    .chip-pink   { background: var(--pink);   color: #fff; }
    .chip-blue   { background: var(--blue);   color: #fff; }
    .chip-green  { background: var(--green);  color: #fff; }
    .chip-purple { background: var(--purple); color: #fff; }
    .chip-orange { background: var(--orange); color: #fff; }
    .chip-yellow { background: var(--yellow); color: var(--ink); }
    .hero-cta {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.85rem 2.1rem;
      border-radius: 50px;
      font-family: 'Baloo 2', cursive;
      font-size: 1.1rem; font-weight: 800;
      text-decoration: none; border: none; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
    .btn-pink   { background: var(--pink);   color: #fff; }
    .btn-outline { background: #fff; color: var(--purple); border: 3px solid var(--purple); }
    .btn-yellow  { background: var(--yellow); color: var(--ink); }
    .btn-green   { background: var(--green);  color: #fff; }
    .btn-blue    { background: var(--blue);   color: #fff; }
    .hero-rain-note {
      font-size: 0.88rem; color: var(--ink-soft);
      font-weight: 600;
    }
    .hero-rain-note span { color: var(--blue); font-weight: 800; }
    .hero-cal {
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: center; gap: 0.5rem;
      margin-bottom: 1.25rem;
    }
    .cal-label {
      font-size: 0.85rem; font-weight: 700;
      color: var(--ink-soft); white-space: nowrap;
    }
    .cal-btn {
      display: inline-flex; align-items: center;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      border: 2px solid var(--ink);
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem; font-weight: 700;
      color: var(--ink); text-decoration: none;
      background: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cal-btn:hover { background: var(--ink); color: #fff; }

    /* ─────────────────────────────────────
       WAVE DIVIDERS
    ───────────────────────────────────── */
    .wave-divider {
      display: block; width: 100%;
      overflow: hidden; line-height: 0;
      margin-bottom: -2px;
    }
    .wave-divider svg { display: block; width: 100%; }

    /* ─────────────────────────────────────
       QUICK FACTS BAR
    ───────────────────────────────────── */
    .facts-bar {
      background: var(--ink);
      padding: 1.25rem 1.5rem;
    }
    .facts-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 2rem;
    }
    .fact-item {
      display: flex; align-items: center; gap: 0.6rem;
      color: rgba(255,255,255,0.9);
      font-weight: 700; font-size: 0.95rem;
    }
    .fact-icon {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .fact-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: block; }
    .fact-value { color: #fff; font-size: 0.95rem; font-weight: 800; display: block; }

    /* ─────────────────────────────────────
       PHOTO STRIP
    ───────────────────────────────────── */
    .photo-strip {
      background: var(--white);
      padding: 2.5rem 0;
      overflow: hidden;
    }
    .strip-label {
      font-family: 'Baloo 2', cursive;
      font-size: 0.85rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-soft);
      padding: 0 1.5rem; margin-bottom: 1.25rem;
    }
    .strip-track {
      display: flex; gap: 1.1rem;
      width: max-content;
      padding: 0.75rem 0;
      animation: marquee-scroll 90s linear infinite;
    }
    .photo-strip:hover .strip-track { animation-play-state: paused; }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .strip-track { animation: none; }
    }
    .strip-photo {
      flex: 0 0 auto;
      width: 300px; height: 215px;
      border-radius: 18px; overflow: hidden;
      box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    }
    .strip-photo:nth-child(odd)  { transform: rotate(-1.5deg); margin-top: 10px; }
    .strip-photo:nth-child(even) { transform: rotate(1.2deg);  margin-top: -10px; }
    .strip-photo:nth-child(5n+1) { border: 4px solid var(--pink); }
    .strip-photo:nth-child(5n+2) { border: 4px solid var(--blue); }
    .strip-photo:nth-child(5n+3) { border: 4px solid var(--green); }
    .strip-photo:nth-child(5n+4) { border: 4px solid var(--orange); }
    .strip-photo:nth-child(5n+5) { border: 4px solid var(--purple); }
    .strip-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s;
    }
    .strip-photo:hover img { transform: scale(1.06); }

    /* ─────────────────────────────────────
       ACTIVITIES
    ───────────────────────────────────── */
    #activities {
      background: var(--cream);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden;
    }
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-eyebrow {
      display: inline-block;
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.3rem 0.9rem; border-radius: 50px;
      margin-bottom: 0.75rem;
    }
    .ey-orange { background: var(--orange-pale); color: var(--orange); }
    .ey-blue   { background: var(--blue-pale);   color: #4BA8C5; }
    .ey-green  { background: var(--green-pale);  color: #5A8F1A; }
    .ey-purple { background: var(--purple-pale); color: var(--purple); }
    .ey-pink   { background: var(--pink-pale);   color: var(--pink); }
    .ey-yellow { background: var(--yellow-pale); color: #B8860B; }
    .section-h2 {
      font-size: clamp(2rem, 4.5vw, 3rem); color: var(--ink);
    }
    .section-h2 .c-pink   { color: var(--pink); }
    .section-h2 .c-blue   { color: var(--blue); }
    .section-h2 .c-green  { color: var(--green); }
    .section-h2 .c-purple { color: var(--purple); }
    .section-h2 .c-orange { color: var(--orange); }
    .section-sub {
      color: var(--ink-soft); font-size: 1.05rem;
      font-weight: 600; max-width: 560px;
      margin: 0.5rem auto 0;
    }
    .activities-scatter {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-wrap: wrap;
      gap: 1.25rem; justify-content: center;
    }
    .act-card {
      background: var(--white);
      border-radius: 26px; padding: 1.75rem 1.5rem;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
      flex: 0 1 220px;
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
    }
    .act-card:hover {
      transform: translateY(-6px) rotate(0deg) !important;
      box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    }
    .act-card:nth-child(1) { transform: rotate(-2deg); }
    .act-card:nth-child(2) { transform: rotate(1.5deg); }
    .act-card:nth-child(3) { transform: rotate(-1deg); }
    .act-card:nth-child(4) { transform: rotate(2deg); }
    .act-card:nth-child(5) { transform: rotate(-1.5deg); }
    .act-card:nth-child(6) { transform: rotate(1deg); }
    .act-card:nth-child(7) { transform: rotate(-0.5deg); }
    .act-card:nth-child(8) { transform: rotate(1.8deg); }
    .act-card-icon {
      width: 72px; height: 72px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 1rem;
    }
    .act-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; }
    .act-card p  { font-size: 0.9rem; color: var(--ink-soft); }
    .act-top-stripe {
      position: absolute; top: 0; left: 0; right: 0;
      height: 6px;
    }
    .age-note {
      text-align: center; margin-top: 2.5rem;
      display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
    }
    .age-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--white);
      border-radius: 50px; padding: 0.45rem 1rem;
      font-weight: 700; font-size: 0.88rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      color: var(--ink-soft);
    }

    /* ─────────────────────────────────────
       ENTERTAINMENT
    ───────────────────────────────────── */
    #entertainment {
      background: var(--ink);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden;
    }
    #entertainment::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle, rgba(246,84,114,0.2) 2px, transparent 2px),
        radial-gradient(circle, rgba(105,207,237,0.15) 2px, transparent 2px);
      background-size: 70px 70px, 110px 110px;
      background-position: 0 0, 35px 35px;
      pointer-events: none;
    }
    .ent-inner {
      max-width: 900px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .ent-eyebrow {
      display: inline-block;
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); margin-bottom: 0.75rem;
    }
    .ent-h2 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--white); margin-bottom: 0.4rem;
    }
    .ent-sub { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 600; margin-bottom: 2.5rem; }

    /* Schedule timeline */
    .sched-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .sched-item {
      display: grid;
      grid-template-columns: 6rem 28px 1fr;
      gap: 0 1rem;
      align-items: stretch;
    }
    .sched-time {
      font-family: 'Baloo 2', cursive;
      font-size: 0.85rem; font-weight: 800;
      color: rgba(255,255,255,0.4);
      text-align: right;
      padding-top: 0.35rem;
      white-space: nowrap;
    }
    .sched-line {
      display: flex; flex-direction: column; align-items: center;
      position: relative;
    }
    .sched-dot {
      width: 14px; height: 14px; border-radius: 50%;
      flex-shrink: 0; margin-top: 0.4rem;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
    }
    .sched-line::after {
      content: ''; flex: 1;
      width: 2px; background: rgba(255,255,255,0.1);
      margin-top: 6px;
    }
    .sched-item:last-child .sched-line::after { display: none; }
    .sched-info {
      padding-bottom: 2rem;
      display: flex; flex-direction: column; gap: 0.2rem;
    }
    .ent-name {
      font-family: 'Baloo 2', cursive;
      font-size: clamp(1.2rem, 3vw, 1.75rem);
      font-weight: 800; color: var(--white); display: block;
    }
    .ent-type {
      font-size: 0.82rem; color: rgba(255,255,255,0.4);
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    }
    .sched-note {
      font-size: 0.8rem; color: rgba(255,255,255,0.3);
      margin-top: 0.5rem; font-style: italic;
    }

    /* ─────────────────────────────────────
       FOOD
    ───────────────────────────────────── */
    #food {
      background: var(--orange-pale);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden;
    }
    .food-inner {
      max-width: 1000px; margin: 0 auto;
      display: flex; gap: 3.5rem; align-items: center; flex-wrap: wrap;
    }
    .food-text { flex: 1 1 340px; }
    .food-text .section-h2 { margin-bottom: 1rem; }
    .food-text p { color: var(--ink-soft); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.85rem; }
    .food-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
    .food-chip {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--white); border-radius: 50px;
      padding: 0.45rem 1rem; font-weight: 700; font-size: 0.88rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07); color: var(--ink);
    }
    .food-visual {
      flex: 1 1 260px;
      display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    }
    .food-card {
      background: var(--white);
      border-radius: 20px; padding: 1.5rem;
      text-align: center; width: 140px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
      transition: transform 0.2s;
    }
    .food-card:nth-child(odd) { transform: rotate(-2deg); }
    .food-card:nth-child(even) { transform: rotate(2deg); }
    .food-card:hover { transform: scale(1.06) rotate(0deg) !important; }
    .food-card .food-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
    .food-card p { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }

    /* ─────────────────────────────────────
       ABOUT
    ───────────────────────────────────── */
    #about {
      background: var(--white);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden;
    }
    .about-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; gap: 4rem; align-items: center; flex-wrap: wrap;
    }
    .about-text { flex: 1 1 380px; }
    .about-eyebrow {
      display: inline-block;
      font-family: 'Baloo 2', cursive;
      font-size: 0.82rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--pink); background: var(--pink-pale);
      padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 1rem;
    }
    .about-h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.25rem; line-height: 1.1; }
    .about-h2 em { font-style: normal; color: var(--green); }
    .about-text p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1rem; font-weight: 600; }
    .org-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
    .org-list-label { font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.25rem; }
    .org-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      text-decoration: none; color: var(--ink);
      background: var(--cream); border-radius: 50px;
      padding: 0.5rem 1rem 0.5rem 0.6rem;
      font-weight: 700; font-size: 0.93rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      width: fit-content;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .org-tag:hover { transform: translateX(5px); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
    .org-swatch { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
    .about-visual { flex: 1 1 340px; position: relative; }
    .about-img-wrap {
      border-radius: 28px; overflow: hidden;
      border: 5px solid var(--yellow);
      box-shadow: 12px 12px 0 var(--blue-pale);
      transform: rotate(1.5deg);
    }
    .about-img-wrap img { width: 100%; display: block; }
    .about-badge {
      position: absolute; bottom: -1rem; left: -1rem;
      background: var(--white); border: 3px solid var(--pink);
      border-radius: 16px; padding: 0.6rem 1rem;
      font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: 0.88rem; color: var(--pink);
      box-shadow: 4px 4px 0 var(--pink-pale);
      transform: rotate(-3deg); z-index: 2;
    }
    .about-float-star {
      position: absolute; top: -1.2rem; right: -0.8rem;
      font-size: 2.5rem;
      animation: spin 8s linear infinite;
    }
    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    #about::before {
      content: '';
      position: absolute;
      width: 350px; height: 350px; border-radius: 50%;
      background: var(--purple-pale);
      top: -120px; right: -80px; z-index: 0;
    }
    .about-inner { position: relative; z-index: 1; }

    /* ─────────────────────────────────────
       GALLERY
    ───────────────────────────────────── */
    #gallery {
      background: var(--blue-pale);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden;
    }
    .gallery-collage {
      max-width: 1100px; margin: 2.5rem auto 0;
      display: flex; gap: 1rem; flex-wrap: wrap;
      align-items: flex-start; justify-content: center;
    }
    .gcol-item {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 6px 24px rgba(0,0,0,0.10);
      flex-shrink: 0; position: relative;
      transition: transform 0.3s;
    }
    .gcol-item:hover { transform: scale(1.03) rotate(0deg) !important; }
    .gcol-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .gcol-item::before {
      content: '';
      position: absolute;
      width: 60px; height: 18px;
      background: rgba(255,217,61,0.7);
      top: -6px; left: 50%; transform: translateX(-50%);
      border-radius: 4px; z-index: 2;
    }
    .gcol-item:nth-child(1) { width: 380px; height: 270px; border: 4px solid var(--pink);   transform: rotate(-1.5deg); }
    .gcol-item:nth-child(2) { width: 270px; height: 195px; border: 4px solid var(--green);  transform: rotate(2deg);   align-self: flex-end; }
    .gcol-item:nth-child(3) { width: 340px; height: 240px; border: 4px solid var(--orange); transform: rotate(-1deg); }
    .gcol-item:nth-child(4) { width: 300px; height: 215px; border: 4px solid var(--purple); transform: rotate(1.8deg); align-self: flex-end; }
    .gcol-item:nth-child(5) { width: 360px; height: 255px; border: 4px solid var(--blue);   transform: rotate(-0.8deg); }
    .gcol-item:nth-child(6) { width: 280px; height: 200px; border: 4px solid var(--yellow); transform: rotate(1.4deg); align-self: flex-end; }

    /* ─────────────────────────────────────
       PLAN YOUR VISIT
    ───────────────────────────────────── */
    #visit {
      background: var(--cream);
      padding: 5.5rem 1.5rem;
    }
    .visit-inner { max-width: 1100px; margin: 0 auto; }
    .visit-grid {
      display: flex; flex-wrap: wrap;
      gap: 1.5rem; margin-top: 3rem;
    }
    /* Left: bring list + getting there stacked */
    .visit-col-left  { flex: 1 1 300px; display: flex; flex-direction: column; gap: 1.5rem; }
    .visit-col-right { flex: 1 1 300px; display: flex; flex-direction: column; gap: 1.5rem; }
    .visit-card {
      background: var(--white); border-radius: 24px;
      padding: 1.75rem; position: relative; overflow: hidden;
      box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    }
    .visit-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 5px; border-radius: 24px 24px 0 0;
    }
    .vc-blue::after   { background: var(--blue); }
    .vc-green::after  { background: var(--green); }
    .vc-pink::after   { background: var(--pink); }
    .vc-orange::after { background: var(--orange); }
    .vc-purple::after { background: var(--purple); }
    .vc-yellow::after { background: var(--yellow); }
    .visit-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--ink); }
    .visit-card p, .visit-card a { font-size: 0.93rem; color: var(--ink-soft); }
    .visit-card a { text-decoration: none; font-weight: 700; }
    .vc-blue a   { color: #4BA8C5; }
    .vc-green a  { color: #5A8F1A; }
    .vc-pink a   { color: var(--pink); }
    .vc-orange a { color: var(--orange); }
    .visit-card a:hover { text-decoration: underline; }
    .visit-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .visit-card li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.93rem; color: var(--ink-soft); }
    .visit-card li .li-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }

    /* Bring list with checkboxes */
    .bring-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .bring-list li {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.93rem; color: var(--ink-soft); font-weight: 600;
    }
    .bring-check {
      width: 22px; height: 22px; border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; flex-shrink: 0; color: #fff;
    }
    .access-note {
      display: flex; align-items: center; gap: 0.6rem;
      background: var(--blue-pale); border-radius: 12px;
      padding: 0.75rem 1rem; margin-top: 1rem;
      font-size: 0.88rem; font-weight: 700; color: #4BA8C5;
    }

    /* ─────────────────────────────────────
       FAQ
    ───────────────────────────────────── */
    #faq {
      background: var(--cream);
      padding: 5.5rem 1.5rem;
    }
    .faq-inner { max-width: 780px; margin: 0 auto; }
    .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
    details {
      background: var(--cream);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    details[open] { box-shadow: 0 4px 18px rgba(0,0,0,0.10); }
    summary {
      padding: 1.1rem 1.5rem;
      font-family: 'Baloo 2', cursive;
      font-size: 1.05rem; font-weight: 700;
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      color: var(--ink);
      transition: color 0.2s;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+'; font-size: 1.4rem; font-weight: 400;
      color: var(--pink); transition: transform 0.25s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    details[open] summary { color: var(--pink); }
    .faq-answer {
      padding: 0 1.5rem 1.25rem;
      font-size: 0.95rem; color: var(--ink-soft);
      font-weight: 600; line-height: 1.7;
    }

    /* ─────────────────────────────────────
       COMMUNITY
    ───────────────────────────────────── */
    #community {
      background: linear-gradient(145deg, var(--purple) 0%, #6B2B8E 100%);
      padding: 5.5rem 1.5rem;
      position: relative; overflow: hidden; text-align: center;
    }
    #community::after {
      content: '';
      position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
      bottom: -250px; right: -200px; pointer-events: none;
    }
    .community-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
    #community .section-eyebrow { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
    #community .section-h2 { color: var(--yellow); }
    .comm-orgs {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 1.25rem;
      margin: 2.5rem 0;
    }
    .comm-org-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 24px; padding: 2rem 1.75rem;
      backdrop-filter: blur(6px);
      flex: 1 1 200px; max-width: 240px; text-align: center;
      transition: background 0.25s, transform 0.25s;
    }
    .comm-org-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
    .comm-org-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
    .comm-org-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.4rem; }
    .comm-org-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
    .comm-org-card a { color: var(--yellow); text-decoration: none; font-weight: 700; }
    .comm-org-card a:hover { text-decoration: underline; }
    .donate-note {
      margin-top: 2rem;
      background: rgba(255,255,255,0.12);
      border-radius: 20px; padding: 1.5rem 2rem;
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 0.95rem; color: rgba(255,255,255,0.8);
      max-width: 600px; margin-left: auto; margin-right: auto;
      font-weight: 600;
    }
    .donate-note strong { color: #fff; }

    /* ─────────────────────────────────────
       FOOTER
    ───────────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 3.5rem 1.5rem;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
      text-align: center;
    }
    .footer-top {
      display: flex; align-items: center; gap: 2rem;
    }
    .footer-logo { width: 110px; height: 110px; flex-shrink: 0; object-fit: contain; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
    .footer-text { flex: 1; }
    .footer-event { color: rgba(255,255,255,0.9) !important; font-size: 1rem !important; margin-bottom: 0.3rem !important; }
    footer p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
    footer a { color: var(--yellow); text-decoration: none; font-weight: 700; }
    footer a:hover { text-decoration: underline; }
    .footer-social {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
    }
    .footer-social a {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.45rem 1rem;
      border-radius: 50px;
      background: rgba(255,255,255,0.1); color: #fff;
      font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.85rem;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .footer-social a:hover { background: var(--yellow); color: var(--ink); text-decoration: none; }
    .footer-copy { margin-top: 1.25rem !important; font-size: 0.78rem !important; color: rgba(255,255,255,0.28) !important; }
    @media (max-width: 640px) {
      .footer-top { flex-direction: column; align-items: center; gap: 1rem; }
    }

    /* ─────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────── */
    @media (max-width: 768px) {
      nav ul { display: none; }
      .mobile-toggle { display: block; }
      .nav-social { display: none; }
      nav.open ul {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--cream);
        padding: 1rem 1.5rem; gap: 0.75rem;
        border-bottom: 3px dashed var(--yellow);
      }
      .about-inner { flex-direction: column; }
      .about-visual { order: -1; }
      .food-inner { flex-direction: column; }
      .gcol-item:nth-child(1) { width: 100% !important; height: 220px !important; }
      .gcol-item:nth-child(2), .gcol-item:nth-child(3),
      .gcol-item:nth-child(4), .gcol-item:nth-child(5),
      .gcol-item:nth-child(6) {
        width: calc(50% - 0.5rem) !important; height: 150px !important;
      }
      .facts-inner { gap: 1.25rem; }
      .hero-cal { flex-direction: column; align-items: center; gap: 0.4rem; }
      .cal-label { margin-bottom: 0.15rem; }
      .hero-share { gap: 0.35rem; }
      .invite-card { padding: 1.25rem 1.25rem; }
    }
    @media (max-width: 480px) {
      .act-card { flex: 0 1 160px; }
      .gcol-item:nth-child(2), .gcol-item:nth-child(3),
      .gcol-item:nth-child(4), .gcol-item:nth-child(5),
      .gcol-item:nth-child(6) {
        width: 100% !important; height: 180px !important;
      }
      .visit-col-left, .visit-col-right { flex: 1 1 100%; }
    }

    /* ─────────────────────────────────────
       HERO SHARE ROW
    ───────────────────────────────────── */
    .hero-share {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 0.45rem; margin-bottom: 1.25rem;
    }
    .share-label {
      font-size: 0.8rem; font-weight: 700; color: var(--ink-soft);
      width: 100%; text-align: center; margin-bottom: 0.1rem;
    }
    .share-pill {
      display: inline-flex; align-items: center; gap: 0.35rem;
      padding: 0.38rem 0.9rem; border-radius: 50px;
      font-family: 'Baloo 2', cursive; font-size: 0.8rem; font-weight: 700;
      border: 2px solid var(--ink); color: var(--ink);
      background: rgba(255,255,255,0.7); cursor: pointer;
      text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .share-pill:hover { background: var(--ink); color: #fff; }
    .share-pill-main { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); }
    .share-pill-main:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
    .share-pill-fb { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.08); }
    .share-pill-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
    .share-pill-x { border-color: #000; color: #000; background: rgba(0,0,0,0.05); }
    .share-pill-x:hover { background: #000; color: #fff; border-color: #000; }

    /* ─────────────────────────────────────
       INVITE A NEIGHBOR
    ───────────────────────────────────── */
    .invite-section { background: #1A1A2E; padding: 4rem 1.5rem 5rem; text-align: center; }
    .invite-inner { max-width: 680px; margin: 0 auto; }
    .invite-h2 {
      font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 0.4rem;
    }
    .invite-sub { color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 600; margin-bottom: 2rem; }
    .invite-card {
      background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 20px; padding: 1.75rem 2rem; margin-bottom: 2rem; text-align: left;
    }
    .invite-msg {
      font-size: 0.97rem; line-height: 1.75; color: rgba(255,255,255,0.8);
      white-space: pre-line; margin-bottom: 1.25rem;
    }
    .invite-copy-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.55rem 1.4rem; border-radius: 50px;
      background: var(--pink); color: #fff;
      font-family: 'Baloo 2', cursive; font-size: 0.9rem; font-weight: 800;
      border: none; cursor: pointer; transition: background 0.2s, transform 0.1s;
    }
    .invite-copy-btn:hover { background: #e03d5e; transform: scale(1.03); }
    .invite-downloads {
      display: flex; flex-direction: column; align-items: center;
      gap: 0.75rem; margin-bottom: 1.5rem;
    }
    .invite-dl-cards {
      display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
    }
    .invite-dl-card {
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
      text-decoration: none; cursor: pointer;
      transition: transform 0.2s;
    }
    .invite-dl-card:hover { transform: translateY(-4px); }
    .invite-dl-thumb {
      border-radius: 12px; display: block;
      border: 2px solid rgba(255,255,255,0.15);
      box-shadow: 0 6px 24px rgba(0,0,0,0.4);
      object-fit: cover;
    }
    .invite-dl-thumb-sq    { width: 120px; height: 120px; }
    .invite-dl-thumb-story { width: 68px;  height: 120px; }
    .invite-dl-label {
      display: inline-flex; align-items: center; gap: 0.35rem;
      padding: 0.35rem 0.9rem; border-radius: 50px;
      font-family: 'Baloo 2', cursive; font-size: 0.8rem; font-weight: 700;
      border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
      background: rgba(255,255,255,0.07);
      transition: background 0.2s, border-color 0.2s;
    }
    .invite-dl-card:hover .invite-dl-label {
      background: var(--pink); border-color: var(--pink); color: #fff;
    }
    .invite-share-row {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem;
    }
    .invite-share-label {
      font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.35);
      width: 100%; margin-bottom: 0.15rem;
    }
    .invite-share-pill {
      display: inline-flex; align-items: center; gap: 0.35rem;
      padding: 0.4rem 1.1rem; border-radius: 50px;
      font-family: 'Baloo 2', cursive; font-size: 0.82rem; font-weight: 700;
      border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75);
      background: rgba(255,255,255,0.06); cursor: pointer;
      text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .invite-share-pill:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
    .invite-share-fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
    .invite-share-x:hover  { background: #fff; border-color: #fff; color: #000; }

    /* ─────────────────────────────────────
       LOCATION MAP
    ───────────────────────────────────── */
    #location {
      background: var(--cream);
      padding: 4rem 1.5rem 5rem;
    }
    .map-wrap {
      margin: 2rem auto 0;
      max-width: 1100px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.13);
      border: 5px solid #fff;
    }
    .map-wrap iframe {
      display: block; width: 100%; height: 420px; border: 0;
    }
    .map-chips {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 0.65rem; margin-top: 1.5rem;
    }
    .map-chip {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.5rem 1.1rem;
      border-radius: 50px;
      background: #fff;
      font-family: 'Baloo 2', cursive;
      font-weight: 700; font-size: 0.9rem;
      color: var(--ink);
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
