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

    :root {
      --black: #0a0a0a;
      --dark: #141414;
      --card: #1c1c1c;
      --gold: #f0a500;
      --gold-dim: #c4851a;
      --white: #ffffff;
      --grey: #999999;
      --light-grey: #d0d0d0;
      --checker: #1a1a1a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(240,165,0,0.2);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--gold);
      letter-spacing: 0.05em;
      text-decoration: none;
    }

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

    .nav-links a {
      color: var(--light-grey);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: var(--black) !important;
      padding: 0.4rem 1rem;
      border-radius: 2px;
      font-weight: 600 !important;
    }

    .nav-cta:hover { background: var(--gold-dim); color: var(--black) !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('./images/hero.png');
      background-size: cover;
      background-position: center 30%;
      filter: brightness(0.35);
    }

    /* Checker strip overlay */
    .hero-checker {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-image: repeating-linear-gradient(
        90deg,
        var(--gold) 0px, var(--gold) 30px,
        var(--black) 30px, var(--black) 60px
      );
      opacity: 0.15;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 6rem 2rem 4rem;
      max-width: 900px;
    }

    .hero-eyebrow {
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 15vw, 13rem);
      line-height: 0.9;
      color: var(--white);
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
    }

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

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: var(--light-grey);
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.1s;
    }

    .btn-primary:hover { background: var(--gold-dim); transform: translateY(-1px); }

    .btn-secondary {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

    .scroll-arrow {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
    }

    .scroll-arrow svg { opacity: 0.5; }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── SECTION SHARED ─── */
    section { padding: 6rem 2rem; }

    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    /* ─── NEXT GIG ─── */
    #next-gig {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    #next-gig::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--gold);
    }

    .gig-card {
      background: var(--card);
      border: 1px solid rgba(240,165,0,0.25);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      overflow: hidden;
      position: relative;
    }

    .gig-card::after {
      content: '★ NEXT GIG ★';
      position: absolute;
      top: 1.5rem;
      right: -2.2rem;
      background: var(--gold);
      color: var(--black);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.3rem 3rem;
      transform: rotate(45deg);
    }

    .gig-flyer {
      position: relative;
      overflow: hidden;
    }

    .gig-flyer img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(0.85);
      display: block;
    }
    

    .gig-details {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .gig-festival {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .gig-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      margin-bottom: 1.5rem;
    }

    .gig-meta {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .gig-meta-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: var(--light-grey);
    }

    .gig-meta-item svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--gold);
    }

    .gig-meta-item strong {
      color: var(--white);
      display: block;
    }

    .gig-meta-item span {
      color: var(--grey);
      font-size: 0.85rem;
    }

    /* ─── ABOUT ─── */
    #about { background: var(--black); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text p {
      color: var(--light-grey);
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .about-text p:last-child { margin-bottom: 0; }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      display: block;
    }

    .about-image::before {
      content: '';
      position: absolute;
      inset: -8px -8px 8px 8px;
      border: 2px solid var(--gold);
      opacity: 0.3;
      pointer-events: none;
    }

    /* ─── BAND MEMBERS ─── */
    #band { background: var(--dark); }

    .members-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .member-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 1.75rem;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    .member-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--gold);
      transform: scaleY(0);
      transition: transform 0.2s;
      transform-origin: bottom;
    }

    .member-card:hover {
      border-color: rgba(240,165,0,0.3);
      transform: translateY(-2px);
    }

    .member-card:hover::before { transform: scaleY(1); }

    .member-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: var(--white);
    }

    .member-role {
      font-size: 0.85rem;
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .member-tag {
      display: inline-block;
      margin-top: 0.75rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.15rem 0.5rem;
    }

    .occasional-section {
      margin-top: 3rem;
    }

    .occasional-title {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 1rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 2rem;
    }

    .occasional-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }

    /* ─── SETLIST ─── */
    #setlist { background: var(--black); }

    .setlist-intro {
      color: var(--light-grey);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 680px;
      margin-bottom: 3rem;
    }

    .songs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1px;
      background: rgba(255,255,255,0.06);
    }

    .song-item {
      background: var(--dark);
      padding: 1rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.15s;
    }

    .song-item:hover { background: var(--card); }

    .song-title {
      font-weight: 500;
      font-size: 0.95rem;
    }

    .song-artist {
      font-size: 0.8rem;
      color: var(--grey);
      text-align: right;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .setlist-note {
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: var(--grey);
      font-style: italic;
    }

    /* ─── PAST GIGS ─── */
    #past-gigs { background: var(--dark); }

    .gigs-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 2rem;
    }

    .gigs-table th {
      text-align: left;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey);
      padding: 0.75rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .gigs-table td {
      padding: 0.9rem 1rem;
      font-size: 0.95rem;
      color: var(--light-grey);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .gigs-table tr:hover td { background: rgba(255,255,255,0.02); }

    .gigs-table td:first-child {
      color: var(--gold);
      font-weight: 500;
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .gig-venue-name { color: var(--white); font-weight: 500; }

    .venue-link { color: inherit; text-decoration: none; }
    .venue-link:hover { color: var(--gold); }

    /* ─── MAILING LIST ─── */
    #mailing-list {
      background: var(--black);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #mailing-list::before {
      content: 'TEMPOMENTAL';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(6rem, 20vw, 16rem);
      color: rgba(255,255,255,0.02);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
    }

    .mailing-inner {
      position: relative;
      max-width: 560px;
      margin: 0 auto;
    }

    .mailing-desc {
      color: var(--light-grey);
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
    }

    .signup-form {
      display: flex;
      gap: 0;
      max-width: 480px;
      margin: 0 auto 1rem;
    }

    .signup-input {
      flex: 1;
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.12);
      border-right: none;
      color: var(--white);
      padding: 0.9rem 1.2rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .signup-input::placeholder { color: var(--grey); }

    .signup-input:focus { border-color: var(--gold); }

    .signup-btn {
      background: var(--gold);
      border: none;
      color: var(--black);
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.9rem 1.5rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .signup-btn:hover { background: var(--gold-dim); }

    .signup-note {
      font-size: 0.8rem;
      color: var(--grey);
    }

    /* Success state */
    .signup-success {
      display: none;
      background: rgba(240,165,0,0.1);
      border: 1px solid rgba(240,165,0,0.3);
      padding: 1rem 1.5rem;
      color: var(--gold);
      font-size: 0.95rem;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 3rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .footer-tagline {
      font-size: 0.8rem;
      color: var(--grey);
      margin-top: 0.25rem;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--grey);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }

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

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.2);
      margin-top: 2rem;
      text-align: center;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ─── CHECKER DIVIDER ─── */
    .checker-divider {
      height: 8px;
      background-image: repeating-linear-gradient(
        90deg,
        var(--gold) 0px, var(--gold) 12px,
        var(--black) 12px, var(--black) 24px
      );
      opacity: 0.4;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .gig-card { grid-template-columns: 1fr; }
      .gig-flyer { max-height: 280px; overflow: hidden }
      .about-grid { grid-template-columns: 1fr; }
      .about-image { order: -1; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(240,165,0,0.2);
      }
      .hamburger { display: flex; }
      .signup-form { flex-direction: column; }
      .signup-input { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: none; }
      .gigs-table { font-size: 0.85rem; }
      .gigs-table th:nth-child(3),
      .gigs-table td:nth-child(3) { display: none; }
      section { padding: 4rem 1.25rem; }
    }