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

    :root {
      --bg:       #F4E8CE;
      --surface:  #EAD9B4;
      --surface2: #DDCA9C;
      --border:   rgba(100,55,10,0.18);
      --amber:    #B86810;
      --amber2:   #D4820E;
      --cream:    #2C1406;
      --muted:    #8B6035;
      --light:    #50300E;
      --green:    #2D6A4F;
      --red:      #9B2226;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── UTILITY ─── */
    .serif { font-family: 'Playfair Display', serif; }
    .amber { color: var(--amber); }

    /* ─── TICKER BANNER ─── */
    .ticker-wrap {
      background: #2A1206;
      border-bottom: 1px solid #C4A050;
      overflow: hidden;
      white-space: nowrap;
      height: 36px;
      display: flex; align-items: center;
      position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    }
    .ticker-track {
      display: inline-flex; align-items: center;
      animation: ticker-scroll 28s linear infinite;
      will-change: transform;
    }
    .ticker-wrap:hover .ticker-track {
      animation-play-state: paused;
    }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0 36px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #F5ECD8;
      text-decoration: none;
      transition: color 0.2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .ticker-item:hover { color: #E8901A; }
    .ticker-sep {
      color: #C4A050;
      font-size: 0.65rem;
      flex-shrink: 0;
      padding: 0 4px;
    }
    .ticker-pill {
      display: inline-block;
      background: #B84A28;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      padding: 2px 7px;
      border-radius: 3px;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .ticker-pill.gold {
      background: #C4A050;
      color: #1E1008;
    }

    /* ─── EVENTS TICKER (second bar) ─── */
    .ticker-wrap-events {
      background: #4A0E1A;
      border-bottom: 1px solid #8B2635;
      overflow: hidden;
      white-space: nowrap;
      height: 36px;
      display: flex; align-items: center;
      position: fixed; top: 36px; left: 0; right: 0; z-index: 101;
    }
    .ticker-wrap-events .ticker-track {
      animation-duration: 36s;
    }
    .ticker-wrap-events:hover .ticker-track {
      animation-play-state: paused;
    }
    .ticker-item-event {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0 36px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #F5C6CC;
      text-decoration: none;
      transition: color 0.2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .ticker-item-event:hover { color: #FF8A9A; }
    .ticker-sep-event {
      color: #8B2635;
      font-size: 0.65rem;
      flex-shrink: 0;
      padding: 0 4px;
    }
    .ticker-pill-event {
      display: inline-block;
      background: #8B2635;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      padding: 2px 7px;
      border-radius: 3px;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    /* ─── STICKY NAV ─── */
    nav:not(.nav-drawer) {
      position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center;
      gap: 20px;
      padding: 0 clamp(16px, 4vw, 48px);
      height: 68px;
      overflow: visible;
      background: transparent;
      border-bottom: 2px solid transparent;
      box-shadow: none;
      transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    }
    nav:not(.nav-drawer).nav-scrolled {
      background: #1E0A02;
      border-bottom: 2px solid #4A2810;
      box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }

    /* ─── HERO LOGO (floats over hero, transitions into nav) ─── */
    /* Floating nav logo — hidden until scrolled */
    #hero-logo-float {
      position: fixed;
      top: 40px;
      left: clamp(16px, 4vw, 48px);
      z-index: 200;
      pointer-events: none;
      opacity: 0;
      width: 60px;
      transition: opacity 0.4s ease;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    }
    #hero-logo-float img { width: 100%; height: auto; display: block; }
    #hero-logo-float.in-nav {
      pointer-events: auto;
    }

    /* Badge logo */
    .nav-badge {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none; flex-shrink: 0;
    }
    .nav-badge-emblem {
      width: 52px; height: 52px; flex-shrink: 0;
    }
    .nav-tagline {
      font-family: 'Rye', cursive;
      font-size: clamp(0.7rem, 1.3vw, 1rem);
      color: #2C1A08;
      letter-spacing: 0.06em;
      line-height: 1.2;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Nav links */
    .nav-links {
      display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
      margin-left: auto;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    nav:not(.nav-drawer).nav-scrolled .nav-links {
      opacity: 1;
    }
    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: #E8901A; }

    /* ─── DROPDOWNS ─── */
    .nav-item { position: relative; }
    .nav-item > a { display: flex; align-items: center; gap: 4px; }
    .nav-item > a::after { content: '▾'; font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
    .nav-item:hover > a::after { transform: rotate(180deg); }
    .nav-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: #1E0A02;
      border: 1.5px solid #4A2810;
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
      min-width: 180px;
      z-index: 200;
      overflow: hidden;
    }
    .nav-dropdown a {
      display: block;
      padding: 10px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-dropdown a:last-child { border-bottom: none; }
    .nav-dropdown a:hover { background: #2E1206; color: #E8901A; }
    .nav-item:hover .nav-dropdown { display: block; }
    /* Bridge the gap so mouse can travel from link to dropdown */
    .nav-item::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      height: 20px;
    }

    /* Mobile drawer sub-items */
    .nav-drawer-sub { padding-left: 18px; }
    .nav-drawer-sub a {
      display: block;
      padding: 8px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,248,232,0.7);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-left: 2px solid rgba(196,149,10,0.4);
      margin: 2px 0;
      transition: color 0.2s;
    }
    .nav-drawer-sub a:hover { color: #F5C842; }
    .nav-drawer-section {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      color: rgba(255,248,232,0.5);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 14px 16px 4px;
    }

    /* Book Now CTA + hamburger hidden until scrolled */
    .nav-cta, .nav-hamburger {
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    nav:not(.nav-drawer).nav-scrolled .nav-cta,
    nav:not(.nav-drawer).nav-scrolled .nav-hamburger {
      opacity: 1;
    }

    /* Book Now CTA */
    .nav-cta {
      background: #B84A28 !important;
      color: #fff !important;
      padding: 10px 22px !important;
      border-radius: 4px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.75rem !important;
      font-weight: 800 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.14em !important;
      white-space: nowrap;
      transition: background 0.2s !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: #983820 !important; }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex; flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      padding: 92px clamp(24px, 6vw, 80px) 72px;
      overflow: hidden;
    }
    /* Static hero logo — shrinks into nav on scroll */
    .hero-badge {
      position: relative; z-index: 5;
      width: clamp(160px, 20vw, 240px);
      flex-shrink: 0;
      filter: drop-shadow(0 6px 20px rgba(0,0,0,0.55));
      transition: none;
      transform-origin: center center;
      will-change: transform, opacity;
    }
    .hero-badge img { width: 100%; height: auto; display: block; }
    .hero-badge.shrink-to-nav { opacity: 0; pointer-events: none; }
    .hero-video {
      position: absolute; inset: 0; z-index: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(180deg,
          rgba(13,10,7,0.15) 0%,
          rgba(13,10,7,0.05) 30%,
          rgba(13,10,7,0.5)  65%,
          rgba(13,10,7,0.92) 100%
        ),
        linear-gradient(90deg,
          rgba(13,10,7,0.55) 0%,
          transparent 60%
        );
    }
    .hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }

    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 99px;
      margin-bottom: 28px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.7);
    }
    .hero-label::before { content: '★'; font-size: 0.65rem; }

    .hero h1 {
      font-family: 'Rye', cursive;
      font-size: clamp(2.4rem, 6vw, 4.6rem);
      font-weight: 400;
      line-height: 1.12;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
      text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.8);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--amber);
      text-shadow: 0 2px 24px rgba(232,144,26,0.4), 0 1px 4px rgba(0,0,0,0.8);
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(255,255,255,0.92);
      font-weight: 400;
      max-width: 480px;
      margin: 0 0 32px;
      line-height: 1.7;
      text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }

    .hero-actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 40px;
      position: relative; z-index: 5;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--amber);
      color: #0D0A07;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 8px 32px rgba(232,144,26,0.3);
    }
    .btn-primary:hover { background: var(--amber2); transform: translateY(-2px); }

    /* Wood sign buttons */
    .btn-wood-sign {
      display: inline-block;
      width: 185px;
      text-decoration: none;
      transition: transform 0.2s, filter 0.2s;
      filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
    }
    .btn-wood-sign img {
      display: block;
      width: 100%;
      height: auto;
    }
    .btn-wood-sign:hover {
      transform: translateY(-3px) scale(1.02);
      filter: drop-shadow(0 10px 28px rgba(0,0,0,0.65));
    }
    .btn-wood-sign:active { transform: translateY(0) scale(0.98); }


    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 16px 28px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.45);
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }

    /* Social proof strip */
    .hero-proof {
      display: flex; align-items: center; justify-content: flex-start;
      gap: 20px; flex-wrap: wrap;
    }
    .proof-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; color: rgba(255,255,255,0.8);
    }
    .proof-item strong { color: #fff; font-weight: 700; }
    .proof-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }

    /* ─── SPLIT SECTION ─── */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
    }

    /* LEFT — timeline blocks */
    .split-left {
      background: #2A1206;
      padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
      display: flex; flex-direction: column; justify-content: center;
    }
    .split-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--amber);
      margin-bottom: 10px;
    }
    .split-title {
      font-family: 'Rye', cursive;
      font-size: clamp(1.4rem, 2.8vw, 2.1rem);
      color: #F0DCB8;
      line-height: 1.2;
      margin-bottom: 36px;
    }
    .timeline-flex {
      display: flex; flex-direction: column; gap: 0;
    }
    .tl-block {
      border: 1px solid rgba(232,144,26,0.2);
      border-radius: 0;
      padding: 0;
      background: none;
      cursor: pointer;
      overflow: hidden;
      transition: background 0.3s;
    }
    .tl-block:first-child { border-radius: 10px 10px 0 0; }
    .tl-block:last-child  { border-radius: 0 0 10px 10px; border-top: none; }
    .tl-block:not(:first-child) { border-top: none; }

    .tl-block-header {
      display: flex; align-items: center; gap: 14px;
      padding: 18px 22px;
      transition: background 0.25s;
    }
    .tl-block.active .tl-block-header {
      background: rgba(232,144,26,0.1);
    }
    .tl-block-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1);
      opacity: 0.9;
    }
    .tl-block-meta { flex: 1; }
    .tl-block-time {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--amber); margin-bottom: 2px;
    }
    .tl-block-title {
      font-family: 'Rye', cursive;
      font-size: 1rem; color: #EDD5A8;
    }
    .tl-block-arrow {
      font-size: 0.75rem; color: var(--amber);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .tl-block.active .tl-block-arrow { transform: rotate(90deg); }

    .tl-block-reveal {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      font-size: 0.92rem; color: #C8A870; line-height: 1.75;
      font-weight: 300; padding: 0 22px 0 72px;
      border-top: 0px solid rgba(232,144,26,0.15);
    }
    .tl-block.active .tl-block-reveal {
      max-height: 400px;
      padding: 14px 22px 18px 72px;
      border-top: 1px solid rgba(232,144,26,0.15);
    }

    /* RIGHT — photo carousel */
    .split-right {
      position: relative; overflow: hidden;
      background: #1E0C04;
    }
    .carousel-track {
      display: flex;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
    }
    .carousel-slide {
      flex: 0 0 100%; height: 100%;
      position: relative; overflow: hidden;
    }
    .carousel-slide-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 6s ease;
    }
    .carousel-slide:hover .carousel-slide-img { transform: scale(1.04); }
    .carousel-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(13,10,7,0.85) 100%);
    }
    .carousel-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 28px 32px;
      z-index: 2;
    }
    .carousel-title {
      font-family: 'Rye', cursive;
      font-size: 1.4rem; color: #fff;
      margin-bottom: 8px;
    }
    .carousel-desc {
      font-size: 0.83rem; color: rgba(255,235,195,0.88);
      font-weight: 400; line-height: 1.65;
      display: -webkit-box; -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; overflow: hidden;
    }
    .carousel-dots {
      position: absolute; bottom: 16px; right: 20px;
      display: flex; gap: 6px; z-index: 3;
    }
    .carousel-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer; transition: background 0.3s, transform 0.3s;
    }
    .carousel-dot.active { background: var(--amber); transform: scale(1.3); }

    /* ─── EXPERIENCE SECTION (kept for other uses) ─── */
    .section {
      padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
      color: var(--cream); line-height: 1.15; margin-bottom: 16px;
    }
    .section-desc { font-size: 1rem; color: var(--light); font-weight: 300; max-width: 540px; line-height: 1.75; }

    /* ─── TICKETS ─── */
    .tickets-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      scroll-margin-top: 110px;
    }
    .tickets-inner {
      padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
      max-width: 1200px;
      margin: 0 auto;
    }
    .tickets-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 20px;
      margin-bottom: 48px;
    }
    .tickets-note {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: right;
      line-height: 1.5;
    }

    .ticket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .ticket-card {
      position: relative;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    }
    .ticket-card:hover {
      border-color: rgba(232,144,26,0.4);
      box-shadow: 0 16px 48px rgba(0,0,0,0.18);
      transform: translateY(-3px);
    }
    .ticket-card.featured {
      background: linear-gradient(145deg, #2C1406, #3D1A00);
      border: 2px solid #C4950A;
      box-shadow: 0 0 0 1px rgba(196,149,10,0.3), 0 8px 36px rgba(196,149,10,0.2);
      color: #F0E6D0;
    }
    .ticket-card.featured:hover {
      border-color: #E8901A;
      box-shadow: 0 0 0 1px rgba(232,144,26,0.4), 0 16px 48px rgba(196,149,10,0.3);
      transform: translateY(-3px);
    }
    .ticket-card.featured .card-tier { color: #C4956A; }
    .ticket-card.featured .card-title { color: #F0E6D0; }
    .ticket-card.featured .card-tagline { color: #C4956A; }
    .ticket-card.featured .card-includes li { color: #E8D5B8; border-bottom-color: rgba(196,149,10,0.15); }
    .ticket-card.featured .price-lbl { color: #C4956A; }
    .ticket-card.featured .price-val { color: #F0E6D0; }
    .ticket-card.featured .price-per { color: #C4956A; }
    .ticket-card.featured .card-pricing { border-top-color: rgba(196,149,10,0.25); border-bottom-color: rgba(196,149,10,0.25); }
    .ticket-card.featured .card-tagline { color: #C4956A; min-height: 4.5em; }
    .ticket-card.featured .card-value { color: #C4956A; }
    .ticket-card.featured .card-value span { color: #E8901A; }

    .card-top-bar {
      height: 3px;
      background: var(--border);
    }
    .featured .card-top-bar {
      background: linear-gradient(90deg, #C4950A, #E8901A);
    }

    .card-badge {
      position: absolute; top: 20px; right: 20px;
      background: var(--amber);
      color: #0D0A07;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .ticket-card.featured .card-badge {
      background: #E8901A;
      color: #1A0800;
    }

    /* Signature Series card */
    .ticket-card.sig {
      background: linear-gradient(145deg, #3B0A0A, #5C1010);
      border: 2px solid #C0392B;
      box-shadow: 0 0 0 1px rgba(192,57,43,0.3), 0 8px 36px rgba(192,57,43,0.2);
      color: #F5E0E0;
    }
    .ticket-card.sig:hover {
      border-color: #E74C3C;
      box-shadow: 0 0 0 1px rgba(231,76,60,0.4), 0 16px 48px rgba(192,57,43,0.3);
      transform: translateY(-3px);
    }
    .ticket-card.sig .card-top-bar { background: linear-gradient(90deg, #8B1A1A, #C0392B); }
    .ticket-card.sig .card-tier { color: #E88080; }
    .ticket-card.sig .card-title { color: #F5E0E0; }
    .ticket-card.sig .card-tagline { color: #E88080; }
    .ticket-card.sig .card-includes li { color: #F0D0D0; border-bottom-color: rgba(192,57,43,0.2); padding: 5px 0; }
    .ticket-card.sig .card-pricing { border-top-color: rgba(192,57,43,0.3); border-bottom-color: rgba(192,57,43,0.3); }
    .ticket-card.sig .card-tagline { color: #E88080; min-height: 4.5em; }
    .ticket-card.sig .card-value { color: #E88080; }
    .ticket-card.sig .card-value span { color: #E74C3C; }
    .ticket-card.sig .sig-shows-box {
      margin: 10px 0;
      padding: 12px 14px;
      background: rgba(139,26,26,0.35);
      border: 1px solid rgba(192,57,43,0.4);
      border-radius: 10px;
    }
    .ticket-card.sig .sig-shows-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: #E88080; margin-bottom: 7px;
    }
    .ticket-card.sig .sig-show-row {
      font-size: 0.83rem; color: #F0D0D0; line-height: 1.5;
    }
    .ticket-card.sig .sig-show-row strong { color: #F5E0E0; }
    .ticket-card.sig .check-sig {
      width: 16px; height: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: #E74C3C;
      flex-shrink: 0; margin-top: 1px;
    }

    .card-inner { padding: 32px; flex: 1; display: flex; flex-direction: column; }

    .card-tier {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 4px;
    }
    .card-tagline {
      font-size: 0.88rem;
      color: var(--light);
      font-weight: 300;
      margin-bottom: 24px;
      line-height: 1.5;
      min-height: 4.5em; /* keeps tagline block same height across all cards */
    }

    .card-pricing {
      display: flex; gap: 20px;
      padding: 16px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
      min-height: 82px; /* locks pricing block height so includes always starts at same line */
      align-items: center;
    }
    .price-item { flex: 1; }
    .price-lbl { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
    .price-val { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--cream); line-height: 1; }
    .featured .price-val { color: var(--amber); }
    .price-per { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

    .card-includes {
      list-style: none;
      margin-bottom: 28px;
      flex: 1;
    }
    .card-includes li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.88rem;
      color: var(--light);
      padding: 7px 0;
      min-height: 42px;
      border-bottom: 1px solid rgba(100,55,10,0.1);
      font-weight: 400;
      line-height: 1.4;
    }
    .card-includes li:last-child { border-bottom: none; }
    .check {
      width: 16px; height: 16px; border-radius: 50%;
      background: rgba(45,106,79,0.25);
      border: 1px solid rgba(45,106,79,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; color: #4ade80;
      flex-shrink: 0; margin-top: 1px;
    }

    .card-value {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      margin-bottom: 14px;
    }
    .card-value span { color: var(--amber); font-weight: 600; }

    .btn-ticket {
      display: block; width: 100%;
      text-align: center;
      padding: 15px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
    }
    .btn-ticket-primary {
      background: var(--amber);
      color: #0D0A07;
      box-shadow: 0 4px 16px rgba(232,144,26,0.3);
    }
    .btn-ticket-primary:hover { background: var(--amber2); transform: translateY(-1px); }
    .btn-ticket-outline {
      background: transparent;
      color: var(--amber);
      border: 1.5px solid var(--amber);
    }
    .btn-ticket-outline:hover { background: rgba(232,144,26,0.08); }

    /* ─── GROUP SECTION ─── */
    .group-band {
      padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .group-perks {
      display: flex; flex-direction: column; gap: 16px;
      margin-top: 32px;
    }
    .perk {
      display: flex; gap: 14px; align-items: flex-start;
    }
    .perk-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(232,144,26,0.1);
      border: 1px solid rgba(232,144,26,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .perk-text h4 { font-size: 0.92rem; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
    .perk-text p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

    /* Contact form */
    .group-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
    }
    .group-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .group-form p { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
    .form-field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: var(--bg);
      border: 1px solid rgba(100,55,10,0.25);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      padding: 11px 14px;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-field select option { background: #1a1208; }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus { border-color: var(--amber); }
    .form-field textarea { resize: vertical; min-height: 100px; }

    /* ─── REVIEWS ─── */
    .reviews-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
    }
    .reviews-inner { max-width: 1200px; margin: 0 auto; }
    .reviews-header { margin-bottom: 48px; }

    /* Big review count hero */
    .review-hero { text-align: center; margin-bottom: 40px; }
    .review-hero-count {
      font-family: 'Rye', cursive;
      font-size: clamp(4rem, 10vw, 7rem);
      color: #B84A28;
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .review-hero-label {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      margin-top: 10px;
    }

    /* Platform icons row */
    .review-platforms {
      display: flex;
      justify-content: center;
      gap: clamp(32px, 6vw, 80px);
      margin-top: 32px;
    }
    .review-platform {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .review-platform-icon {
      width: clamp(64px, 10vw, 88px);
      height: clamp(64px, 10vw, 88px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .review-platform-icon img { width: 100%; height: 100%; object-fit: cover; }
    .review-platform-stars { color: #B84A28; font-size: clamp(0.9rem, 1.5vw, 1.1rem); letter-spacing: 2px; }
    .review-platform-count {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      font-weight: 700;
      color: var(--cream);
    }

    .rating-big { display: flex; align-items: baseline; gap: 10px; }
    .rating-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem; font-weight: 700; color: var(--amber); line-height: 1;
    }
    .rating-detail { display: flex; flex-direction: column; gap: 2px; }
    .stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
    .rating-count { font-size: 0.82rem; color: var(--muted); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }
    .review-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
    }
    .review-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 12px; }
    .review-text { font-size: 0.9rem; color: var(--light); line-height: 1.7; font-weight: 300; margin-bottom: 16px; font-style: italic; }
    .review-author { font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

    /* ─── INFO BAND ─── */
    /* ─── INFO BAND — Modern Western Variant 2 ─── */
    .info-band-outer {
      background: #120800;
      border-top: 1px solid rgba(196,149,10,0.2);
      border-bottom: 1px solid rgba(196,149,10,0.2);
    }
    .info-band-wrap {
      padding: 24px clamp(20px, 4vw, 60px) 20px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .info-band-wrap::-webkit-scrollbar { display: none; }
    .info-band {
      display: flex;
      gap: 0;
      min-width: max-content;
      margin: 0 auto;
      max-width: 1200px;
    }
    .info-item {
      flex: 1;
      min-width: 180px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: 10px;
      padding: 20px 28px 18px;
      border-right: 1px solid rgba(196,149,10,0.18);
      cursor: default;
      transition: background 0.2s;
    }
    .info-item:last-child { border-right: none; }
    .info-item:hover { background: rgba(196,149,10,0.05); }
    .info-icon {
      width: 38px; height: 38px;
      color: #C4950A;
      flex-shrink: 0;
    }
    .info-icon svg { width: 100%; height: 100%; stroke: #C4950A; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .info-item h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #C4950A;
      margin: 0;
    }
    .info-item p {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      color: rgba(255,245,220,0.8);
      font-weight: 400;
      line-height: 1.6;
      margin: 0;
    }
    /* Scroll dots */
    .info-scroll-dots {
      display: none;
      justify-content: center;
      gap: 6px;
      padding-bottom: 10px;
    }
    .info-scroll-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(196,149,10,0.3);
      transition: background 0.25s, transform 0.25s;
    }
    .info-scroll-dot.active { background: #C4950A; transform: scale(1.35); }
    .info-swipe-hint {
      display: none;
      align-items: center; justify-content: center;
      gap: 5px; padding-bottom: 12px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(196,149,10,0.5);
    }
    .info-swipe-hint svg { opacity: 0.6; }
    @media (max-width: 768px) {
      .info-scroll-dots { display: flex; }
      .info-swipe-hint  { display: flex; }
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: #2A1206;
      border-top: 1px solid rgba(232,144,26,0.15);
      border-bottom: 1px solid rgba(232,144,26,0.15);
      padding: clamp(40px,5vw,64px) clamp(20px,6vw,80px);
    }
    .stats-inner {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 24px; text-align: center;
    }
    @media (max-width: 560px) {
      .stats-inner { grid-template-columns: 1fr; gap: 32px; }
    }
    .stat-block { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .stat-num {
      font-family: 'Rye', cursive;
      font-size: clamp(2.4rem,5vw,3.5rem);
      color: var(--amber); line-height: 1;
    }
    .stat-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #C8A870; }
    .stat-icon { height: 28px; opacity: 0.75; filter: brightness(2); margin-top: 4px; }
    .stat-icon.tripadvisor { filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(400%) hue-rotate(100deg) brightness(1.1); opacity: 0.9; }

    /* ─── ADD-ONS ─── */
    .addons-section {
      padding: clamp(60px,8vw,100px) clamp(20px,6vw,80px);
      max-width: 1200px; margin: 0 auto;
    }
    .addons-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    @media (max-width: 1100px) {
      .addons-grid { grid-template-columns: repeat(2, 1fr); }
    }
    /* addons handled by main mobile breakpoints below */
    .addon-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .addon-card:hover {
      transform: translateY(-4px);
      border-color: rgba(232,144,26,0.4);
      box-shadow: 0 12px 36px rgba(0,0,0,0.4);
    }
    .addon-img {
      width: 100%; height: 180px; object-fit: cover;
      display: block;
    }
    .addon-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
    .addon-title {
      font-family: 'Rye', cursive;
      font-size: 1.05rem; color: #2C1A08;
    }
    .addon-desc { font-size: 0.85rem; color: var(--light); line-height: 1.65; font-weight: 300; flex: 1; }
    .addon-meta {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 14px; padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .addon-price { font-family: 'Rye', cursive; font-size: 1.2rem; color: var(--amber); }
    .addon-note { font-size: 0.72rem; color: var(--muted); font-style: italic; max-width: 140px; text-align: right; line-height: 1.4; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: clamp(60px,8vw,100px) clamp(20px,6vw,80px);
    }
    .testimonials-inner { max-width: 1400px; margin: 0 auto; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px; margin-top: 40px;
    }
    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }
    }
    .testimonial-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 20px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .testimonial-stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; }
    .testimonial-text { font-size: 0.9rem; color: var(--light); line-height: 1.75; font-weight: 300; font-style: italic; flex: 1; }
    .testimonial-author { font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

    /* ─── LOCATION CTA ─── */
    .location-cta {
      position: relative; overflow: hidden;
      min-height: 340px;
      display: flex; align-items: center;
    }
    .location-cta-bg {
      position: absolute; inset: 0;
      background: url('/assets/images/western.jpg') center center / cover no-repeat;
    }
    .location-cta-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(13,10,7,0.88) 0%, rgba(13,10,7,0.6) 60%, rgba(13,10,7,0.3) 100%);
    }
    .location-cta-inner {
      position: relative; z-index: 1;
      padding: clamp(48px,6vw,80px) clamp(28px,6vw,80px);
      max-width: 600px;
    }
    .location-cta h2 {
      font-family: 'Rye', cursive;
      font-size: clamp(1.6rem,3.5vw,2.4rem);
      color: #FFFFFF; margin-bottom: 8px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .location-cta p { font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 28px; font-weight: 300; line-height: 1.65; }
    .location-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ─── FAQ ─── */
    .faq-section {
      padding: clamp(60px,8vw,100px) clamp(20px,6vw,80px);
      max-width: 900px; margin: 0 auto;
    }
    .faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 2px; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 0; overflow: hidden;
      background: var(--surface);
    }
    .faq-item:first-child { border-radius: 10px 10px 0 0; }
    .faq-item:last-child  { border-radius: 0 0 10px 10px; }
    .faq-item:not(:first-child) { border-top: none; }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px; cursor: pointer;
      font-size: 0.95rem; font-weight: 600; color: var(--cream);
      transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(232,144,26,0.07); }
    .faq-arrow { font-size: 0.75rem; color: var(--amber); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-arrow { transform: rotate(90deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s;
      font-size: 0.88rem; color: var(--light); line-height: 1.75;
      font-weight: 300; padding: 0 22px;
      border-top: 0px solid var(--border);
    }
    .faq-item.open .faq-a {
      max-height: 300px; padding: 16px 22px 20px;
      border-top: 1px solid var(--border);
    }

    /* ─── ORG LOGOS BAR ─── */
    .orgs-section {
      background: #2E1D0E;
      border-top: 1px solid rgba(184,104,16,0.2);
      border-bottom: 1px solid rgba(184,104,16,0.2);
      padding: clamp(40px,5vw,64px) clamp(20px,6vw,80px);
    }
    .orgs-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: clamp(28px,4vw,60px); flex-wrap: wrap; justify-content: center; }
    .orgs-label { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); white-space: nowrap; flex-shrink: 0; margin-bottom: 0; }
    .orgs-logos { display: flex; align-items: center; justify-content: center; gap: clamp(20px,3vw,40px); flex-wrap: wrap; }
    .orgs-logos img { height: 64px; object-fit: contain; background: #fff; border-radius: 8px; padding: 10px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: opacity 0.2s, transform 0.2s; }
    .orgs-logos img:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }

    /* ─── FOOTER ─── */
    footer {
      background: #0D0A07;
      border-top: 1px solid rgba(184,104,16,0.15);
      padding: clamp(48px,6vw,72px) clamp(20px,6vw,80px) clamp(32px,4vw,48px);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 220px 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand img { height: 80px; margin-bottom: 20px; display: block; }
    .footer-social { display: flex; gap: 14px; margin-top: 4px; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(184,104,16,0.35);
      color: var(--amber); font-size: 1rem; text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .footer-social a:hover { background: rgba(184,104,16,0.2); border-color: var(--amber); }
    .footer-col h4 {
      font-family: 'Rye', cursive;
      font-size: 0.82rem; font-weight: 400;
      color: var(--amber); letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 16px;
      border-bottom: 1px solid rgba(184,104,16,0.3);
      padding-bottom: 10px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.88rem; color: #A07848; text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--amber); }
    .footer-col p { font-size: 0.88rem; color: #A07848; line-height: 1.7; }
    .footer-col a { color: #A07848; text-decoration: none; }
    .footer-col a:hover { color: var(--amber); }
    .footer-bottom {
      max-width: 1200px; margin: 40px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom p { font-size: 0.75rem; color: #5A4428; }
    @media (max-width: 900px) {
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
      .orgs-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* ─── RESPONSIVE ─── */
    /* ─── RESPONSIVE — TABLET (≤ 768px) ─── */
    @media (max-width: 768px) {
      /* Nav */
      .nav-links { display: none; }
      /* Layout */
      .split-section { grid-template-columns: 1fr; }
      .split-right { min-height: 320px; }
      .split-left { padding: clamp(28px,5vw,40px) clamp(18px,5vw,36px); }
      /* Tickets */
      .tickets-header { grid-template-columns: 1fr; }
      .tickets-note { text-align: left; }
      .ticket-grid { grid-template-columns: 1fr; gap: 14px; }
      /* Remove fixed heights on ticket cards — unnecessary at single column */
      .card-tagline { min-height: 0; }
      .card-pricing { min-height: 0; }
      .card-includes li { min-height: 0; }
      .ticket-card.featured .card-tagline { min-height: 0; }
      .ticket-card.sig .card-tagline { min-height: 0; }
      /* Reduce inner card padding */
      .card-inner { padding: 22px 20px; }
      /* Add-ons: 2 columns on tablet */
      .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 340px));
        gap: 12px;
        overflow-x: unset;
      }
      .addons-section { overflow-x: unset; }
      /* Testimonials: 2 columns on tablet */
      .testimonials-section { overflow-x: unset; }
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-bottom: 0;
      }
      /* Groups */
      .group-band { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
      .group-form { padding: 24px 20px; }
      .form-row { grid-template-columns: 1fr; }
      /* Info bar */
      .info-bar { gap: 10px; }
      /* Timeline — tighten indent on mobile */
      .tl-block-reveal { padding-left: 20px; }
      .tl-block.active .tl-block-reveal { padding: 12px 16px 16px 20px; }
      /* Location CTA — stack gradient vertically on mobile */
      .location-cta-overlay {
        background: linear-gradient(180deg, rgba(13,10,7,0.82) 0%, rgba(13,10,7,0.55) 60%, rgba(13,10,7,0.35) 100%);
      }
      /* Orgs logos — wrap and shrink */
      .orgs-logos img { height: 34px; }
    }

    /* ─── RESPONSIVE — MOBILE (≤ 480px) ─── */
    @media (max-width: 480px) {
      /* Hero */
      .hero { min-height: 85vh; padding-bottom: 56px; padding-left: 20px; padding-right: 20px; }
      .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
      .hero-label { font-size: 0.875rem; letter-spacing: 0.14em; }
      .hero-sub { font-size: 0.95rem; line-height: 1.7; }
      .hero-proof { flex-direction: column; gap: 8px; align-items: flex-start; }
      .proof-sep { display: none; }
      .hero-actions { flex-direction: column; gap: 12px; align-items: flex-start; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; padding: 14px 24px; min-height: 48px; }
      .btn-wood-sign { width: clamp(180px, 72vw, 280px); }

      /* Ticker */
      .ticker-wrap { font-size: 0.72rem; }

      /* Info band — scrollable pill cards, don't stack them */
      .info-band-wrap { padding: 20px 12px; }

      /* Stats */
      .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }

      /* Section padding */
      .section { padding: 40px 18px; }
      .tickets-inner { padding: 40px 18px; }
      .addons-section { padding: 40px 18px; }
      .testimonials-section { padding: 40px 18px; }
      .faq-section { padding: 40px 18px; }

      /* Tickets */
      .ticket-grid { grid-template-columns: 1fr; gap: 12px; }
      .ticket-card { border-radius: 12px; }
      .card-inner { padding: 18px 16px; }
      .ticket-features { font-size: 0.82rem; }
      /* Signature series shows — tighter on small screen */
      .ticket-card.sig .sig-show-row { font-size: 0.78rem; }

      /* Add-ons: single column on mobile */
      .addons-grid { grid-template-columns: minmax(0, 400px); gap: 12px; justify-content: center; }
      .addons-section { overflow-x: unset; }
      .addon-img { height: 160px; }

      /* Testimonials: single column on mobile */
      .testimonials-section { overflow-x: unset; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 10px; padding-bottom: 0; }

      /* Groups */
      .group-form { padding: 20px 16px; }
      .group-form h3 { font-size: 1.1rem; }

      /* Reviews */
      .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; }

      /* Location CTA */
      .location-cta-inner { padding: 40px 20px; }
      .location-cta-actions { flex-direction: column; gap: 10px; }
      .location-cta-actions a { width: 100%; text-align: center; justify-content: center; }

      /* FAQ */
      .faq-q { font-size: 0.88rem; padding: 16px 16px; min-height: 48px; }
      .faq-a { padding: 0 16px; font-size: 0.85rem; line-height: 1.75; }
      .faq-item.open .faq-a { padding: 14px 16px 18px; }

      /* Footer */
      footer { padding-bottom: 90px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
      /* Orgs logos — smaller on small phones */
      .orgs-logos { gap: 16px; }
      .orgs-logos img { height: 28px; }
      .orgs-inner { gap: 12px; }

      /* Carousel — adequate height on small phones */
      .split-right { min-height: 280px; }
      /* Section desc full width on mobile */
      .section-desc { max-width: 100%; }

      /* Timeline — no indent on very small screens */
      .tl-block-reveal { padding-left: 16px; }
      .tl-block.active .tl-block-reveal { padding: 10px 12px 14px 16px; }
      .tl-block-header { padding: 14px 16px; gap: 10px; }
      .tl-block-icon { width: 28px; height: 28px; }
    }

    /* ─── WESTERN DIVIDER ─── */
    .western-divider {
      width: 100%;
      line-height: 0;
      overflow: hidden;
    }
    .western-divider svg { display: block; width: 100%; }

    /* ─── MOBILE STICKY BOOK CTA ─── */
    .mobile-book-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 150;
      padding: 12px 16px;
      background: rgba(20, 10, 4, 0.96);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(232,144,26,0.35);
      box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    }
    .mobile-book-bar a {
      display: block;
      background: var(--amber);
      color: #0D0A07;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 15px;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(232,144,26,0.35);
      transition: background 0.2s;
    }
    .mobile-book-bar a:hover { background: var(--amber2); }
    @media (max-width: 768px) {
      .mobile-book-bar { display: block; }
      /* Add bottom padding so content isn't hidden behind bar */
      footer { padding-bottom: 80px; }
    }

    /* ── Special Events ── */
    .se-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 48px rgba(0,0,0,0.5);
      background: #1c0d1a;
    }
    .se-card-image {
      position: relative;
      min-height: 520px;
    }
    .se-card-image img {
      width: 100%; height: 100%;
      object-fit: contain;
      object-position: center center;
      display: block;
      background: #1c0d1a;
    }
    .se-card-image-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(28,13,26,0) 60%, #1c0d1a 100%);
    }
    .se-card-body {
      padding: 44px 44px 44px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .se-badge {
      display: inline-block;
      background: linear-gradient(90deg,#C2185B,#e91e8c);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .se-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(194,24,91,0.15);
      border: 1px solid rgba(194,24,91,0.4);
      color: #f48fb1;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .se-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      color: #fff;
      margin: 0 0 8px;
      line-height: 1.2;
    }
    .se-tagline {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin: 0 0 22px;
    }
    .se-schedule {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 22px;
    }
    .se-schedule-row {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 12px;
      align-items: start;
    }
    .se-schedule-time {
      color: #f48fb1;
      font-size: 0.78rem;
      font-weight: 700;
      padding-top: 2px;
      white-space: nowrap;
    }
    .se-schedule-label {
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
    }
    .se-bonus {
      background: rgba(194,24,91,0.12);
      border-left: 3px solid #C2185B;
      padding: 10px 14px;
      border-radius: 0 8px 8px 0;
      color: #f48fb1;
      font-size: 0.83rem;
      margin-bottom: 24px;
    }
    .se-performers {
      display: flex;
      gap: 12px;
      margin-bottom: 28px;
    }
    .se-performer {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.06);
      border-radius: 40px;
      padding: 5px 14px 5px 5px;
    }
    .se-performer img {
      width: 36px; height: 36px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 2px solid #C2185B;
    }
    .se-performer-info { line-height: 1.2; }
    .se-performer-name { color: #fff; font-size: 0.8rem; font-weight: 600; }
    .se-performer-role { color: rgba(255,255,255,0.45); font-size: 0.7rem; }
    .se-cta {
      display: inline-block;
      background: linear-gradient(90deg,#C2185B,#e91e8c);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px 30px;
      border-radius: 8px;
      text-decoration: none;
      transition: opacity 0.2s;
      align-self: flex-start;
    }
    .se-cta:hover { opacity: 0.88; }
    @media (max-width: 860px) {
      .se-card { grid-template-columns: 1fr; }
      .se-card-image { min-height: 300px; }
      .se-card-image-overlay { background: linear-gradient(to bottom, rgba(28,13,26,0) 60%, #1c0d1a 100%); }
      .se-card-body { padding: 28px 22px 36px; }
      .se-performers { flex-wrap: wrap; }
      .se-schedule-row { grid-template-columns: 95px 1fr; }
    }
