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

    :root {
      --gold:    #c9882a;
      --gold-lt: #f0c060;
      --dark:    #1a1209;
      --brown:   #3d2a0d;
      --cream:   #fdf6e3;
      --warm:    #f5ede0;
      --red:     #9b2226;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
    }

    /* ── HERO ──────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 1rem 4rem;
      background: var(--dark);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1920&q=80&fit=crop');
      background-size: cover;
      background-position: center 40%;
      opacity: .35;
      transform: scale(1.04);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(26,18,9,.55) 0%, rgba(26,18,9,.2) 40%, rgba(26,18,9,.7) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,136,42,.3) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(155,34,38,.2) 0%, transparent 70%);
      z-index: 1;
    }

    /* decorative musical notes */
    .notes {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }
    .note {
      position: absolute;
      font-size: clamp(1.5rem, 4vw, 3rem);
      opacity: .08;
      animation: float linear infinite;
      user-select: none;
    }
    @keyframes float {
      0%   { transform: translateY(110vh) rotate(0deg); }
      100% { transform: translateY(-10vh)  rotate(360deg); }
    }

    .hero-inner { position: relative; z-index: 2; max-width: 820px; }

    .label {
      display: inline-block;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-size: .75rem;
      font-weight: 600;
      color: var(--gold-lt);
      border: 1px solid var(--gold);
      border-radius: 999px;
      padding: .35rem 1rem;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 9vw, 7rem);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      text-shadow: 0 4px 32px rgba(201,136,42,.4);
    }

    .hero h1 span { color: var(--gold-lt); }

    .hero-sub {
      margin-top: 1.25rem;
      font-size: clamp(1rem, 2.5vw, 1.35rem);
      color: rgba(255,255,255,.75);
      max-width: 560px;
      margin-inline: auto;
      line-height: 1.6;
    }

    .date-badge {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 999px;
      padding: .6rem 1.4rem;
      color: var(--gold-lt);
      font-weight: 600;
      font-size: 1.05rem;
      backdrop-filter: blur(6px);
    }

    .cta-row {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-block;
      padding: .85rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--dark);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,.4);
      color: #fff;
    }

    /* ── COUNTDOWN ─────────────────────────────────────── */
    .countdown-section {
      background: var(--brown);
      padding: 3rem 1rem;
      text-align: center;
    }
    .countdown-title {
      font-family: 'Playfair Display', serif;
      color: var(--gold-lt);
      font-size: 1.15rem;
      margin-bottom: 1.5rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .countdown {
      display: flex;
      justify-content: center;
      gap: clamp(.75rem, 3vw, 2.5rem);
      flex-wrap: wrap;
    }
    .cd-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 70px;
    }
    .cd-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      width: clamp(70px, 15vw, 100px);
      padding: .5rem .25rem;
      text-align: center;
    }
    .cd-label {
      margin-top: .5rem;
      font-size: .7rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }
    .cd-sep {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--gold);
      line-height: 1;
      align-self: flex-start;
      padding-top: .4rem;
    }

    /* ── ABOUT ─────────────────────────────────────────── */
    .about {
      max-width: 760px;
      margin: 5rem auto;
      padding: 0 1.5rem;
      text-align: center;
    }
    .section-kicker {
      display: inline-block;
      color: var(--gold);
      font-weight: 600;
      font-size: .8rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      margin-bottom: .75rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 5vw, 3rem);
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }
    .section-body {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #5a3e20;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: 3rem;
    }
    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-txt {
      margin-top: .3rem;
      font-size: .85rem;
      color: #7a5530;
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    /* ── DIVIDER ───────────────────────────────────────── */
    .divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 200px;
      margin: 2rem auto;
      opacity: .35;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold);
    }
    .divider span { color: var(--gold); font-size: 1.2rem; }

    /* ── LOCATIONS ─────────────────────────────────────── */
    .locations-section {
      background: var(--warm);
      padding: 5rem 1.5rem;
    }
    .locations-header { text-align: center; margin-bottom: 3rem; }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ── CARD IMAGE ────────────────────────────────────── */
    .card-img {
      height: 190px;
      overflow: hidden;
      position: relative;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s ease;
    }
    .location-card:hover .card-img img { transform: scale(1.07); }
    .card-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(61,42,13,.55) 100%);
    }

    .location-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(61,42,13,.08);
      transition: transform .25s, box-shadow .25s;
      border: 1px solid rgba(201,136,42,.15);
    }
    .location-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(61,42,13,.14);
    }

    .card-header {
      background: linear-gradient(135deg, var(--brown), #6b4c20);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .card-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1;
      flex-shrink: 0;
    }
    .card-location {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

    .card-body {
      padding: 1.25rem 1.5rem 1.5rem;
    }
    .acts-label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .6rem;
    }
    .act-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .5rem 0;
      border-bottom: 1px solid rgba(201,136,42,.12);
      font-size: .95rem;
      color: var(--brown);
      font-weight: 500;
    }
    .act-item:last-child { border-bottom: none; }
    .act-icon { color: var(--gold); font-size: .9rem; flex-shrink: 0; }

    /* ── INFO CARDS ────────────────────────────────────── */
    .info-section {
      padding: 5rem 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .info-section .section-title { text-align: center; }
    .info-section .section-kicker { display: block; text-align: center; }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .info-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.75rem 1.5rem;
      text-align: center;
      border: 1px solid rgba(201,136,42,.15);
      box-shadow: 0 2px 12px rgba(61,42,13,.06);
    }
    .info-icon {
      font-size: 2.2rem;
      margin-bottom: .75rem;
      display: block;
    }
    .info-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: .4rem;
    }
    .info-card p {
      font-size: .9rem;
      color: #7a5530;
      line-height: 1.6;
    }

    .info-card a {
      color: var(--gold);
      font-weight: 600;
      text-decoration: none;
    }
    .info-card a:hover { text-decoration: underline; }

    /* ── WALKING PAGE ───────────────────────────────────── */
    .walk-section {
      max-width: 1120px;
      margin: 0 auto;
      padding: 4rem 1.5rem 2rem;
    }

    .walk-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 2rem;
    }

    .walk-copy {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #6a4d3a;
      margin-top: 1rem;
    }

    .walk-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin: 2rem 0 2.5rem;
    }

    .walk-stat {
      background: #fff;
      border: 1px solid rgba(201,136,42,.15);
      box-shadow: 0 2px 12px rgba(61,42,13,.06);
      border-radius: 14px;
      padding: 1.25rem 1rem;
      text-align: center;
    }

    .walk-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.1;
    }

    .walk-stat-label {
      margin-top: .35rem;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: #7a5530;
    }

    .walk-table-wrap {
      overflow-x: auto;
      background: #fff;
      border: 1px solid rgba(201,136,42,.15);
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(61,42,13,.06);
    }

    .walk-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 820px;
    }

    .walk-table caption {
      caption-side: top;
      text-align: left;
      padding: 1rem 1.25rem 0;
      font-weight: 600;
      color: var(--dark);
    }

    .walk-table th,
    .walk-table td {
      padding: .95rem 1rem;
      border-bottom: 1px solid rgba(201,136,42,.12);
      text-align: left;
      vertical-align: top;
      font-size: .92rem;
    }

    .walk-table thead th {
      background: rgba(201,136,42,.08);
      color: var(--dark);
      font-weight: 600;
      white-space: nowrap;
    }

    .walk-table tbody th {
      background: #fffaf0;
      font-weight: 600;
      color: var(--brown);
      white-space: nowrap;
    }

    .walk-distance {
      display: block;
      font-weight: 700;
      color: var(--dark);
    }

    .walk-time {
      display: block;
      margin-top: .25rem;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #8a6a50;
    }

    .walk-self {
      text-align: center;
      color: #8a6a50;
      font-weight: 700;
    }

    .walk-tip {
      max-width: 760px;
      margin: 0 auto;
      padding: 2rem 1.5rem 5rem;
      text-align: center;
    }

    .walk-tip p {
      margin-top: 1rem;
      font-size: 1.02rem;
      line-height: 1.8;
      color: #6a4d3a;
    }

    /* ── FOOTER ────────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.5);
      text-align: center;
      padding: 3rem 1.5rem;
      font-size: .85rem;
    }
    footer .footer-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--gold-lt);
      margin-bottom: .5rem;
    }
    footer p { margin-top: .4rem; }
    footer a { color: var(--gold); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ── SCROLL-TO-TOP ─────────────────────────────────── */
    #top-btn {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 1.2rem;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
      z-index: 100;
      transition: transform .2s;
    }
    #top-btn.visible { display: flex; }
    #top-btn:hover { transform: scale(1.1); }

    /* ── NAVIGATION ────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(26,18,9,.95);
      backdrop-filter: blur(8px);
      padding: .75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 200;
      border-bottom: 1px solid rgba(201,136,42,.2);
     flex-wrap: wrap;
    }

    .nav-brand {
     display: flex;
     align-items: center;
     gap: .5rem;
     font-weight: 700;
     color: var(--gold-lt);
     text-decoration: none;
     font-size: .95rem;
    }

    .nav-brand img {
     width: 24px;
     height: 24px;
     object-fit: contain;
     flex-shrink: 0;
    }

    .nav-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 201;
    }

    .nav-toggle span {
     width: 24px;
     height: 2.5px;
     background: var(--gold-lt);
     border-radius: 2px;
     transition: all 0.3s ease;
     display: block;
    }

    .nav-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
     opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
     width: auto;
    }

    .nav-links a {
     color: rgba(255,255,255,.7);
     text-decoration: none;
     font-size: .9rem;
     font-weight: 500;
     transition: color .2s;
    }

    .nav-links a:hover { color: var(--gold-lt); }

    @media (max-width: 768px) {
     .nav-links { gap: 1rem; font-size: .8rem; }
     .nav-brand { font-size: .85rem; }
    }

    @media (max-width: 640px) {
     nav { padding: .6rem 1rem; }
     .nav-toggle { display: flex; }
      
     .nav-links {
       position: absolute;
       top: 100%;
       left: 0;
       right: 0;
       background: rgba(26,18,9,.98);
       flex-direction: column;
       gap: 0;
       padding: 1rem 0;
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease;
       border-bottom: 1px solid rgba(201,136,42,.2);
     }

     .nav-links.active {
       max-height: 400px;
     }

     .nav-links li {
       padding: 0.75rem 1.5rem;
       border-bottom: 1px solid rgba(201,136,42,.1);
     }

     .nav-links li:last-child {
       border-bottom: none;
     }
    }

    .hero { margin-top: 0; }

/* ========================================================= */
/* Acts page styles                                           */
/* ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:    #c9882a;
      --gold-lt: #f0c060;
      --dark:    #1a1209;
      --brown:   #3d2a0d;
      --cream:   #fdf6e3;
      --warm:    #f5ede0;
      --red:     #9b2226;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
    }

    /* ── NAV BAR ─────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      background: rgba(26,18,9,.95);
      backdrop-filter: blur(8px);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 50;
      border-bottom: 1px solid rgba(201,136,42,.2);
     flex-wrap: wrap;
    }

    .nav-logo {
     display: flex;
     align-items: center;
     gap: .6rem;
     text-decoration: none;
     color: var(--gold-lt);
     font-weight: 700;
     font-size: 1.1rem;
    }

    .nav-logo img {
     width: 24px;
     height: 24px;
     object-fit: contain;
     flex-shrink: 0;
    }

    .nav-logo:hover { color: #fff; }

    .nav-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 51;
    }

    .nav-toggle span {
     width: 24px;
     height: 2.5px;
     background: var(--gold-lt);
     border-radius: 2px;
     transition: all 0.3s ease;
     display: block;
    }

    .nav-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
     opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
     width: auto;
    }

    .nav-links a {
     color: rgba(255,255,255,.7);
     text-decoration: none;
     font-size: .95rem;
     font-weight: 500;
     transition: color .2s;
    }

    .nav-links a:hover { color: var(--gold-lt); }

    @media (max-width: 640px) {
     nav { padding: 0.6rem 1rem; }
     .nav-toggle { display: flex; }
      
     .nav-links {
       position: absolute;
       top: 100%;
       left: 0;
       right: 0;
       background: rgba(26,18,9,.98);
       flex-direction: column;
       gap: 0;
       padding: 1rem 0;
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease;
       border-bottom: 1px solid rgba(201,136,42,.2);
     }

     .nav-links.active {
       max-height: 400px;
     }

     .nav-links li {
       padding: 0.75rem 1.5rem;
       border-bottom: 1px solid rgba(201,136,42,.1);
     }

     .nav-links li:last-child {
       border-bottom: none;
     }
    }

    /* ── PAGE HEADER ───────────────────────────────────────── */
    .page-header {
      background: linear-gradient(135deg, var(--brown), #6b4c20);
      color: #fff;
      padding: 4rem 1.5rem;
      text-align: center;
    }

    .page-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 900;
      margin-bottom: .75rem;
      text-shadow: 0 4px 16px rgba(0,0,0,.3);
    }

    .page-subtitle {
      font-size: 1.15rem;
      color: rgba(255,255,255,.85);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── ACTS GRID ─────────────────────────────────────────── */
    .acts-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .acts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2.5rem;
    }

    /* ── ACT CARD ──────────────────────────────────────────── */
    .act-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(61,42,13,.1);
      transition: transform .3s, box-shadow .3s;
      border: 1px solid rgba(201,136,42,.15);
    }

    .act-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(61,42,13,.16);
    }

    .act-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--brown), #6b4c20);
    }

    .act-content {
      padding: 1.75rem;
    }

    .act-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .5rem;
    }

    .act-category {
      display: inline-block;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      background: rgba(201,136,42,.08);
      padding: .35rem .75rem;
      border-radius: 999px;
    }

    .act-bio {
      font-size: .95rem;
      line-height: 1.7;
      color: #6a4d3a;
      margin-bottom: 1.25rem;
    }

    .act-link {
      font-size: .95rem;
      line-height: 1.7;
      color: #6a4d3a;
      margin-bottom: 1.25rem;
    }

    .act-details {
      font-size: .85rem;
      color: #8a6a50;
      border-top: 1px solid rgba(201,136,42,.12);
      padding-top: 1rem;
    }

    .act-location {
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: .6rem;
      font-weight: 500;
    }

    .act-time {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-weight: 500;
    }

    /* ── SECTION SPACING ────────────────────────────────────── */
    .divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 200px;
      margin: 3rem auto;
      opacity: .35;
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold);
    }

    .divider span { color: var(--gold); font-size: 1.2rem; }

    /* ── CTA SECTION ────────────────────────────────────────── */
    .cta-section {
      background: var(--warm);
      padding: 3rem 1.5rem;
      text-align: center;
      border-top: 2px solid rgba(201,136,42,.2);
    }

    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .cta-text {
      font-size: 1.05rem;
      color: #6a4d3a;
      max-width: 600px;
      margin: 0 auto 1.5rem;
      line-height: 1.7;
    }

    .btn {
      display: inline-block;
      padding: .85rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
      border: none;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--dark);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--dark);
    }

    /* ── FOOTER ────────────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.5);
      text-align: center;
      padding: 3rem 1.5rem;
      font-size: .85rem;
    }

    footer .footer-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--gold-lt);
      margin-bottom: .5rem;
    }

    footer a { color: var(--gold); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ── SCROLL-TO-TOP ─────────────────────────────────────── */
    #top-btn {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 1.2rem;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
      z-index: 100;
      transition: transform .2s;
    }

    #top-btn.visible { display: flex; }
    #top-btn:hover { transform: scale(1.1); }

/* --- Shared classes extracted from inline styles --- */
.nav-link-active { color: var(--gold-lt) !important; }

.footer-note { margin-top: 1rem; font-size: .8rem; }
.footer-note-dim { margin-top: 1.5rem; opacity: .4; font-size: .8rem; }
.footer-logo { width: clamp(100px, 20vw, 160px); margin-top: 1.5rem; }

.atmosphere-banner { height: 340px; overflow: hidden; position: relative; }
.atmosphere-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.atmosphere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,9,.35) 0%, rgba(26,18,9,.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.atmosphere-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  color: #fff;
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
  max-width: 700px;
}

.acts-label-spaced { margin-top: .75rem; }

.program-list {
  max-width: 560px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.program-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(201,136,42,.15);
  box-shadow: 0 2px 12px rgba(61,42,13,.06);
}
.program-item-break { background: var(--warm); }
.program-item-highlight {
  background: linear-gradient(135deg,#fff8ee,#fff);
  border: 2px solid rgba(201,136,42,.3);
  box-shadow: 0 2px 12px rgba(61,42,13,.08);
}
.program-icon { font-size: 1.6rem; }
.program-item-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}
.program-item-text {
  font-size: .9rem;
  color: #7a5530;
  margin-top: .25rem;
}

.acts-cta-section {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--dark);
}
.acts-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}
.acts-cta-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.acts-cta-link {
  display: inline-block;
  background: var(--dark);
  color: var(--gold-lt);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.acts-cta-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

.ticket-frame-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.ticket-frame-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201,136,42,.18);
  box-shadow: 0 4px 20px rgba(61,42,13,.1);
  overflow: hidden;
}

.ticket-frame {
  width: 100%;
  min-height: 80vh;
  border: none;
  display: block;
}

/* --- Cross-page conflict fixes after merging page CSS --- */
.home-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: .75rem 1.5rem;
}
.acts-page nav {
  position: sticky;
  top: 0;
  padding: 1rem 1.5rem;
}

.tickets-page nav {
  position: sticky;
  top: 0;
  padding: 1rem 1.5rem;
}

.home-page .hero .btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
}

@media (max-width: 640px) {
  .acts-page .nav-links {
    display: flex;
    gap: 1rem;
    font-size: .85rem;
  }

  .tickets-page .nav-links {
    display: flex;
    gap: 1rem;
    font-size: .85rem;
  }

    .wandelen-page .nav-links {
      display: flex;
      gap: 1rem;
      font-size: .85rem;
    }
  }

.s4e {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
}

.s4e {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
}

.s4e-eventheader {
      background: linear-gradient(135deg, var(--brown), #6b4c20);
      color: #fff;
      padding: 4rem 1.5rem;
      text-align: center;
      margin-bottom: 2rem;
}

.s4e-eventtitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 900;
      margin-bottom: .75rem;
      text-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.s4e-group {
    clear: both;
    padding-top: 10px;
    padding-bottom: 10px;
}

.s4e-grouping {
  display: flex;
  align-items: center;
  height: 50px;
}

.s4e-grouping-group {
    margin-left: 5px;
    margin-right: 5px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.s4e-grouping-group::after {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  content: "klik op het winkelwagentje om af te rekenen";
}

.s4e-grouping-cart {
    font-size: 2rem;
    margin-left: auto;
    margin-right: 10px;
}

.s4e-grouping-cart-total {
    font-size: 2rem;
    font-weight: bold;
    color: var(--red);
    vertical-align: center;
}



.s4e-groupheader {
    font-style: italic;
    font-size: 1.25rem;
    font-weight: bold;
}

.s4e-groupdescription {
}

.s4e-groupbody {
}

.s4e-ticket {
    padding: 5px;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-width: 1px;
    border-color: burlywood;
    border-style: solid;
    float: left;
}

/* header of ticket */
.s4e-ticketheader {
  margin-top: 5px;
  margin-bottom: 10px;
}

/* image in header of ticket */
.s4e-ticketimage {
    align-content: center;
}

/* actual image in header of ticket */
.s4e-ticketimage img {
    height: 100px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* title / name of ticket */
.s4e-tickettitle {
    display: none;
    font-size: medium;
    font-weight: bold;
}

/* subtitle / subname of ticket */
.s4e-ticketsubtitle {
}

/* body of ticket */
.s4e-ticketbody {
    height: 100px;
}

/* footer of ticket */
.s4e-ticketfooter {
    height: 75px;
}

.s4e-ticket-salesperiod {
}

.s4e-ticket-price {
    font-size: medium;
    font-weight: bold;
}


.s4e-ticket-price::before {
  content: "EUR ";
}


.s4e-ticket-priceperiod {
    font-size: small;
    color: red;
}

.s4e-ticket-addtocart {
    text-align: right;
}

.s4e-ticket-salesperiod {
  margin-top: 5px;
  font-italic: true;  
}

.s4e-cart-group {
  font-style: italic;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.s4e-cart-ticket {
  margin-bottom: 5px;
}

.s4e-cart-ticket-name {
  font-size: 1rem;
  font-weight: bold;
}

.s4e-cart-total-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.s4e-cart-total-amount {
  font-size: 1.5rem;
  font-weight: bold;
  border-top: 2px solid var(--brown);
}

.s4e-cart-total-amount::before {
  content: "EUR ";
}
