:root{
      --black:#0b0b0b;
      --white:#ffffff;

      --gray-50:#f7f7f7;
      --gray-100:#f1f1f1;
      --gray-200:#e2e2e2;
      --gray-400:#b5b5b5;
      --gray-700:#3a3a3a;

      --orange:#e06b1a;
      --orange-dark:#c85f17;
      --orange-soft:#fff1e6;

      --max:1100px;
      --radius:16px;
      --shadow: 0 14px 42px rgba(0,0,0,.14);
      --shadow-soft: 0 10px 28px rgba(0,0,0,.10);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--black);
      background:var(--white);
      line-height:1.55;
    }
    a{color:inherit}
    img{max-width:100%; display:block}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

    /* HERO: full-bleed, “event poster” vibe */
    .hero{
      position:relative;
      min-height: calc(100vh - 74px);
      display:grid;
      align-items:stretch;
      overflow:hidden;
      background:#000;
      color:var(--white);
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 500px at 20% 10%, rgba(224,107,26,.28), transparent 60%),
        radial-gradient(700px 420px at 80% 25%, rgba(255,255,255,.10), transparent 58%),
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.92) 100%),
        url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=2000&q=80");
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
      filter: saturate(1.05);
    }
    .hero::after{
      content:"";
      position:absolute; inset:-40%;
      background:
        conic-gradient(from 180deg at 50% 50%,
          rgba(224,107,26,.0) 0deg,
          rgba(224,107,26,.18) 35deg,
          rgba(224,107,26,.0) 70deg,
          rgba(255,255,255,.08) 105deg,
          rgba(255,255,255,.0) 140deg,
          rgba(224,107,26,.14) 180deg,
          rgba(224,107,26,.0) 230deg,
          rgba(255,255,255,.06) 280deg,
          rgba(255,255,255,.0) 330deg
        );
      opacity:.55;
      animation: sweep 10s linear infinite;
      mix-blend-mode: screen;
      pointer-events:none;
    }
    @keyframes sweep{
      from{ transform: rotate(0deg); }
      to{ transform: rotate(360deg); }
    }

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:1rem;
      padding: 2.2rem 0 1.6rem;
      align-items:end;
    }
    .hero-left{
      padding: 1.1rem 0;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:.35rem .7rem;
      border-radius: 999px;
      background: rgba(224,107,26,.18);
      border:1px solid rgba(224,107,26,.32);
      color:#ffd7b8;
      font-weight:900;
      font-size:.9rem;
      width:max-content;
    }
    h1{
      margin:.9rem 0 .65rem;
      font-size: clamp(2.25rem, 4.2vw, 3.4rem);
      letter-spacing:-.8px;
      line-height:1.06;
      max-width: 18ch;
    }
    .lead{
      margin:0;
      max-width: 62ch;
      color: rgba(255,255,255,.86);
      font-size: 1.08rem;
      font-weight: 650;
    }
    .hero-actions{
      display:flex; gap:.75rem; flex-wrap:wrap;
      margin-top: 1.2rem;
    }

    /* Right: “Tonight at a glance” card */
    .glance{
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      box-shadow: 0 18px 60px rgba(0,0,0,.28);
      overflow:hidden;
    }
    .glance-top{
      padding: 1rem 1rem .85rem;
      border-bottom: 1px solid rgba(255,255,255,.10);
      display:flex; align-items:flex-start; justify-content:space-between; gap:.75rem;
    }
    .glance-top h2{
      margin:0;
      font-size: 1.05rem;
      letter-spacing:-.2px;
      font-weight: 950;
    }
    .glance-top p{ margin:.25rem 0 0; color: rgba(255,255,255,.78); font-weight:650; font-size:.95rem; }
    .glance-body{
      padding: 1rem;
      display:grid;
      gap:.75rem;
    }
    .glance-row{
      display:flex; justify-content:space-between; gap:1rem; align-items:center;
      padding:.75rem .85rem;
      background: rgba(0,0,0,.32);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
    }
    .glance-row strong{ font-weight:950; }
    .glance-row span{ color: rgba(255,255,255,.78); font-weight:650; text-align:right; }
    .countdown{
      font-variant-numeric: tabular-nums;
      letter-spacing:.2px;
      color: #ffd7b8;
      font-weight: 950;
    }

    /* Sections */
    section{ padding: 3.2rem 0; }
    .section-head{
      display:flex; justify-content:space-between; align-items:flex-end;
      gap:1rem; flex-wrap:wrap;
      margin-bottom: 1.1rem;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(1.7rem, 2.4vw, 2.15rem);
      letter-spacing:-.5px;
      font-weight: 1000;
    }
    .muted{ color: var(--gray-700); }

    /* Upcoming: “Showboard” layout (unique) */
    .board{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 1rem;
      align-items:start;
    }
    .board-left{
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    .board-left .tabs{
      display:flex;
      gap:.5rem;
      padding:.65rem;
      background: linear-gradient(180deg, var(--gray-50), var(--white));
      border-bottom: 1px solid var(--gray-200);
    }
    .tab{
      border:0;
      cursor:pointer;
      padding:.6rem .95rem;
      border-radius:999px;
      background: transparent;
      color: var(--gray-700);
      font-weight: 900;
      transition: background .15s ease, color .15s ease, transform .15s ease;
    }
    .tab:hover{ transform: translateY(-1px); }
    .tab.active{
      background: var(--orange);
      color: var(--white);
    }

    .giglist{
      padding: .65rem;
      display:grid;
      gap:.65rem;
    }
    .gig{
      width:100%;
      text-align:left;
      border:1px solid var(--gray-200);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 12px 26px rgba(0,0,0,.07);
      padding: .9rem .95rem;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      display:grid;
      gap:.35rem;
    }
    .gig:hover{ transform: translateY(-2px); border-color: rgba(224,107,26,.28); }
    .gig.is-active{
      border-color: rgba(224,107,26,.35);
      background: linear-gradient(180deg, var(--white), var(--orange-soft));
    }
    .gig-top{
      display:flex; justify-content:space-between; gap:1rem; align-items:flex-start;
    }
    .gig-top strong{ font-weight: 1000; letter-spacing:-.2px; }
    .pill{
      display:inline-flex; align-items:center;
      padding:.28rem .6rem;
      border-radius:999px;
      background: rgba(224,107,26,.12);
      border:1px solid rgba(224,107,26,.22);
      color: var(--orange-dark);
      font-weight: 900;
      font-size: .82rem;
      white-space:nowrap;
    }
    .gig-meta{
      color: var(--gray-700);
      font-weight: 750;
      font-size: .95rem;
    }

    .board-right{
      border-radius: 26px;
      overflow:hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,.08);
      background:#111;
      min-height: 420px;
      position:relative;
    }
    .poster{
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.75)),
        var(--poster, url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=1600&q=80"));
      background-size: cover;
      background-position: center;
    }
    .poster-info{
      position:absolute; left:0; right:0; bottom:0;
      padding: 1.15rem 1.15rem 1.1rem;
      color: var(--white);
    }
    .poster-info h3{
      margin:0;
      font-size: clamp(1.35rem, 2.1vw, 1.8rem);
      letter-spacing:-.4px;
      font-weight: 1000;
    }
    .poster-info p{
      margin:.35rem 0 0;
      color: rgba(255,255,255,.82);
      max-width: 62ch;
      font-weight: 650;
    }
    .poster-actions{
      display:flex; gap:.7rem; flex-wrap:wrap;
      margin-top: .95rem;
    }
    .btn.dark{
      color: var(--white);
      border-color: rgba(255,255,255,.18);
      background: rgba(0,0,0,.26);
    }
    .btn.dark:hover{ background: rgba(0,0,0,.36); }

    /* “What to expect” — visual, tidy */
    .expect{
      background: linear-gradient(180deg, var(--gray-50), var(--white));
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .expect-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .tile{
      border-radius: 22px;
      border: 1px solid var(--gray-200);
      background: var(--white);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
      min-height: 220px;
      display:grid;
      grid-template-rows: 120px 1fr;
    }
    .tile .media{
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
        var(--img);
      background-size: cover;
      background-position:center;
    }
    .tile .body{ padding: .95rem 1rem 1rem; }
    .tile h4{ margin:0; font-size: 1.05rem; font-weight: 1000; letter-spacing:-.2px; }
    .tile p{ margin:.35rem 0 0; color: var(--gray-700); font-weight:650; }

    /* ===== MINI GALLERY STYLES ===== */
  .mini-gallery{ padding:3.2rem 0; }
  .mg-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap:.85rem;
  }
  .mg-tile{
    border:0;
    cursor:pointer;
    border-radius: 18px;
    min-height: 170px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
      var(--img);
    background-size: cover;
    background-position:center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .15s ease, border-color .15s ease, filter .15s ease;
    outline: none;
  }
  .mg-tile:hover{ transform: translateY(-2px); border-color: rgba(224,107,26,.28); filter: saturate(1.04); }
  .mg-tile:focus-visible{
    box-shadow: 0 0 0 4px rgba(224,107,26,.22), var(--shadow-soft);
    border-color: rgba(224,107,26,.35);
  }

  .mg-tile.tall{ grid-column: span 2; grid-row: span 2; min-height: 360px; }
  .mg-tile.wide{ grid-column: span 4; min-height: 180px; }

  @media (max-width: 980px){
    .mg-grid{ grid-template-columns: 1fr 1fr; }
    .mg-tile.tall{ grid-column: span 2; grid-row: auto; min-height: 220px; }
    .mg-tile.wide{ grid-column: span 2; }
  }

    /* FAQ accordion */
    .faq{
      display:grid;
      gap:.75rem;
      max-width: 860px;
    }
    details{
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    summary{
      cursor:pointer;
      padding: .95rem 1rem;
      font-weight: 950;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:1rem;
    }
    summary::-webkit-details-marker{ display:none; }
    .chev{
      width: 34px; height: 34px;
      border-radius: 999px;
      border: 1px solid var(--gray-200);
      background: var(--gray-50);
      display:grid; place-items:center;
      font-weight: 1000;
      transition: transform .18s ease;
    }
    details[open] .chev{ transform: rotate(180deg); }
    details .content{
      padding: 0 1rem 1rem;
      color: var(--gray-700);
      font-weight: 650;
    }

    /* Lightbox */
    .lb{
      display:none;
      position: fixed;
      inset:0;
      z-index: 9999;
    }
    .lb.open{ display:block; }
    .lb-backdrop{
      position: fixed;
      inset:0;
      background: rgba(0,0,0,.75);
    }
    .lb-panel{
      position: fixed;
      left:50%;
      top:50%;
      transform: translate(-50%, -50%);
      width: min(980px, calc(100% - 2rem));
      max-height: 86vh;
      border-radius: 22px;
      overflow:hidden;
      background: #0b0b0b;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 30px 90px rgba(0,0,0,.45);
    }
    .lb-panel img{
      display:block;
      width:100%;
      max-height: 76vh;
      object-fit: contain;
      background:#000;
      transition: opacity .15s ease;
    }
    .lb-close{
      position:absolute;
      top: 12px;
      right: 12px;
      width:46px; height:46px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(0,0,0,.45);
      color:#fff;
      cursor:pointer;
      font-weight: 1000;
      z-index:2;
    }
    .lb-hint{
      padding: .75rem 1rem;
      background: rgba(0,0,0,.65);
      border-top: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.78);
      font-weight: 650;
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; align-items:start; }
      .glance{ max-width: 560px; }
      .board{ grid-template-columns: 1fr; }
      .board-right{ min-height: 360px; }
      .expect-grid{ grid-template-columns: 1fr; }
    }

    /* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.hours li:last-child{
  border-bottom:none;
}

.hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

/* =========================
   RESPONSIVE POLISH — Family Disco
   Paste at VERY END of familydisco.css
   ========================= */

/* Tablet (<= 980px) — you already have some rules, these add polish */
@media (max-width: 980px){
  /* Topbar stacks instead of squeezing */
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }

  /* Brand can wrap */
  .brand{
    white-space: normal;
    max-width: 78%;
    line-height: 1.15;
  }

  /* Hero shouldn't force huge height on shorter tablets */
  .hero{
    min-height: auto;
    padding-top: .25rem;
  }

  /* Glance card feels better full-width */
  .glance{
    max-width: 100%;
  }

  /* Footer collapses cleanly */
  .footer-top{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-map iframe{ height: 220px; }
}

/* Phone (<= 560px) */
@media (max-width: 560px){
  /* Reduce global section padding */
  section{ padding: 2.2rem 0; }

  /* Header: avoid crowding */
  .nav-cta .btn.primary{ display:none; }  /* hides "All events" on small phones */
  .brand{ max-width: 70%; }

  /* Hero text scales nicely */
  h1{
    font-size: clamp(1.9rem, 7vw, 2.5rem);
    max-width: 24ch;
  }
  .lead{
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Glance rows: stack label/value (more readable) */
  .glance-row{
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .glance-row span{
    text-align: left;
  }

  /* Tabs: wrap cleanly + easier tapping */
  .board-left .tabs{
    flex-wrap: wrap;
  }
  .tab{
    width: auto;
    padding: .6rem .9rem;
  }

  /* Gig cards: slightly tighter */
  .gig{
    padding: .85rem .85rem;
  }
  .gig-top{
    flex-direction: column;
    gap: .35rem;
    align-items: flex-start;
  }

  /* Poster actions: stack full width */
  .poster-actions{
    width: 100%;
  }
  .poster-actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* Board poster: don’t feel too tall */
  .board-right{
    min-height: 320px;
    border-radius: 20px;
  }
  .poster-info{
    padding: 1rem;
  }

  /* Tiles: stack already happens at 980px, just tighten */
  .tile{
    border-radius: 18px;
  }

  /* Lightbox: near full width */
  .lb-panel{
    width: calc(100% - 1rem);
    border-radius: 18px;
  }
  .lb-panel img{
    max-height: 68vh;
  }

  /* Footer hours stop awkward wrapping */
  .hours li{
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .hours li span:last-child{
    white-space: normal;
  }

  /* Footer bottom stacks */
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
}
