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

    :root {
      /*
        Brand palette — black, red, white.
        Red is used as an accent/highlight only, not as section backgrounds.
        Warm cream tones stop everything feeling too stark or severe.
      */
      --red:           #CC1230;   /* Brand red — warm, rich, not aggressive */
      --red-dark:      #A80E26;   /* Hover/active state */
      --red-glow:      rgba(204,18,48,.15);

      --ink:           #111010;   /* Near-black, slightly warm */
      --ink-mid:       #383330;
      --ink-light:     #78706A;

      --cream:         #FAF8F6;   /* Warm off-white — main section bg */
      --cream-alt:     #F0EAE2;   /* Slightly deeper warm white */
      --white:         #FFFFFF;

      --border:        rgba(17,16,16,.09);
      --border-strong: rgba(17,16,16,.18);
      --border-red:    rgba(204,18,48,.25);

      --font-brand:    'Lobster', cursive;       /* Wordmark / logo font */
      --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

      --nav-h:  72px;
      --max-w:  1160px;
      --gap:    clamp(3.5rem, 7vw, 7rem);
    }

    html { scroll-behavior: smooth; }
    body  { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--cream); }
    img    { display: block; width: 100%; height: 100%; object-fit: cover; }
    a      { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: var(--font-body); border: none; }
    .container { width: min(var(--max-w), 92vw); margin: 0 auto; }

    /* ── NAV ──────────────────────────────────────────────────────── */
    #main-nav {
      position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
      display: flex; align-items: center; z-index: 200;
      transition: background .35s, border-color .35s, backdrop-filter .35s;
      border-bottom: 1px solid transparent;
    }
    #main-nav.scrolled {
      background: rgba(250,248,246,.95);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom-color: var(--border);
    }
    .nav-inner { width: min(var(--max-w), 92vw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

    /* Nav logo image */
    .nav-logo {
      font-family: var(--font-brand);
      font-size: 1.75rem;
      color: var(--red);
      letter-spacing: .01em;
      line-height: 1;
      /* Subtle text shadow to lift the logo off both dark and light backgrounds */
      text-shadow: 0 1px 3px rgba(0,0,0,.35);
      transition: opacity .2s;
    }
    .nav-logo:hover { opacity: .85; }
    /* If using an image logo instead: */
    .nav-logo-img { height: 40px; width: auto; }

    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.78); transition: color .2s; }
    #main-nav.scrolled .nav-links a { color: var(--ink-mid); }
    .nav-links a:hover, #main-nav.scrolled .nav-links a:hover { color: var(--red); }

    .btn-book {
      display: inline-flex; align-items: center; padding: .55rem 1.3rem;
      background: var(--red); color: var(--white);
      font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
      border-radius: 2px; transition: background .2s, transform .1s; flex-shrink: 0;
    }
    .btn-book:hover { background: var(--red-dark); }
    .btn-book:active { transform: scale(.98); }

    .nav-toggle { display: none; background: none; padding: .5rem; flex-direction: column; gap: 5px; }
    .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: background .3s, transform .3s, opacity .3s; }
    #main-nav.scrolled .nav-toggle span { background: var(--ink); }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    #nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.75rem; z-index: 199; flex-direction: column; }
    #nav-mobile.open { display: flex; }
    #nav-mobile a { display: block; padding: .8rem 0; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--border); }
    #nav-mobile a:hover { color: var(--red); }
    #nav-mobile .btn-book { margin-top: 1.25rem; justify-content: center; }

    /* ── HERO ─────────────────────────────────────────────────────── */
    #hero {
      min-height: 100svh; background: var(--ink);
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 62% 42%, rgba(204,18,48,.15) 0%, transparent 65%),
        linear-gradient(158deg, rgba(10,9,8,.82) 0%, rgba(10,9,8,.88) 100%),
        url('images/break-1.jpg') center / cover no-repeat;
    }
    /* Subtle diagonal texture — keeps it from feeling flat without adding pattern noise */
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -45deg, rgba(255,255,255,.014) 0px, rgba(255,255,255,.014) 1px,
        transparent 1px, transparent 9px
      );
    }
    .hero-content { position: relative; z-index: 1; width: min(var(--max-w), 92vw); margin: 0 auto; padding-top: var(--nav-h); }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .75rem;
      font-size: .68rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
      color: var(--red); margin-bottom: 1.25rem;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 2.25rem; height: 1px; background: var(--red); }

    /* Hero logo image */
    .hero-title {
      font-family: var(--font-brand);
      font-size: clamp(5rem, 13vw, 11rem);
      color: var(--white);
      line-height: .92;
      letter-spacing: .01em;
      margin-bottom: 1.75rem;
      /* Red drop shadow gives depth — a nod to the Coca-Cola aesthetic */
      text-shadow: 3px 3px 0 var(--red), 6px 6px 20px rgba(0,0,0,.4);
    }
    .hero-logo-img { height: clamp(140px, 24vw, 260px); width: auto; margin-bottom: 1.75rem; }

    .hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,.58); max-width: 500px; margin-bottom: .75rem; letter-spacing: .03em; }
    .hero-tags { display: flex; flex-wrap: wrap; gap: .35rem 0; margin-bottom: 2.75rem; }
    .hero-tag { font-size: .7rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); }
    .hero-tag + .hero-tag::before { content: ' · '; margin: 0 .45rem; color: rgba(255,255,255,.18); }

    .hero-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2.1rem; background: var(--red); color: var(--white); font-size: .875rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; border-radius: 2px; transition: background .2s, transform .1s; }
    .btn-primary:hover { background: var(--red-dark); }
    .btn-primary:active { transform: scale(.98); }
    .btn-outline { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2.1rem; background: transparent; color: rgba(255,255,255,.78); font-size: .875rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.28); border-radius: 2px; transition: border-color .2s, color .2s; }
    .btn-outline:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
    .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; color: rgba(255,255,255,.28); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; animation: heroFloat 2.4s ease-in-out infinite; }
    @keyframes heroFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

    /* ── SECTION BASE ─────────────────────────────────────────────── */
    section { padding: var(--gap) 0; position: relative; z-index: 1; }
    .section-label { font-size: .66rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
    .section-title { font-family: 'DM Sans', sans-serif; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -.01em; }
    .section-title em { font-style: italic; color: var(--red); font-weight: 400; }
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ── ABOUT ────────────────────────────────────────────────────── */
    #about { background: var(--cream); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .about-text p { font-size: 1.025rem; color: var(--ink-mid); line-height: 1.82; margin-bottom: 1.25rem; }
    .about-quote { margin-top: 2.25rem; padding: 1.5rem 1.75rem; border-left: 2px solid var(--red); background: var(--cream-alt); }
    .about-quote blockquote { font-size: 1.05rem; font-style: italic; color: var(--ink-mid); margin-bottom: .6rem; line-height: 1.65; }
    .about-quote cite { font-size: .7rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; color: var(--red); font-style: normal; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .stat { padding: 1.75rem; background: var(--white); border: 1px solid var(--border); }
    .stat-number { font-family: var(--font-brand); font-size: 2.5rem; color: var(--ink); line-height: 1; margin-bottom: .4rem; letter-spacing: .01em; }
    .stat-number span { color: var(--red); }
    .stat-label { font-size: .72rem; font-weight: 400; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-light); }
    .stat.dark { grid-column: span 2; background: var(--ink); border-color: var(--ink); }
    .stat.dark .stat-number { color: var(--white); }
    .stat.dark .stat-label  { color: rgba(255,255,255,.42); }

    /* ── PACKAGES ─────────────────────────────────────────────────── */
    #packages { background: var(--ink); }
    #packages .section-label { color: var(--red); }
    #packages .section-title { color: var(--white); }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    .pkg-card {
      padding: 2rem 1.75rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 2px;
      position: relative;
      transition: border-color .25s, background .25s;
    }
    .pkg-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }

    /* Power Hour is the hero card — highlighted in red */
    .pkg-card.featured {
      background: rgba(204,18,48,.12);
      border-color: rgba(204,18,48,.5);
    }
    .pkg-card.featured:hover { background: rgba(204,18,48,.18); border-color: rgba(204,18,48,.8); }

    .pkg-badge {
      display: inline-block;
      padding: .2rem .65rem;
      background: var(--red);
      color: var(--white);
      font-size: .6rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      border-radius: 1px;
      margin-bottom: 1.25rem;
    }

    .pkg-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1;
    }

    .pkg-title {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: .75rem;
      letter-spacing: -.01em;
    }
    .pkg-card.featured .pkg-title { color: var(--white); }

    .pkg-desc {
      font-size: .875rem;
      color: rgba(255,255,255,.52);
      line-height: 1.7;
    }
    .pkg-card.featured .pkg-desc { color: rgba(255,255,255,.72); }

    .pkg-includes {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .pkg-item {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .78rem;
      color: rgba(255,255,255,.42);
    }
    .pkg-card.featured .pkg-item { color: rgba(255,255,255,.65); }
    .pkg-item::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

    /* ── TESTIMONIALS ───────────────────────────────────────────── */
    .testimonials-wrap { margin-top: 2.25rem; }
    .testimonial-slide { padding: 1.5rem 1.75rem; border-left: 2px solid var(--red); background: var(--cream-alt); min-height: 120px; }
    .testimonial-slide blockquote { font-size: 1.05rem; font-style: italic; color: var(--ink-mid); margin-bottom: .6rem; line-height: 1.65; transition: opacity .45s ease, transform .45s ease; }
    .testimonial-slide cite { font-size: .7rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; color: var(--red); font-style: normal; transition: opacity .45s ease; }
    .testimonial-slide.fading blockquote,
    .testimonial-slide.fading cite { opacity: 0; transform: translateY(6px); }
    .testimonial-dots { display: flex; gap: .45rem; margin-top: 1rem; }
    .t-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong); border: none; padding: 0; cursor: pointer; transition: background .25s, transform .25s; }
    .t-dot.active { background: var(--red); transform: scale(1.3); }

    /* ── MEMBERS ──────────────────────────────────────────────────── */
    #members { background: var(--white); }
    .members-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; }
    .member-card { position: relative; }
    .member-photo { aspect-ratio: 3/4; background: var(--cream-alt); overflow: hidden; position: relative; }
    .member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .55s ease; }
    .member-card:hover .member-photo img { transform: scale(1.05); }
    .member-placeholder { width: 100%; height: 100%; background: #181614; display: flex; align-items: center; justify-content: center; }
    .member-placeholder-initials { width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid rgba(204,18,48,.35); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-size: 1.5rem; color: rgba(204,18,48,.55); }
    .member-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,.90) 0%, rgba(10,9,8,.10) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
    .member-name { font-size: 1.35rem; font-weight: 500; color: var(--white); line-height: 1.1; letter-spacing: -.01em; }
    .member-role { font-size: .64rem; font-weight: 400; letter-spacing: .11em; text-transform: uppercase; color: var(--red); margin-top: .3rem; }
    .member-bio { padding: 1rem 0 0; font-size: .84rem; color: var(--ink-mid); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

    /* DEPS */
    .deps-header { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); margin-bottom: 1.75rem; }
    .deps-title { font-size: 1.5rem; font-weight: 300; color: var(--ink-mid); font-style: italic; margin-bottom: .5rem; letter-spacing: -.01em; }
    .deps-subtitle { font-size: .875rem; color: var(--ink-light); max-width: 580px; line-height: 1.65; }
    .deps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; }
    .dep-card { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; background: var(--cream); border: 1px solid var(--border); border-radius: 2px; transition: border-color .2s; }
    .dep-card:hover { border-color: var(--border-red); }
    .dep-initial { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--cream-alt); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-size: 1.05rem; color: var(--red); }
    .dep-name { font-size: .9rem; font-weight: 500; color: var(--ink); }
    .dep-role { font-size: .7rem; color: var(--ink-light); line-height: 1.4; margin-top: .1rem; }

        /* ── GALLERY ─────────────────────────────────────────────────────────── */
    #gallery { background: var(--ink); }
    #gallery .section-label { color: var(--red); }
    #gallery .section-title { color: var(--white); }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 2.5rem; }
    .gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: #1a1714; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06) saturate(1.06) brightness(0.96); transition: transform .5s ease, filter .5s ease; display: block; }
    .gallery-item:hover img { transform: scale(1.06); filter: contrast(1.1) saturate(1.1) brightness(1.05); }
    .gallery-item.tall { aspect-ratio: unset; grid-row: span 2; }
    .gallery-item.tall img { height: 100%; }
    .lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.94); align-items: center; justify-content: center; }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; filter: contrast(1.06) saturate(1.06); }
    .lb-btn { position: absolute; background: none; border: none; color: rgba(255,255,255,.7); font-size: 2.5rem; cursor: pointer; padding: 1rem; transition: color .2s; line-height: 1; }
    .lb-btn:hover { color: var(--red); }
    .lb-close { top: 1rem; right: 1.5rem; font-size: 2rem; }
    .lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
    .lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
    @media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.tall { aspect-ratio: 4/3; grid-row: span 1; } }

    /* ── SONGS ────────────────────────────────────────────────────── */
    #songs { background: var(--cream); }
    .songs-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
    .songs-tabs { display: flex; border: 1px solid var(--border-strong); border-radius: 2px; overflow: hidden; }
    .tab-btn { padding: .55rem 1.25rem; font-size: .73rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; background: transparent; color: var(--ink-light); border: none; transition: background .2s, color .2s; }
    .tab-btn.active { background: var(--ink); color: var(--white); }
    .song-search { display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem; background: var(--white); border: 1px solid var(--border-strong); border-radius: 2px; width: min(340px, 100%); margin-bottom: 1.5rem; }
    .song-search svg { flex-shrink: 0; color: var(--ink-light); }
    .song-search input { border: none; background: none; outline: none; font-family: var(--font-body); font-size: .9rem; color: var(--ink); width: 100%; }
    .song-search input:focus ~ svg, .song-search input:focus { color: var(--ink); }
    .song-search:focus-within { border-color: var(--red); }
    .song-search input::placeholder { color: var(--ink-light); }
    .songs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
    .song-item { display: flex; align-items: center; justify-content: space-between; padding: .68rem 1rem; background: var(--white); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: background .15s; gap: .75rem; }
    .song-item:hover { background: var(--cream); }
    .song-title { font-size: .875rem; color: var(--ink); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .song-artist { font-size: .73rem; color: var(--ink-light); white-space: nowrap; flex-shrink: 0; }
    .no-results { grid-column: 1/-1; padding: 3rem; text-align: center; color: var(--ink-light); font-size: .9rem; }
    .tab-content { display: none; }
    .tab-content.active { display: block; }
    .ceilidh-intro { font-size: .975rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 1.75rem; max-width: 640px; }
    .ceilidh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
    .ceilidh-item { padding: 1.25rem 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 2px; font-size: .925rem; color: var(--ink); }
    .loading-msg { padding: 2.5rem; text-align: center; color: var(--ink-light); font-size: .9rem; }

    /* ── MEDIA ────────────────────────────────────────────────────── */
    #media { background: var(--ink); }
    #media .section-label { color: var(--red); }
    #media .section-title { color: var(--white); }
    .media-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }
    .video-wrap { aspect-ratio: 16/9; border-radius: 2px; overflow: hidden; background: #000; }
    .video-wrap iframe { width: 100%; height: 100%; border: none; }
    .soundcloud-wrap { border-radius: 2px; overflow: hidden; }
    .soundcloud-wrap iframe { width: 100%; border: none; }
    .media-links { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .media-link { display: flex; align-items: center; gap: .4rem; font-size: .73rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.38); transition: color .2s; }
    .media-link:hover { color: var(--red); }

    /* ── EVENTS ───────────────────────────────────────────────────── */
    #events { background: var(--cream-alt); }
    .events-container { margin-top: 2.5rem; }

    .event-item { display: flex; align-items: center; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border-strong); }
    .event-item:first-child { border-top: 1px solid var(--border-strong); }
    .event-date { flex-shrink: 0; text-align: center; width: 54px; }
    .event-day { font-family: var(--font-brand); font-size: 2.1rem; color: var(--red); line-height: 1; }
    .event-month { font-size: .6rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-light); }
    .event-info { flex: 1; }
    .event-name { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: .15rem; }
    .event-venue { font-size: .83rem; color: var(--ink-light); }
    .event-time  { font-size: .78rem; color: var(--ink-light); margin-top: .1rem; }

    /* Booked badge — confirmed private booking, no names shown */
    .event-booked-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      padding: .3rem .8rem;
      background: var(--cream-alt); border: 1px solid var(--border-strong);
      border-radius: 2px; font-size: .67rem; font-weight: 500;
      letter-spacing: .08em; text-transform: uppercase; color: var(--ink-light);
      white-space: nowrap; flex-shrink: 0;
    }
    .event-booked-badge::before {
      content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
      background: var(--red); opacity: .6;
    }

    /* Provisional badge — dashed border, grey dot; deposit not yet received */
    .event-provisional-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      padding: .3rem .8rem;
      background: transparent; border: 1px dashed var(--border-strong);
      border-radius: 2px; font-size: .67rem; font-weight: 400;
      letter-spacing: .08em; text-transform: uppercase; color: var(--ink-light);
      white-space: nowrap; flex-shrink: 0;
    }
    .event-provisional-badge::before {
      content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
      background: var(--ink-light); opacity: .45;
    }

    .event-ticket { display: inline-flex; align-items: center; padding: .42rem 1rem; border: 1px solid var(--border-strong); border-radius: 2px; font-size: .73rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mid); transition: border-color .2s, color .2s; white-space: nowrap; flex-shrink: 0; }
    .event-ticket:hover { border-color: var(--red); color: var(--red); }

    .events-legend { display: flex; align-items: center; gap: .6rem; margin-top: 1.5rem; font-size: .75rem; color: var(--ink-light); flex-wrap: wrap; }
    .events-legend-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); opacity: .55; flex-shrink: 0; }
    .events-legend-dot--prov { background: var(--ink-light); opacity: .45; }

    .events-empty { padding: 3rem 2rem; border: 1px solid var(--border-strong); background: var(--white); text-align: center; }
    .events-empty p { font-size: 1rem; color: var(--ink-mid); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

    /* ── CONTACT ──────────────────────────────────────────────────── */
    #contact { background: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
    .contact-info > p { font-size: 1rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 2rem; }
    .contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; font-size: .9rem; color: var(--ink-mid); }
    .contact-detail svg { color: var(--red); flex-shrink: 0; }
    .contact-detail a:hover { color: var(--red); }
    .socials { display: flex; gap: .75rem; margin-top: 2rem; flex-wrap: wrap; }
    .social-link { display: inline-flex; align-items: center; padding: .42rem .9rem; border: 1px solid var(--border-strong); border-radius: 2px; font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mid); transition: border-color .2s, color .2s; }
    .social-link:hover { border-color: var(--red); color: var(--red); }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-light); }
    .form-group input, .form-group select, .form-group textarea { padding: .72rem .95rem; background: var(--white); border: 1px solid var(--border-strong); border-radius: 2px; font-family: var(--font-body); font-size: .9rem; color: var(--ink); outline: none; transition: border-color .2s; -webkit-appearance: none; appearance: none; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378706A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .btn-submit { align-self: flex-start; padding: .9rem 2.25rem; background: var(--red); color: var(--white); font-size: .875rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; border-radius: 2px; border: none; transition: background .2s, transform .1s; }
    .btn-submit:hover { background: var(--red-dark); }
    .btn-submit:active { transform: scale(.98); }

    /* ── FOOTER ───────────────────────────────────────────────────── */
    footer { background: var(--ink); padding: 2.5rem 0; position: relative; z-index: 1; }
    .footer-inner { width: min(var(--max-w), 92vw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
    .footer-brand { font-family: var(--font-brand); font-size: 1.5rem; color: var(--red); text-shadow: 1px 1px 4px rgba(0,0,0,.4); }
    .footer-copy { font-size: .72rem; color: rgba(255,255,255,.26); }
    .footer-socials { display: flex; gap: 1.5rem; }
    .footer-socials a { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.30); transition: color .2s; }
    .footer-socials a:hover { color: var(--red); }

    /* ══════════════════════════════════════════════════════════════
       SCROLL BREAKS — one continuous fixed background, image swaps
       ──────────────────────────────────────────────────────────────
       A single fixed full-screen layer sits behind the entire page
       (z-index: -1). It holds 4 stacked images that crossfade via
       opacity. JS swaps the active image based on scroll position,
       so the correct photo is already showing by the time each
       "break" window opens up — and crucially, it's already changed
       to the NEXT image before the next break appears, since the
       swap is triggered as soon as the previous section has fully
       covered the screen.

       .scroll-break is now just a transparent window — height only,
       no background of its own — that reveals the fixed layer below.
       The section that follows still rises up and over it via
       .overlap-section (rounded top + shadow).

       PHOTO_SWAP: search for PHOTO_SWAP comments below to replace
       the placeholder gradients with real gig photography. Recommended:
       1920px+ wide, landscape, JPG, under ~400KB each.
       ══════════════════════════════════════════════════════════════ */

    /* Real photos — background-attachment:fixed keeps them pinned as page scrolls */
    #break-1 {
      background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url('images/dancefloor.jpg') center / cover no-repeat fixed;
    }
    #break-2 {
      background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url('images/break-2.jpg') center / cover no-repeat fixed;
    }
    #break-3 {
      background:
        linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
        url('images/break-3.jpg') center 30% / cover no-repeat fixed;
    }
    #break-4 {
      background:
        linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
        url('images/break-4.jpg') center 40% / cover no-repeat fixed;
    }

    .scroll-break {
      position: relative;
      height: 100vh;
      min-height: 480px;
    }
    .scroll-break-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem;
      z-index: 1;
    }
    .scroll-break-label {
      font-size: .75rem; font-weight: 500; letter-spacing: .24em;
      text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
      text-shadow: 0 1px 6px rgba(0,0,0,.9), 0 0 20px rgba(0,0,0,.7);
    }
    .scroll-break-title {
      font-family: var(--font-brand);
      font-size: clamp(2.75rem, 8vw, 5.5rem);
      color: var(--white);
      text-shadow: 3px 3px 0 var(--red), 6px 6px 24px rgba(0,0,0,.45);
      letter-spacing: .01em;
      line-height: 1.05;
    }
    .scroll-break-sub {
      font-size: 1.05rem; color: rgba(255,255,255,.95);
      margin-top: 1.25rem; max-width: 480px; margin-left: auto; margin-right: auto;
      text-shadow: 0 1px 8px rgba(0,0,0,.9), 0 2px 20px rgba(0,0,0,.6);
      line-height: 1.6;
    }

    /* The section directly after a break overlaps upward slightly,
       so it begins covering the fixed image a touch before its own
       natural scroll position — giving a clean, flat "cover" rather
       than an abrupt cut. No rounded corners or shadow (flat, ESPN-style). */
    .overlap-section {
      position: relative;
      z-index: 2;
      margin-top: -4vh;
    }

    @media (max-width: 768px) {
      .scroll-break { height: 100svh; min-height: 420px; }
      .overlap-section { margin-top: -2vh; }
    }

    /* ── RESPONSIVE ───────────────────────────────────────────────── */
    @media (max-width: 1100px) { .members-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 900px)  { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .media-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 3rem; } .packages-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px)  { .nav-links, .nav-links ~ .btn-book { display: none; } .nav-toggle { display: flex; } .form-row { grid-template-columns: 1fr; } .members-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px)  { .about-stats { grid-template-columns: 1fr; } .stat.dark { grid-column: 1; } .event-item { flex-wrap: wrap; gap: 1rem; } .packages-grid { grid-template-columns: 1fr; } }

/* ── iOS Safari fix — background-attachment:fixed not supported ─────── */
@supports (-webkit-touch-callout: none) {
  #break-1, #break-2, #break-3, #break-4 {
    background-attachment: scroll;
  }
}
