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

    /* ─── DESIGN TOKENS ─────────────────────────────────── */
    :root {
      /* Brand */
      --green:      #4A8C3F;
      --dkgreen:    #2D5E1E;
      --orange:     #E8621A;
      --dkorange:   #C04E0E;
      --yellow:     #F5C518;
      --red:        #C8102E;
      --navy:       #1A2F5E;

      /* Maze design pastels */
      --sage:       #9DB89A;   /* top-right green section */
      --wheat:      #C8B882;   /* top-left tan section */
      --dusty-rose: #C8857A;   /* bottom-left red section */
      --sky:        #89B4C8;   /* bottom-right blue section */

      /* Neutrals */
      --straw:      #FFFBEF;
      --warm:       #FFF4D6;
      --tan:        #F0E8D0;
      --dark:       #2A2A2A;
      --mid:        #5A5A5A;
      --light-rule: rgba(0,0,0,0.07);
    }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

section,
#visit,
#tickets,
#maze,
#attractions,
#events,
#groups,
#find {
  scroll-margin-top: 110px;
}
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--straw);
      color: var(--dark);
      font-size: 16px;
    }

    /* ─── UTILITY ────────────────────────────────────────── */
    .container { max-width: 1220px; margin: 0 auto; }
    .s-tag {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 3.5px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 12px; display: block;
    }
    h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800; line-height: 1.15; margin-bottom: 16px;
      color: var(--dkgreen);
    }
    .lead {
      font-size: 1rem; line-height: 1.85; color: var(--mid);
      max-width: 680px; font-weight: 400;
    }
    .btn {
      display: inline-block; text-decoration: none;
      font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px;
      padding: 14px 32px; border-radius: 50px;
      transition: all 0.22s; cursor: pointer; border: none;
    }
    .btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(74,140,63,0.3); }
    .btn-primary:hover { background: var(--dkgreen); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,140,63,0.35); }
    .btn-orange { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(232,98,26,0.3); }
    .btn-orange:hover { background: var(--dkorange); transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.65); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); }
    .btn-outline-green { background: transparent; color: var(--dkgreen); border: 2px solid var(--dkgreen); }
    .btn-outline-green:hover { background: var(--dkgreen); color: #fff; }

    /* Photo placeholder — replace with <img> tags when photos are available */
    .photo-slot {
      background: linear-gradient(135deg, #d4d4d4 0%, #bcbcbc 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: #777; font-size: 0.78rem;
      font-weight: 600; letter-spacing: 1px; text-align: center;
      border: 2px dashed #aaa; padding: 16px;
      position: relative;
    }
    .photo-slot i { font-size: 2.4rem; color: #aaa; }
    .photo-slot .slot-label { font-size: 0.72rem; opacity: 0.8; }
    .photo-slot.dark { background: linear-gradient(135deg, #3a3a3a, #555); border-color: #666; color: #bbb; }
    .photo-slot.dark i { color: #888; }

    /* ─── NAV ────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,251,239,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 3px solid var(--yellow);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 72px;
    }
    .nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-brand-icon {
      width: 46px; height: 46px; border-radius: 10px;
      background: var(--dkgreen);
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow); font-size: 1.4rem;
    }
    .nav-brand-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--dkgreen); line-height: 1.2; }
    .nav-brand-text span { font-size: 0.6rem; color: var(--orange); font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      text-decoration: none; color: var(--dark);
      font-size: 0.8rem; font-weight: 600;
      transition: color 0.2s; white-space: nowrap;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta {
      background: var(--green); color: #fff;
      padding: 10px 22px; border-radius: 50px;
      text-decoration: none; font-weight: 700; font-size: 0.82rem;
      transition: all 0.2s; box-shadow: 0 3px 14px rgba(74,140,63,0.3);
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--dkgreen); }

/* ─── SITE ALERT BAR ───────────────────────────────────── */

.site-alert {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--red);
  color: #fff;
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  white-space: nowrap;
}

.site-alert-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 48px;
  font-size: 0.9rem;
  font-weight: 700;
  animation: alertMarquee 25s linear infinite;
  min-width: 100%;
}

.site-alert-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.site-alert-link {
  color: inherit;
  text-decoration: none;
}

.site-alert-link:hover {
  text-decoration: underline;
}
.site-alert-link {
  cursor: pointer;
}
/* Alert Types */

.site-alert-emergency {
  background: #c62828;
  border-bottom: 3px solid #ffeb3b;
}

.site-alert-notice {
  background: #ef6c00;
  border-bottom: 3px solid #ffe082;
}

.site-alert-open {
  background: #2e7d32;
  border-bottom: 3px solid #81c784;
}

.site-alert-promotion {
  background: #1565c0;
  border-bottom: 3px solid #90caf9;
}
body.has-site-alert .hero {
  padding-top: 124px;
}

@keyframes alertMarquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.site-alert:hover .site-alert-inner {
  animation-play-state: paused;
}

@media (max-width: 900px) {
  .site-alert {
    top: 64px;
  }

  .site-alert-inner {
    padding: 11px 20px;
    font-size: 0.82rem;
    animation-duration: 22s;
  }

  body.has-site-alert .hero {
    padding-top: 116px;
  }
}

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding-top: 72px;
      position: relative; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 60px 80px 60px;
      background:
        linear-gradient(135deg,
          rgba(45,94,30,0.92) 0%,
          rgba(74,140,63,0.85) 50%,
          rgba(232,98,26,0.82) 100%),
        repeating-linear-gradient(
          90deg,
          transparent 0px, transparent 30px,
          rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 32px);
      background-color: var(--dkgreen);
    }
    .hero-right {
      position: relative; min-height: 600px;
    }
    .hero-right .photo-slot {
      position: absolute; inset: 0; border: none;
      background: linear-gradient(160deg, #c8d4c0 0%, #a0b89A 40%, #7A9870 100%);
    }
    .hero-right .photo-slot i { font-size: 4rem; }
    /* Actual hero image — uncomment and set src when photo is available */
    /* .hero-right img { width:100%; height:100%; object-fit:cover; } */

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; padding: 7px 18px; margin-bottom: 22px;
      color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600;
      width: fit-content;
    }
    .hero-eyebrow i { color: var(--yellow); font-size: 0.8rem; }
    .hero-a250-badge {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.1); border: 2px solid rgba(245,197,24,0.5);
      border-radius: 10px; padding: 12px 22px; margin-bottom: 26px;
      width: fit-content;
    }
    .badge-flag { font-size: 1.5rem; }
    .badge-words { }
    .badge-top { font-size: 0.62rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--yellow); display: block; }
    .badge-bot { font-size: 0.82rem; font-weight: 700; color: #fff; display: block; }
    .hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 900; color: #fff; line-height: 1.08;
      margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,0.2);
    }
    .hero h1 em { font-style: normal; color: var(--yellow); }
    .hero-sub {
      font-size: 1.02rem; color: rgba(255,255,255,0.82);
      line-height: 1.75; font-weight: 400; margin-bottom: 14px;
    }
    .hero-stat {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--orange); border-radius: 50px;
      padding: 10px 22px; color: #fff;
      font-size: 0.82rem; font-weight: 700; margin-bottom: 34px;
      width: fit-content;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Floating info card over hero image */
    .hero-info-card {
      position: absolute; bottom: 36px; left: -30px;
      background: #fff; border-radius: 14px;
      padding: 20px 24px; z-index: 10;
      box-shadow: 0 8px 36px rgba(0,0,0,0.15);
      min-width: 220px;
    }
    .hic-row { display: flex; align-items: center; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--light-rule); }
    .hic-row:last-child { border-bottom: none; }
    .hic-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--warm); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }
    .hic-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; display: block; }
    .hic-val { font-size: 0.84rem; font-weight: 700; color: var(--dark); display: block; }

#hoursSaturday strong,
#hoursSunday strong {
  font-weight: 800;
  /*color: var(--dkgreen);*/
}
    /* ─── QUICK INFO STRIP ───────────────────────────────── */
    .quick-strip {
      background: #fff;
      border-bottom: 3px solid var(--yellow);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .qs-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
      max-width: 1220px; margin: 0 auto;
    }
    .qs-cell {
      display: flex; align-items: center; gap: 14px;
      padding: 24px 28px; border-right: 1px solid var(--light-rule);
      transition: background 0.2s;
    }
    .qs-cell:last-child { border-right: none; }
    /*.qs-cell:hover { background: var(--warm); }*/
    .qs-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--warm); display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 1.1rem; flex-shrink: 0;
    }
    .qs-label { font-size: 0.62rem; font-weight: 700; color: #aaa; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 3px; }
    .qs-val { font-size: 0.9rem; font-weight: 700; color: var(--dark); line-height: 1.3; display: block; }
    .qs-sub { font-size: 0.76rem; font-weight: 400; color: #999; display: block; }

    /* ─── AMERICA 250 ────────────────────────────────────── */
    .s-america { padding: 96px 48px; background: var(--warm); border-top: 4px solid var(--yellow); }
        .a250-layout {
          display: grid;
          grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
          gap: 56px;
          align-items: center;
          margin-top: 52px;
        }

.maze-design-card {
  width: 100%;
}

.maze-branch-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

    /* ─── PAST DESIGNS TEASER ──────────────────────────── */
    .past-designs-teaser {
      background: linear-gradient(135deg, #1a3d10 0%, var(--dkgreen) 60%, #2a5020 100%);
      border-top: 3px solid var(--yellow);
      border-bottom: 3px solid rgba(245,197,24,0.3);
    }
    .pdt-inner {
      max-width: 1220px; margin: 0 auto;
      display: flex; align-items: center; gap: 36px;
      padding: 36px 48px; flex-wrap: wrap;
    }
    .pdt-thumbs { display: flex; gap: 8px; flex-shrink: 0; }
    .pdt-thumb {
      width: 100px; height: 100px; object-fit: cover;
      border-radius: 10px; border: 2px solid rgba(255,255,255,0.25);
      transition: transform 0.2s;
    }
    .pdt-thumb:hover { transform: scale(1.08); }
    .pdt-text { flex: 1; min-width: 220px; }
    .pdt-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--yellow); margin-bottom: 6px;
    }
    .pdt-headline {
      font-size: clamp(0.95rem, 1.8vw, 1.2rem); font-weight: 800;
      color: #fff; line-height: 1.3; margin-bottom: 4px;
    }
    .pdt-sub {
      font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6;
    }
    .pdt-btn {
      display: inline-flex; align-items: center; gap: 8px;
      white-space: nowrap; text-decoration: none;
      background: var(--yellow); color: var(--dkgreen);
      font-size: 0.85rem; font-weight: 800;
      padding: 14px 28px; border-radius: 50px;
      transition: all 0.22s; flex-shrink: 0;
      box-shadow: 0 4px 18px rgba(245,197,24,0.35);
    }
    .pdt-btn:hover {
      background: #fff; transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255,255,255,0.25);
    }
    @media (max-width: 720px) {
      .pdt-inner { padding: 28px 20px; }
      .pdt-thumb-hide { display: none; }
    }
@media (max-width: 900px) {
  .hero {
    padding-top: 64px;
  }
}
    /* Maze design visual */
    .maze-design-card {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(0,0,0,0.12);
      position: relative;
      background: #fff;
    }
    
    .maze-design-img {
      width: 100%;
      display: block;
      height: 650px;
      object-fit: contain;
      background: #f5f1df;
    }
   
    .maze-img-placeholder {
      width: 100%; aspect-ratio: 4/3;
      background: linear-gradient(135deg,
        var(--wheat) 0% 25%,
        var(--sage)  25% 50%,
        var(--dusty-rose) 50% 75%,
        var(--sky)   75% 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 12px; position: relative; overflow: hidden;
    }
    /* Large centered 250 text simulating the maze logo */
    .maze-img-placeholder::after {
      content: '250';
      position: absolute;
      font-size: 9rem; font-weight: 900; color: rgba(255,255,255,0.5);
      letter-spacing: -4px;
    }
    .maze-img-placeholder .pi-label {
      position: absolute; top: 14px; left: 0; right: 0;
      text-align: center; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,0.7); z-index: 2;
    }
    .maze-img-placeholder .slot-note {
      position: absolute; bottom: 14px; left: 0; right: 0;
      text-align: center; font-size: 0.7rem; font-weight: 600;
      color: rgba(255,255,255,0.65); z-index: 2;
      font-style: italic;
    }
    .pioneer-badge {
      position: absolute; top: 14px; right: 14px; z-index: 10;
      background: rgba(255,255,255,0.92); border-radius: 8px;
      padding: 8px 14px; display: flex; flex-direction: column;
      align-items: center; gap: 2px;
    }
    .pioneer-badge-logo {
      max-height: 50px;
      width: auto;
      display: block;
    }
    .pioneer-badge .pb-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #999; }
    .pioneer-badge .pb-name { font-size: 0.9rem; font-weight: 900; color: var(--red); letter-spacing: 1px; }

    /* Military branches */
    .mil-section { margin-top: 30px; }
    .mil-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: block; }
    .mil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .mil-card {
      border-radius: 10px; padding: 16px 10px 14px; text-align: center;
      transition: all 0.22s; border: 2px solid transparent;
    }
    .mil-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-color: currentColor; }
    .mil-card .mc-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1.2rem; }
    .mil-card .mc-name { font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

    .mil-army     { background: #F5F0DC; color: #4B5320; } .mil-army .mc-icon { background: #4B5320; color: #FFCA00; }
    .mil-navy     { background: #EAF0F8; color: #003087; } .mil-navy .mc-icon { background: #003087; color: #CFB87C; }
    .mil-af       { background: #EAF0F8; color: #00308F; } .mil-af .mc-icon   { background: #00308F; color: #B0C0E0; }
    .mil-marines  { background: #FCE8E8; color: #A01020; } .mil-marines .mc-icon { background: #A01020; color: #FFD700; }
    .mil-cg       { background: #FFF0E0; color: #003366; } .mil-cg .mc-icon   { background: #003366; color: #FF6600; }
    .mil-sf       { background: #EEEEF8; color: #1C2951; } .mil-sf .mc-icon   { background: #1C2951; color: #C0C8D8; }

    .hometown-strip {
      margin-top: 24px; padding: 16px 18px;
      background: rgba(200,16,46,0.06); border-left: 4px solid var(--red);
      border-radius: 0 8px 8px 0; font-size: 0.88rem; color: #444; line-height: 1.65;
    }
    .hometown-strip strong { color: var(--red); }

    /* ─── SEASON PASS BANNER ─────────────────────────────── */
    .pass-banner {
      background: linear-gradient(135deg, var(--dkgreen) 0%, #1A3D10 100%);
      padding: 64px 48px;
    }
    .pass-inner {
      max-width: 1220px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
    }
    .pass-inner .s-tag { color: rgba(245,197,24,0.75); }
    .pass-inner h2 { color: #fff; margin-bottom: 10px; }
    .pass-inner .lead { color: rgba(255,255,255,0.72); }
    .pass-cta-box { text-align: center; flex-shrink: 0; }
    .pass-price { font-size: 6rem; font-weight: 900; color: var(--yellow); line-height: 1; }
    .pass-price-note { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; display: block; }

    /* ─── TICKETS ────────────────────────────────────────── */
    .s-tickets { padding: 96px 48px; background: #fff; }
    .ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
    .t-card {
      border-radius: 16px; padding: 42px; position: relative; overflow: hidden;
      transition: box-shadow 0.22s;
    }
    .t-card.day { background: var(--warm); border: 2px solid var(--yellow); }
    .t-card.day:hover { box-shadow: 0 10px 36px rgba(232,98,26,0.15); }
    .t-card.season { background: linear-gradient(145deg, var(--dkgreen) 0%, #1A3D10 100%); }
    .t-corner-badge {
      position: absolute; top: 18px; right: 18px;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 14px; border-radius: 50px;
    }
    .t-card.day .t-corner-badge { background: var(--orange); color: #fff; }
    .t-card.season .t-corner-badge { background: var(--yellow); color: var(--dark); }
    .t-type { font-size: 0.68rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 10px; display: block; }
    .t-card.day .t-type { color: var(--orange); }
    .t-card.season .t-type { color: var(--yellow); }
    .t-price { font-size: 4.2rem; font-weight: 900; line-height: 1; margin-bottom: 10px; }
    .t-card.day .t-price { color: var(--dkgreen); }
    .t-card.season .t-price { color: var(--yellow); }
    .t-desc { font-size: 0.86rem; line-height: 1.7; margin-bottom: 24px; }
    .t-card.day .t-desc { color: var(--mid); }
    .t-card.season .t-desc { color: rgba(255,255,255,0.68); }
    .t-perks { list-style: none; margin-bottom: 30px; }
    .t-perks li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.86rem; }
    .t-card.day .t-perks li { color: #444; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .t-card.season .t-perks li { color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .perk-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
    .t-card.day .perk-dot { background: var(--green); color: #fff; font-size: 0.65rem; }
    .t-card.season .perk-dot { background: var(--yellow); color: var(--dark); font-size: 0.65rem; }
    .btn-ticket {
      display: block; text-align: center; padding: 15px;
      border-radius: 50px; text-decoration: none;
      font-weight: 800; font-size: 0.88rem;
      transition: all 0.22s;
    }
    .t-card.day .btn-ticket { background: var(--orange); color: #fff; }
    .t-card.day .btn-ticket:hover { background: var(--dkorange); }
    .t-card.season .btn-ticket { background: var(--yellow); color: var(--dark); }
    .t-card.season .btn-ticket:hover { background: #fff; }
    .ticket-note { margin-top: 22px; text-align: center; font-size: 0.82rem; color: #999; display: flex; align-items: center; justify-content: center; gap: 8px; }

    /* ─── MILITARY DISCOUNT BANNER ──────────────────────── */
    .mil-discount-banner {
      background: linear-gradient(135deg, #1A2F5E 0%, #C8102E 60%, #8B0A1E 100%);
      padding: 0;
    }
    .mdb-inner {
      max-width: 1220px; margin: 0 auto;
      display: flex; align-items: center; gap: 36px;
      padding: 36px 48px; flex-wrap: wrap;
    }
    .mdb-flag {
      flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 3px solid rgba(255,255,255,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: #fff;
    }
    .mdb-content { flex: 1; min-width: 260px; }
    .mdb-headline {
      font-size: clamp(1.1rem, 2.5vw, 1.55rem); font-weight: 900;
      color: #fff; letter-spacing: 0.3px; margin-bottom: 8px;
    }
    .mdb-sub { font-size: 0.84rem; color: rgba(255,255,255,0.85); line-height: 1.65; }
    .mdb-branches {
      display: flex; gap: 14px; align-items: center;
      flex-shrink: 0;
    }
    .mdb-branches span {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.35);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.9); font-size: 0.9rem;
      transition: background 0.2s;
    }
    .mdb-branches span:hover { background: rgba(255,255,255,0.3); }

    /* ─── ATTRACTIONS ────────────────────────────────────── */
    .s-attract { padding: 96px 48px; background: var(--straw); }
    /* Featured maze card */
    .maze-feature {
      display: grid; grid-template-columns: 1fr 1fr;
      border-radius: 18px; overflow: hidden;
      margin-top: 48px; box-shadow: 0 8px 36px rgba(0,0,0,0.1);
    }
    .mf-photo { min-height: 320px; position: relative; }
    .mf-photo .photo-slot { position: absolute; inset: 0; border: none; border-radius: 0; }
    .mf-content {
      background: var(--orange); padding: 52px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .mf-content .s-tag { color: rgba(255,255,255,0.65); }
    .mf-content h3 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
    .mf-content p { font-size: 0.92rem; color: rgba(255,255,255,0.84); line-height: 1.78; margin-bottom: 24px; }
    .mf-stat { display: flex; align-items: center; gap: 14px; }
    .mf-stat-num { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.2); line-height: 1; }
    .mf-stat-text { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.4; }

    /* Attraction cards grid */
    .attract-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px; margin-top: 18px;
    }
    .a-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: all 0.22s;
    }
    .a-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .a-photo { height: 160px; position: relative; overflow: hidden;}
    .a-photo .photo-slot { position: absolute; inset: 0; border: none; border-radius: 0; font-size: 0.68rem; }
    /* Colored fallback while no photo present */
    .a-photo.zip    .photo-slot { background: linear-gradient(135deg, #1A2F5E, #2D4A9E); color: #aac; }
    .a-photo.slide  .photo-slot { background: linear-gradient(135deg, #2D5E1E, #4A9E30); color: #aca; }
    .a-photo.web    .photo-slot { background: linear-gradient(135deg, #6B3A1F, #C8784A); color: #ca9; }
    .a-photo.rollers .photo-slot { background: linear-gradient(135deg, #8B3A00, #D46A20); color: #ca8; }
    .a-photo.bubble .photo-slot { background: linear-gradient(135deg, #1A7AB2, #30C0E8); color: #8cc; }
    .a-photo.games  .photo-slot { background: linear-gradient(135deg, #6B5A00, #C8A820); color: #cc8; }
    .a-photo.wagon  .photo-slot { background: linear-gradient(135deg, #5A3010, #A06030); color: #c9a; }
    .a-photo.flowers .photo-slot { background: linear-gradient(135deg, #8B7A00, #F0C800); color: #dda; }
    .a-photo.pumpkin .photo-slot { background: linear-gradient(135deg, #8B3A00, #E86A20); color: #c98; }
    .a-info { padding: 16px 18px; }
    .a-info h3 { font-size: 0.92rem; font-weight: 700; color: var(--dkgreen); margin-bottom: 5px; }
    .a-info p { font-size: 0.76rem; color: var(--mid); line-height: 1.5; }
.a-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

    /* ─── EVENTS ─────────────────────────────────────────── */
.s-events {
  padding: 96px 48px;
  background: #fff;
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.ev-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: all 0.22s;
}

.ev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.ev-top {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Used when an event HAS an uploaded image/logo */
.ev-top-image {
  background: #fff;
}

/* Used when an event does NOT have an uploaded image/logo */
.ev-top-fallback {
  background: linear-gradient(135deg, var(--green), var(--dkgreen));
}

.ev-card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.ev-fallback {
  color: #fff;
  font-size: 2rem;
}

.ev-body {
  padding: 18px 20px;
  background: #fff;
}

.ev-when {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
  display: block;
}

.ev-name {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--dkgreen);
  margin-bottom: 8px;
}

.ev-desc {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

.ev-dates-note {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--warm);
  border-radius: 12px;
  border: 2px dashed var(--yellow);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--mid);
}

.ev-dates-note i {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ev-calendar-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.ev-calendar-links a {
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--dkgreen);
  background: var(--warm);
  padding: 7px 10px;
  border-radius: 999px;
}

.ev-calendar-links a:hover {
  background: var(--yellow);
}

    /* ─── SEASONAL ───────────────────────────────────────── */
    .s-seasonal { padding: 96px 48px; background: var(--warm); }
    .seasonal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
    .seas-card { border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .seas-photo { height: 220px; position: relative; }
    .seas-photo .photo-slot { position: absolute; inset: 0; border: none; border-radius: 0; }
    .seas-photo.flowers .photo-slot { background: linear-gradient(135deg, #DEB800, #FFD700, #E8A800); }
    .seas-photo.pumpkins .photo-slot { background: linear-gradient(135deg, #B84000, #E86020, #E8621A); }
    .seas-body { padding: 28px 30px; background: #fff; }
    .seas-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
    .seas-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }

    /* ─── CONCESSIONS ────────────────────────────────────── */
      .s-food {
        padding: 96px 48px;
        background: var(--dkgreen);
      }
      
      .s-food .s-tag {
        color: var(--yellow);
      }
      
      .s-food h2 {
        color: #fff;
      }
      
      .s-food .lead {
        color: rgba(255,255,255,0.82);
        max-width: 700px;
      }
      
      .food-menu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 52px;
      }
      
      .food-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 6px 28px rgba(0,0,0,0.22);
        transition: transform 0.22s, box-shadow 0.22s;
        cursor: default;
      }
      
      .food-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.3);
      }
      
      .food-card-img {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #B84A00, #E87A20);
        color: #FFD090;
      }
      
      .food-card-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: inherit;
        filter: brightness(0.88);
      }
      
      .food-card-img i {
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
      }
      
      .food-card-img.has-food-photo::before {
        display: none;
      }
      
      .food-card-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      
      .food-featured-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 5;
        background: var(--yellow);
        color: var(--dkgreen);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 999px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
      }
      
      .food-card-body {
        position: relative;
        background: #fff;
        padding: 20px 22px 54px;
        min-height: 155px;
      }
      
      .food-card-name {
        font-size: 1rem;
        font-weight: 800;
        color: var(--dkgreen);
        margin-bottom: 5px;
      }
      
      .food-card-desc {
        font-size: 0.8rem;
        color: var(--mid);
        line-height: 1.55;
      }
      
      .food-card-price {
        position: absolute;
        right: 18px;
        bottom: 16px;
        background: var(--orange);
        color: #fff;
        font-size: 0.86rem;
        font-weight: 900;
        padding: 7px 13px;
        border-radius: 999px;
        box-shadow: 0 4px 14px rgba(232,98,26,0.28);
      }
    /* ─── GROUPS ─────────────────────────────────────────── */
    .s-groups { padding: 96px 48px; background: var(--straw); }
    .groups-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
    .group-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
    .g-type-card {
      background: #fff; border-radius: 12px; padding: 20px;
      border-bottom: 3px solid var(--green);
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      transition: all 0.22s;
    }
    .g-type-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
    .g-type-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--warm); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; margin-bottom: 10px; }
    .g-type-card h4 { font-size: 0.86rem; font-weight: 700; color: var(--dkgreen); margin-bottom: 4px; }
    .g-type-card p { font-size: 0.76rem; color: var(--mid); line-height: 1.5; }
    .g-form-card { background: #fff; border-radius: 18px; padding: 40px; box-shadow: 0 4px 28px rgba(0,0,0,0.08); }
    .g-form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dkgreen); margin-bottom: 24px; }
    .f-row { margin-bottom: 16px; }
    .f-row label { display: block; font-size: 0.62rem; font-weight: 700; color: #aaa; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; }
    .f-input {
      width: 100%; padding: 11px 14px;
      background: var(--straw); border: 2px solid transparent;
      border-radius: 8px; color: var(--dark); font-size: 0.88rem; font-family: 'Poppins', sans-serif;
      transition: border-color 0.2s, background 0.2s;
    }
    .f-input:focus { outline: none; border-color: var(--green); background: #fff; }
    textarea.f-input { height: 90px; resize: none; }
    .btn-grp-submit {
      background: var(--green); color: #fff; border: none;
      padding: 14px 32px; border-radius: 50px;
      font-family: 'Poppins', sans-serif; font-weight: 700;
      font-size: 0.88rem; cursor: pointer; transition: background 0.2s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-grp-submit:hover { background: var(--dkgreen); }

    /* ─── GROUP PRICING ─────────────────────────────────── */
    .grp-pricing-wrap { background: #fff; border-radius: 20px; padding: 36px 40px; margin: 36px 0 48px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
    .grp-pricing-title { font-size: 1.15rem; font-weight: 800; color: var(--dkgreen); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
    .grp-pricing-note { font-size: 0.84rem; color: var(--mid); margin-bottom: 28px; }
    .grp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
    .grp-tier {
      background: var(--warm); border-radius: 14px; padding: 24px 20px;
      text-align: center; border: 2px solid var(--light-rule);
      transition: all 0.2s;
    }
    .grp-tier:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
    .grp-tier-mid { background: linear-gradient(135deg, #FFF4D6, #FFE8A0); border-color: var(--yellow); }
    .grp-tier-best { background: linear-gradient(135deg, var(--green), var(--dkgreen)); border-color: var(--green); }
    .grp-tier-best .grp-tier-range,
    .grp-tier-best .grp-tier-save { color: #fff; }
    .grp-tier-best .grp-tier-label,
    .grp-tier-best .grp-tier-price { color: rgba(255,255,255,0.8); }
    .grp-tier-range { font-size: 2rem; font-weight: 900; color: var(--dkgreen); line-height: 1; }
    .grp-tier-label { font-size: 0.7rem; font-weight: 600; color: var(--mid); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
    .grp-tier-save { font-size: 1.5rem; font-weight: 900; color: var(--orange); }
    .grp-tier-best .grp-tier-save { color: var(--yellow); }
    .grp-tier-price { font-size: 0.72rem; font-weight: 600; color: var(--mid); letter-spacing: 1px; text-transform: uppercase; }
    .grp-nonprofit {
      background: linear-gradient(135deg, #EAF4EA, #D5EDD5); border-left: 4px solid var(--green);
      border-radius: 10px; padding: 14px 18px; font-size: 0.84rem; color: var(--dkgreen);
      display: flex; align-items: flex-start; gap: 10px;
    }
    .grp-nonprofit i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

    /* ─── PIONEER SPONSOR ───────────────────────────────── */
    .s-sponsor {
      padding: 72px 48px;
      background: linear-gradient(135deg, #F0F7EE 0%, #FAFFF9 50%, #EDF5FF 100%);
      border-top: 4px solid #4B7A2A;
    }
    .s-sponsor .container { text-align: center; }
    .premier-badge {
      display: inline-block; background: #4B7A2A; color: #fff;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
    }
    .pioneer-hero-logo {
      display: inline-block; text-decoration: none;
      transition: transform 0.2s, opacity 0.2s;
    }
    .pioneer-hero-logo:hover { transform: scale(1.04); opacity: 0.9; }
    .pioneer-hero-logo img { height: 140px; width: auto; object-fit: contain; display: block; margin: 0 auto; }
    .pioneer-tagline {
      font-size: 1rem; color: #3A5A28; font-weight: 500;
      margin-top: 20px; margin-bottom: 8px; line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto;
    }
    .pioneer-sub {
      font-size: 0.72rem; color: #888; letter-spacing: 3px; text-transform: uppercase; margin-top: 4px;
    }
    /* ─── ALL PARTNERS ───────────────────────────────────── */
    .s-partners { padding: 64px 48px; background: #fff; border-top: 1px solid var(--light-rule); }
    .s-partners .container { text-align: center; }
    .s-partners h3 { font-size: 1.1rem; font-weight: 700; color: var(--mid); margin-bottom: 36px; letter-spacing: 0.5px; }
    .partner-grid {
      display: flex; flex-wrap: wrap; gap: 20px;
      justify-content: center; align-items: center;
    }
.partner-tile {
  background: var(--straw);
  border: 1.5px solid var(--light-rule);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 120px;
  text-decoration: none;
  transition: all 0.2s;
}

.partner-tile img {
  max-height: 100px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s;
}
    .partner-tile:hover img { filter: grayscale(0%); }
    .partner-tile-text { font-size: 0.72rem; font-weight: 700; color: var(--mid); text-align: center; line-height: 1.3; }

    /* ─── SOCIAL ─────────────────────────────────────────── */
    .s-social { padding: 80px 48px; background: var(--dkgreen); text-align: center; }
    .s-social .s-tag { color: rgba(245,197,24,0.7); }
    .s-social h2 { color: #fff; margin-bottom: 12px; }
    .s-social p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 560px; margin: 0 auto 36px; }
    .soc-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .soc-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px; padding: 12px 28px;
      color: #fff; text-decoration: none; font-weight: 600; font-size: 0.88rem;
      transition: all 0.22s;
    }
    .soc-btn:hover { background: var(--orange); border-color: var(--orange); }
    .soc-btn i { font-size: 1rem; }
    .soc-handle { margin-top: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

    /* ─── FIND US ────────────────────────────────────────── */
    .s-find { padding: 96px 48px; background: var(--warm); }
    .find-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
    .map-box {
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.1);
      height: 340px; position: relative;
    }
    .map-box .photo-slot { position: absolute; inset: 0; border: none; border-radius: 0; background: linear-gradient(135deg, #c8e6c9, #a5d6a7, #81c784); color: var(--dkgreen); }
    .map-box .photo-slot i { color: var(--dkgreen); }
    .contact-details { display: flex; flex-direction: column; gap: 20px; }
    .c-row { display: flex; gap: 16px; align-items: flex-start; }
    .c-icon-box { width: 42px; height: 42px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
    .c-text { font-size: 0.92rem; line-height: 1.7; color: #444; }
    .c-text strong { display: block; font-size: 0.6rem; color: var(--orange); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 3px; }
    .c-text a { color: var(--orange); text-decoration: none; }
    .c-text a:hover { text-decoration: underline; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 64px 48px 30px; }
    .footer-inner { max-width: 1220px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .fb-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .fb-brand-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .fb-brand-icon img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }
    .fb-brand-name { font-size: 1.1rem; font-weight: 800; color: var(--yellow); }
    .fb-brand-sub { font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 2.5px; text-transform: uppercase; }
    .fb-desc { font-size: 0.82rem; line-height: 1.75; opacity: 0.55; max-width: 280px; margin-bottom: 18px; }
    .footer-socials { display: flex; gap: 10px; }
    .fsoc {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55); font-size: 0.9rem;
      text-decoration: none; transition: background 0.2s;
    }
    .fsoc:hover { background: var(--orange); color: #fff; }
    .footer-pioneer {
      margin-top: 18px; display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px 14px;
      width: fit-content;
    }
    .footer-pioneer span { font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; }
    .footer-pioneer strong { font-size: 0.9rem; color: var(--red); font-weight: 900; }
    .f-col h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
    .f-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
    .f-col a:hover { color: var(--yellow); }
    .footer-bot {
      border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.75rem; flex-wrap: wrap; gap: 10px;
    }
    .footer-bot-left { opacity: 0.4; }
    .footer-bot-right { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); }

    /* ─── HAMBURGER ─────────────────────────────────────── */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: 8px; border-radius: 8px; flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--dkgreen); border-radius: 2px;
      transition: all 0.2s;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; height: 64px; position: fixed; top: 0; left: 0; right: 0;}
      .nav-hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(255,251,239,0.98); backdrop-filter: blur(12px);
        border-bottom: 3px solid var(--yellow);
        padding: 12px 20px 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        padding: 12px 4px; border-bottom: 1px solid var(--light-rule);
        font-size: 0.9rem; white-space: normal;
      }
      .nav-links a:last-child { border-bottom: none; }
      .nav-cta {
        margin-top: 8px; text-align: center;
        display: block; border-bottom: none !important;
        padding: 12px 22px !important;
      }
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 80px 28px 60px; min-height: 100vh; }
      section, .s-america, .s-tickets, .s-attract, .s-events, .s-seasonal, .s-food, .s-groups, .s-find { padding: 60px 20px; }
      .pass-banner { padding: 48px 20px; }
      .s-social, .s-sponsor { padding: 56px 20px; }
      footer { padding: 48px 20px 24px; }
      .qs-inner { grid-template-columns: 1fr 1fr; }
      .a250-layout, .ticket-grid, .maze-feature, .food-layout, .groups-layout, .find-layout, .pass-inner, .seasonal-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .attract-grid { grid-template-columns: repeat(2, 1fr); }
      .ev-grid { grid-template-columns: repeat(2, 1fr); }
      .food-menu-grid { grid-template-columns: repeat(2, 1fr); }
      .grp-pricing-grid { grid-template-columns: 1fr; gap: 12px; }
      .mil-grid { grid-template-columns: repeat(2, 1fr); }
      .sponsor-inner { flex-direction: column; }
    }
@media (max-width: 900px) {
  .maze-branch-info > div[style*="Proud Partner"],
  .maze-branch-info > div[style*="box-shadow"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .maze-branch-info > div[style*="box-shadow"] img {
    max-width: 220px !important;
    height: auto !important;
  }

  .maze-branch-info > div[style*="box-shadow"] div {
    width: 100%;
  }
}
    @media (max-width: 480px) {
      .qs-inner { grid-template-columns: 1fr; }
      .attract-grid { grid-template-columns: 1fr; }
      .ev-grid { grid-template-columns: 1fr; }
      .food-menu-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .group-types { grid-template-columns: 1fr; }
      .hero-left { padding: 80px 20px 48px; }
      .pdt-inner { padding: 24px 20px; gap: 16px; }
      .pdt-thumbs { display: none; }
      .hero-btns { flex-direction: column; }
      .hero-btns .btn { text-align: center; }
    }

    .group-success-box {
      text-align: center;
      padding: 40px 20px;
    }
    
    .group-success-box i {
      font-size: 3rem;
      color: var(--green);
      margin-bottom: 12px;
    }
    
    .group-success-box h4 {
      font-size: 1.4rem;
      color: var(--dkgreen);
      margin-bottom: 8px;
    }
    
    .group-success-box p {
      color: var(--mid);
    }

.s-faq {
  padding: 96px 48px;
  background: #fff;
}

.faq-list {
  margin-top: 42px;
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  border: 1.5px solid var(--light-rule);
  border-radius: 14px;
  background: var(--straw);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dkgreen);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--mid);
  font-size: 0.86rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  color: var(--orange);
  font-weight: 900;
}

.clickable-maze {
  cursor: zoom-in;
}

.image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

.maze-click-note {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  padding: 8px 0 12px;
  font-weight: 600;
}

.maze-click-note i {
  color: var(--orange);
  margin-right: 6px;
}

.maze-partner-box {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
  .maze-partner-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .maze-partner-box img {
    max-width: 240px;
    height: auto !important;
  }
}
