    /* ============================================
       RESET & BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-primary: #ede8df;
      --bg-raised: rgba(0, 0, 0, 0.03);
      --bg-glass: rgba(0, 0, 0, 0.04);
      --border-glass: rgba(0, 0, 0, 0.08);
      --text-primary: #2c2824;
      --text-secondary: #4a4440;
      --text-muted: #78706a;
      --accent: #946510;
      --accent-hover: #7c5408;
      --accent-glow: rgba(148, 101, 16, 0.25);
      --camp-panel-image-filter: blur(0.78px) brightness(1.08) saturate(1.12);
      --camp-panel-image-filter-mobile: blur(0.9px) brightness(1.02) saturate(1.14);
      --camp-panel-image-filter-detail: blur(0.55px) brightness(1.08) saturate(1.12);
      --camp-panel-inner-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 18px 24px rgba(255, 255, 255, 0.18),
        inset 0 -18px 24px rgba(84, 56, 26, 0.12),
        inset 12px 0 18px rgba(60, 34, 10, 0.08),
        inset -12px 0 18px rgba(255, 250, 240, 0.22);
      --camp-panel-inner-shadow-soft:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 20px 28px rgba(255, 255, 255, 0.18),
        inset 0 -20px 28px rgba(84, 56, 26, 0.1),
        inset 14px 0 20px rgba(60, 34, 10, 0.08),
        inset -12px 0 18px rgba(255, 250, 240, 0.24);
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Cormorant Garamond', Georgia, serif;
      --max-width: 1200px;
      --section-gap: clamp(0.75rem, 1.5vh, 1.25rem);
      --feature-rail-width: min(760px, calc(100vw - 3rem));
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-primary);
      background-color: var(--bg-primary);
      /* Linen weave: two perpendicular elongated-turbulence SVGs (warp + weft fibers)
         plus fine speckle. Split into separate SVGs with fixed-pixel rects (no '%')
         so iOS Safari rasterizes them reliably. */
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9 0.012' numOctaves='2' seed='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0.3 0 0 0 0 0.22 0 0 0 0 0.12 0 0 0 0 0.44 0 0 0 -0.24'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23f)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012 0.9' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0.3 0 0 0 0 0.22 0 0 0 0 0.12 0 0 0 0 0.35 0 0 0 -0.18'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23f)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      background-size: 240px 240px, 240px 240px, 200px 200px;
      background-repeat: repeat, repeat, repeat;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: calc(env(safe-area-inset-top, 0px) + 1.75rem);
      background: var(--bg-primary);
      pointer-events: none;
      z-index: 1;
    }

    /* Flame gradient — SVG-warped for organic, flame-like edges */
    .bg-flames {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      filter: url(#flame-warp);
      opacity: 0.92;
      background-image:
        radial-gradient(500px 1600px at 8% 100vh, rgba(232, 150, 30, 0.55) 0%, transparent 100%),
        radial-gradient(500px 1600px at 28% 100vh, rgba(0, 170, 170, 0.45) 0%, transparent 100%),
        radial-gradient(500px 1600px at 50% 100vh, rgba(160, 40, 200, 0.40) 0%, transparent 100%),
        radial-gradient(500px 1600px at 72% 100vh, rgba(230, 50, 50, 0.42) 0%, transparent 100%),
        radial-gradient(500px 1600px at 92% 100vh, rgba(30, 200, 80, 0.50) 0%, transparent 100%);
    }

    /* Splotches + dots that continue down the page once the flame gradient
       tapers off. Sits behind .bg-flames so the carefully tuned flame rise
       stays the dominant top-of-page effect. Masked so it only fades in
       below the flame region. */
    .bg-dots {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background-image:
        /* Colored splotches placed by % of total body height */
        radial-gradient(28vw 22vh at 12% 42%, rgba(232, 150, 30, 0.22) 0%, transparent 68%),
        radial-gradient(26vw 22vh at 86% 46%, rgba(0, 170, 170, 0.22) 0%, transparent 68%),
        radial-gradient(30vw 24vh at 22% 58%, rgba(160, 60, 210, 0.24) 0%, transparent 68%),
        radial-gradient(26vw 22vh at 74% 62%, rgba(230, 60, 60, 0.22) 0%, transparent 68%),
        radial-gradient(30vw 24vh at 40% 72%, rgba(30, 180, 110, 0.24) 0%, transparent 68%),
        radial-gradient(28vw 24vh at 88% 78%, rgba(232, 150, 30, 0.24) 0%, transparent 68%),
        radial-gradient(30vw 24vh at 14% 86%, rgba(160, 60, 210, 0.26) 0%, transparent 68%),
        radial-gradient(30vw 24vh at 58% 92%, rgba(0, 170, 170, 0.22) 0%, transparent 68%),
        radial-gradient(30vw 24vh at 90% 96%, rgba(230, 60, 60, 0.22) 0%, transparent 68%),
        /* Dot pattern */
        radial-gradient(rgba(90, 58, 24, 0.22) 1.2px, transparent 1.6px),
        radial-gradient(rgba(90, 58, 24, 0.14) 1px, transparent 1.4px);
      background-size:
        auto, auto, auto, auto, auto, auto, auto, auto, auto,
        26px 26px, 38px 38px;
      background-position:
        center, center, center, center, center, center, center, center, center,
        0 0, 13px 19px;
      background-repeat:
        no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
        no-repeat, no-repeat, no-repeat,
        repeat, repeat;
      -webkit-mask-image: linear-gradient(180deg,
        transparent 0%,
        transparent 22%,
        rgba(0, 0, 0, 0.55) 34%,
        rgba(0, 0, 0, 0.9) 52%,
        rgba(0, 0, 0, 0.9) 84%,
        rgba(0, 0, 0, 0.55) 100%);
      mask-image: linear-gradient(180deg,
        transparent 0%,
        transparent 22%,
        rgba(0, 0, 0, 0.55) 34%,
        rgba(0, 0, 0, 0.9) 52%,
        rgba(0, 0, 0, 0.9) 84%,
        rgba(0, 0, 0, 0.55) 100%);
    }

    .bg-flames::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: calc(env(safe-area-inset-top, 0px) + 5rem);
      background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        var(--bg-primary) 72%,
        rgba(237, 232, 223, 0.92) 84%,
        rgba(237, 232, 223, 0) 100%);
      pointer-events: none;
    }

    /* Desktop: longer, softer fade so the flame rise doesn't hit a hard
       line at the top of the page. Mobile keeps its shorter fade (below). */
    @media (min-width: 769px) {
      .bg-flames::before {
        height: calc(env(safe-area-inset-top, 0px) + 14rem);
        background: linear-gradient(180deg,
          var(--bg-primary) 0%,
          var(--bg-primary) 28%,
          rgba(237, 232, 223, 0.96) 48%,
          rgba(237, 232, 223, 0.82) 62%,
          rgba(237, 232, 223, 0.55) 76%,
          rgba(237, 232, 223, 0.25) 88%,
          rgba(237, 232, 223, 0) 100%);
      }
    }

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    h1, h2, h3 {
      font-family: var(--font-display);
      line-height: 1.1;
      color: var(--text-primary);
    }

    .section-label {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }

    /* ============================================
       LAYOUT
       ============================================ */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
    }

    section {
      padding: var(--section-gap) 0;
    }

    /* ============================================
       SECTION 1 — HERO
       ============================================ */
    .hero {
      text-align: center;
      padding-top: calc(env(safe-area-inset-top, 0px) + clamp(1.75rem, 3vh, 2.5rem));
      padding-bottom: 0;
      position: relative;
    }

    .hero-lockup {
      display: inline-flex;
      align-items: center;
      gap: clamp(0.75rem, 2vw, 1.5rem);
      margin-bottom: 0.25rem;
    }

    /* Triforce mark — inlaid gold, lit from center-right */
    .triforce-mark {
      display: block;
      width: clamp(80px, 10vw, 110px);
      height: auto;
      flex-shrink: 0;
      overflow: visible;
      filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.12));
    }

    .hero-title {
      font-size: clamp(1.4rem, 3.5vw, 2.4rem);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 1.15;
      text-align: left;
      /* Burnished gold — slightly brighter and more embossed. */
      background: linear-gradient(180deg,
        #f4df99 0%,
        #d7ad4b 22%,
        #9a7418 50%,
        #6e4b0d 78%,
        #d4aa57 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter:
        drop-shadow(0 -0.6px 0 rgba(255, 247, 220, 0.5))
        drop-shadow(0 1.3px 0.7px rgba(76, 50, 12, 0.18));
    }

    .hero-subtitle {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.8vw, 2.3rem);
      font-weight: 500;
      font-style: italic;
      color: var(--text-secondary);
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }

    .hero-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.9vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 500px;
      margin: 0 auto 0.9rem;
      line-height: 1.4;
    }

    .hero-dates {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      font-weight: 500;
      color: var(--text-primary);
      letter-spacing: 0.02em;
      margin: 0 auto;
    }

    /* ============================================
       SECTION 2 — PARTNERS
       ============================================ */
    .partners {
      text-align: center;
      padding-top: clamp(0.45rem, 1.4vh, 0.9rem);
      padding-bottom: clamp(0.75rem, 1.8vh, 1.4rem);
    }

    .partner-panel-wrap {
      width: min(100%, var(--feature-rail-width));
      margin: 0 auto;
    }

    .partners-heading {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2.6vw, 1.7rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0 0 0.6rem;
      background: linear-gradient(180deg,
        #f7e6a8 0%,
        #dfb856 20%,
        #a6791d 48%,
        #6f4a0e 76%,
        #d4a84b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 249, 229, 0.6))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.55))
        drop-shadow(0 1.4px 1px rgba(82, 56, 14, 0.16));
      line-height: 1.1;
    }

    .partner-frame {
      --frame-w: 10px;
      position: relative;
      overflow: hidden;
      padding: var(--frame-w);
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 14px 22px rgba(60, 38, 14, 0.22),
        0 6px 12px rgba(60, 38, 14, 0.14);
    }

    .partner-frame::before {
      content: "";
      position: absolute;
      inset: var(--frame-w);
      z-index: 1;
      pointer-events: none;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 225, 0.16),
        inset 0 12px 18px rgba(42, 24, 8, 0.1),
        inset 0 -16px 22px rgba(20, 10, 2, 0.16),
        inset 0 0 0 1px rgba(46, 25, 7, 0.1);
    }

    .partner-sites {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
    }

    .partner-divider {
      display: block;
      height: 6px;
      background-color: #9c7540;
      background-image:
        linear-gradient(180deg,
          rgba(10, 6, 2, 0.32) 0%,
          rgba(0, 0, 0, 0.0) 35%,
          rgba(255, 245, 215, 0.12) 72%,
          rgba(10, 6, 2, 0.32) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 226, 0.14),
        inset 0 -1px 0 rgba(40, 20, 6, 0.2);
    }

    .partner-site {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      min-height: 3.4rem;
      padding: 0.78rem 0.95rem;
      font-family: var(--font-display);
      font-size: clamp(1.12rem, 2vw, 1.34rem);
      font-weight: 700;
      letter-spacing: 0.012em;
      line-height: 1.1;
      color: transparent;
      text-decoration: none;
      background-color: #f4ecdb;
      box-shadow:
        inset 0 1.5px 0 rgba(255, 252, 240, 0.85),
        inset 0 -1.5px 0 rgba(70, 42, 12, 0.32),
        inset 0 9px 14px rgba(70, 42, 12, 0.14),
        inset 0 -10px 18px rgba(255, 232, 180, 0.22),
        inset 0 0 0 1px rgba(90, 58, 18, 0.22);
      transition:
        transform 0.32s cubic-bezier(0.2, 0.85, 0.3, 1),
        box-shadow 0.32s ease;
      will-change: transform;
    }

    .partner-site::before {
      content: "";
      position: absolute;
      inset: -36px;
      z-index: -2;
      background-size: cover;
      background-position: center;
      filter: blur(22px) saturate(1.15) brightness(1.02);
      transform: scale(1.16);
      transition:
        transform 0.6s cubic-bezier(0.2, 0.85, 0.3, 1),
        filter 0.45s ease;
    }

    .partner-site::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(130% 95% at 50% 0%, rgba(255, 250, 228, 0.3) 0%, rgba(0, 0, 0, 0) 62%),
        linear-gradient(180deg,
          rgba(255, 248, 224, 0.18) 0%,
          rgba(70, 42, 12, 0.04) 58%,
          rgba(70, 42, 12, 0.12) 100%);
    }

    .partner-site:nth-of-type(1)::before {
      background-image: url('images/flow.webp');
    }
    .partner-site:nth-of-type(2)::before {
      background-image: url('images/spark.webp');
    }
    .partner-site:nth-of-type(3)::before {
      background-image: url('images/pop.webp');
    }

    .partner-site-label {
      flex: 1;
      min-width: 0;
      text-align: left;
      background: linear-gradient(180deg,
        #f7e6a8 0%,
        #dfb856 20%,
        #a6791d 48%,
        #6f4a0e 76%,
        #d4a84b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 249, 229, 0.68))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.6))
        drop-shadow(0 1.4px 1px rgba(82, 56, 14, 0.3));
      transition: filter 0.28s ease;
    }

    .partner-site-icon {
      flex-shrink: 0;
      width: 15px;
      height: 15px;
      color: #8c6015;
      opacity: 0.85;
      filter: drop-shadow(0 1px 0.5px rgba(255, 250, 230, 0.65));
      transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.2, 0.85, 0.3, 1), color 0.28s ease;
    }

    .partner-site:hover,
    .partner-site:focus-visible {
      outline: none;
      box-shadow:
        inset 0 1.5px 0 rgba(255, 252, 242, 0.95),
        inset 0 -1.5px 0 rgba(70, 42, 12, 0.38),
        inset 0 10px 16px rgba(70, 42, 12, 0.1),
        inset 0 -12px 22px rgba(255, 224, 160, 0.32),
        inset 0 0 0 1px rgba(120, 78, 22, 0.3);
    }

    .partner-site:hover::before,
    .partner-site:focus-visible::before {
      transform: scale(1.22);
      filter: blur(18px) saturate(1.3) brightness(1.08);
    }

    .partner-site:hover .partner-site-label,
    .partner-site:focus-visible .partner-site-label {
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 249, 229, 0.82))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.7))
        drop-shadow(0 1.4px 1px rgba(82, 56, 14, 0.38))
        brightness(1.05);
    }

    .partner-site:hover .partner-site-icon,
    .partner-site:focus-visible .partner-site-icon {
      opacity: 1;
      color: #9c6f1a;
      transform: translate(2px, -2px);
    }

    .partner-site:active {
      transform: translateY(0.75px);
      box-shadow:
        inset 0 2px 0 rgba(70, 42, 12, 0.22),
        inset 0 -1px 0 rgba(255, 252, 240, 0.5),
        inset 0 14px 20px rgba(70, 42, 12, 0.24),
        inset 0 -6px 14px rgba(255, 232, 180, 0.14),
        inset 0 0 0 1px rgba(90, 58, 18, 0.3);
      transition:
        transform 0.08s ease,
        box-shadow 0.14s ease;
    }

    .partner-site:active::before {
      transform: scale(1.08);
      filter: blur(24px) saturate(1.1) brightness(0.95);
      transition:
        transform 0.18s ease,
        filter 0.2s ease;
    }

    .partner-site:active .partner-site-icon {
      transform: translate(1px, -1px) scale(0.94);
      transition: transform 0.1s ease;
    }

    @media (prefers-reduced-motion: reduce) {
      .partner-site,
      .partner-site::before,
      .partner-site-icon,
      .partner-site-label {
        transition: none;
      }
    }

    /* ============================================
       SECTION 3 & 7 — CTA
       ============================================ */
    .cta-section {
      text-align: center;
      padding: clamp(0.4rem, 1vh, 0.75rem) 0;
    }

    .map-section + .cta-section {
      padding-top: clamp(2.25rem, 5vh, 3.5rem);
    }

    .cta-contact {
      margin-top: 2rem;
      font-family: var(--font-display);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
    }

    .cta-contact-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .cta-contact a {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      font-weight: 600;
      color: var(--accent-hover);
      text-decoration: none;
      letter-spacing: 0.01em;
      border-bottom: 1px solid rgba(148, 101, 16, 0.36);
      padding-bottom: 2px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .cta-contact a:hover,
    .cta-contact a:focus-visible {
      color: var(--accent);
      border-color: rgba(148, 101, 16, 0.75);
    }

    /* ============================================
       WOOD-BOXED BUTTON
       Mitered wood frame (same construction as the day-panel
       frame), pastel blurred interior, burnished-gold label,
       ambient gold shimmer sweep.
       ============================================ */
    .wood-btn {
      --frame-w: 12px;
      position: relative;
      display: inline-block;
      padding: var(--frame-w);
      isolation: isolate;
      contain: paint;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      border: none;
      cursor: pointer;
      text-decoration: none;
      appearance: none;
      -webkit-appearance: none;
      -webkit-tap-highlight-color: transparent;
      font-family: var(--font-display);
      box-shadow:
        0 10px 22px rgba(60, 38, 14, 0.32),
        0 4px 8px rgba(60, 38, 14, 0.2);
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.3s ease;
    }

    .wood-btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 14px 28px rgba(60, 38, 14, 0.38),
        0 6px 12px rgba(60, 38, 14, 0.24);
    }

    .wood-btn:active {
      transform: translateY(1px);
      box-shadow:
        0 2px 5px rgba(60, 38, 14, 0.35),
        0 1px 2px rgba(60, 38, 14, 0.25);
      transition-duration: 0.05s;
    }

    /* Pastel blurred interior — sits inside the mitered wood frame.
       Inner shadow is light at rest (airy) and deepens on press so the
       interior visibly sinks into the frame. */
    .wood-btn-pastel {
      position: absolute;
      left: var(--frame-w);
      top: var(--frame-w);
      right: var(--frame-w);
      bottom: var(--frame-w);
      z-index: 0;
      overflow: hidden;
      background-color: #eef5e2;
      background-image:
        radial-gradient(140% 160% at 15% 25%, rgba(172, 220, 160, 0.95) 0%, transparent 55%),
        radial-gradient(140% 160% at 85% 75%, rgba(208, 232, 160, 0.82) 0%, transparent 55%),
        radial-gradient(160% 180% at 50% 50%, rgba(232, 240, 192, 0.65) 0%, transparent 60%),
        radial-gradient(140% 160% at 25% 85%, rgba(140, 196, 148, 0.58) 0%, transparent 55%);
      background-size: 180% 180%, 180% 180%, 200% 200%, 180% 180%;
      background-repeat: no-repeat;
      filter: blur(2.5px);
      box-shadow:
        inset 2px 2px 3px rgba(20, 10, 2, 0.22),
        inset 1px 1px 2px rgba(20, 10, 2, 0.14),
        inset -1px -1px 2px rgba(20, 10, 2, 0.1);
      transition: box-shadow 0.22s ease;
    }

    .wood-btn:active .wood-btn-pastel {
      box-shadow:
        inset 6px 6px 14px rgba(20, 10, 2, 0.72),
        inset 4px 4px 8px rgba(20, 10, 2, 0.52),
        inset 2px 2px 4px rgba(20, 10, 2, 0.36),
        inset -2px -2px 5px rgba(20, 10, 2, 0.3);
      transition-duration: 0.05s;
    }

    /* Prism pastel — pulled from across the week (for Play Through).
       Palindromic gradient tiles seamlessly; slow leftward-to-rightward drift
       so the repeat is imperceptible. */
    .wood-btn-prism .wood-btn-pastel {
      background-color: #e7ddd0;
      background-image:
        linear-gradient(180deg, rgba(255, 250, 242, 0.24) 0%, rgba(120, 82, 38, 0.12) 100%),
        linear-gradient(90deg,
          rgba(126, 188, 232, 0.72) 0%,
          rgba(120, 214, 193, 0.7) 16.66%,
          rgba(200, 141, 235, 0.72) 33.33%,
          rgba(240, 155, 132, 0.72) 50%,
          rgba(200, 141, 235, 0.72) 66.66%,
          rgba(120, 214, 193, 0.7) 83.33%,
          rgba(126, 188, 232, 0.72) 100%),
        radial-gradient(90% 170% at 18% 38%, rgba(255, 255, 255, 0.16) 0%, transparent 52%),
        radial-gradient(90% 170% at 82% 62%, rgba(255, 238, 211, 0.12) 0%, transparent 52%);
      filter: none;
      background-size: 100% 100%, 220% 100%, 100% 100%, 100% 100%;
      background-repeat: no-repeat, repeat-x, no-repeat, no-repeat;
      background-position: 0 0, 0% 50%, 18% 38%, 82% 62%;
      isolation: isolate;
    }

    .wood-btn-prism .wood-btn-pastel::before,
    .wood-btn-prism .wood-btn-pastel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .wood-btn-prism .wood-btn-pastel::before {
      z-index: 2;
      background:
        linear-gradient(180deg,
          rgba(255, 251, 244, 0.18) 0%,
          rgba(255, 251, 244, 0.08) 24%,
          rgba(92, 60, 26, 0.14) 100%),
        linear-gradient(90deg,
          rgba(255, 246, 225, 0.12) 0%,
          rgba(255, 246, 225, 0.02) 16%,
          rgba(70, 42, 18, 0.08) 50%,
          rgba(255, 246, 225, 0.02) 84%,
          rgba(255, 246, 225, 0.12) 100%);
      opacity: 0.62;
    }

    .wood-btn-prism .wood-btn-pastel::after {
      z-index: 3;
      box-shadow:
        inset 0 16px 22px rgba(255, 249, 236, 0.16),
        inset 0 -18px 26px rgba(52, 30, 12, 0.22);
    }

    .wood-btn-prism::before {
      content: '';
      position: absolute;
      left: var(--frame-w);
      top: var(--frame-w);
      right: var(--frame-w);
      bottom: var(--frame-w);
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(100deg,
        transparent 0%,
        transparent 26%,
        rgba(255, 255, 255, 0.06) 38%,
        rgba(255, 248, 223, 0.42) 50%,
        rgba(255, 255, 255, 0.12) 58%,
        transparent 72%,
        transparent 100%);
      background-size: 240% 100%;
      background-position: -140% 0;
      opacity: 0;
    }

    .cta-btn-wrap {
      width: min(100%, 420px);
      max-width: 100%;
      margin: 0 auto;
    }

    .wood-btn-launch {
      display: block;
      width: 100%;
    }

    .wood-btn-enroll {
      box-shadow:
        0 12px 26px rgba(39, 73, 20, 0.26),
        0 4px 10px rgba(39, 73, 20, 0.18);
    }

    .wood-btn-enroll:hover {
      box-shadow:
        0 16px 32px rgba(39, 73, 20, 0.32),
        0 6px 14px rgba(39, 73, 20, 0.22);
    }

    .wood-btn-enroll .wood-btn-pastel {
      background-color: #dce8c4;
      background-image:
        linear-gradient(180deg, rgba(252, 255, 242, 0.26) 0%, rgba(72, 101, 28, 0.14) 100%),
        linear-gradient(90deg,
          rgba(101, 189, 92, 0.82) 0%,
          rgba(122, 210, 120, 0.8) 16.66%,
          rgba(74, 176, 142, 0.82) 33.33%,
          rgba(170, 214, 96, 0.8) 50%,
          rgba(74, 176, 142, 0.82) 66.66%,
          rgba(122, 210, 120, 0.8) 83.33%,
          rgba(101, 189, 92, 0.82) 100%),
        radial-gradient(96% 170% at 18% 40%, rgba(255, 255, 255, 0.18) 0%, transparent 54%),
        radial-gradient(96% 170% at 82% 62%, rgba(244, 255, 214, 0.12) 0%, transparent 54%);
      background-size: 100% 100%, 240% 100%, 100% 100%, 100% 100%;
      background-repeat: no-repeat, repeat-x, no-repeat, no-repeat;
      background-position: 0 0, 0% 50%, 18% 40%, 82% 62%;
    }

    .wood-btn-enroll .wood-btn-pastel::before {
      background:
        linear-gradient(180deg,
          rgba(255, 255, 246, 0.2) 0%,
          rgba(255, 255, 246, 0.1) 22%,
          rgba(49, 74, 16, 0.14) 100%),
        linear-gradient(90deg,
          rgba(247, 255, 225, 0.14) 0%,
          rgba(247, 255, 225, 0.03) 18%,
          rgba(41, 66, 17, 0.08) 50%,
          rgba(247, 255, 225, 0.03) 82%,
          rgba(247, 255, 225, 0.14) 100%);
      opacity: 0.68;
    }

    .wood-btn-enroll .wood-btn-label {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.75rem;
      font-size: clamp(1.1rem, 1.6vw, 1.3rem);
      letter-spacing: 0.12em;
      background: linear-gradient(180deg,
        #fff6cf 0%,
        #f2d07a 16%,
        #c8932b 40%,
        #7c5514 72%,
        #ecc968 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter:
        drop-shadow(0 -0.75px 0 rgba(255, 250, 232, 0.82))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.72))
        drop-shadow(0 2.2px 1.4px rgba(66, 42, 8, 0.34))
        drop-shadow(0 3.5px 2.5px rgba(48, 30, 6, 0.22));
    }

    @keyframes enrollPrismDrift {
      0%   { background-position: 0 0,    0% 50%, 18% 40%, 82% 62%; }
      100% { background-position: 0 0, -240% 50%, 18% 40%, 82% 62%; }
    }

    @keyframes prismWeekDrift {
      0%   { background-position: 0 0,    0% 50%, 18% 38%, 82% 62%; }
      100% { background-position: 0 0, -220% 50%, 18% 38%, 82% 62%; }
    }

    .wood-btn-prism.is-launching {
      pointer-events: none;
      animation: prismButtonLaunch 320ms cubic-bezier(0.3, 0.7, 0.4, 1) forwards;
    }

    .wood-btn-prism.is-launching .wood-btn-label {
      animation: prismLabelFlash 320ms cubic-bezier(0.3, 0.7, 0.4, 1) forwards;
    }

    @keyframes woodBtnDrift {
      0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%; }
      50%      { background-position: 100% 50%, 0% 50%, 30% 70%, 100% 0%; }
    }

    @keyframes prismButtonLaunch {
      0%   { transform: translateY(0) scale(1); }
      45%  { transform: translateY(2px) scale(0.985); }
      100% { transform: translateY(0) scale(1); }
    }

    @keyframes prismLabelFlash {
      0%, 100% { opacity: 1; }
      45%      { opacity: 0.85; }
    }

    .wood-btn-prism::after { display: none; }

    /* Ambient gold shimmer sweep (runs on a slow loop). */
    .wood-btn::after {
      content: '';
      position: absolute;
      left: var(--frame-w);
      top: var(--frame-w);
      right: var(--frame-w);
      bottom: var(--frame-w);
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(110deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 245, 215, 0.6) 50%,
        transparent 62%,
        transparent 100%);
      background-size: 250% 100%;
      background-position: 150% 0;
      opacity: 0;
    }

    .wood-btn:hover .wood-btn-pastel,
    .wood-btn:focus-visible .wood-btn-pastel,
    .wood-btn.is-launching .wood-btn-pastel {
      animation: woodBtnDrift 9s ease-in-out infinite;
    }

    .wood-btn-prism:hover .wood-btn-pastel,
    .wood-btn-prism:focus-visible .wood-btn-pastel,
    .wood-btn-prism.is-launching .wood-btn-pastel {
      animation: prismWeekDrift 32s linear infinite;
    }

    .wood-btn-enroll:hover .wood-btn-pastel,
    .wood-btn-enroll:focus-visible .wood-btn-pastel,
    .wood-btn-enroll.is-launching .wood-btn-pastel {
      animation: enrollPrismDrift 28s linear infinite;
    }

    .wood-btn:hover::after,
    .wood-btn:focus-visible::after,
    .wood-btn.is-launching::after {
      animation: woodBtnShimmer 6s cubic-bezier(0.45, 0.1, 0.4, 1) infinite;
    }

    @keyframes woodBtnShimmer {
      0%   { background-position: 150% 0; opacity: 0; }
      8%   { opacity: 1; }
      25%  { background-position: -50% 0; opacity: 0; }
      100% { background-position: -50% 0; opacity: 0; }
    }

    /* Burnished-gold label (matches .hero-title gradient). */
    .wood-btn-label {
      position: relative;
      z-index: 3;
      display: block;
      padding: 0.75rem 2.5rem;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-align: center;
      background: linear-gradient(180deg,
        #f7e6a8 0%,
        #dfb856 20%,
        #a6791d 48%,
        #6f4a0e 76%,
        #d4a84b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      white-space: nowrap;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 249, 229, 0.62))
        drop-shadow(0 1px 0.4px rgba(255, 245, 215, 0.6))
        drop-shadow(0 1.8px 1.2px rgba(82, 56, 14, 0.16));
    }

    /* Small variant (inline under the day panels). */
    .wood-btn-sm {
      --frame-w: 9px;
      box-shadow:
        0 6px 14px rgba(60, 38, 14, 0.26),
        0 2px 5px rgba(60, 38, 14, 0.16);
    }
    .wood-btn-sm:hover {
      box-shadow:
        0 10px 20px rgba(60, 38, 14, 0.32),
        0 4px 8px rgba(60, 38, 14, 0.2);
    }
    .wood-btn-sm .wood-btn-label {
      padding: 0.55rem 1.4rem;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
    }
    .wood-btn-sm .wood-btn-label .btn-icon {
      font-size: 0.8rem;
      margin-right: 0.35rem;
      display: inline-block;
      transition: transform 0.3s ease;
    }
    .wood-btn-sm:active .wood-btn-label .btn-icon {
      transform: rotate(90deg);
    }

    @media (prefers-reduced-motion: reduce) {
      .wood-btn,
      .wood-btn-pastel,
      .wood-btn::after,
      .wood-btn-prism::before {
        animation: none !important;
        transition: none !important;
      }
    }

    .cta-price {
      margin-top: 1.3rem;
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.8vw, 1.85rem);
      font-weight: 700;
      letter-spacing: 0.03em;
      background: linear-gradient(180deg,
        #f7e6a8 0%,
        #dfb856 20%,
        #a6791d 48%,
        #6f4a0e 76%,
        #d4a84b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 249, 229, 0.6))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.58))
        drop-shadow(0 1.6px 1.1px rgba(82, 56, 14, 0.16));
    }

    .cta-note {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1rem;
      padding: 0.55rem 1.15rem;
      font-family: var(--font-display);
      font-size: clamp(1.28rem, 2.3vw, 1.55rem);
      font-weight: 600;
      font-style: italic;
      color: var(--accent-hover);
      background: rgba(255, 250, 240, 0.72);
      border: 1px solid rgba(148, 101, 16, 0.18);
      box-shadow:
        0 10px 20px rgba(56, 32, 10, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    .cta-closing {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.6vw, 2.5rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.08;
      background: linear-gradient(180deg,
        #f4df99 0%,
        #d7ad4b 22%,
        #9a7418 50%,
        #6e4b0d 78%,
        #d4aa57 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.6px 0 rgba(255, 247, 220, 0.5))
        drop-shadow(0 1.3px 0.7px rgba(76, 50, 12, 0.18));
      margin-bottom: 2rem;
    }

    /* ============================================
       SECTION 4 — FIVE-PANEL ELEMENT
       ============================================ */
    .panels-section {
      padding-left: 0;
      padding-right: 0;
      position: relative;
    }

    .panels-section::before {
      display: none;
    }

    .section-head {
      position: relative;
      z-index: 8;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1.5rem;
    }

    .section-head .section-label {
      margin-bottom: 0.55rem;
    }

    .section-head-panels {
      margin-bottom: -0.55rem;
    }

    .section-head-map {
      margin-bottom: 1.1rem;
    }

    .title-shelf {
      --shelf-padding-x: clamp(1.4rem, 2vw, 2.2rem);
      position: relative;
      display: inline-flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0 1.15rem 1rem;
      min-height: 4.8rem;
    }

    .title-shelf::before {
      content: "";
      position: absolute;
      left: -0.25rem;
      right: -0.25rem;
      bottom: 0.2rem;
      height: 1.25rem;
      border-radius: 999px 999px 14px 14px;
      background-image:
        linear-gradient(180deg,
          rgba(255, 245, 215, 0.32) 0%,
          rgba(255, 245, 215, 0.08) 22%,
          rgba(0, 0, 0, 0.0) 54%,
          rgba(10, 6, 2, 0.38) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-color: #9c7540;
      box-shadow:
        0 16px 26px rgba(60, 38, 14, 0.24),
        0 4px 10px rgba(60, 38, 14, 0.14),
        inset 0 1px 0 rgba(255, 244, 220, 0.18),
        inset 0 -1px 0 rgba(40, 20, 6, 0.24);
    }

    .title-shelf::after {
      content: "";
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0;
      height: 0.35rem;
      border-radius: 999px;
      background: rgba(44, 25, 8, 0.24);
      filter: blur(1px);
      opacity: 0.75;
    }

    .title-shelf-card {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem var(--shelf-padding-x) 0.42rem;
      border-radius: 14px 14px 12px 12px;
      background:
        linear-gradient(180deg,
          rgba(255, 252, 246, 0.96) 0%,
          rgba(246, 239, 230, 0.98) 100%);
      border: 1px solid rgba(123, 90, 49, 0.16);
      box-shadow:
        0 14px 24px rgba(60, 38, 14, 0.14),
        0 3px 7px rgba(60, 38, 14, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(122, 96, 68, 0.1);
    }

    .panels-section h2,
    .map-section h2 {
      text-align: center;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      margin: 0 0 0.75rem;
      padding: 0 1.5rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      background: linear-gradient(180deg,
        #c89a3c 0%,
        #a57720 20%,
        #6f4a0e 48%,
        #4a3008 76%,
        #8b6118 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.6px 0 rgba(255, 249, 229, 0.62))
        drop-shadow(0 1px 0.45px rgba(255, 245, 215, 0.6))
        drop-shadow(0 1.8px 1.2px rgba(82, 56, 14, 0.18));
    }

    .panels-frame-outer {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(0.5rem, 2vw, 2rem);
      filter:
        drop-shadow(0 24px 34px rgba(44, 25, 8, 0.18))
        drop-shadow(0 12px 18px rgba(44, 25, 8, 0.14));
    }

    .panels-container {
      --frame-w: 18px;
      display: flex;
      width: 100%;
      height: clamp(350px, 50vh, 550px);
      overflow: hidden;
      padding: var(--frame-w);
      gap: 8px;
      position: relative;
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-vert, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 22px 38px rgba(60, 38, 14, 0.3),
        0 9px 18px rgba(60, 38, 14, 0.2),
        0 2px 0 rgba(255, 245, 220, 0.16);
    }

    .panels-container::before {
      content: "";
      position: absolute;
      inset: var(--frame-w);
      z-index: 4;
      pointer-events: none;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 225, 0.18),
        inset 0 18px 24px rgba(42, 24, 8, 0.16),
        inset 0 -26px 34px rgba(20, 10, 2, 0.24),
        inset 16px 0 22px rgba(36, 20, 7, 0.16),
        inset -14px 0 20px rgba(255, 244, 220, 0.07),
        inset 0 0 0 1px rgba(46, 25, 7, 0.12);
    }

    .panels-container::after {
      content: "";
      position: absolute;
      inset: 0;
      padding: var(--frame-w);
      z-index: 6;
      pointer-events: none;
      background:
        linear-gradient(135deg,
          rgba(255, 248, 228, 0.26) 0%,
          rgba(255, 248, 228, 0.12) 8%,
          rgba(255, 248, 228, 0) 24%),
        linear-gradient(315deg,
          rgba(255, 250, 240, 0.14) 0%,
          rgba(255, 250, 240, 0.05) 10%,
          rgba(255, 250, 240, 0) 22%);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      mix-blend-mode: screen;
      opacity: 0.72;
    }

    .panels-container > .frame-piece {
      z-index: 8;
    }

    .frame-piece {
      position: absolute;
      pointer-events: none;
      z-index: 5;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 226, 0.14),
        inset 0 -1px 0 rgba(40, 20, 6, 0.2);
    }
    .frame-top,
    .frame-bottom {
      left: 0;
      right: 0;
      height: var(--frame-w);
      background-image:
        linear-gradient(180deg,
          rgba(255, 245, 215, 0.32) 0%,
          rgba(255, 245, 215, 0.1) 22%,
          rgba(0, 0, 0, 0.0) 55%,
          rgba(10, 6, 2, 0.35) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-color: #9c7540;
    }
    .frame-top {
      top: 0;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 226, 0.24),
        inset 0 -1px 0 rgba(40, 20, 6, 0.32);
      clip-path: polygon(0 0, 100% 0, calc(100% - var(--frame-w)) 100%, var(--frame-w) 100%);
    }
    .frame-bottom {
      bottom: 0;
      background-image:
        linear-gradient(180deg,
          rgba(10, 6, 2, 0.35) 0%,
          rgba(0, 0, 0, 0.0) 45%,
          rgba(255, 245, 215, 0.1) 78%,
          rgba(255, 245, 215, 0.32) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      box-shadow:
        inset 0 1px 0 rgba(40, 20, 6, 0.3),
        inset 0 -1px 0 rgba(255, 246, 226, 0.2);
      clip-path: polygon(var(--frame-w) 0, calc(100% - var(--frame-w)) 0, 100% 100%, 0 100%);
    }
    .frame-left,
    .frame-right {
      top: 0;
      bottom: 0;
      width: var(--frame-w);
      background-image:
        linear-gradient(90deg,
          rgba(255, 245, 215, 0.32) 0%,
          rgba(255, 245, 215, 0.1) 22%,
          rgba(0, 0, 0, 0.0) 55%,
          rgba(10, 6, 2, 0.35) 100%),
        var(--wood-vert, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-color: #9c7540;
    }
    .frame-left {
      left: 0;
      box-shadow:
        inset 1px 0 0 rgba(255, 246, 226, 0.24),
        inset -1px 0 0 rgba(40, 20, 6, 0.3);
      clip-path: polygon(0 0, 100% var(--frame-w), 100% calc(100% - var(--frame-w)), 0 100%);
    }
    .frame-right {
      right: 0;
      background-image:
        linear-gradient(90deg,
          rgba(10, 6, 2, 0.35) 0%,
          rgba(0, 0, 0, 0.0) 45%,
          rgba(255, 245, 215, 0.1) 78%,
          rgba(255, 245, 215, 0.32) 100%),
        var(--wood-vert, none);
      background-size: 100% 100%, cover;
      box-shadow:
        inset 1px 0 0 rgba(40, 20, 6, 0.3),
        inset -1px 0 0 rgba(255, 246, 226, 0.22);
      clip-path: polygon(0 var(--frame-w), 100% 0, 100% 100%, 0 calc(100% - var(--frame-w)));
    }

    .panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      z-index: 5;
      transition: flex 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      contain: paint;
      box-shadow: var(--camp-panel-inner-shadow);
    }

    .panel-bg {
      position: absolute;
      inset: -6px;
      background-size: cover;
      background-position: center;
      filter: brightness(1.03) saturate(1.06);
      transform: scale(1.01);
    }

    .panel.expanded {
      flex: 2;
      z-index: 6;
    }

    .panels-container.has-expanded .panel:not(.expanded) {
      flex: 0.7;
    }

    /* Panel backgrounds */
    .panel[data-day="shimmer"] .panel-bg {
      background-image: url('images/shimmer.webp');
    }
    .panel[data-day="flow"] .panel-bg {
      background-image: url('images/flow.webp');
    }
    .panel[data-day="spark"] .panel-bg {
      background-image: url('images/spark.webp');
    }
    .panel[data-day="pop"] .panel-bg {
      background-image: url('images/pop.webp');
    }
    .panel[data-day="bloom"] .panel-bg {
      background-image: url('images/bloom.webp');
    }

    /* Canvas for cursor effects */
    .panel canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .panel[data-day="flow"] canvas {
      z-index: 9;
    }

    /* Panel text overlay */
    .panel-label {
      position: absolute;
      left: 0.6rem;
      bottom: 0.6rem;
      max-width: min(76%, 14rem);
      padding: 0.72rem 0.82rem 0.68rem;
      z-index: 3;
      pointer-events: none;
      isolation: isolate;
    }

    .panel-label::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      background:
        linear-gradient(180deg,
          rgba(255, 253, 248, 0.92) 0%,
          rgba(244, 236, 224, 0.9) 100%);
      border: 1px solid rgba(148, 101, 16, 0.14);
      box-shadow:
        0 12px 24px rgba(44, 25, 8, 0.14),
        0 3px 8px rgba(44, 25, 8, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        inset 0 -1px 0 rgba(122, 96, 68, 0.12);
    }

    .panel-label > * {
      position: relative;
      z-index: 1;
    }

    .panel-day-name {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 1.8vw, 1.5rem);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(18, 13, 10, 0.92);
      text-shadow: 0 1px 0 rgba(255,255,255,0.14);
      white-space: nowrap;
    }

    .panel-day-sub {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: clamp(1.1rem, 1.5vw, 1.35rem);
      color: rgba(34, 24, 18, 0.82);
      margin-top: 0.1rem;
      text-shadow: 0 1px 0 rgba(255,255,255,0.14);
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .panel[data-day="flow"] .panel-day-name,
    .play-panel[data-day="flow"] .panel-day-name,
    .landscape-strip[data-day="flow"] .panel-day-name {
      color: rgba(18, 13, 10, 0.76);
    }

    .panel[data-day="flow"] .panel-day-sub,
    .play-panel[data-day="flow"] .panel-day-sub,
    .landscape-strip[data-day="flow"] .panel-day-sub {
      color: rgba(34, 24, 18, 0.66);
    }

    /* Panel description area (below panels) */
    .panel-descriptions {
      max-width: min(760px, calc(100vw - 3rem));
      margin: 0 auto;
      padding: 1rem clamp(1.5rem, 4vw, 3rem) 0;
      position: relative;
      min-height: 152px;
      display: grid;
      place-items: start center;
    }

    .panel-desc {
      --panel-desc-accent: rgba(148, 101, 16, 0.55);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      grid-area: 1 / 1;
      width: min(100%, 720px);
      pointer-events: none;
    }

    .panel-desc.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .panel-desc[data-day="shimmer"] {
      --panel-desc-accent: rgba(181, 126, 31, 0.68);
    }

    .panel-desc[data-day="flow"] {
      --panel-desc-accent: rgba(130, 108, 46, 0.68);
    }

    .panel-desc[data-day="spark"] {
      --panel-desc-accent: rgba(149, 93, 42, 0.68);
    }

    .panel-desc[data-day="pop"] {
      --panel-desc-accent: rgba(168, 88, 32, 0.68);
    }

    .panel-desc[data-day="bloom"] {
      --panel-desc-accent: rgba(116, 111, 43, 0.68);
    }

    .panel-desc-text,
    .panel-desc-prompt {
      width: 100%;
      margin: 0;
      padding: 0.95rem 1.4rem;
      font-size: clamp(1.08rem, 1.3vw, 1.22rem);
      color: #352d26;
      text-align: center;
      line-height: 1.65;
      background: rgba(255, 253, 248, 0.94);
      border: 1.5px solid var(--panel-desc-accent);
      border-radius: 14px;
      box-shadow:
        0 10px 22px rgba(60, 38, 14, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.64);
    }

    .panel-desc-prompt {
      --panel-desc-accent: rgba(148, 101, 16, 0.42);
      font-size: 0.98rem;
      color: #5d534a;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ============================================
       SECTION 4.5 — COLLAGE (framed partners photo)
       ============================================ */
    .collage-section {
      padding-top: clamp(1.5rem, 3vh, 2.5rem);
      padding-bottom: clamp(0.5rem, 2vh, 1.5rem);
    }

    .collage-wrap {
      --frame-w: 10px;
      width: min(100%, var(--feature-rail-width));
      max-width: 100%;
      margin: 0 auto;
      padding: var(--frame-w);
      position: relative;
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 14px 30px rgba(60, 38, 14, 0.35),
        0 5px 12px rgba(60, 38, 14, 0.22);
    }

    .collage-frame-piece {
      position: absolute;
      pointer-events: none;
      z-index: 5;
    }
    .collage-frame-top,
    .collage-frame-bottom {
      left: 0;
      right: 0;
      height: var(--frame-w);
      background-image:
        linear-gradient(180deg,
          rgba(255, 245, 215, 0.32) 0%,
          rgba(255, 245, 215, 0.1) 22%,
          rgba(0, 0, 0, 0.0) 55%,
          rgba(10, 6, 2, 0.35) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-color: #9c7540;
    }
    .collage-frame-top {
      top: 0;
      clip-path: polygon(0 0, 100% 0, calc(100% - var(--frame-w)) 100%, var(--frame-w) 100%);
    }
    .collage-frame-bottom {
      bottom: 0;
      background-image:
        linear-gradient(180deg,
          rgba(10, 6, 2, 0.35) 0%,
          rgba(0, 0, 0, 0.0) 45%,
          rgba(255, 245, 215, 0.1) 78%,
          rgba(255, 245, 215, 0.32) 100%),
        var(--wood-horiz, none);
      background-size: 100% 100%, cover;
      clip-path: polygon(var(--frame-w) 0, calc(100% - var(--frame-w)) 0, 100% 100%, 0 100%);
    }
    .collage-frame-left,
    .collage-frame-right {
      top: 0;
      bottom: 0;
      width: var(--frame-w);
      background-image:
        linear-gradient(90deg,
          rgba(255, 245, 215, 0.32) 0%,
          rgba(255, 245, 215, 0.1) 22%,
          rgba(0, 0, 0, 0.0) 55%,
          rgba(10, 6, 2, 0.35) 100%),
        var(--wood-vert, none);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-color: #9c7540;
    }
    .collage-frame-left {
      left: 0;
      clip-path: polygon(0 0, 100% var(--frame-w), 100% calc(100% - var(--frame-w)), 0 100%);
    }
    .collage-frame-right {
      right: 0;
      background-image:
        linear-gradient(90deg,
          rgba(10, 6, 2, 0.35) 0%,
          rgba(0, 0, 0, 0.0) 45%,
          rgba(255, 245, 215, 0.1) 78%,
          rgba(255, 245, 215, 0.32) 100%),
        var(--wood-vert, none);
      background-size: 100% 100%, cover;
      clip-path: polygon(0 var(--frame-w), 100% 0, 100% 100%, 0 calc(100% - var(--frame-w)));
    }

    .collage-inner {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      z-index: 1;
    }

    .collage-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow:
        inset 2px 2px 5px rgba(20, 10, 2, 0.45),
        inset -1px -1px 3px rgba(20, 10, 2, 0.22);
      pointer-events: none;
      z-index: 2;
    }

    .collage-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ============================================
       SECTION 5 — SCHEDULE
       ============================================ */
    .schedule {
      text-align: center;
      padding-top: clamp(3rem, 5vh, 4.5rem);
    }

    .schedule h2 {
      font-size: clamp(2.15rem, 4.7vw, 3.15rem);
      margin-bottom: 0.8rem;
    }

    .schedule-intro {
      font-size: 1.18rem;
      color: var(--text-secondary);
      max-width: 46rem;
      margin: 0 auto 2.1rem;
      line-height: 1.55;
    }

    /* ---- Unified wood-framed schedule panel (3 cells divided by interior frame pieces) ---- */
    .schedule-frame-outer {
      max-width: 1180px;
      margin: 0 auto 1.6rem;
      padding: 0 clamp(0.5rem, 2vw, 2rem);
      filter:
        drop-shadow(0 24px 34px rgba(44, 25, 8, 0.18))
        drop-shadow(0 12px 18px rgba(44, 25, 8, 0.14));
    }

    .schedule-frame {
      --frame-w: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) var(--frame-w) minmax(0, 1.25fr);
      grid-template-rows: auto var(--frame-w) auto;
      width: 100%;
      padding: var(--frame-w);
      position: relative;
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 22px 38px rgba(60, 38, 14, 0.3),
        0 9px 18px rgba(60, 38, 14, 0.2),
        0 2px 0 rgba(255, 245, 220, 0.16);
    }

    .schedule-frame::before {
      content: "";
      position: absolute;
      inset: var(--frame-w);
      z-index: 4;
      pointer-events: none;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 225, 0.18),
        inset 0 18px 24px rgba(42, 24, 8, 0.16),
        inset 0 -26px 34px rgba(20, 10, 2, 0.24),
        inset 16px 0 22px rgba(36, 20, 7, 0.16),
        inset -14px 0 20px rgba(255, 244, 220, 0.07),
        inset 0 0 0 1px rgba(46, 25, 7, 0.12);
    }

    .schedule-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      padding: var(--frame-w);
      z-index: 6;
      pointer-events: none;
      background:
        linear-gradient(135deg,
          rgba(255, 248, 228, 0.26) 0%,
          rgba(255, 248, 228, 0.12) 8%,
          rgba(255, 248, 228, 0) 24%),
        linear-gradient(315deg,
          rgba(255, 250, 240, 0.14) 0%,
          rgba(255, 250, 240, 0.05) 10%,
          rgba(255, 250, 240, 0) 22%);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      mix-blend-mode: screen;
      opacity: 0.72;
    }

    .schedule-pane {
      position: relative;
      min-width: 0;
      overflow: hidden;
      z-index: 1;
    }

    .schedule-pane-rhythm   { grid-area: 1 / 1; }
    .schedule-pane-rotation { grid-area: 1 / 3; }
    .schedule-pane-finale   { grid-area: 3 / 1 / 4 / 4; }

    .schedule-pane-inner {
      height: 100%;
      padding: clamp(1.2rem, 2vw, 1.75rem) clamp(1.2rem, 2vw, 1.85rem);
      text-align: left;
      background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(246, 239, 228, 0.96) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 20px 28px rgba(255, 255, 255, 0.14),
        inset 0 -22px 30px rgba(84, 56, 26, 0.08);
      display: flex;
      flex-direction: column;
    }

    /* Interior wood dividers — matched to the outer frame's 3D bevel so they
       read as a raised strip lifting out of the page. */
    .schedule-divider {
      position: relative;
      z-index: 3;
      background-color: #9c7540;
      background-size: 100% 100%, cover;
      background-position: center, center;
    }

    .schedule-divider-vert {
      grid-area: 1 / 2 / 2 / 3;
      background-image:
        linear-gradient(90deg,
          rgba(10, 6, 2, 0.42) 0%,
          rgba(255, 245, 215, 0.18) 22%,
          rgba(255, 245, 215, 0.36) 50%,
          rgba(255, 245, 215, 0.14) 78%,
          rgba(10, 6, 2, 0.42) 100%),
        var(--wood-vert, none);
      box-shadow:
        0 0 0 1px rgba(46, 25, 7, 0.3),
        -3px 0 6px rgba(20, 10, 2, 0.26),
        3px 0 6px rgba(20, 10, 2, 0.26),
        inset 0 1px 0 rgba(255, 246, 225, 0.32),
        inset 0 -1px 0 rgba(20, 10, 2, 0.32);
    }

    .schedule-divider-vert::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg,
        rgba(255, 248, 228, 0.22) 0%,
        rgba(255, 248, 228, 0.08) 10%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 70%,
        rgba(20, 10, 2, 0.18) 100%);
      mix-blend-mode: screen;
      opacity: 0.85;
    }

    .schedule-divider-horiz {
      grid-area: 2 / 1 / 3 / 4;
      background-image:
        linear-gradient(180deg,
          rgba(10, 6, 2, 0.42) 0%,
          rgba(255, 245, 215, 0.18) 22%,
          rgba(255, 245, 215, 0.36) 50%,
          rgba(255, 245, 215, 0.14) 78%,
          rgba(10, 6, 2, 0.42) 100%),
        var(--wood-horiz, none);
      box-shadow:
        0 0 0 1px rgba(46, 25, 7, 0.3),
        0 -3px 6px rgba(20, 10, 2, 0.26),
        0 3px 6px rgba(20, 10, 2, 0.26),
        inset 1px 0 0 rgba(255, 246, 225, 0.32),
        inset -1px 0 0 rgba(20, 10, 2, 0.32);
    }

    .schedule-divider-horiz::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg,
        rgba(255, 248, 228, 0.22) 0%,
        rgba(255, 248, 228, 0.08) 10%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 70%,
        rgba(20, 10, 2, 0.18) 100%);
      mix-blend-mode: screen;
      opacity: 0.85;
    }

    .schedule-pane-kicker {
      margin-bottom: 0.4rem;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .schedule-pane-kicker-gold {
      background: linear-gradient(180deg, #e8c564 0%, #a6791d 55%, #6f4a0e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .schedule-pane-inner h3 {
      font-size: clamp(1.4rem, 2.1vw, 1.8rem);
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }

    .schedule-pane-copy {
      font-size: 1.02rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .schedule-stay-note {
      margin-top: auto;
      padding-top: 1rem;
      font-size: 0.98rem;
      color: var(--text-secondary);
    }

    .schedule-stay-note strong {
      color: var(--accent-hover);
    }

    /* ---- Daily Rhythm: vertical gold-thread timeline ---- */
    .rhythm-timeline {
      list-style: none;
      margin: 1.2rem 0 1.1rem;
      padding: 0 0 0 0.25rem;
      display: grid;
      gap: 0.15rem;
      position: relative;
      flex: 1;
    }

    .rhythm-timeline::before {
      content: "";
      position: absolute;
      left: calc(0.25rem + 3.2rem + 0.55rem + 0.55rem - 1px);
      top: 1.15rem;
      bottom: 1.15rem;
      width: 2px;
      background: linear-gradient(180deg,
        rgba(196, 144, 50, 0) 0%,
        rgba(196, 144, 50, 0.45) 14%,
        rgba(216, 168, 55, 0.62) 50%,
        rgba(196, 144, 50, 0.45) 86%,
        rgba(196, 144, 50, 0) 100%);
      border-radius: 2px;
    }

    .rhythm-stop {
      display: grid;
      grid-template-columns: 3.2rem 1.1rem 1fr;
      gap: 0.55rem;
      align-items: start;
      padding: 0.6rem 0;
    }

    .rhythm-time {
      text-align: right;
      font-family: var(--font-display);
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--accent-hover);
      padding-top: 0.18rem;
      line-height: 1.05;
      letter-spacing: 0.01em;
    }

    .rhythm-time small {
      display: block;
      margin-top: 0.1rem;
      font-family: var(--font-body);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .rhythm-bead {
      width: 0.95rem;
      height: 0.95rem;
      margin: 0.35rem auto 0;
      border-radius: 50%;
      background: radial-gradient(circle at 32% 28%,
        #f7df9c 0%,
        #d8ac43 45%,
        #8d6010 100%);
      box-shadow:
        0 1px 3px rgba(80, 52, 10, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 3px rgba(255, 250, 236, 0.92),
        0 0 0 4px rgba(154, 107, 18, 0.24);
      position: relative;
      z-index: 1;
    }

    .rhythm-bead-pulse::after {
      content: "";
      position: absolute;
      inset: -0.35rem;
      border-radius: 50%;
      border: 1px solid rgba(216, 168, 55, 0.45);
      animation: rhythmBeadPulse 2.4s ease-out infinite;
    }

    @keyframes rhythmBeadPulse {
      0%   { transform: scale(0.85); opacity: 0.8; }
      70%  { transform: scale(1.45); opacity: 0; }
      100% { transform: scale(1.45); opacity: 0; }
    }

    .rhythm-body {
      padding-top: 0.1rem;
    }

    .rhythm-title {
      display: block;
      font-family: var(--font-display);
      font-size: 1.18rem;
      font-weight: 700;
      line-height: 1.08;
      color: var(--text-primary);
    }

    .rhythm-detail {
      display: block;
      margin-top: 0.2rem;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    .rhythm-rooms {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.5rem;
    }

    .rhythm-room {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(109, 76, 28, 0.2);
      background: rgba(255, 250, 242, 0.8);
    }

    .rhythm-room-music   { background: rgba(232, 150, 30, 0.18);  color: #7a4f10; border-color: rgba(232, 150, 30, 0.4); }
    .rhythm-room-ballet  { background: rgba(200, 60, 140, 0.16);  color: #8a2a5c; border-color: rgba(200, 60, 140, 0.38); }
    .rhythm-room-theater { background: rgba(20, 140, 150, 0.16);  color: #0e5a62; border-color: rgba(20, 140, 150, 0.4); }

    .rhythm-arrow {
      font-size: 0.75rem;
      color: rgba(109, 76, 28, 0.55);
      font-weight: 700;
    }

    /* ---- Rotation grid: group cells fully colored so row membership is unambiguous ---- */
    .rotation-grid {
      display: grid;
      grid-template-columns: minmax(6rem, 0.85fr) repeat(3, minmax(0, 1fr));
      gap: 0.45rem;
      margin-top: 1.1rem;
    }

    .rotation-corner,
    .rotation-round,
    .rotation-group,
    .rotation-cell {
      min-height: 4.6rem;
      padding: 0.7rem 0.55rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 1px solid rgba(109, 76, 28, 0.12);
      background: rgba(255, 250, 242, 0.76);
    }

    .rotation-corner {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: transparent;
      border: 1px dashed rgba(109, 76, 28, 0.18);
    }

    .rotation-round {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(248, 240, 227, 0.84);
    }

    .rotation-group {
      flex-direction: column;
      gap: 0.18rem;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: #ffffff;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -8px 14px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .rotation-group::after {
      content: "Birds";
      display: block;
      font-family: var(--font-body);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      opacity: 0.78;
      text-shadow: none;
    }

    /* Per-row bird-group ribbon: a solid gradient band sits across the top of the
       music / ballet / theater cells. Cell background-color shows below, so the
       room palette (orange/pink/teal) is preserved. */
    .rotation-row-blue,
    .rotation-row-yellow,
    .rotation-row-green {
      background-repeat: no-repeat;
      background-position: top left;
      background-size: 100% 10px;
      padding-top: 1.1rem;
    }

    .rotation-row-blue {
      background-image: linear-gradient(90deg,
        rgba(63, 127, 183, 0.96) 0%,
        rgba(111, 168, 216, 0.88) 55%,
        rgba(148, 196, 232, 0.75) 100%);
    }

    .rotation-row-yellow {
      background-image: linear-gradient(90deg,
        rgba(216, 168, 55, 0.96) 0%,
        rgba(236, 199, 96, 0.9) 55%,
        rgba(247, 220, 140, 0.78) 100%);
    }

    .rotation-row-green {
      background-image: linear-gradient(90deg,
        rgba(78, 155, 87, 0.96) 0%,
        rgba(139, 196, 138, 0.88) 55%,
        rgba(183, 220, 175, 0.75) 100%);
    }

    .rotation-group-blue {
      background: linear-gradient(180deg, #6fa8d8 0%, #3f7fb7 100%);
      border-color: rgba(63, 127, 183, 0.55);
    }

    .rotation-group-yellow {
      background: linear-gradient(180deg, #f1cf67 0%, #d8a837 100%);
      border-color: rgba(216, 168, 55, 0.55);
      color: #4a2f08;
      text-shadow: 0 1px 0 rgba(255, 250, 220, 0.6);
    }

    .rotation-group-green {
      background: linear-gradient(180deg, #8bc48a 0%, #4e9b57 100%);
      border-color: rgba(78, 155, 87, 0.55);
    }

    .rotation-cell {
      flex-direction: column;
      gap: 0.2rem;
      font-family: var(--font-display);
      font-size: 1.14rem;
      font-weight: 700;
      line-height: 1.05;
      color: var(--text-primary);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .rotation-cell small {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(44, 40, 36, 0.62);
    }

    .rotation-cell-music {
      background-color: rgba(232, 150, 30, 0.16);
      border-color: rgba(232, 150, 30, 0.28);
      color: #7a4f10;
    }

    .rotation-cell-ballet {
      background-color: rgba(200, 60, 140, 0.14);
      border-color: rgba(200, 60, 140, 0.24);
      color: #8a2a5c;
    }

    .rotation-cell-theater {
      background-color: rgba(20, 140, 150, 0.14);
      border-color: rgba(20, 140, 150, 0.26);
      color: #0e5a62;
    }

    .rotation-board-note {
      margin-top: auto;
      padding-top: 1rem;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }

    .rotation-board-note strong {
      color: var(--accent-hover);
    }

    /* ---- Friday Finale: weekly ribbon + two callouts ---- */
    .finale-head {
      display: flex;
      align-items: baseline;
      justify-content: flex-start;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 0.8rem;
    }

    .finale-head h3 {
      font-size: clamp(1.65rem, 2.55vw, 2.1rem);
      margin: 0;
    }

    .schedule-pane-finale .schedule-pane-kicker {
      font-size: 0.82rem;
    }

    .finale-callouts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .finale-callout {
      padding: 1.2rem 1.35rem;
      background: rgba(255, 252, 246, 0.78);
      border: 1px solid rgba(109, 76, 28, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .finale-callout-accent {
      background:
        linear-gradient(180deg, rgba(255, 247, 222, 0.92) 0%, rgba(247, 230, 168, 0.78) 100%);
      border-color: rgba(166, 121, 29, 0.35);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 6px 14px rgba(111, 74, 14, 0.12);
    }

    .finale-callout-time {
      display: block;
      margin-bottom: 0.3rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .finale-callout-title {
      display: block;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      line-height: 1.12;
    }

    .finale-callout p {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* ============================================
       SECTION 6 — MAP
       ============================================ */
    .map-section h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      text-align: center;
      margin-bottom: 2rem;
    }

    .map-frame-outer {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 clamp(0.5rem, 2vw, 2rem);
      filter:
        drop-shadow(0 24px 34px rgba(44, 25, 8, 0.18))
        drop-shadow(0 12px 18px rgba(44, 25, 8, 0.14));
    }

    .map-frame {
      --frame-w: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.16fr) var(--frame-w) minmax(320px, 0.9fr);
      width: 100%;
      min-height: clamp(390px, 48vh, 540px);
      overflow: hidden;
      padding: var(--frame-w);
      position: relative;
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 22px 38px rgba(60, 38, 14, 0.3),
        0 9px 18px rgba(60, 38, 14, 0.2),
        0 2px 0 rgba(255, 245, 220, 0.16);
    }

    .map-frame::before {
      content: "";
      position: absolute;
      inset: var(--frame-w);
      z-index: 4;
      pointer-events: none;
      box-shadow:
        inset 0 1px 0 rgba(255, 246, 225, 0.18),
        inset 0 18px 24px rgba(42, 24, 8, 0.16),
        inset 0 -26px 34px rgba(20, 10, 2, 0.24),
        inset 16px 0 22px rgba(36, 20, 7, 0.16),
        inset -14px 0 20px rgba(255, 244, 220, 0.07),
        inset 0 0 0 1px rgba(46, 25, 7, 0.12);
    }

    .map-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      padding: var(--frame-w);
      z-index: 6;
      pointer-events: none;
      background:
        linear-gradient(135deg,
          rgba(255, 248, 228, 0.26) 0%,
          rgba(255, 248, 228, 0.12) 8%,
          rgba(255, 248, 228, 0) 24%),
        linear-gradient(315deg,
          rgba(255, 250, 240, 0.14) 0%,
          rgba(255, 250, 240, 0.05) 10%,
          rgba(255, 250, 240, 0) 22%);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      mix-blend-mode: screen;
      opacity: 0.72;
    }

    .map-pane {
      position: relative;
      min-width: 0;
      z-index: 1;
      overflow: hidden;
    }

    .map-pane-map {
      background: #f2f0ed;
      box-shadow:
        inset 0 16px 24px rgba(20, 10, 2, 0.08),
        inset 0 -12px 18px rgba(20, 10, 2, 0.12);
    }

    .map-divider {
      position: relative;
      z-index: 1;
      background-color: #9c7540;
      background-image: var(--wood-vert, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        inset 1px 0 0 rgba(255, 246, 226, 0.18),
        inset -1px 0 0 rgba(40, 20, 6, 0.3),
        inset 5px 0 7px rgba(255, 244, 220, 0.08),
        inset -8px 0 12px rgba(30, 16, 6, 0.24),
        0 0 0 1px rgba(72, 42, 18, 0.12);
    }

    .map-divider::before,
    .map-divider::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .map-divider::before {
      background:
        linear-gradient(90deg,
          rgba(255, 248, 228, 0.34) 0%,
          rgba(255, 248, 228, 0.18) 18%,
          rgba(0, 0, 0, 0) 40%,
          rgba(30, 16, 6, 0.1) 58%,
          rgba(255, 247, 226, 0.12) 72%,
          rgba(20, 10, 2, 0.3) 100%);
      mix-blend-mode: screen;
      opacity: 0.85;
    }

    .map-divider::after {
      box-shadow:
        inset 0 18px 18px rgba(40, 22, 8, 0.12),
        inset 0 -24px 24px rgba(20, 10, 2, 0.18);
    }

    #camp-map {
      position: relative;
      z-index: 1;
      height: 100%;
      min-height: 300px;
      width: 100%;
      background: #d9e7f2;
    }

    .map-pane-map::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 211, 141, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(129, 182, 239, 0.12) 0%, transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(194, 224, 245, 0.06) 100%);
      mix-blend-mode: normal;
      opacity: 0.55;
    }

    /* Fallback if Leaflet doesn't load */
    #camp-map:empty::after {
      content: 'NNPAC Summer Program — all three partner studios at 500 E Moana Ln, Reno, NV 89502';
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 2rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .map-info {
      height: 100%;
      padding: clamp(1.5rem, 3vw, 2.4rem);
      background:
        linear-gradient(180deg,
          rgba(255, 252, 246, 0.96) 0%,
          rgba(246, 239, 230, 0.98) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 20px 28px rgba(255, 255, 255, 0.18),
        inset 0 -22px 30px rgba(84, 56, 26, 0.1),
        inset 14px 0 20px rgba(60, 34, 10, 0.08),
        inset -12px 0 18px rgba(255, 250, 240, 0.22);
      display: flex;
      align-items: center;
    }

    .map-copy {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      width: 100%;
    }

    .map-copy-intro {
      font-size: clamp(1.2rem, 2vw, 1.45rem);
      line-height: 1.28;
      color: var(--text-secondary);
      max-width: 28rem;
    }

    .map-info-grid {
      display: grid;
      gap: 1rem;
    }

    .map-info-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid rgba(88, 58, 24, 0.12);
    }

    .map-info-item:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }

    .map-info-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .map-info-value {
      font-family: var(--font-display);
      font-size: 1.08rem;
      line-height: 1.2;
      color: var(--text-primary);
    }

    .map-link {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.16em;
      transition: color 0.2s ease;
    }

    .map-link:hover {
      color: var(--accent-hover);
    }

    .camp-pin-icon {
      background: transparent;
      border: none;
    }

    .camp-pin {
      position: relative;
      display: block;
      width: 44px;
      height: 58px;
    }

    .camp-pin-shadow {
      position: absolute;
      left: 50%;
      bottom: 3px;
      width: 24px;
      height: 9px;
      border-radius: 50%;
      background: rgba(34, 21, 10, 0.24);
      transform: translateX(-50%);
      filter: blur(4px);
    }

    .camp-pin-head {
      position: absolute;
      left: 50%;
      top: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      transform: translateX(-50%);
      background:
        radial-gradient(circle at 35% 30%, rgba(255, 245, 238, 0.9) 0%, rgba(255, 245, 238, 0.22) 24%, transparent 26%),
        linear-gradient(145deg, #f36d5f 0%, #d75245 45%, #b9362d 100%);
      box-shadow:
        0 9px 12px rgba(91, 35, 25, 0.24),
        inset 0 2px 2px rgba(255, 255, 255, 0.4),
        inset 0 -3px 4px rgba(116, 31, 24, 0.28);
    }

    .camp-pin-head::after {
      content: "";
      position: absolute;
      inset: 5px 8px 13px 6px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.04) 100%);
      transform: rotate(-24deg);
      opacity: 0.9;
    }

    .camp-pin-core {
      position: absolute;
      left: 50%;
      top: 10px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transform: translateX(-50%);
      background: linear-gradient(180deg, #fffdf7 0%, #f3e7d8 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 0 0 1px rgba(133, 93, 49, 0.12);
    }

    .camp-pin-stem {
      position: absolute;
      left: 50%;
      top: 22px;
      width: 5px;
      height: 24px;
      border-radius: 999px;
      transform: translateX(-50%) rotate(7deg);
      background: linear-gradient(180deg, #e5edf5 0%, #b9c7d5 45%, #8a98a7 100%);
      box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.45),
        inset -1px 0 0 rgba(57, 71, 82, 0.18);
    }

    .camp-pin-point {
      position: absolute;
      left: 50%;
      top: 42px;
      width: 0;
      height: 0;
      transform: translateX(-50%) rotate(7deg);
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 14px solid #8f9ca8;
      filter: drop-shadow(0 1px 0 rgba(42, 30, 16, 0.18));
    }

    /* Leaflet overrides */
    .leaflet-container {
      background: #d9e7f2 !important;
    }

    #camp-map .leaflet-tile {
      filter: saturate(1.08) contrast(1.02) brightness(1.01);
    }

    .leaflet-control-attribution {
      background: rgba(255, 252, 246, 0.9) !important;
      font-size: 0.65rem !important;
    }

    .leaflet-control-zoom a {
      background: rgba(255, 252, 246, 0.96) !important;
      color: #333 !important;
      border-color: rgba(108, 77, 44, 0.14) !important;
      box-shadow: 0 4px 10px rgba(44, 25, 8, 0.12);
    }

    .leaflet-control-zoom a:hover {
      background: #fff !important;
      color: #111 !important;
    }

    .leaflet-popup-content-wrapper {
      background: rgba(255, 252, 246, 0.97);
      color: var(--text-primary);
      border-radius: 12px;
      box-shadow:
        0 16px 24px rgba(44, 25, 8, 0.2),
        0 4px 10px rgba(44, 25, 8, 0.1);
    }

    .leaflet-popup-content {
      margin: 0.8rem 0.95rem;
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.5;
    }

    .leaflet-popup-tip {
      background: rgba(255, 252, 246, 0.97);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .page-footer {
      text-align: center;
      padding: 3rem 0 2.2rem;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .footer-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.7vw, 1.2rem);
      font-style: italic;
      color: var(--text-secondary);
      margin: 0 auto 0.9rem;
      max-width: 34rem;
      line-height: 1.35;
    }

    .footer-orgs {
      font-family: var(--font-display);
      font-size: 0.96rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 0.02em;
      line-height: 1.7;
      margin-bottom: 0.9rem;
    }

    .footer-orgs span {
      margin: 0 0.55rem;
      opacity: 0.45;
      color: var(--accent);
    }

    .footer-meta {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 0.85rem;
    }

    .footer-meta a {
      color: var(--accent-hover);
      text-decoration: none;
      border-bottom: 1px solid rgba(148, 101, 16, 0.28);
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .footer-meta a:hover,
    .footer-meta a:focus-visible {
      color: var(--accent);
      border-color: rgba(148, 101, 16, 0.65);
    }

    .footer-meta-sep {
      margin: 0 0.5rem;
      opacity: 0.5;
      color: var(--accent);
    }

    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0.7;
      margin: 0;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 768px) {
      /* Mesh-gradient feel: large soft blobs + blur/saturate so they melt together
         into dreamy color washes instead of distinct circles. Linen texture lives
         on body below this layer and shows through the translucent color. */
      .bg-flames {
        filter: blur(40px) saturate(1.15);
        opacity: 0.78;
        background-image:
          /* Soft top color wash so the very top isn't bare linen */
          radial-gradient(520px 480px at 20% 2%, rgba(232, 150, 30, 0.28) 0%, transparent 65%),
          radial-gradient(560px 520px at 82% 6%, rgba(160, 60, 210, 0.26) 0%, transparent 65%),
          radial-gradient(460px 420px at 50% 10%, rgba(0, 170, 170, 0.22) 0%, transparent 65%),
          radial-gradient(620px 700px at 15% 20%, rgba(232, 150, 30, 0.46) 0%, transparent 65%),
          radial-gradient(580px 700px at 90% 28%, rgba(0, 170, 170, 0.32) 0%, transparent 65%),
          radial-gradient(620px 700px at 10% 42%, rgba(160, 60, 210, 0.40) 0%, transparent 65%),
          radial-gradient(580px 720px at 85% 54%, rgba(220, 90, 170, 0.36) 0%, transparent 65%),
          radial-gradient(640px 720px at 20% 66%, rgba(140, 70, 220, 0.40) 0%, transparent 65%),
          radial-gradient(580px 720px at 85% 78%, rgba(232, 150, 30, 0.32) 0%, transparent 65%),
          radial-gradient(620px 760px at 15% 90%, rgba(170, 60, 200, 0.38) 0%, transparent 65%),
          radial-gradient(580px 720px at 85% 102%, rgba(190, 100, 220, 0.36) 0%, transparent 65%);
      }

      .bg-dots {
        display: none;
      }

      .bg-flames::before {
        height: calc(env(safe-area-inset-top, 0px) + 6.25rem);
      }

      .hero {
        padding-top: calc(env(safe-area-inset-top, 0px) + 1.6rem);
      }

      .triforce-mark {
        width: 52px;
        height: auto;
        margin-top: 0.4rem;
      }

      .hero-lockup {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        margin-bottom: 0.15rem;
      }

      .hero-title {
        text-align: center;
        font-size: 1.22rem;
      }

      .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: 0.4rem;
      }

      .hero-tagline {
        font-size: 0.96rem;
        line-height: 1.25;
        margin-bottom: 0.5rem;
      }

      .hero-dates {
        font-size: 1.22rem;
      }

      .partners {
        padding-top: 0.4rem;
        padding-bottom: 0.8rem;
      }

      .partner-frame {
        --frame-w: 8px;
      }

      .partner-site {
        min-height: 2.95rem;
        padding: 0.65rem 0.75rem;
        font-size: 1.05rem;
      }

      .collage-wrap {
        --frame-w: 8px;
      }

      .panels-container {
        --frame-w: 14px;
        flex-direction: column;
        height: auto;
        gap: 8px;
        padding: var(--frame-w);
      }

      .panel {
        height: 200px;
        flex: none !important;
        filter: none !important;
        position: relative;
        box-shadow: var(--camp-panel-inner-shadow);
      }

      .panel .panel-bg {
        filter: var(--camp-panel-image-filter-mobile);
      }

      .panel-label {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        left: 0.5rem;
        right: auto;
        bottom: 0.5rem;
        max-width: min(84%, 14rem);
        padding: 0.7rem 0.8rem 0.64rem;
      }

      .panel-label::before {
        border-radius: 7px;
        background:
          linear-gradient(180deg,
            rgba(255, 253, 248, 0.94) 0%,
            rgba(244, 236, 224, 0.9) 100%);
        border: 1px solid rgba(148, 101, 16, 0.14);
      }

      .panel-day-name {
        font-size: 1.3rem;
        white-space: normal;
      }

      .panel-day-sub {
        font-size: 1.2rem;
        white-space: normal;
      }

      .panel::after {
        content: 'Tap to play';
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        font-family: var(--font-display);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        z-index: 4;
        transition: opacity 0.4s ease;
      }

      body.has-played .panel::after {
        opacity: 0;
        pointer-events: none;
      }

      .panel-descriptions {
        display: none;
      }

      /* Mobile: break the unified frame apart so each pane gets its own wood frame */
      .schedule-frame-outer {
        padding: 0 clamp(0.5rem, 2vw, 1rem);
      }

      .schedule-frame {
        --frame-w: 0px;
        display: block;
        padding: 0;
        background: none;
        box-shadow: none;
      }

      .schedule-frame::before,
      .schedule-frame::after {
        display: none;
      }

      .schedule-divider-vert,
      .schedule-divider-horiz {
        display: none;
      }

      .schedule-pane {
        --pane-frame-w: 12px;
        margin-bottom: 1rem;
        padding: var(--pane-frame-w);
        position: relative;
        isolation: isolate;
        background-color: #9c7540;
        background-image:
          var(--wood-horiz, none),
          var(--wood-horiz, none),
          var(--wood-vert, none),
          var(--wood-vert, none);
        background-position: top left, bottom left, top left, top right;
        background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
        background-size:
          auto var(--pane-frame-w),
          auto var(--pane-frame-w),
          var(--pane-frame-w) auto,
          var(--pane-frame-w) auto;
        overflow: hidden;
        box-shadow:
          0 14px 22px rgba(60, 38, 14, 0.24),
          0 6px 10px rgba(60, 38, 14, 0.16),
          0 2px 0 rgba(255, 245, 220, 0.14);
      }

      .schedule-pane::before {
        content: "";
        position: absolute;
        inset: var(--pane-frame-w);
        z-index: 4;
        pointer-events: none;
        box-shadow:
          inset 0 1px 0 rgba(255, 246, 225, 0.18),
          inset 0 14px 18px rgba(42, 24, 8, 0.14),
          inset 0 -18px 24px rgba(20, 10, 2, 0.2),
          inset 0 0 0 1px rgba(46, 25, 7, 0.12);
      }

      .schedule-pane:last-child {
        margin-bottom: 0;
      }

      .schedule-pane-inner {
        padding: 1.1rem 1.05rem;
        height: auto;
      }

      .rotation-round,
      .rotation-group,
      .rotation-cell,
      .rotation-corner {
        min-height: 0;
      }

      .rotation-grid {
        gap: 0.35rem;
      }

      .rotation-round {
        padding: 0.55rem 0.3rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
      }

      .rotation-group {
        padding: 0.65rem 0.3rem;
        font-size: 0.9rem;
      }

      .rotation-group::after {
        font-size: 0.5rem;
      }

      .rotation-cell {
        padding: 0.65rem 0.3rem;
        font-size: 0.9rem;
      }

      .rotation-cell small {
        font-size: 0.6rem;
      }

      .finale-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 0.85rem;
      }

      .finale-head h3 {
        font-size: clamp(1.4rem, 5.2vw, 1.75rem);
      }

      .finale-callouts {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .finale-callout {
        padding: 0.95rem 1.05rem;
      }

      .finale-callout-time {
        font-size: 0.72rem;
      }

      .finale-callout-title {
        font-size: 1.15rem;
      }

      .finale-callout p {
        font-size: 0.96rem;
        line-height: 1.45;
      }

      .rhythm-stop {
        grid-template-columns: 2.9rem 1rem 1fr;
        gap: 0.5rem;
      }

      .rhythm-timeline::before {
        left: calc(0.25rem + 2.9rem + 0.5rem + 0.5rem - 1px);
      }

      .map-frame {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(280px, 42vh) var(--frame-w) auto;
      }

      .map-divider {
        background-image: var(--wood-horiz, none);
      }

      .map-divider::before {
        background:
          linear-gradient(180deg,
            rgba(255, 248, 228, 0.34) 0%,
            rgba(255, 248, 228, 0.18) 18%,
            rgba(0, 0, 0, 0) 42%,
            rgba(30, 16, 6, 0.08) 58%,
            rgba(255, 247, 226, 0.14) 74%,
            rgba(20, 10, 2, 0.3) 100%);
      }

      .map-copy-intro {
        max-width: none;
      }

      .section-head-panels {
        margin-bottom: -0.35rem;
      }

      .title-shelf {
        min-height: 4rem;
        padding-bottom: 0.85rem;
      }

      .title-shelf-card {
        padding: 0.45rem 1.2rem 0.36rem;
      }
    }


    /* Play-through button: mobile-only visibility. Styling from .wood-btn. */
    .play-through-btn {
      display: none;
      width: 100%;
      max-width: 100%;
      margin: 0;
    }

    .play-through-wrap {
      width: min(100%, var(--feature-rail-width));
      max-width: 100%;
      margin: 1rem auto 0;
    }

    .play-through-btn .wood-btn-label {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 1rem 1.85rem;
      font-size: clamp(1.02rem, 2.9vw, 1.16rem);
      letter-spacing: 0.1em;
      background: linear-gradient(180deg,
        #fff3c2 0%,
        #e8c86f 18%,
        #b98527 44%,
        #735013 74%,
        #e1ba57 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 248, 225, 0.72))
        drop-shadow(0 1px 0.45px rgba(255, 241, 199, 0.62))
        drop-shadow(0 2px 1.45px rgba(74, 46, 8, 0.28));
    }

    .play-through-btn .btn-icon {
      margin-right: 0;
      font-size: 0.96rem;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      :root {
        --feature-rail-width: calc(100vw - 1rem);
      }

      .play-through-btn {
        display: block;
      }
    }

    /* ============================================
       PLAY MODE OVERLAY (mobile)
       ============================================ */
    .play-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      padding:
        env(safe-area-inset-top, 0px)
        env(safe-area-inset-right, 0px)
        env(safe-area-inset-bottom, 0px)
        env(safe-area-inset-left, 0px);
      box-sizing: border-box;
      background-color: var(--bg-primary);
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.18s ease-out;
    }

    .play-overlay.active {
      display: flex;
      opacity: 1;
    }

    .play-overlay.fade-out {
      opacity: 0;
    }

    .play-panel {
      --frame-w: 20px;
      position: relative;
      width: min(98vw, 100%);
      height: min(96vh, 100%);
      overflow: hidden;
      padding: var(--frame-w);
      isolation: isolate;
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      box-shadow:
        0 18px 40px rgba(30, 18, 6, 0.55),
        0 6px 16px rgba(30, 18, 6, 0.35);
      transform: scale(0.9);
      animation: playPanelIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .play-panel::before {
      content: "";
      position: absolute;
      inset: var(--frame-w);
      z-index: 1;
      pointer-events: none;
      box-shadow: var(--camp-panel-inner-shadow-soft);
    }

    .play-panel > .frame-piece {
      z-index: 8;
    }

    @keyframes playPanelIn {
      to { transform: scale(1); }
    }

    .play-panel .panel-bg {
      position: absolute;
      inset: -6px;
      background-size: cover;
      background-position: center;
      filter: var(--camp-panel-image-filter-detail);
      transform: scale(1.015);
      z-index: 0;
    }

    .play-panel canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: auto;
      touch-action: none;
    }

    .play-panel[data-day="flow"] canvas {
      z-index: 9;
    }

    .play-close {
      position: absolute;
      top: calc(var(--frame-w) + 0.55rem);
      right: calc(var(--frame-w) + 0.55rem);
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 252, 246, 0.96);
      border: 1px solid rgba(123, 90, 49, 0.16);
      color: var(--text-primary);
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      line-height: 1;
      box-shadow:
        0 10px 20px rgba(44, 25, 8, 0.16),
        0 2px 5px rgba(44, 25, 8, 0.08);
    }

    .play-caption {
      position: absolute;
      left: var(--frame-w);
      right: var(--frame-w);
      bottom: var(--frame-w);
      padding: 0 1rem 1rem;
      z-index: 10;
      pointer-events: none;
    }

    .play-caption-card {
      max-width: min(30rem, calc(100% - 2.2rem));
      padding: 0.95rem 1.05rem 1rem;
      border-radius: 12px;
      background:
        linear-gradient(180deg,
          rgba(255, 253, 248, 0.94) 0%,
          rgba(244, 236, 224, 0.92) 100%);
      border: 1px solid rgba(148, 101, 16, 0.14);
      box-shadow:
        0 16px 28px rgba(44, 25, 8, 0.16),
        0 4px 10px rgba(44, 25, 8, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(6px) saturate(0.78);
      -webkit-backdrop-filter: blur(6px) saturate(0.78);
    }

    .play-caption .panel-day-name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(18, 13, 10, 0.92);
    }

    .play-caption .panel-day-sub {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: 1.21rem;
      color: rgba(34, 24, 18, 0.82);
      margin-top: 0.15rem;
      letter-spacing: 0.02em;
    }

    .play-caption p {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-top: 0.75rem;
    }

    /* ============================================
       ROTATE HINT (easter egg)
       ============================================ */
    .rotate-hint {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1010;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .rotate-hint.visible {
      opacity: 1;
    }

    .rotate-hint.fade-out {
      opacity: 0;
    }

    .rotate-phone {
      width: 20px;
      height: 32px;
      border: 2px solid rgba(255,255,255,0.6);
      border-radius: 4px;
      position: relative;
      animation: rotatePhone 2s ease-in-out infinite;
    }

    .rotate-phone::after {
      content: '✦';
      position: absolute;
      top: -8px;
      right: -10px;
      font-size: 0.6rem;
      color: var(--accent);
      animation: sparkle 1.5s ease-in-out infinite;
    }

    @keyframes rotatePhone {
      0%, 100% { transform: rotate(0deg); }
      40% { transform: rotate(90deg); }
      60% { transform: rotate(90deg); }
    }

    @keyframes sparkle {
      0%, 100% { opacity: 0.3; transform: scale(0.8); }
      50% { opacity: 1; transform: scale(1.3); }
    }

    .rotate-hint-text {
      font-family: var(--font-display);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    /* ============================================
       ROTATE NUDGE (top-right of landscape overlay, portrait only)
       Cues the user to rotate to landscape for the full-width view.
       ============================================ */
    .rotate-nudge {
      position: absolute;
      top: calc(var(--frame-w) + 0.55rem);
      right: calc(var(--frame-w) + 0.7rem);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      pointer-events: none;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.5s ease,
                  transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .rotate-nudge.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .rotate-nudge.fade-out {
      opacity: 0;
    }

    /* Already in landscape — no nudge needed. */
    @media (orientation: landscape) {
      .rotate-nudge { display: none; }
    }

    .rotate-nudge-icon {
      width: 22px;
      height: 34px;
      border: 2px solid #e4c274;
      border-radius: 4px;
      position: relative;
      box-shadow: 0 0 8px rgba(228, 194, 116, 0.4);
      animation: rotateNudgePhone 2.6s cubic-bezier(0.45, 0.1, 0.4, 1) infinite;
    }

    /* Speaker bar on the phone icon. */
    .rotate-nudge-icon::before {
      content: '';
      position: absolute;
      top: 3px;
      left: 50%;
      width: 6px;
      height: 1.5px;
      transform: translateX(-50%);
      background: #e4c274;
      border-radius: 1px;
      opacity: 0.85;
    }

    /* Home indicator / dot. */
    .rotate-nudge-icon::after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 50%;
      width: 4px;
      height: 4px;
      transform: translateX(-50%);
      background: #e4c274;
      border-radius: 50%;
      opacity: 0.75;
    }

    @keyframes rotateNudgePhone {
      0%, 20%   { transform: rotate(0deg); }
      55%, 72%  { transform: rotate(-90deg); }
      95%, 100% { transform: rotate(0deg); }
    }

    .rotate-nudge-text {
      font-family: var(--font-display);
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #e4c274;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
      white-space: nowrap;
    }

    /* ============================================
       LANDSCAPE / PLAY-THROUGH MODE
       Portrait: strips stacked vertically (column)
       Landscape: strips side-by-side (row)
       ============================================ */
    .landscape-overlay {
      --frame-w: 8px;
      display: none;
      position: fixed;
      inset: 0;
      /* Prefer dynamic viewport units (iOS 16+) so the overlay matches the
         visible area after Safari collapses its toolbars. */
      width: 100vw;
      height: 100vh;
      width: 100dvw;
      height: 100dvh;
      z-index: 2000;
      padding: var(--frame-w);
      background-color: #9c7540;
      background-image: var(--wood-horiz, none);
      background-size: cover;
      background-position: center;
      overflow: hidden;
      isolation: isolate;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .landscape-overlay.active {
      display: block;
      opacity: 1;
    }

    .landscape-overlay.fade-out {
      opacity: 0;
    }

    .landscape-strips {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      gap: 4px;
    }

    @media (orientation: landscape) {
      .landscape-strips {
        flex-direction: row;
      }
      /* In landscape the inner gaps are vertical strips — swap the overlay
         background to vertical grain so the divider wood reads correctly. */
      .landscape-overlay {
        background-image: var(--wood-vert, none);
      }
    }

    .landscape-strip {
      flex: 1;
      position: relative;
      overflow: hidden;
      box-shadow: var(--camp-panel-inner-shadow);
    }

    .landscape-strip .panel-bg {
      position: absolute;
      inset: -6px;
      background-size: cover;
      background-position: center;
      filter: var(--camp-panel-image-filter-detail);
      transform: scale(1.015);
      z-index: 0;
    }

    .landscape-strip canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: auto;
      touch-action: none;
    }

    .landscape-strip[data-day="flow"] canvas {
      z-index: 9;
    }

    .landscape-strip .strip-label {
      position: absolute;
      bottom: 0.65rem;
      left: 0.55rem;
      right: 0.55rem;
      padding: 0;
      z-index: 3;
      pointer-events: none;
      text-align: center;
    }

    .landscape-strip .strip-label-card {
      display: inline-block;
      max-width: 100%;
      padding: 0.58rem 0.7rem 0.56rem;
      border-radius: 8px;
      background:
        linear-gradient(180deg,
          rgba(255, 253, 248, 0.93) 0%,
          rgba(244, 236, 224, 0.91) 100%);
      border: 1px solid rgba(148, 101, 16, 0.14);
      box-shadow:
        0 10px 18px rgba(44, 25, 8, 0.14),
        0 3px 8px rgba(44, 25, 8, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
      backdrop-filter: blur(6px) saturate(0.78);
      -webkit-backdrop-filter: blur(6px) saturate(0.78);
    }

    .landscape-strip .strip-label .panel-day-name {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(18, 13, 10, 0.92);
    }

    .landscape-strip .strip-label .panel-day-sub {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: 0.86rem;
      color: rgba(34, 24, 18, 0.82);
      margin-top: 0.1rem;
      letter-spacing: 0.02em;
    }

    @media (orientation: landscape) {
      .landscape-strip .strip-label {
        left: 0.4rem;
        right: 0.4rem;
        bottom: 0.45rem;
      }
      .landscape-strip .strip-label .panel-day-name {
        font-size: 0.75rem;
      }
      .landscape-strip .strip-label .panel-day-sub {
        font-size: 0.76rem;
      }
    }

    .landscape-back {
      position: absolute;
      top: calc(var(--frame-w) + 0.5rem);
      left: calc(var(--frame-w) + 0.5rem);
      z-index: 10;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 252, 246, 0.96);
      border: 1px solid rgba(123, 90, 49, 0.16);
      color: var(--text-primary);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      line-height: 1;
      box-shadow:
        0 10px 20px rgba(44, 25, 8, 0.16),
        0 2px 5px rgba(44, 25, 8, 0.08);
    }

    /* ============================================
       SECTION 2.5 — ABOUT / WHY
       ============================================ */
    .about-section {
      text-align: center;
      padding: clamp(1.5rem, 3vh, 2.5rem) 0 clamp(0.5rem, 1vh, 1rem);
    }

    .about-heading {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      font-style: normal;
      letter-spacing: 0.03em;
      background: linear-gradient(180deg,
        #b78224 0%,
        #8d6217 24%,
        #603c0d 52%,
        #3c2406 80%,
        #714b12 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter:
        drop-shadow(0 -0.55px 0 rgba(255, 247, 220, 0.56))
        drop-shadow(0 1px 0.5px rgba(255, 241, 208, 0.44))
        drop-shadow(0 1.9px 1.25px rgba(63, 39, 8, 0.22));
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .about-body {
      font-size: 1.15rem;
      color: var(--text-secondary);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (max-width: 520px) {
      .container {
        padding: 0 1.1rem;
      }

      .hero-title {
        font-size: 1.14rem;
      }

      .partner-site {
        min-height: 2.75rem;
        font-size: 0.98rem;
        padding: 0.55rem 0.7rem;
      }

      .play-through-btn .wood-btn-label {
        min-height: 76px;
        padding-inline: 1rem;
        font-size: 0.94rem;
      }

      .cta-note {
        width: 100%;
        font-size: 1.12rem;
        padding-inline: 0.9rem;
      }

      .rotation-grid {
        gap: 0.45rem;
      }
    }

    /* ============================================
       DESKTOP LEGIBILITY CARDS
       Tasteful white/gold-outline rounded rect behind
       key text so it reads cleanly over the busy bg.
       Desktop only — mobile already reads fine.
       ============================================ */
    @media (min-width: 769px) {
      .panels-section h2,
      .about-heading,
      .map-section h2 {
        display: block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        -webkit-text-fill-color: #6f4a0e;
        color: #6f4a0e;
        -webkit-text-stroke: 0;
        text-shadow:
          0 1px 0 rgba(255, 245, 215, 0.52),
          0 2px 6px rgba(70, 43, 9, 0.16);
        filter: none;
      }
      .panels-section h2::before,
      .about-heading::before {
        content: none;
      }

      /* Flat-colored text — direct bg + border is fine. */
      .about-section .section-label,
      .about-body,
      .cta-note {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0.45rem 1.15rem;
        background: rgba(255, 253, 248, 0.82);
        border: 1.5px solid rgba(148, 101, 16, 0.55);
        border-radius: 12px;
        box-shadow:
          0 2px 6px rgba(60, 38, 14, 0.08),
          inset 0 1px 0 rgba(255, 255, 255, 0.6);
      }
      .about-body {
        padding: 0.85rem 1.4rem;
      }

    }

    /* ============================================
       ANIMATIONS
       ============================================ */
    /* .fade-in hidden state applied via JS only — content visible by default */
    .fade-in {
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
