    /* =========================================
       CSS CUSTOM PROPERTIES — White / Serene
       ========================================= */
    :root {
      --bg-white: #FAFAF7;
      --bg-light: #F3F1EC;
      --bg-warm: #EDE9E0;
      --bg-map: #2A2622;
      --bg-map-card: #FFFFFF;
      --bg-map-card-border: rgba(0, 0, 0, 0.08);

      --green-accent: #2EBD6B;
      --green-dark: #1A8A4A;
      --green-glow: rgba(46, 189, 107, 0.35);
      --green-pale: #E8F5EE;

      --gold-warm: #B8963E;
      --gold-text: #9E7C2D;

      --text-dark: #1A1816;
      --text-body: #3D3832;
      --text-mid: #6B635A;
      --text-light: #9E958A;
      --text-faint: #C4BDB4;

      --text-map-primary: #1A1816;
      --text-map-secondary: #6B635A;

      --border-light: rgba(0, 0, 0, 0.06);
      --border-mid: rgba(0, 0, 0, 0.1);

      --font-heading: 'Shippori Mincho', serif;
      --font-body: 'Noto Sans JP', sans-serif;
      --font-accent: 'Space Grotesk', sans-serif;

      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      font-size: 16px;
    }

    body {
      background: var(--bg-white);
      color: var(--text-body);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.8;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: var(--green-accent);
      color: #fff;
    }

    a {
      color: var(--green-dark);
      text-decoration: none;
      transition: color 0.3s;
    }

    a:hover {
      color: var(--green-accent);
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* =========================================
       UTILITY
       ========================================= */
    .container {
      position: relative;
      z-index: 1;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 5vw, 3rem);
    }

    .section-label {
      position: relative;
      z-index: 1;
      font-family: var(--font-accent);
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-bottom: 0.4rem;
      display: block;
      font-weight: 500;
    }

    .section-title {
      position: relative;
      z-index: 1;
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.35;
      margin-bottom: 0.8rem;
    }

    .section-title .accent {
      color: var(--green-dark);
    }

    .section-description {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 2rem auto 3.5rem;
      text-align: center;
      font-family: var(--font-heading);
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      font-weight: 500;
      color: var(--text-body);
      line-height: 1.8;
      letter-spacing: 0.02em;
    }

    .section-description p {
      margin: 0;
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 {
      transition-delay: 0.1s;
    }

    .reveal-d2 {
      transition-delay: 0.2s;
    }

    .reveal-d3 {
      transition-delay: 0.3s;
    }

    .reveal-d4 {
      transition-delay: 0.4s;
    }

    /* Minimal divider */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2.5rem 0;
    }

    .divider .line {
      width: 40px;
      height: 1px;
      background: var(--text-faint);
    }

    .divider .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--green-accent);
      margin: 0 1rem;
    }

    /* =========================================
       HERO SECTION — Dynamic background image
       ========================================= */
    #hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* Fallback for video */
      background: #1a1816;
    }

    .hero-video-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: 0;
      opacity: 0.8;
      pointer-events: none;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.3) 0%,
          rgba(0, 0, 0, 0.1) 50%,
          rgba(0, 0, 0, 0.25) 80%,
          rgba(243, 241, 236, 0.6) 95%,
          rgba(243, 241, 236, 1) 100%);
      z-index: 2;
      pointer-events: none;
    }

    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.6;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 2rem;
    }

    .hero-content h1,
    .hero-content .subtitle-en,
    .hero-content .tagline,
    .hero-content .hero-dates {
      color: #fff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .hero-content .hero-dates {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .hero-content .kigo {
      font-size: clamp(2.5rem, 6vw, 4rem);
      margin-bottom: 0.75rem;
      display: block;
      filter: drop-shadow(0 2px 10px rgba(46, 189, 107, 0.15));
    }

    .hero-content .hero-subbrand {
      font-family: var(--font-accent);
      font-size: clamp(1.75rem, 3.5vw, 2.1rem);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0.8;
      margin-bottom: 0.5rem;
      color: #fff;
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    .hero-content h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 7vw, 4.4rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 0.6rem;
      letter-spacing: 0.08em;
      word-break: keep-all;
    }

    .hero-content .subtitle-en {
      font-family: var(--font-accent);
      font-size: clamp(0.65rem, 1.3vw, 0.82rem);
      letter-spacing: 0.38em;
      margin-bottom: 2.2rem;
      text-transform: uppercase;
      font-weight: 500;
      opacity: 0.75;
      line-height: 2;
    }

    /* --- Splash Screen --- */
    #splash-screen {
      position: fixed;
      inset: 0;
      background: var(--bg-warm);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    }

    #splash-screen.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .splash-ring {
      position: relative;
      width: 120px;
      height: 120px;
      margin-bottom: 1.5rem;
      animation: ring-spin 4s linear infinite;
    }

    @keyframes ring-spin {
      100% { transform: rotate(360deg); }
    }

    .particle-wrapper {
      position: absolute;
      inset: 0;
    }

    .particle-wrapper:nth-child(1) { transform: rotate(0deg); }
    .particle-wrapper:nth-child(2) { transform: rotate(45deg); }
    .particle-wrapper:nth-child(3) { transform: rotate(90deg); }
    .particle-wrapper:nth-child(4) { transform: rotate(135deg); }
    .particle-wrapper:nth-child(5) { transform: rotate(180deg); }
    .particle-wrapper:nth-child(6) { transform: rotate(225deg); }
    .particle-wrapper:nth-child(7) { transform: rotate(270deg); }
    .particle-wrapper:nth-child(8) { transform: rotate(315deg); }

    .splash-particle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 12px;
      height: 12px;
      margin: -6px 0 0 -6px;
      border-radius: 50%;
      opacity: 0;
      animation: particle-fly-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .particle-wrapper:nth-child(1) .splash-particle { animation-delay: 0.1s; }
    .particle-wrapper:nth-child(2) .splash-particle { animation-delay: 0.2s; }
    .particle-wrapper:nth-child(3) .splash-particle { animation-delay: 0.05s; }
    .particle-wrapper:nth-child(4) .splash-particle { animation-delay: 0.25s; }
    .particle-wrapper:nth-child(5) .splash-particle { animation-delay: 0.15s; }
    .particle-wrapper:nth-child(6) .splash-particle { animation-delay: 0.3s; }
    .particle-wrapper:nth-child(7) .splash-particle { animation-delay: 0.0s; }
    .particle-wrapper:nth-child(8) .splash-particle { animation-delay: 0.2s; }

    @keyframes particle-fly-in {
      0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.2);
      }
      100% {
        opacity: 1;
        transform: translateY(-32px) scale(1);
      }
    }

    .splash-text {
      font-family: var(--font-heading);
      font-size: 1rem;
      color: var(--text-dark);
      letter-spacing: 0.5em;
      opacity: 0;
      animation: text-fade-in 1s ease 1s forwards;
    }

    @keyframes text-fade-in {
      100% { opacity: 0.8; }
    }

    .hero-content .tagline {
      font-family: var(--font-heading);
      /* Changed font */
      font-size: clamp(1rem, 2.4vw, 1.2rem);
      /* Adjusted size */
      font-weight: 400;
      /* Adjusted weight */
      max-width: 500px;
      /* Adjusted max-width */
      margin: 0 auto 3rem;
      /* Adjusted spacing */
      line-height: 1.8;
      opacity: 0.9;
      /* Enhanced visibility */
    }

    .hero-dates {
      display: inline-flex;
      align-items: center;
      gap: 1.25rem;
      padding: 0.75rem 2rem;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      font-family: var(--font-accent);
      font-size: 0.88rem;
      font-weight: 500;
      margin-bottom: 2.5rem;
      color: #fff;
      /* Ensure it's white */
    }

    .hero-socials {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 1.25rem;
    }

    .hero-socials a {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      color: #fff;
      transition: all 0.3s;
    }

    .hero-socials a:hover {
      background: var(--green-accent);
      border-color: var(--green-accent);
      transform: translateY(-3px);
    }

    .hero-socials svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Language toggle */
    .lang-toggle {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 100;
      display: flex;
      gap: 0;
      border-radius: 100px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
      background: rgba(0, 0, 0, 0.2);
    }

    .lang-btn {
      padding: 0.35rem 0.65rem;
      font-family: var(--font-accent);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: all 0.2s;
    }

    .lang-btn.active {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    /* After scrolling past hero, invert colors */
    .lang-toggle.scrolled {
      background: rgba(255, 255, 255, 0.9);
      border-color: var(--border-mid);
    }

    .lang-toggle.scrolled .lang-btn {
      color: var(--text-light);
    }

    .lang-toggle.scrolled .lang-btn.active {
      background: var(--green-accent);
      color: #fff;
    }

    .hero-socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
      transition: all 0.3s;
    }

    .hero-socials a:hover {
      transform: translateY(-2px);
      border-color: var(--green-accent);
      background: rgba(46, 189, 107, 0.2);
    }

    .hero-socials svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .hero-dates .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-accent);
      animation: pulse-dot 2.5s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: var(--text-faint);
      font-family: var(--font-accent);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      animation: float-hint 3s ease-in-out infinite;
    }

    .hero-scroll-hint .arrow {
      width: 1px;
      height: 28px;
      background: linear-gradient(to bottom, var(--text-faint), transparent);
    }

    @keyframes float-hint {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    /* =========================================
       ABOUT SECTION
       ========================================= */
    #about {
      position: relative;
      background: linear-gradient(180deg,
          rgba(243, 241, 236, 0.8),
          rgba(255, 255, 255, 0.4));
      padding: 8rem 0;
      overflow: hidden;
    }

    #about::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: url('./images/background/bg4.jpg') center/cover no-repeat;
      opacity: 0.08;
      pointer-events: none;
    }

    /* .about-grid removed as it's now storyboard */

    /* .about-intro and .about-inline-media removed */

    .about-benefits {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(46, 189, 107, 0.1);
      border-radius: 18px;
      padding: 2.5rem;
      max-width: 720px;
      margin: 4rem auto 0;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }

    .about-benefits h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--text-dark);
      margin-bottom: 1.2rem;
    }

    .about-benefits ul {
      list-style: none;
    }

    .about-benefits li {
      position: relative;
      padding-left: 1.4rem;
      margin-bottom: 0.8rem;
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--text-body);
    }

    .about-benefits li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-accent);
    }

    /* =========================================
       MESSAGE SECTION — Redesigned as Story Blocks
       ========================================= */
    #message {
      position: relative;
      background: linear-gradient(180deg,
          rgba(250, 250, 247, 1),
          rgba(243, 241, 236, 0.95));
      padding: 6rem 0;
      overflow: hidden;
    }

    /* Soft ambient glow in background */
    #message::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 20%, rgba(46, 189, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(184, 150, 62, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .story-block {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      margin-bottom: 6rem;
      align-items: center;
    }

    .story-block:last-child {
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .story-block {
        flex-direction: row;
        gap: 5rem;
      }

      .story-block:nth-child(even) {
        flex-direction: row-reverse;
      }

      .story-block>* {
        flex: 1;
      }
    }

    .story-text {
      position: relative;
    }

    .story-text p {
      font-size: 1rem;
      line-height: 2.1;
      color: var(--text-body);
      margin-bottom: 1.5rem;
      font-family: var(--font-heading);
      letter-spacing: 0.02em;
    }

    .story-text .author {
      font-family: var(--font-accent);
      font-size: 0.85rem;
      color: var(--text-mid);
      margin-top: 2rem;
      display: block;
      text-align: right;
      letter-spacing: 0.1em;
    }

    .story-image-wrap {
      position: relative;
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .story-image-wrap:hover {
      transform: scale(1.02);
    }

    .story-image-wrap img,
    .story-image-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 3;
      display: block;
    }

    /* Corner decoration for story images */
    .story-image-wrap::after {
      content: '';
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      border-top: 2px solid rgba(255, 255, 255, 0.4);
      border-right: 2px solid rgba(255, 255, 255, 0.4);
      pointer-events: none;
    }

    /* =========================================
       CAST PHOTO MARQUEE
       ========================================= */
    .cast-marquee {
      overflow: hidden;
      padding: 2rem 0;
      background: var(--bg-warm);
      position: relative;
    }

    .cast-marquee::before,
    .cast-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .cast-marquee::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg-warm), transparent);
    }

    .cast-marquee::after {
      right: 0;
      background: linear-gradient(270deg, var(--bg-warm), transparent);
    }

    .marquee-row {
      display: flex;
      gap: 0.75rem;
      will-change: transform;
    }

    .marquee-row--left {
      animation: marquee-left 45s linear infinite;
    }

    .marquee-row--right {
      animation: marquee-right 50s linear infinite;
      margin-top: 0.75rem;
    }

    @keyframes marquee-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes marquee-right {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    .marquee-photo {
      flex-shrink: 0;
      width: 120px;
      height: 160px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }

    .marquee-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      filter: saturate(0.75) brightness(1.05);
      transition: filter 0.4s ease, transform 0.4s ease;
    }

    .marquee-photo:hover img {
      filter: saturate(1) brightness(1);
      transform: scale(1.05);
    }

    .cast-marquee:hover .marquee-row {
      animation-play-state: paused;
    }

    @media (max-width: 767px) {
      .cast-marquee {
        padding: 1.2rem 0;
      }

      .marquee-photo {
        width: 85px;
        height: 113px;
        border-radius: 8px;
      }

      .marquee-row {
        gap: 0.5rem;
      }

      .marquee-row--right {
        margin-top: 0.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-row {
        animation-play-state: paused;
      }
    }

    /* =========================================
       MAP SECTION
       ========================================= */
    #map-section {
      background: var(--bg-light);
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    /* Section title */
    .map-section-title {
      padding: 1.2rem;
      margin-bottom: 0.6rem;
    }

    .map-section-title h2 {
      position: relative;
      z-index: 1;
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.35;
      margin: 0;
    }

    @media (min-width: 960px) {
      .map-section-title {
        padding: 1.5rem 2rem;
        margin-bottom: 0.8rem;
      }
    }

    .map-layout {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 960px) {
      .map-layout {
        flex-direction: row;
        min-height: 100vh;
      }
    }

    /* --- Map side (left) --- */
    .map-side {
      position: relative;
      flex-shrink: 0;
    }

    /* Mobile: map takes ~60vh */
    .map-side {
      height: 40vh;
      min-height: 280px;
    }

    @media (min-width: 960px) {
      .map-side {
        flex: 1;
        height: 100vh;
        position: sticky;
        top: 0;
      }
    }

    #leaflet-map {
      width: 100%;
      height: 100%;
    }

    /* --- Venue image preview popup (bottom-right of map) --- */
    #map-venue-preview {
      position: absolute;
      bottom: 16px;
      right: 16px;
      z-index: 500;
      width: 110px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
      background: #fff;
      transform-origin: bottom right;
      pointer-events: none;

      /* hidden state */
      opacity: 0;
      transform: scale(0.4) rotate(-4deg);
      transition: none;
    }

    #map-venue-preview.visible {
      opacity: 1;
      transform: scale(1) rotate(0deg);
      transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #map-venue-preview.hiding {
      opacity: 0;
      transform: scale(0.5) rotate(3deg);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    #map-venue-preview img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
    }

    #map-venue-preview .preview-label {
      font-family: var(--font-heading);
      font-size: 0.6rem;
      font-weight: 600;
      color: var(--text-dark);
      padding: 0.35rem 0.5rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      background: #fff;
    }

    @media (min-width: 960px) {
      #map-venue-preview {
        width: 140px;
        bottom: 20px;
        right: 20px;
      }
    }

    /* Leaflet custom markers */
    .map-marker {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      border: 1.5px solid var(--border-mid);
      color: var(--text-mid);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.35s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .map-marker.active {
      width: 42px;
      height: 42px;
      background: var(--green-accent);
      border: 2.5px solid var(--green-accent);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 0 16px var(--green-glow), 0 0 32px rgba(46, 189, 107, 0.12);
      animation: marker-pulse 2.2s ease-in-out infinite;
    }

    @keyframes marker-pulse {

      0%,
      100% {
        box-shadow: 0 0 12px var(--green-glow);
      }

      50% {
        box-shadow: 0 0 24px var(--green-glow), 0 0 40px rgba(46, 189, 107, 0.15);
      }
    }

    /* Hide default Leaflet attribution bar to keep clean look */
    .leaflet-control-attribution {
      font-size: 9px !important;
      opacity: 0.5;
    }

    /* --- Info side (right) --- */
    .info-side {
      color: var(--text-map-primary);
      background: var(--bg-white);
      padding: 1.2rem 1.2rem 1.5rem;
      flex-shrink: 0;
    }

    /* Mobile: info height is auto (content driven) */
    .info-side {
      height: auto;
      min-height: unset;
    }

    @media (min-width: 960px) {
      .info-side {
        width: 420px;
        height: 100vh;
        padding: 2.5rem 2rem;
        border-left: 1px solid var(--border-light);
      }
    }

    /* Info header with nav buttons */
    .info-header {
      margin-bottom: 0.8rem;
    }

    @media (min-width: 960px) {
      .info-header {
        margin-bottom: 1.2rem;
      }
    }

    /* Mobile: big labeled nav buttons spanning full width */
    .nav-arrows {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
    }

    .nav-arrow {
      flex: 1;
      height: 52px;
      border-radius: 12px;
      border: 2px solid var(--green-accent);
      background: #fff;
      color: var(--green-accent);
      font-size: 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: all 0.2s;
      font-family: var(--font-accent);
      font-weight: 600;
    }

    .nav-arrow .arrow-icon {
      font-size: 1.2rem;
      line-height: 1;
    }

    .nav-arrow .arrow-label {
      font-family: var(--font-heading);
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    .nav-arrow:hover {
      background: var(--green-pale);
      color: var(--green-dark);
    }

    .nav-arrow:disabled {
      opacity: 0.3;
      cursor: default;
    }

    /* Desktop: compact circle buttons in header row */
    @media (min-width: 960px) {
      .nav-arrows {
        gap: 0.5rem;
      }

      .nav-arrow {
        flex: unset;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--border-mid);
        background: var(--bg-white);
        color: var(--text-mid);
        font-size: 0.85rem;
        gap: 0;
      }

      .nav-arrow .arrow-label {
        display: none;
      }

      .nav-arrow:hover {
        border-color: var(--green-accent);
        color: var(--green-accent);
        background: var(--green-pale);
      }
    }

    /* Active stop card */
    .card-carousel {
      overflow: hidden;
      position: relative;
    }

    .active-stop-card {
      background: var(--bg-map-card);
      border: 1px solid var(--bg-map-card-border);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-bottom: 0.6rem;
      transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    @media (min-width: 960px) {
      .active-stop-card {
        padding: 1.5rem 1.8rem;
        margin-bottom: 1.2rem;
        border-radius: 14px;
      }
    }

    .active-stop-card .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 960px) {
      .active-stop-card .card-top {
        margin-bottom: 0.8rem;
      }
    }

    .active-stop-card .stop-num {
      font-family: var(--font-accent);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--green-accent);
    }

    @media (min-width: 960px) {
      .active-stop-card .stop-num {
        font-size: 1.6rem;
      }
    }

    .active-stop-card .stop-dates {
      font-family: var(--font-accent);
      font-size: 1.15rem;
      color: var(--green-accent);
      font-weight: 600;
      text-align: right;
    }

    @media (min-width: 960px) {
      .active-stop-card .stop-dates {
        font-size: 1.3rem;
      }
    }

    .active-stop-card .card-body {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }
    .active-stop-card .card-text {
      flex: 1;
      min-width: 0;
    }
    .active-stop-card .card-venue-photo {
      flex-shrink: 0;
      width: 120px;
      border-radius: 8px;
      overflow: hidden;
    }
    .active-stop-card .card-venue-photo img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
    }
    @media (min-width: 960px) {
      .active-stop-card .card-venue-photo { width: 150px; }
    }

    .active-stop-card .stop-venue-name {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-map-primary);
      margin-bottom: 0.2rem;
      line-height: 1.3;
    }

    .active-stop-card .stop-theme {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-mid);
      margin-bottom: 0.3rem;
      line-height: 1.35;
    }

    .active-stop-card .stop-catchphrase {
      font-size: 0.78rem;
      color: var(--text-mid);
      line-height: 1.5;
      margin-bottom: 0.5rem;
      white-space: pre-line;
    }

    @media (min-width: 960px) {
      .active-stop-card .stop-venue-name {
        font-size: 1.3rem;
      }
      .active-stop-card .stop-theme {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
      }
    }

    .active-stop-card .info-row {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
      font-size: 0.8rem;
      color: var(--text-map-secondary);
      line-height: 1.5;
    }

    @media (min-width: 960px) {
      .active-stop-card .info-row {
        font-size: 0.88rem;
        margin-bottom: 0.55rem;
        line-height: 1.6;
      }
    }

    .active-stop-card .info-row .icon {
      flex-shrink: 0;
      width: 18px;
      text-align: center;
    }

    .active-stop-card .info-guests {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.8rem;
    }

    .active-stop-card .guests-label {
      font-family: var(--font-accent);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.1rem;
      width: 100%;
    }

    .active-stop-card .guest-tag {
      background: var(--green-pale);
      border: 1px solid rgba(46, 189, 107, 0.2);
      border-radius: 100px;
      padding: 0.12rem 0.6rem;
      font-size: 0.72rem;
      color: var(--green-dark);
      font-family: var(--font-accent);
      font-weight: 500;
    }

    .detail-cta {
      display: block;
      width: 100%;
      padding: 0.6rem;
      margin-top: 0.8rem;
      border: 1px solid var(--green-accent);
      border-radius: 8px;
      background: var(--green-accent);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }

    @media (min-width: 960px) {
      .detail-cta {
        padding: 0.85rem;
        margin-top: 1.2rem;
        font-size: 0.9rem;
      }
    }

    .detail-cta:hover {
      background: var(--green-dark);
      color: #fff;
    }

    /* =========================================
       CAST SECTION
       ========================================= */
    #cast {
      position: relative;
      background: var(--bg-white);
      padding: 5rem 0 3rem;
      overflow: hidden;
      transition: background-color 0.5s ease;
    }

    #cast::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 65%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* ---- Interactive Background Layer ---- */
    .cast-bg-layer {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      pointer-events: none;
      z-index: 0;
      transition: opacity 0.8s ease, background-image 0.2s;
      mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
      -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
      filter: brightness(1.1) contrast(1.05);
    }

    .cast-bg-layer.active {
      opacity: 0.45;
    }


    /* ---- Bonfire gathering (desktop) ---- */
    .ring-wrapper {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      aspect-ratio: 1 / 1;
      display: none;
    }

    @media (min-width: 768px) {
      .ring-wrapper {
        display: block;
      }
    }

    /* Orbit rings (decorative) */
    .ring-orbit {
      position: absolute;
      border: 1px solid var(--border-light);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      transition: opacity 0.5s;
    }

    .ring-orbit--inner {
      width: 52%;
      height: 52%;
    }

    .ring-orbit--outer {
      width: 82%;
      height: 82%;
      border-style: dashed;
      opacity: 0.5;
    }

    .ring-wrapper.has-focus .ring-orbit {
      opacity: 0.3;
    }

    /* Center hub */
    .ring-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: var(--bg-map);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 10;
      box-shadow: 0 0 0 8px rgba(46, 189, 107, 0.08), 0 8px 40px rgba(0, 0, 0, 0.12);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .ring-wrapper.has-focus .ring-center {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.6);
      pointer-events: none;
    }

    .ring-center-text {
      color: #fff;
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1.35;
      padding: 0.5rem;
    }

    .ring-center-text small {
      display: block;
      font-family: var(--font-accent);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green-accent);
      margin-top: 0.3rem;
      font-weight: 500;
    }

    /* Individual ring node */
    .ring-node {
      position: absolute;
      width: 100px;
      height: 100px;
      transform: translate(-50%, -50%);
      cursor: pointer;
      z-index: 5;
      transition: left 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
        top 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
        width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s;
    }

    .ring-node:hover {
      z-index: 20;
    }

    .ring-node:hover .ring-node-photo {
      box-shadow: 0 0 0 3px var(--green-accent), 0 8px 30px rgba(0, 0, 0, 0.2);
      transform: scale(1.12);
    }

    .ring-node:hover .ring-node-label {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* Dimmed state for unfocused nodes */
    .ring-node.dimmed {
      opacity: 0.25;
      pointer-events: none;
      filter: grayscale(0.5);
    }

    /* Focused (flying to center) */
    .ring-node.focused {
      z-index: 30;
      width: 180px;
      height: 180px;
    }

    .ring-node.focused .ring-node-photo {
      box-shadow: 0 0 0 5px var(--green-accent), 0 16px 60px rgba(0, 0, 0, 0.18);
      transform: scale(1);
    }

    .ring-node.focused .ring-node-label {
      opacity: 0;
    }

    .ring-node-photo {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--bg-white);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .ring-node-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      display: block;
    }

    .ring-node-label {
      position: absolute;
      top: 110%;
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      white-space: nowrap;
      text-align: center;
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
    }

    .ring-node-label .node-name {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .ring-node-label .node-tag {
      display: inline-block;
      font-family: var(--font-accent);
      font-size: 0.55rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.15rem 0.5rem;
      border-radius: 100px;
      margin-top: 0.25rem;
    }

    /* Tag colors */
    .tag-leaders {
      background: #E0E7FF;
      color: #4338CA;
    }

    .tag-supporters {
      background: #FEF3C7;
      color: #92400E;
    }

    .tag-intl {
      background: #D1FAE5;
      color: #065F46;
    }

    .tag-special {
      background: #FCE7F3;
      color: #9D174D;
    }

    /* ---- Focus detail panel (appears below flying photo) ---- */
    .ring-focus-info {
      position: absolute;
      left: 50%;
      top: 60%;
      transform: translateX(-50%) translateY(10px);
      text-align: center;
      width: min(380px, 90%);
      max-height: 38%;
      overflow-y: auto;
      padding: 1.2rem 1.4rem 1rem;
      background: rgba(250, 250, 247, 0.96);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
      z-index: 31;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
    }

    .ring-wrapper.has-focus .ring-focus-info {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .ring-focus-info .focus-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.15rem;
    }

    .ring-focus-info .focus-role {
      font-family: var(--font-accent);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 0.7rem;
    }

    .ring-focus-info .focus-bio {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.65;
      margin-bottom: 0.7rem;
      white-space: pre-line;
    }

    .ring-focus-info .focus-tag {
      display: inline-block;
      font-family: var(--font-accent);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.8rem;
      border-radius: 100px;
    }

    .ring-focus-info .focus-close {
      display: block;
      margin: 0.8rem auto 0;
      border: none;
      background: none;
      font-family: var(--font-accent);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      cursor: pointer;
      padding: 0.4rem 0.8rem;
      transition: color 0.2s;
    }

    .ring-focus-info .focus-close:hover {
      color: var(--text-dark);
    }

    /* ---- Mobile: compact grid ---- */
    .cast-mobile {
      display: block;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .cast-mobile {
        display: none;
      }
    }

    .cast-mobile-category {
      margin-bottom: 1.5rem;
    }

    .cast-mobile-category h3 {
      font-family: var(--font-heading);
      font-size: 0.88rem;
      color: var(--text-dark);
      margin-bottom: 0.6rem;
      padding-left: 0.3rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cast-mobile-category h3 .cat-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 3-column grid */
    .cast-mobile-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.6rem 0.4rem;
    }

    /* Single-member: full-width horizontal card */
    .cast-mobile-category.single-member .cast-mobile-grid {
      display: block;
    }

    .cast-mobile-category.single-member .cast-mobile-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-align: left;
      padding: 0.6rem 0.8rem;
      background: var(--bg-light);
      border-radius: 12px;
    }

    .cast-mobile-category.single-member .mobile-photo {
      width: 60px !important;
      height: 60px !important;
      flex-shrink: 0;
      margin: 0 !important;
    }

    .cast-mobile-category.single-member .mobile-text {
      flex: 1;
      min-width: 0;
    }

    .cast-mobile-category.single-member .mobile-name {
      white-space: normal;
      font-size: 0.88rem;
      margin-bottom: 0.1rem;
    }

    .cast-mobile-category.single-member .mobile-role {
      font-size: 0.65rem;
      white-space: normal;
    }

    .mobile-cat-badge {
      display: inline-block;
      font-family: var(--font-accent);
      font-size: 0.5rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.15rem 0.5rem;
      border-radius: 100px;
      margin-top: 0.3rem;
    }

    .cast-mobile-card {
      text-align: center;
      cursor: pointer;
      padding: 0.3rem;
      border-radius: 12px;
      transition: background 0.2s;
    }

    .cast-mobile-card:active {
      background: var(--bg-light);
    }

    .cast-mobile-card .mobile-photo {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      margin: 0 auto 0.4rem;
      overflow: hidden;
      border: 2px solid var(--bg-light);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .cast-mobile-card .mobile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      display: block;
    }

    .cast-mobile-card:active .mobile-photo {
      transform: scale(0.92);
    }

    .cast-mobile-card .mobile-name {
      font-family: var(--font-heading);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.2;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .cast-mobile-card .mobile-role {
      font-family: var(--font-accent);
      font-size: 0.48rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-light);
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Mobile detail bottom-sheet */
    .mobile-detail-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 10000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .mobile-detail-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-detail-sheet {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -44%) scale(0.96);
      z-index: 10001;
      background: var(--bg-white);
      border-radius: 16px;
      padding: 1.2rem 1.2rem 1.8rem;
      text-align: center;
      width: min(92vw, 400px);
      max-height: 85vh;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .mobile-detail-sheet.active {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
    }

    /* Close button replaces handle */
    .mobile-detail-sheet .sheet-handle {
      display: none;
    }

    .sheet-close-btn {
      position: relative;
      margin-top: 1.5rem;
      width: 100%;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border-mid);
      background: var(--bg-light);
      color: var(--text-dark);
      font-weight: 500;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      gap: 0.5rem;
    }
    .mobile-detail-sheet .sheet-hero {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 360px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
    }

    .mobile-detail-sheet .sheet-photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 20%;
    }

    .mobile-detail-sheet .sheet-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0) 40%,
          rgba(0, 0, 0, 0.55) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.2rem;
    }

    .mobile-detail-sheet .sheet-name {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      margin-bottom: 0.1rem;
      line-height: 1.2;
    }

    .mobile-detail-sheet .sheet-role {
      font-family: var(--font-accent);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    .mobile-detail-sheet .sheet-body {
      padding: 1rem 0.5rem 0;
      text-align: center;
    }

    .mobile-detail-sheet .sheet-bio {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 0.8rem;
      white-space: pre-line;
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
    }

    .mobile-detail-sheet .sheet-tag {
      display: inline-block;
      font-family: var(--font-accent);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.8rem;
      border-radius: 100px;
    }

    /* Tag legend */
    .tag-legend {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 2rem;
      position: relative;
      z-index: 1;
    }

    .tag-legend-item {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-family: var(--font-accent);
      font-size: 0.6rem;
      letter-spacing: 0.08em;
      color: var(--text-mid);
    }

    .tag-legend-item .legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    /* =========================================
       FULL ITINERARY SECTION
       (お祭りキャラバン全行程 — Facebook event 一覧)
       ========================================= */
    #full-itinerary {
      padding: 4rem 0;
      background: linear-gradient(180deg, rgba(250,250,247,0.6), rgba(255,248,235,0.3));
    }

    .itinerary-intro {
      max-width: 600px;
      margin: 0 auto 2rem;
      text-align: center;
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.8;
    }

    /* Mobile-only line break inside itinerary intro */
    .itinerary-intro .mobile-br { display: none; }
    @media (max-width: 600px) {
      .itinerary-intro .mobile-br { display: inline; }
    }

    .itinerary-list {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      gap: 0.55rem;
    }

    .itinerary-item {
      display: grid;
      grid-template-columns: 2.4rem 1fr auto;
      align-items: center;
      gap: 0.8rem;
      padding: 0.8rem 1rem;
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 10px;
      transition: all 0.25s;
      text-decoration: none;
      color: inherit;
    }

    a.itinerary-item:hover {
      border-color: var(--green-accent);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
    }

    .itinerary-item.itinerary-item--no-fb {
      opacity: 0.85;
    }

    .itinerary-num {
      font-family: var(--font-accent);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green-dark);
      text-align: center;
      line-height: 1;
    }

    .itinerary-body {
      display: flex;
      flex-direction: column;
      gap: 0.18rem;
      min-width: 0;
    }

    .itinerary-name {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.3;
    }

    .itinerary-meta {
      font-family: var(--font-accent);
      font-size: 0.74rem;
      font-weight: 500;
      color: var(--text-light);
      letter-spacing: 0.02em;
    }

    .itinerary-meta .itinerary-date {
      color: var(--green-dark);
      font-weight: 600;
    }

    .itinerary-fb {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--green-pale);
      color: var(--green-dark);
      flex-shrink: 0;
      transition: all 0.2s;
    }

    a.itinerary-item:hover .itinerary-fb {
      background: var(--green-accent);
      color: #fff;
    }

    .itinerary-tbd {
      font-family: var(--font-accent);
      font-size: 0.72rem;
      color: var(--text-light);
      white-space: nowrap;
      padding: 0.25rem 0.55rem;
      border-radius: 100px;
      background: var(--bg-warm);
    }

    /* Capacity reached — closed states */
    .itinerary-item.itinerary-item--closed {
      opacity: 0.9;
      border-color: #e3b9b0;
      background: #fdf3f1;
    }

    .itinerary-closed {
      font-family: var(--font-accent);
      font-size: 0.72rem;
      font-weight: 700;
      color: #b4452f;
      white-space: nowrap;
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
      background: #f7ddd6;
      border: 1px solid #e3b9b0;
    }

    .tl-closed-banner {
      display: inline-block;
      margin-top: 0.4rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: #b4452f;
      background: #f7ddd6;
      border: 1px solid #e3b9b0;
      border-radius: 8px;
      padding: 0.3rem 0.6rem;
      line-height: 1.4;
    }

    .tl-closed-note {
      margin-top: 0.6rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: #b4452f;
      background: #fdf3f1;
      border: 1px solid #e3b9b0;
      border-radius: 8px;
      padding: 0.5rem 0.7rem;
      text-align: center;
    }

    .card-closed-badge {
      display: inline-block;
      margin-top: 0.4rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: #b4452f;
      background: #f7ddd6;
      border: 1px solid #e3b9b0;
      border-radius: 8px;
      padding: 0.25rem 0.55rem;
      line-height: 1.4;
    }

    @media (max-width: 480px) {
      .itinerary-item {
        grid-template-columns: 2rem 1fr auto;
        padding: 0.7rem 0.8rem;
        gap: 0.6rem;
      }

      .itinerary-name {
        font-size: 0.9rem;
      }

      .itinerary-meta {
        font-size: 0.7rem;
      }
    }

    /* =========================================
       SCHEDULE LIST SECTION
       ========================================= */
    #schedule {
      position: relative;
      background: linear-gradient(160deg,
          rgba(255, 235, 215, 0.25),
          rgba(255, 248, 235, 0.4),
          rgba(235, 245, 255, 0.25)),
        url('./images/background/bg_schedule.png') center/cover no-repeat;
      background-attachment: fixed;
      padding: 5rem 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      #schedule {
        background-attachment: scroll;
      }
    }

    #schedule::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255, 200, 150, 0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .bunting {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 0.5rem;
      opacity: 0.55;
      overflow: hidden;
    }
    .bunting span {
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 18px solid;
      margin: 0 3px;
    }
    .bunting span:nth-child(5n+1) { border-top-color: #FFB7C5; }
    .bunting span:nth-child(5n+2) { border-top-color: #FFDAB9; }
    .bunting span:nth-child(5n+3) { border-top-color: #FFF5BA; }
    .bunting span:nth-child(5n+4) { border-top-color: #B5E8C3; }
    .bunting span:nth-child(5n+5) { border-top-color: #B5D8F7; }

    .schedule-timeline {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
      z-index: 1;
    }

    .schedule-timeline::before {
      content: '';
      position: absolute;
      left: 19px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--border-mid);
    }

    @media (min-width: 768px) {
      .schedule-timeline::before {
        left: 27px;
      }
    }

    .timeline-item {
      position: relative;
      padding-left: 48px;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .timeline-item {
        padding-left: 62px;
      }
    }

    .timeline-item .tl-dot {
      position: absolute;
      left: 4px;
      top: 1rem;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green-accent);
      border: 2px solid var(--green-accent);
      box-shadow: 0 0 0 3px rgba(255, 220, 180, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-accent);
      font-size: 0.58rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .timeline-item .tl-dot {
        left: 10px;
        width: 34px;
        height: 34px;
        font-size: 0.65rem;
      }
    }

    .timeline-item .tl-dot span {
      font-size: inherit;
    }

    .timeline-content {
      background: var(--bg-white);
      border: 1px solid rgba(200, 180, 150, 0.15);
      border-radius: 12px;
      padding: 1.3rem 1.5rem;
      transition: all 0.3s;
    }

    .timeline-content:hover {
      box-shadow: 0 4px 20px rgba(180, 150, 100, 0.08);
      border-color: rgba(200, 170, 130, 0.3);
    }

    .timeline-content .tl-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      /* legacy — kept for backwards compat */
      margin-bottom: 0.2rem;
    }

    .timeline-content h4 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: var(--text-dark);
    }

    .timeline-content .tl-num {
      font-family: var(--font-accent);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--green-accent);
    }

    .timeline-content .tl-theme {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-bottom: 0.3rem;
    }

    .timeline-content .tl-catchphrase {
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.5;
      margin-bottom: 0.4rem;
      white-space: pre-line;
    }

    .timeline-content .tl-dates {
      font-family: var(--font-accent);
      font-size: 0.88rem;
      color: var(--text-body);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .timeline-content .tl-info {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    .timeline-content .tl-guests {
      margin-top: 0.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
    }

    .timeline-content .tl-guests-label {
      font-family: var(--font-accent);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.1rem;
      width: 100%;
    }

    .tl-detail .tl-detail-titled {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 0.1rem !important;
      margin-bottom: 0.6rem;
    }
    .tl-detail .tl-detail-title {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-body);
    }
    .tl-detail .tl-detail-titled > span {
      font-size: 0.78rem;
      padding-left: 0.15rem;
    }

    /* Venue image in timeline — float so text wraps below */
    .timeline-content.has-image::after {
      content: '';
      display: table;
      clear: both;
    }

    .tl-image-col {
      float: right;
      width: 90px;
      margin: 0 0 0.5rem 0.75rem;
    }

    @media (min-width: 480px) {
      .tl-image-col {
        width: 110px;
      }
    }

    .tl-venue-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 8px;
      object-fit: cover;
      display: block;
      border: 1px solid var(--border-light);
    }

    .timeline-content .guest-tag {
      background: var(--green-pale);
      border-radius: 100px;
      padding: 0.12rem 0.55rem;
      font-size: 0.7rem;
      color: var(--green-dark);
      font-family: var(--font-accent);
      font-weight: 500;
    }

    /* Location label */
    .timeline-content .tl-location {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-bottom: 0.15rem;
      font-weight: 500;
    }

    /* Tap hint */
    .timeline-content {
      cursor: pointer;
    }
    .timeline-content .tl-expand-hint {
      font-size: 0.7rem;
      color: var(--text-light);
      margin-top: 0.3rem;
      display: flex;
      align-items: center;
      gap: 0.2rem;
      transition: opacity 0.3s;
    }
    .timeline-content .tl-expand-hint .hint-arrow {
      transition: transform 0.3s;
      display: inline-block;
    }
    .timeline-content.expanded .tl-expand-hint .hint-arrow {
      transform: rotate(180deg);
    }

    /* Expandable detail */
    .tl-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
      opacity: 0;
      margin-top: 0;
    }
    .timeline-content.expanded .tl-detail {
      opacity: 1;
      margin-top: 0.8rem;
    }

    .tl-detail-inner {
      border-top: 1px solid var(--border-light);
      padding-top: 0.8rem;
    }

    .tl-detail .tl-detail-row {
      display: flex;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 0.4rem;
      align-items: flex-start;
    }
    .tl-detail .tl-detail-row .icon {
      flex-shrink: 0;
      width: 1.2em;
      text-align: center;
    }
    .tl-detail .tl-detail-row span:last-child {
      white-space: pre-line;
    }

    .tl-detail .tl-guests {
      margin-top: 0.3rem;
      margin-bottom: 0.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
    }

    .tl-detail .tl-guests-label {
      font-family: var(--font-accent);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.1rem;
      width: 100%;
    }

    .tl-detail .tl-notes {
      margin-top: 0.6rem;
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.7;
      white-space: pre-line;
      background: rgba(46, 189, 107, 0.04);
      border-radius: 8px;
      padding: 0.8rem 1rem;
    }
    .tl-detail a {
      color: var(--green-accent);
      text-decoration: underline;
      text-underline-offset: 2px;
      word-break: break-all;
    }
    .tl-detail a:hover {
      color: var(--green-dark);
    }

    .tl-detail .tl-map-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.5rem;
      color: var(--green-dark);
      font-size: 0.82rem;
      text-decoration: none;
      font-weight: 500;
    }
    .tl-detail .tl-map-link:hover {
      text-decoration: underline;
    }

    .tl-detail .tl-reserve-link {
      display: inline-block;
      margin-top: 0.8rem;
      padding: 0.5rem 1.2rem;
      background: var(--green-accent);
      color: #fff;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .tl-detail .tl-reserve-link:hover {
      background: var(--green-dark);
    }

    .tl-pricing {
      background: var(--green-pale);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      margin-bottom: 0.8rem;
    }
    .tl-pricing-title {
      font-weight: 600;
      font-size: 0.78rem;
      color: var(--green-dark);
      margin-bottom: 0.3rem;
    }
    .tl-pricing-items {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      font-family: var(--font-accent);
      font-size: 0.88rem;
      font-weight: normal;
      color: var(--text-dark);
    }
    .tl-pricing-sub {
      font-size: 0.72rem;
      color: var(--text-mid);
      margin-top: 0.3rem;
    }

    /* =========================================
       PRICING SECTION
       ========================================= */
    #pricing {
      position: relative;
      padding: 5rem 0;
      overflow: hidden;
    }

    /* Background: cast photo (cover) */
    #pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--pricing-bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none;
    }

    /* Overlay: semi-transparent white for text legibility */
    #pricing::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(250, 250, 247, 0.78);
      pointer-events: none;
    }

    @media (max-width: 767px) {
      #pricing {
        padding: 3.5rem 0 3rem;
      }
    }

    .pricing-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 1.2rem;
      max-width: 640px;
      margin: 0 auto 2.5rem;
    }

    @media (max-width: 767px) {
      .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 0 auto 1.5rem;
      }
    }

    .price-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 14px;
      padding: 1.8rem 1rem;
      text-align: center;
      transition: all 0.3s;
    }

    .price-card:hover {
      border-color: var(--green-accent);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .price-card.featured {
      border-color: var(--green-accent);
      background: var(--green-pale);
    }

    @media (max-width: 767px) {
      .price-card {
        padding: 0.7rem 0.4rem;
        border-radius: 10px;
      }
    }

    .price-card .price-label {
      font-family: var(--font-accent);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: var(--text-light);
      text-transform: uppercase;
      margin-bottom: 0.4rem;
      font-weight: 500;
    }

    .price-card .price-amount {
      font-family: var(--font-accent);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .price-card .price-amount .yen {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .price-card .price-note {
      font-size: 0.78rem;
      color: var(--text-mid);
      margin-top: 0.3rem;
    }

    @media (max-width: 767px) {
      .price-card .price-label {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
      }

      .price-card .price-amount {
        font-size: 1.3rem;
      }

      .price-card .price-amount .yen {
        font-size: 0.7rem;
      }

      .price-card .price-note {
        font-size: 0.65rem;
        margin-top: 0.15rem;
      }
    }

    .pricing-notes {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .pricing-notes p {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-bottom: 0.4rem;
    }

    .pricing-notes .free-tag {
      display: inline-block;
      background: var(--green-pale);
      border-radius: 100px;
      padding: 0.2rem 0.8rem;
      font-size: 0.78rem;
      color: var(--green-dark);
      margin: 0.2rem;
      font-weight: 500;
    }

    @media (max-width: 767px) {
      .pricing-header {
        margin-bottom: 1.2rem !important;
      }

      .pricing-header .section-title {
        font-size: 1.3rem;
      }

      .pricing-header p {
        font-size: 0.78rem !important;
      }

      .pricing-sub {
        margin-bottom: 0.6rem !important;
        margin-top: 0.8rem !important;
      }

      .pricing-sub p {
        font-size: 0.72rem !important;
      }

      .pricing-notes p {
        font-size: 0.72rem;
        margin-bottom: 0.3rem;
      }

      .pricing-notes .free-tag {
        padding: 0.15rem 0.6rem;
        font-size: 0.68rem;
        margin: 0.15rem;
      }
    }

    /* =========================================
       FOOTER
       ========================================= */
    footer {
      position: relative;
      background: linear-gradient(135deg,
          #1a1816,
          #2a2622),
        url('https://images.unsplash.com/photo-1487180144351-b8472da7d491?w=800&h=600&fit=crop') center/cover no-repeat;
      background-attachment: fixed;
      padding: 3rem 0 7rem;
      text-align: center;
      border-top: 2px solid var(--green-accent);
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      pointer-events: none;
    }

    footer>* {
      position: relative;
      z-index: 1;
    }

    footer .footer-logo {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    footer p {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-bottom: 0.3rem;
    }


    /* =========================================
       FLOATING CTA
       ========================================= */
    .floating-cta {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
    }

    .floating-cta.show {
      opacity: 1;
      pointer-events: auto;
    }

    .cta-main {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.6rem;
      border-radius: 100px;
      font-family: var(--font-accent);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      background: var(--green-accent);
      color: #fff;
      box-shadow: 0 4px 24px var(--green-glow);
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .cta-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 32px var(--green-glow);
      color: #fff;
      background: var(--green-dark);
    }

    /* =========================================
       RESPONSIVE
       ========================================= */
    @media (max-width: 768px) {
      .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
      }

      .cta-main {
        width: 100%;
        justify-content: center;
      }

      /* Fix zoomed background on mobile */
      #hero,
      footer {
        background-attachment: scroll;
      }
    }
