:root {
      --green: #58a936;
      --green-dark: #1f6f35;
      --green-light: #dff4b9;
      --aqua: #53c4d8;
      --sky: #eafaff;
      --yellow: #ffd45b;
      --orange: #f59b32;
      --red: #ef6f68;
      --purple: #8b65aa;
      --ink: #26372b;
      --muted: #5d6b61;
      --cream: #fffaf0;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(31, 111, 53, 0.15);
      --radius: 26px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img, svg { max-width: 100%; display: block; }
    a { color: inherit; }
    button, input, textarea, select { font: inherit; }
    .skip-link {
      position: absolute; left: -999px; top: 0;
      background: var(--ink); color: white; padding: .75rem 1rem; z-index: 999;
    }
    .skip-link:focus { left: 1rem; top: 1rem; }

    .site-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      border-bottom: 3px solid rgba(88,169,54,.18);
    }
    .nav-wrap {
      max-width: 1180px; margin: auto; padding: .65rem 1rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .brand {
      display: flex; align-items: center; gap: .75rem; text-decoration: none; min-width: 0;
    }
    .brand img { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; }
    .brand-text { font-weight: 900; color: var(--green-dark); font-size: clamp(.95rem, 2vw, 1.18rem); line-height: 1.08; }
    .brand-text span { display: block; color: var(--orange); font-size: .78em; letter-spacing: .03em; }
    .nav-links { display: flex; align-items: center; gap: 1.1rem; }
    .nav-links a { text-decoration: none; font-weight: 800; color: var(--green-dark); }
    .nav-links a:hover, .nav-links a:focus { color: var(--orange); }
    .menu-button { display: none; border: 0; background: var(--green-light); color: var(--green-dark); border-radius: 12px; padding: .65rem .75rem; font-weight: 900; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
      border: 0; border-radius: 999px; padding: .9rem 1.25rem;
      font-weight: 900; text-decoration: none; cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .btn:hover, .btn:focus { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(31,111,53,.18); }
    .btn-primary { background: var(--green); color: white; }
    .btn-secondary { background: var(--yellow); color: #5a4500; }
    .btn-outline { border: 3px solid var(--green); color: var(--green-dark); background: white; }

    .hero {
      position: relative; isolation: isolate; overflow: hidden;
      background: linear-gradient(180deg, var(--sky), #fffdf4 72%);
      padding: clamp(2rem, 5vw, 5rem) 1rem 4rem;
    }
    .hero::before, .hero::after {
      content: ""; position: absolute; border-radius: 50%; z-index: -1; opacity: .55;
    }
    .hero::before { width: 300px; height: 300px; background: var(--yellow); top: -150px; right: -100px; }
    .hero::after { width: 210px; height: 210px; background: var(--aqua); bottom: -100px; left: -80px; }
    .hero-grid {
      max-width: 1180px; margin: auto; display: grid; grid-template-columns: 1.08fr .92fr;
      align-items: center; gap: clamp(2rem, 6vw, 5rem);
    }
    .eyebrow {
      display: inline-flex; gap: .5rem; align-items: center; background: white; color: var(--green-dark);
      font-weight: 900; padding: .48rem .8rem; border-radius: 999px; box-shadow: var(--shadow);
    }
    .hero h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); line-height: .98; margin: 1rem 0; color: var(--green-dark); letter-spacing: -.04em; }
    .hero h1 .playful { color: var(--orange); }
    .hero .lead { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 660px; color: var(--muted); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.4rem 0 1.2rem; }
    .hero-facts { display: flex; flex-wrap: wrap; gap: .65rem; }
    .fact-pill { background: white; border: 2px solid #d9edca; border-radius: 999px; padding: .55rem .8rem; font-weight: 800; color: var(--green-dark); }
    .logo-stage { position: relative; max-width: 500px; margin-inline: auto; }
    .logo-stage img { width: 100%; filter: drop-shadow(0 24px 28px rgba(31,111,53,.22)); }
    .mini-card {
      position: absolute; background: white; padding: .72rem .9rem; border-radius: 18px; box-shadow: var(--shadow);
      font-weight: 900; color: var(--green-dark); animation: float 4s ease-in-out infinite;
    }
    .mini-card.one { left: -3%; top: 13%; }
    .mini-card.two { right: -4%; bottom: 14%; animation-delay: 1s; }
    @keyframes float { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(1deg)} }

    .wave { height: 52px; background: linear-gradient(to bottom right, transparent 49%, #fff 50%); margin-top: -52px; position: relative; z-index: 2; }
    section { padding: clamp(3.5rem, 7vw, 6rem) 1rem; }
    .container { max-width: 1120px; margin: auto; }
    .section-kicker { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; }
    .section-title { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; color: var(--green-dark); margin: .3rem 0 .85rem; }
    .section-intro { max-width: 760px; color: var(--muted); font-size: 1.08rem; }

    .highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2rem; }
    .highlight-card {
      background: white; border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow);
      border-bottom: 7px solid var(--green); min-height: 220px;
    }
    .highlight-card:nth-child(2) { border-color: var(--aqua); }
    .highlight-card:nth-child(3) { border-color: var(--yellow); }
    .highlight-card:nth-child(4) { border-color: var(--orange); }
    .icon-bubble { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; background: var(--green-light); }
    .highlight-card h3 { color: var(--green-dark); margin: .9rem 0 .35rem; }
    .highlight-card p { margin: 0; color: var(--muted); }

    .programs { background: #eff9e7; }
    .program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2rem; }
    .program-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .program-art { height: 190px; background: linear-gradient(135deg,#dff8ff,#fff7ce); display: grid; place-items: center; padding: 1rem; }
    .program-body { padding: 1.35rem; }
    .program-body h3 { margin: 0 0 .45rem; color: var(--green-dark); font-size: 1.35rem; }
    .program-body ul { padding-left: 1.1rem; margin: .7rem 0 0; color: var(--muted); }
    .program-body li + li { margin-top: .35rem; }

    .schedule-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; }
    .schedule-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
    .time-row { display: grid; grid-template-columns: 115px 1fr; gap: .85rem; padding: .95rem 0; border-bottom: 2px dashed #dcebd4; }
    .time-row:last-child { border-bottom: 0; }
    .time { font-weight: 900; color: var(--green-dark); }
    .schedule-note { background: var(--yellow); color: #5d4800; padding: 1rem; border-radius: 18px; font-weight: 800; margin-top: 1rem; }

    .gallery { background: #fff; }
    .gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1rem; margin-top: 2rem; }
    .scene { border-radius: var(--radius); overflow: hidden; min-height: 290px; box-shadow: var(--shadow); background: #e9fbff; }
    .scene.small { min-height: 230px; }
    .scene-stack { display: grid; gap: 1rem; }
    .photo-note { text-align: center; color: var(--muted); margin-top: 1rem; font-style: italic; }

    .transport { background: linear-gradient(135deg,#fff7ce,#f4ffe5); }
    .transport-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: center; }
    .transport-copy { background: white; padding: 1.6rem; border-radius: var(--radius); box-shadow: var(--shadow); }

    .waitlist { background: var(--green-dark); color: white; position: relative; overflow: hidden; }
    .waitlist::after { content:""; position:absolute; width:320px; height:320px; border-radius:50%; background:var(--aqua); opacity:.16; right:-120px; top:-120px; }
    .waitlist-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; position: relative; z-index: 1; }
    .waitlist .section-title, .waitlist .section-kicker { color: white; }
    .placeholder-form { background: white; color: var(--ink); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
    .placeholder-form label { display: block; font-weight: 900; color: var(--green-dark); margin-bottom: .35rem; }
    .placeholder-form input, .placeholder-form select, .placeholder-form textarea {
      width: 100%; border: 2px solid #d7e8d0; border-radius: 14px; padding: .8rem; background: #f9fcf7;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
    .field { margin-bottom: .85rem; }
    .coming-soon { background: #fff4ba; color: #5d4800; padding: .8rem; border-radius: 14px; font-weight: 800; margin-bottom: 1rem; }
    .placeholder-form button[disabled] { opacity: .65; cursor: not-allowed; width: 100%; }

    .contact { background: #f8fff3; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
    .contact-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
    .contact-list { display: grid; gap: .9rem; margin-top: 1rem; }
    .contact-item { display: grid; grid-template-columns: 44px 1fr; gap: .8rem; align-items: center; text-decoration: none; }
    .contact-item .dot { width: 44px; height: 44px; border-radius: 14px; display:grid; place-items:center; background:var(--green-light); }
    .contact-item strong { display: block; color: var(--green-dark); }
    .contact-item span { color: var(--muted); overflow-wrap: anywhere; }


    .faq { background: linear-gradient(180deg,#f7fff2,#fffaf0); }
    .faq-list { max-width: 880px; margin: 2rem auto 0; display: grid; gap: .8rem; }
    .faq details { background: white; border: 2px solid #e2efd9; border-radius: 20px; padding: 0 1.15rem; box-shadow: 0 8px 20px rgba(31,111,53,.06); }
    .faq summary { list-style: none; cursor: pointer; position: relative; padding: 1.05rem 2.5rem 1.05rem 0; font-weight: 900; color: var(--green-dark); }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: "+"; position: absolute; right: 0; top: .78rem; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--green-light); color: var(--green-dark); font-size: 1.2rem; }
    .faq details[open] summary::after { content: "−"; }
    .faq details p { margin: 0; padding: 0 .25rem 1.15rem 0; color: var(--muted); }

    .mobile-quickbar { display: none; }

    footer { background: #183f27; color: #eaf6ec; padding: 2rem 1rem; }
    .footer-grid { max-width: 1120px; margin:auto; display:grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items:center; }
    footer p { margin: .25rem 0; }
    .legal { font-size: .88rem; color: #bfd4c3; max-width: 850px; }

    @media (max-width: 900px) {
      .hero-grid, .schedule-wrap, .transport-grid, .waitlist-grid { grid-template-columns: 1fr; }
      .hero-copy { text-align: center; }
      .hero .lead { margin-inline: auto; }
      .hero-actions, .hero-facts { justify-content: center; }
      .logo-stage { max-width: 400px; }
      .highlight-grid { grid-template-columns: repeat(2,1fr); }
      .program-grid { grid-template-columns: 1fr; }
      .program-card { display: grid; grid-template-columns: .75fr 1.25fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .scene-stack { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 720px) {
      .menu-button { display: inline-flex; }
      .nav-links {
        position: absolute; top: 82px; left: 1rem; right: 1rem; display: none; flex-direction: column;
        align-items: stretch; background: white; border-radius: 20px; box-shadow: var(--shadow); padding: 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links .btn { width: 100%; }
      .highlight-grid, .contact-grid, .scene-stack, .form-row { grid-template-columns: 1fr; }
      .program-card { display: block; }
      .program-art { height: 170px; }
      .mini-card { display: none; }
      .footer-grid { grid-template-columns: 1fr; }

      .mobile-quickbar {
        display: flex; position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 90;
        gap: 8px; padding: 8px; background: rgba(255,255,255,.96); border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,.22); backdrop-filter: blur(8px);
      }
      .mobile-quickbar a { flex: 1; text-align: center; text-decoration: none; font-weight: 900; border-radius: 13px; padding: .7rem .55rem; }
      .mobile-quickbar .quick-call { background: var(--green-light); color: var(--green-dark); }
      .mobile-quickbar .quick-join { background: var(--green); color: white; }
      footer { padding-bottom: 6.2rem; }
    }

    @media (max-width: 480px) {
      .brand img { width: 52px; height: 52px; }
      .nav-links { top: 70px; }
      .hero { padding-top: 1.8rem; }
      .hero h1 { font-size: 2.55rem; }
      .btn { width: 100%; }
      .time-row { grid-template-columns: 1fr; gap: .1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }

.inquiry-card { text-align: center; }
.inquiry-card h3 { margin: .85rem 0 .5rem; color: var(--green-dark); font-size: 1.5rem; }
.inquiry-button { width: 100%; margin-top: .5rem; }
.form-help { margin: .8rem 0 0; color: var(--muted); font-size: .9rem; }
