:root {
    --black: #080808;
    --deep: #0f0f0f;
    --red: #c0161a;
    --red-dim: #8b1012;
    --white: #f0ede8;
    --grey: #9a9590;
    --mid: #1e1e1e;
    --border: rgba(240,237,232,0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, background .2s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(240,237,232,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all .12s ease;
  }
  body:hover .cursor { opacity: 1; }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    mix-blend-mode: normal;
  }
  nav::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.9) 0%, transparent 100%);
    pointer-events: none;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    position: relative;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
    position: relative;
  }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 10px 22px;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    position: relative;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--red-dim); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
  .hamburger span { width: 24px; height: 1px; background: var(--white); display: block; transition: all .3s; }

  /* ─── HERO ─── (defined later in full below) */
  .btn-ghost {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240,237,232,0.25);
    padding: 13px 32px;
    text-decoration: none;
    cursor: none;
    transition: all .2s;
  }
  .btn-ghost:hover { border-color: var(--white); }
  .btn-primary {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    text-decoration: none;
    cursor: none;
    transition: all .2s;
  }

  /* ─── MARQUEE ─── */
  .marquee-bar {
    background: var(--red);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 18s linear infinite;
  }
  .marquee-track span {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--white);
    padding: 0 32px;
    opacity: 0.9;
  }
  .marquee-track span.dot { color: rgba(255,255,255,0.4); padding: 0 8px; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── SECTION SHARED ─── */
  section { padding: 120px 48px; }
  .section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: '[ '; color: var(--grey); }
  .section-label::after { content: ' ]'; color: var(--grey); }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--deep); position: relative; overflow: hidden; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  .about-visual {
    position: relative;
    height: 600px;
  }
  .about-img-main {
    position: absolute;
    left: 0; top: 0;
    width: 78%; height: 85%;
    overflow: hidden;
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) contrast(1.15);
  }
  .about-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 50%, var(--deep) 100%);
  }
  .about-img-accent {
    position: absolute;
    right: 0; bottom: 0;
    width: 55%; height: 55%;
    overflow: hidden;
    border: 2px solid var(--red);
  }
  .about-img-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.2);
    mix-blend-mode: luminosity;
  }
  .about-img-accent::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(192,22,26,0.2);
    z-index: 1;
  }
  .about-year {
    position: absolute;
    bottom: 60px; left: 10px;
    font-family: var(--font-display);
    font-size: 140px;
    color: rgba(240,237,232,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .about-text { }
  .about-text .section-title { margin-bottom: 32px; }
  .about-text .section-title span { color: var(--red); }
  .about-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(240,237,232,0.65);
    font-weight: 300;
    margin-bottom: 20px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
    border: 1px solid var(--border);
  }
  .stat {
    padding: 24px 20px;
    background: var(--deep);
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
  }

  /* ─── MUSIC ─── */
  #music { background: var(--black); position: relative; }
  .music-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap; gap: 20px;
  }
  .music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 80px;
  }
  .track-card {
    position: relative;
    background: var(--mid);
    overflow: hidden;
    cursor: none;
    group: true;
  }
  .track-card::before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .track-art {
    position: absolute;
    inset: 0;
    background: var(--mid);
    overflow: hidden;
  }
  .track-art-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(240,237,232,0.04);
    transition: transform .5s ease;
    position: relative;
    overflow: hidden;
  }
  .track-art-inner::before {
    content: '';
    position: absolute; inset: 0;
  }
  .tc1 .track-art-inner::before { background: linear-gradient(135deg, #1a0a0a 0%, #3d0f10 100%); }
  .tc2 .track-art-inner::before { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }
  .tc3 .track-art-inner::before { background: linear-gradient(135deg, #0a0f1a 0%, #0a1a2a 100%); }
  .tc4 .track-art-inner::before { background: linear-gradient(135deg, #0a0a0a 0%, #0f0a0a 100%); }
  .track-art-inner span { position: relative; z-index: 1; }
  .track-overlay {
    position: absolute; inset: 0;
    background: rgba(8,8,8,0.7);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    z-index: 2;
  }
  .track-card:hover .track-overlay { opacity: 1; }
  .track-card:hover .track-art-inner { transform: scale(1.05); }
  .play-btn {
    width: 54px; height: 54px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    transition: background .2s, border-color .2s;
  }
  .play-btn:hover { background: var(--red); border-color: var(--red); }
  .play-btn svg { width: 16px; height: 16px; fill: var(--white); margin-left: 3px; }
  .track-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
    z-index: 2;
  }
  .track-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .track-meta {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
  }
  .track-num {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    z-index: 2;
    letter-spacing: 1px;
  }

  /* featured track */
  .featured-track {
    border: 1px solid var(--border);
    padding: 40px;
    display: flex; align-items: center; gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .featured-track::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--red);
  }
  .featured-vinyl {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a1a 30%, #080808 30%, #080808 40%, #1a1a1a 40%, #080808 100%);
    flex-shrink: 0;
    position: relative;
    animation: spin 8s linear infinite paused;
  }
  .featured-vinyl::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--red);
  }
  .featured-vinyl.playing { animation-play-state: running; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .featured-info { flex: 1; }
  .featured-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .featured-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .featured-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--grey);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .featured-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
  .stream-btn {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 8px 16px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: none;
    transition: border-color .2s, background .2s;
  }
  .stream-btn:hover { border-color: var(--red); background: rgba(192,22,26,0.08); }
  .stream-btn.active { background: var(--red); border-color: var(--red); }

  /* ─── VIDEOS ─── */
  #videos { background: var(--deep); }
  .video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2px;
    margin-top: 60px;
  }
  .video-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--mid);
  }
  .video-card::before { content: ''; display: block; padding-top: 56.25%; }
  .video-thumb {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 60px;
    letter-spacing: 2px;
  }
  .vid1 { background: linear-gradient(135deg, #0f0505 0%, #2a0a0b 100%); color: rgba(192,22,26,0.2); }
  .vid2 { background: linear-gradient(135deg, #050508 0%, #0a0a14 100%); color: rgba(240,237,232,0.05); }
  .vid3 { background: linear-gradient(135deg, #080808 0%, #141414 100%); color: rgba(240,237,232,0.04); }
  .video-overlay {
    position: absolute; inset: 0;
    background: rgba(8,8,8,0.5);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: background .3s;
  }
  .video-card:hover .video-overlay { background: rgba(8,8,8,0.3); }
  .video-play {
    width: 64px; height: 64px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: border-color .2s, background .2s;
  }
  .video-play svg { width: 20px; height: 20px; fill: var(--white); margin-left: 4px; }
  .video-card:hover .video-play { border-color: var(--red); background: var(--red); }
  .video-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 24px 22px;
    background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
  }
  .video-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .video-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
  }
  .video-side { display: flex; flex-direction: column; gap: 2px; }

  /* ─── SHOWS ─── */
  #shows { background: var(--black); }
  .shows-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
  }
  .show-row {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: all .2s;
    cursor: none;
  }
  .show-row:hover { padding-left: 12px; border-color: var(--red); }
  .show-row:first-child { border-top: 1px solid var(--border); }
  .show-date {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--red);
    line-height: 1;
  }
  .show-date-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
  }
  .show-info { }
  .show-venue {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 2px;
  }
  .show-location {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
  }
  .show-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 6px 12px;
    text-transform: uppercase;
    border: 1px solid;
  }
  .show-tag.sold-out { color: var(--grey); border-color: var(--grey); }
  .show-tag.available { color: var(--red); border-color: var(--red); }
  .show-ticket {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
  }
  .show-ticket:hover { background: var(--red-dim); }
  .show-ticket.off { background: var(--mid); color: var(--grey); pointer-events: none; }

  /* ─── GALLERY ─── */
  #gallery { background: var(--deep); padding-bottom: 0; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 2px;
    margin-top: 60px;
  }
  .gal-item {
    overflow: hidden;
    position: relative;
    cursor: none;
  }
  .gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s;
    filter: grayscale(30%);
  }
  .gal-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
  .gi1 { grid-column: 1/5; grid-row: 1/3; }
  .gi2 { grid-column: 5/8; grid-row: 1/2; }
  .gi3 { grid-column: 8/10; grid-row: 1/2; }
  .gi4 { grid-column: 10/13; grid-row: 1/3; }
  .gi5 { grid-column: 5/7; grid-row: 2/3; }
  .gi6 { grid-column: 7/10; grid-row: 2/3; }
  .gi7 { grid-column: 1/4; grid-row: 3/4; }
  .gi8 { grid-column: 4/7; grid-row: 3/4; }
  .gi9 { grid-column: 7/10; grid-row: 3/4; }
  .gi10 { grid-column: 10/13; grid-row: 3/4; }

  .gal-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .gp1 { background: linear-gradient(135deg, #1a0505, #2a0808); color: rgba(192,22,26,0.25); }
  .gp2 { background: linear-gradient(135deg, #080808, #1a1a1a); color: rgba(240,237,232,0.07); }
  .gp3 { background: linear-gradient(135deg, #050505, #141414); color: rgba(240,237,232,0.05); }
  .gp4 { background: linear-gradient(135deg, #0a0505, #200a0a); color: rgba(192,22,26,0.15); }
  .gp5 { background: linear-gradient(135deg, #050508, #0a0a18); color: rgba(240,237,232,0.05); }
  .gp6 { background: linear-gradient(135deg, #0a0808, #1a1010); color: rgba(192,22,26,0.1); }
  .gp7 { background: linear-gradient(135deg, #080808, #101010); color: rgba(240,237,232,0.05); }
  .gp8 { background: linear-gradient(135deg, #0f0505, #1a0808); color: rgba(192,22,26,0.2); }
  .gp9 { background: linear-gradient(135deg, #050505, #0f0f0f); color: rgba(240,237,232,0.06); }
  .gp10 { background: linear-gradient(135deg, #080505, #141010); color: rgba(192,22,26,0.12); }

  /* For gi1 — use actual artist photo styled */
  .gi1 .artist-photo-gallery {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.15);
    transition: transform .6s ease, filter .4s;
  }
  .gi1:hover .artist-photo-gallery { transform: scale(1.08); filter: grayscale(0%) contrast(1.1); }

  /* ─── MERCH ─── */
  #merch { background: var(--black); }
  .merch-intro {
    display: flex; align-items: flex-end; gap: 80px;
    margin-bottom: 60px; flex-wrap: wrap;
  }
  .merch-intro-left { flex: 1; min-width: 280px; }
  .merch-intro-right {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--grey);
    font-weight: 300;
  }
  .merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .merch-card {
    background: var(--mid);
    overflow: hidden;
    cursor: none;
    position: relative;
  }
  .merch-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
  }
  .merch-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 60px;
    transition: transform .5s;
  }
  .merch-card:hover .merch-img-inner { transform: scale(1.04); }
  .mi1 { background: linear-gradient(135deg, #1a0808, #2a0f0f); color: rgba(192,22,26,0.3); }
  .mi2 { background: linear-gradient(135deg, #080808, #1c1c1c); color: rgba(240,237,232,0.06); }
  .mi3 { background: linear-gradient(135deg, #0a0505, #181010); color: rgba(192,22,26,0.15); }
  .merch-label-overlay {
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--red);
    padding: 4px 10px;
    text-transform: uppercase;
  }
  .merch-details {
    padding: 22px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border);
  }
  .merch-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 2px;
  }
  .merch-price {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
  }
  .merch-add {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    background: none;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: all .2s;
    font-size: 18px;
    color: var(--white);
  }
  .merch-add:hover { background: var(--red); border-color: var(--red); }

  /* ─── NEWSLETTER ─── */
  #newsletter {
    background: var(--red);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
  }
  #newsletter::before {
    content: 'ANDRESTYLEZ';
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(8,8,8,0.15);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -5px;
  }
  .newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .newsletter-text .section-label { color: rgba(240,237,232,0.6); }
  .newsletter-text .section-label::before, .newsletter-text .section-label::after { color: rgba(240,237,232,0.35); }
  .newsletter-text .section-title { color: var(--white); margin-bottom: 16px; }
  .newsletter-text p { color: rgba(240,237,232,0.75); font-size: 15px; line-height: 1.7; font-weight: 300; }
  .newsletter-form { display: flex; flex-direction: column; gap: 12px; }
  .newsletter-form input {
    background: rgba(8,8,8,0.25);
    border: 1px solid rgba(240,237,232,0.25);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 16px 20px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
  }
  .newsletter-form input::placeholder { color: rgba(240,237,232,0.4); }
  .newsletter-form input:focus { border-color: rgba(240,237,232,0.7); }
  .newsletter-form button {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    padding: 16px;
    cursor: none;
    transition: opacity .2s;
    margin-top: 4px;
  }
  .newsletter-form button:hover { opacity: 0.85; }

  /* ─── BOOKING / CONTACT ─── */
  #contact { background: var(--deep); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 60px auto 0;
  }
  .contact-info { }
  .contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(240,237,232,0.6);
    font-weight: 300;
    margin-bottom: 48px;
  }
  .contact-items { display: flex; flex-direction: column; gap: 0; }
  .contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 24px; align-items: flex-start;
  }
  .contact-item:first-child { border-top: 1px solid var(--border); }
  .ci-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    width: 100px;
    flex-shrink: 0;
    padding-top: 2px;
  }
  .ci-val {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--white);
    letter-spacing: 1px;
  }
  .contact-form { display: flex; flex-direction: column; gap: 2px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .form-field {
    position: relative;
  }
  .form-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--grey);
    text-transform: uppercase;
    padding: 12px 16px 0;
    background: var(--mid);
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    background: var(--mid);
    border: none;
    border-bottom: 1px solid transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 6px 16px 14px;
    outline: none;
    transition: border-color .2s;
    resize: none;
    -webkit-appearance: none;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus { border-bottom-color: var(--red); }
  .form-field select option { background: var(--mid); }
  .form-field textarea { min-height: 120px; }
  .form-submit {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    padding: 18px;
    cursor: none;
    margin-top: 2px;
    transition: background .2s;
    text-align: center;
  }
  .form-submit:hover { background: var(--red-dim); }

  /* ─── SOCIALS STRIP ─── */
  .socials-strip {
    background: var(--black);
    padding: 48px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
  }
  .social-links {
    display: flex; gap: 28px;
  }
  .social-link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
    display: flex; align-items: center; gap: 8px;
  }
  .social-link:hover { color: var(--red); }
  .social-link svg { width: 16px; height: 16px; fill: currentColor; }
  .social-count {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    padding: 60px 48px 40px;
    border-top: 1px solid var(--border);
  }
  .footer-inner {
    max-width: 1300px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 60px; flex-wrap: wrap; gap: 40px;
  }
  .footer-brand {}
  .footer-logo {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }
  .footer-tagline {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--grey);
    text-transform: uppercase;
  }
  .footer-nav-group { }
  .footer-nav-title {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-nav-links {
    display: flex; flex-direction: column; gap: 10px;
    list-style: none;
  }
  .footer-nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--grey);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color .2s;
  }
  .footer-nav-links a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  /* ─── MOBILE MENU OVERLAY ─── */
  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 900;
    display: flex; flex-direction: column;
    padding: 100px 48px 48px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.77,0,0.175,1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 4px;
    margin-bottom: 48px;
  }
  .mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
    line-height: 1.1;
    transition: color .2s;
  }
  .mobile-menu-links a:hover { color: var(--red); }
  .mobile-menu-social { display: flex; gap: 20px; flex-wrap: wrap; }
  .mobile-menu-social a {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal-left.in { opacity: 1; transform: none; }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal-right.in { opacity: 1; transform: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .music-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 420px; }
    .contact-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .video-side { flex-direction: row; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    section { padding: 80px 24px; }
    nav { padding: 16px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    
    .music-grid { grid-template-columns: 1fr 1fr; }
    .show-row { grid-template-columns: 80px 1fr; gap: 12px; }
    .show-tag { display: none; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(5, 180px); }
    .gi1,.gi2,.gi3,.gi4,.gi5,.gi6,.gi7,.gi8,.gi9,.gi10 {
      grid-column: auto; grid-row: auto;
    }
    .merch-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-logo { font-size: 48px; }
    #newsletter::before { display: none; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
    .socials-strip { flex-direction: column; align-items: flex-start; }
    .mobile-menu-links a { font-size: 40px; }
  }

  @media (max-width: 480px) {
    .music-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .featured-track { flex-direction: column; align-items: flex-start; gap: 24px; }
  }

  /* ─── UTILITY ─── */
  .text-red { color: var(--red); }
  .mt8 { margin-top: 8px; }
  .max-w { max-width: 1300px; margin-left: auto; margin-right: auto; }
  a { cursor: none; }
/* ─────────────────────────────────────────────
   CARPETMAN-STYLE HERO
───────────────────────────────────────────── */

#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  background: #0d0a08;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Warm atmospheric texture background */
.hero-texture-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/images/hero-bg-uploaded.png');
  background-size: cover;
  background-position: center top;
  opacity: 1;
}

/* Giant name behind everything */
.hero-bg-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,237,232,0.18);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  text-align: center;
}

/* Full-bleed photo — portrait sits right-center */
.hero-img-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-artist-img {
  height: 100%;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  object-position: bottom center;
  filter: contrast(1.05) brightness(0.95);
  margin: 0 auto;
  display: block;
}
.hero-img-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, transparent 30%, rgba(13,10,8,0.5) 100%),
    linear-gradient(0deg, rgba(13,10,8,0.97) 0%, rgba(13,10,8,0.5) 25%, transparent 55%),
    linear-gradient(180deg, rgba(13,10,8,0.7) 0%, transparent 20%);
}

/* TOP-RIGHT streaming pills */
.hero-stream-pills {
  position: absolute;
  top: 80px; right: 24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 10;
}
.stream-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: all .2s;
  cursor: none;
  white-space: nowrap;
}
.pill-spotify {
  background: rgba(29,185,84,0.15);
  border: 1px solid rgba(29,185,84,0.5);
  color: #1DB954;
}
.pill-spotify:hover { background: rgba(29,185,84,0.25); }
.pill-apple {
  background: rgba(240,237,232,0.08);
  border: 1px solid rgba(240,237,232,0.25);
  color: var(--white);
}
.pill-apple:hover { background: rgba(240,237,232,0.15); }

/* TOP-LEFT shows panel */
.hero-shows-panel {
  position: absolute;
  top: 80px; left: 24px;
  z-index: 10;
  background: rgba(10,1,2,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240,237,232,0.1);
  padding: 18px 22px;
  min-width: 200px;
  max-width: 260px;
}
.hsp-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 14px; gap: 12px;
}
.hsp-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.5;
}
.hsp-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid rgba(240,237,232,0.3);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  flex-shrink: 0;
  transition: all .2s;
  cursor: none;
}
.hsp-arrow:hover { border-color: var(--red); color: var(--red); }
.hsp-list { display: flex; flex-direction: column; gap: 6px; }
.hsp-row {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(240,237,232,0.7);
  border-bottom: 1px solid rgba(240,237,232,0.06);
  padding-bottom: 6px;
}
.hsp-date { color: var(--grey); min-width: 28px; }
.hsp-loc { color: var(--white); opacity: 0.8; }

/* BOTTOM name + tagline + CTA */
.hero-bottom {
  position: relative;
  z-index: 5;
  padding: 0 28px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.hero-name-main {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 88px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-tagline-bottom {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(240,237,232,0.5);
  text-transform: uppercase;
  max-width: 420px;
  line-height: 1.6;
}
.hero-bottom-cta { flex-shrink: 0; }
.hero-listen-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  padding: 14px 28px;
  transition: all .2s;
  cursor: none;
}
.hero-listen-btn:hover { background: var(--red); color: var(--white); }
.listen-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 6;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(240,237,232,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

/* nav stream btns removed */

/* ─────────────────────────────────────────────
   COMING SOON TAG
───────────────────────────────────────────── */
.coming-soon-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 8px;
  opacity: 0.85;
  vertical-align: middle;
}

/* ─────────────────────────────────────────────
   SHOWS COMING PLACEHOLDER
───────────────────────────────────────────── */
.shows-coming-placeholder { margin-top: 60px; text-align: center; }
.scp-inner {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 12px; border: 1px solid var(--border); padding: 60px 80px;
}
.scp-icon { font-size: 36px; color: var(--red); opacity: 0.5; margin-bottom: 8px; }
.scp-text {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
}

/* ─────────────────────────────────────────────
   HERO RESPONSIVE — MOBILE (Carpetman phone layout)
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-bg-name {
    font-size: clamp(48px, 16vw, 100px);
    letter-spacing: 2px;
    opacity: 0.1;
  }

  /* Shows panel: top-left, compact */
  .hero-shows-panel {
    top: 64px; left: 12px;
    padding: 12px 16px;
    min-width: 160px;
    max-width: 220px;
  }
  .hsp-title { font-size: 8px; letter-spacing: 2px; }
  .hsp-row { font-size: 8px; }

  /* Streaming pills: top-right, stacked */
  .hero-stream-pills {
    top: 64px; right: 12px;
    gap: 6px;
  }
  .stream-pill { font-size: 9px; padding: 6px 10px; }

  /* Bottom: stack vertically */
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 18px 32px;
    gap: 12px;
  }
  .hero-name-main { font-size: clamp(32px, 10vw, 60px); }
  .hero-tagline-bottom { font-size: 8px; max-width: 100%; }
  .hero-listen-btn { padding: 12px 22px; font-size: 10px; }

  /* Scroll indicator: hidden on mobile */
  .hero-scroll { display: none; }

  .scp-inner { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE HANDLING — all named image files, sizes & treatments
   ─────────────────────────────────────────────────────────────
   File map (all go in assets/images/):
     hero-bg-texture.png   → hero background warm glow
     hero-artist.png       → hero foreground portrait
     about-main.jpg        → about section main portrait
     about-accent.jpg      → about section accent/overlap photo
     cover-cana.jpg        → ĆǍŅÂ track card cover (1:1 square)
     cover-mariana.jpg     → Mariana track card cover (1:1 square)
     cover-incantation.jpg → Incantation track card cover (1:1 square)
     gallery-1.jpg         → gallery slot gi1 (large, 4col×2row)
     gallery-2.jpg         → gallery slot gi2 (medium)
     gallery-3.jpg         → gallery slot gi3 (medium)
     gallery-4.jpg         → gallery slot gi4 (large, 3col×2row)
     gallery-5.jpg         → gallery slot gi5 (medium)
     gallery-6.jpg         → gallery slot gi6 (medium)
════════════════════════════════════════════════════════════════ */

/* ─── HERO TEXTURE BACKGROUND ─────────────────────────────────
   hero-bg-texture.png fills the entire hero, behind everything.
   Warm amber/moody atmospheric feel. Opacity 0.65 lets the black
   base show through for depth. Cover + center keeps focal warmth centred.
──────────────────────────────────────────────────────────────── */
.hero-texture-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-texture-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  display: block;
}

/* ─── HERO ARTIST PORTRAIT ────────────────────────────────────
   hero-artist.png sits on z-index 2, above texture, below UI.
   Bottom-anchored so feet/base touch the hero floor.
   max-width: 62% on desktop keeps space for bottom-left text.
   Slight contrast boost; no extra filters — let the PNG speak.
──────────────────────────────────────────────────────────────── */
.hero-artist-img {
  height: 100%;
  width: auto;
  max-width: 62%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0 auto;
  filter: contrast(1.04) brightness(0.97);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-artist-img {
    max-width: 90%;
    opacity: 0.7;
  }
}

/* ─── ABOUT — MAIN PORTRAIT ───────────────────────────────────
   about-main.jpg: portrait orientation works best (2:3 ratio ideal).
   Fills 78% width × 85% height of the 600px column.
   object-position: top center keeps face in frame.
   Slight warmth filter to unify with hero palette.
──────────────────────────────────────────────────────────────── */
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) brightness(0.95) saturate(0.9);
  display: block;
}

/* ─── ABOUT — ACCENT PHOTO ────────────────────────────────────
   about-accent.jpg: sits bottom-right, 55%×55% of visual column.
   Red 2px border frames it. Greyscale + red overlay for editorial tone.
   Same image as main works fine if only one photo is available.
──────────────────────────────────────────────────────────────── */
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(70%) contrast(1.15);
  mix-blend-mode: luminosity;
  display: block;
}

/* ─── MUSIC — TRACK COVER IMAGES ─────────────────────────────
   cover-cana.jpg / cover-mariana.jpg / cover-incantation.jpg
   Square artwork (1:1). Fills absolute inset of .track-art.
   object-fit: cover ensures no letterboxing regardless of source size.
   Hover: subtle scale via parent .track-card:hover rule.
──────────────────────────────────────────────────────────────── */
.track-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.92) saturate(1.05);
}
.track-card:hover .track-cover-img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1.1);
}

/* ─── GALLERY — PHOTO IMAGES ──────────────────────────────────
   gallery-1 through gallery-6: any orientation accepted.
   All display with object-fit: cover filling their grid cell completely.
   object-position: top center keeps faces/subjects in frame.
   Hover: scale up + remove greyscale for colour pop.
   .gal-img-fallback shown when image is missing (position:absolute,
   inset:0 so it fills the cell). Hidden once real img loads via CSS.
──────────────────────────────────────────────────────────────── */
.gal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s;
  z-index: 1;
}
.gal-item:hover .gal-img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.05);
}

/* Fallback tiles — visible only when no image file is present.
   Once a real .gal-img loads it sits on top (z-index:1 vs z-index:0). */
.gal-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 0;
}
/* Reuse existing gp* colour variables */
.gal-img-fallback.gp1 { background: linear-gradient(135deg, #1a0505, #2a0808); color: rgba(192,22,26,0.25); }
.gal-img-fallback.gp2 { background: linear-gradient(135deg, #080808, #1a1a1a); color: rgba(240,237,232,0.07); }
.gal-img-fallback.gp3 { background: linear-gradient(135deg, #050505, #141414); color: rgba(240,237,232,0.05); }
.gal-img-fallback.gp4 { background: linear-gradient(135deg, #0a0505, #200a0a); color: rgba(192,22,26,0.15); }
.gal-img-fallback.gp5 { background: linear-gradient(135deg, #050508, #0a0a18); color: rgba(240,237,232,0.05); }
.gal-img-fallback.gp6 { background: linear-gradient(135deg, #0a0808, #1a1010); color: rgba(192,22,26,0.1); }

/* ─── GALLERY GRID — image slot dimensions reference ──────────
   gi1: grid-column 1/5  × grid-row 1/3 → 4 units wide, 2 tall → ~400px × 400px
   gi2: grid-column 5/8  × grid-row 1/2 → 3 units wide, 1 tall → ~300px × 200px
   gi3: grid-column 8/10 × grid-row 1/2 → 2 units wide, 1 tall → ~200px × 200px
   gi4: grid-column 10/13× grid-row 1/3 → 3 units wide, 2 tall → ~300px × 400px
   gi5: grid-column 5/7  × grid-row 2/3 → 2 units wide, 1 tall → ~200px × 200px
   gi6: grid-column 7/10 × grid-row 2/3 → 3 units wide, 1 tall → ~300px × 200px
   gi7–gi10: single cells, text-only tiles.
──────────────────────────────────────────────────────────────── */
.gallery-grid {
  margin-top: 48px;
}

/* ─── GALLERY RESPONSIVE FIX ──────────────────────────────────
   On mobile, gallery collapses to 2-col grid with reset positions.
   All images still fill their cell with object-fit: cover.
──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
  .gi1, .gi2, .gi3, .gi4, .gi5, .gi6, .gi7, .gi8, .gi9, .gi10 {
    grid-column: auto;
    grid-row: auto;
  }
}


/* ═══════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════════════════════════════ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(240,237,232,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
  margin-right: 8px;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT LINKS
═══════════════════════════════════════════════════════════════ */
.contact-link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,22,26,0.4);
  transition: color .2s, border-color .2s;
}
.contact-link:hover { color: var(--red); border-color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY MESH ITEMS
═══════════════════════════════════════════════════════════════ */
.gal-mesh {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gm5 {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(192,22,26,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240,160,0,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0f0f0f 100%);
}
.gm5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(192,22,26,0.06) 30px, rgba(192,22,26,0.06) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(192,22,26,0.06) 30px, rgba(192,22,26,0.06) 31px);
}
.gm5::after {
  content: 'ANDRESTYLEZ';
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(240,237,232,0.25);
}
.gm6 {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(192,22,26,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 30%, rgba(100,50,50,0.2) 0%, transparent 50%),
    linear-gradient(225deg, #0f0f0f 0%, #150a0a 60%, #0a0a0a 100%);
}
.gm6::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(192,22,26,0.05) 20px, rgba(192,22,26,0.05) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(192,22,26,0.05) 20px, rgba(192,22,26,0.05) 21px);
}
.gm6::after {
  content: 'LAGOS · NGR';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(240,237,232,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE
   Applied when <html> has class "light"
═══════════════════════════════════════════════════════════════ */
html.light {
  --black: #f5f2ee;
  --deep: #ebe8e3;
  --white: #1a1a1a;
  --grey: #555050;
  --mid: #ddd9d4;
  --border: rgba(20,20,20,0.12);
  --red: #b01015;
  --red-dim: #7a0b0e;
}

/* Nav in light mode */
html.light #mainNav {
  background: rgba(245,242,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,20,20,0.1);
}
html.light .nav-links a { color: #555; }
html.light .nav-links a:hover { color: #1a1a1a; }
html.light .nav-logo { color: #1a1a1a; }
html.light .hamburger span { background: #1a1a1a; }
html.light .theme-toggle { border-color: rgba(20,20,20,0.25); color: #1a1a1a; }
html.light .theme-toggle .icon-sun { display: none; }
html.light .theme-toggle .icon-moon { display: block; }

/* Hero — keep dark so the photo works, just lighten overlays */
html.light .hero-bg-name { -webkit-text-stroke: 1px rgba(20,20,20,0.12); }
html.light .hero-name-main { color: #f0ede8; }
html.light .hero-tagline-bottom { color: rgba(240,237,232,0.7); }
html.light .hero-shows-panel { background: rgba(245,242,238,0.92); }
html.light .hero-shows-panel * { color: #1a1a1a; }
html.light .upcoming-label { color: #1a1a1a; }
html.light .show-date { color: #555; }
html.light .show-venue { color: #1a1a1a; }
html.light .show-row { border-bottom-color: rgba(20,20,20,0.12); }

/* Marquee */
html.light .marquee { background: var(--red); }

/* Sections */
html.light #about { background: #ebe8e3; }
html.light .about-body { color: rgba(20,20,20,0.75); }
html.light .about-stat-num { color: #1a1a1a; }
html.light .about-stat-label { color: #555; }
html.light .stat-divider { background: rgba(20,20,20,0.15); }
html.light .about-img-accent::before { background: linear-gradient(135deg, transparent 50%, #ebe8e3 100%); }

/* Music section */
html.light #music { background: #f5f2ee; }
html.light .track-card { background: #ebe8e3; border-color: rgba(20,20,20,0.1); }
html.light .track-card:hover { background: #e0ddd8; border-color: rgba(192,22,26,0.3); }
html.light .track-title { color: #1a1a1a; }
html.light .track-meta { color: #555; }
html.light .track-tag { background: rgba(20,20,20,0.08); color: #555; }
html.light .play-btn { background: rgba(20,20,20,0.08); color: #1a1a1a; }
html.light .play-btn:hover { background: var(--red); color: #fff; }

/* Shows */
html.light #shows { background: #ebe8e3; }
html.light .show-card { background: #f5f2ee; border-color: rgba(20,20,20,0.1); }
html.light .show-card:hover { border-color: var(--red); }
html.light .show-city { color: #1a1a1a; }
html.light .show-country { color: #555; }
html.light .show-tba { color: var(--red); }

/* Gallery */
html.light #gallery { background: #f5f2ee; }
html.light .gal-img-fallback { background: #ddd9d4; color: #555; }
html.light .gal-placeholder { background: #ddd9d4; color: #888; }

/* Merch */
html.light #merch { background: #ebe8e3; }
html.light .merch-img-inner { background: #ddd9d4; color: #555; }

/* Socials strip */
html.light .socials-strip { background: #ebe8e3; border-color: rgba(20,20,20,0.1); }
html.light .social-link { color: #555; }
html.light .social-link:hover { color: var(--red); }

/* Contact section */
html.light #contact { background: #f5f2ee; }
html.light .contact-info p { color: rgba(20,20,20,0.7); }
html.light .ci-label { color: #888; }
html.light .ci-val { color: #1a1a1a; }
html.light .contact-link { color: #1a1a1a; border-bottom-color: rgba(176,16,21,0.35); }
html.light .contact-link:hover { color: var(--red); }
html.light .contact-item { border-bottom-color: rgba(20,20,20,0.1); }
html.light .form-field label { color: #555; }
html.light .form-field input,
html.light .form-field select,
html.light .form-field textarea { 
  background: #ebe8e3; 
  border-color: rgba(20,20,20,0.15); 
  color: #1a1a1a; 
}
html.light .form-field input::placeholder,
html.light .form-field textarea::placeholder { color: #aaa; }
html.light .form-field input:focus,
html.light .form-field select:focus,
html.light .form-field textarea:focus { border-color: var(--red); }

/* Newsletter */
html.light .newsletter-section { background: #ebe8e3; }
html.light .newsletter-form input { background: #f5f2ee; border-color: rgba(20,20,20,0.15); color: #1a1a1a; }

/* Footer */
html.light footer { background: #1a1a1a; }
html.light .footer-logo { color: #f0ede8; }
html.light .footer-tagline { color: #888; }
html.light .footer-nav-title { color: #f0ede8; }
html.light .footer-nav-links a { color: #888; }
html.light .footer-nav-links a:hover { color: #f0ede8; }
html.light .footer-copy { color: #555; }
html.light .footer-bottom { border-top-color: rgba(240,237,232,0.08); }

/* Section labels & titles in light mode */
html.light .section-label { color: var(--red); }
html.light .section-label::before,
html.light .section-label::after { color: #aaa; }
html.light .section-title { color: #1a1a1a; }

/* Buttons in light mode */
html.light .btn-ghost { color: #1a1a1a; border-color: #1a1a1a; }
html.light .btn-ghost:hover { background: #1a1a1a; color: #f0ede8; }

/* Cursor in light mode */
html.light .cursor { background: var(--red); }
html.light .cursor-ring { border-color: rgba(20,20,20,0.4); }

/* Mobile menu */
html.light .mobile-menu { background: rgba(245,242,238,0.98); }
html.light .mobile-menu-links a { color: #1a1a1a; }
html.light .mobile-menu-links a:hover { color: var(--red); }

/* Videos section */
html.light #videos { background: #ebe8e3; }
html.light .video-card { background: #f5f2ee; border-color: rgba(20,20,20,0.1); }
html.light .video-card:hover { border-color: var(--red); }
html.light .video-title { color: #1a1a1a; }
html.light .video-meta { color: #555; }

/* Switch icon: show sun in light mode, hide moon */
html.light .theme-toggle .icon-moon { display: none; }
html.light .theme-toggle .icon-sun { display: block; }
html.light .theme-toggle { border-color: rgba(20,20,20,0.25); color: #555; }
html.light .theme-toggle:hover { color: var(--red); border-color: var(--red); }

/* Smooth transitions for theme switch */
body, #mainNav, section, .track-card, .show-card, .contact-item,
.form-field input, .form-field select, .form-field textarea,
.gal-placeholder, .merch-img-inner, .social-link, footer {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Make nav display flex so toggle sits nicely */
#mainNav {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — COMPREHENSIVE FIX
   Prevents all horizontal overflow, ensures everything fits
   within the viewport on phones without zooming or scrolling.
═══════════════════════════════════════════════════════════════ */

/* 1. Hard clamp entire page to screen width */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {

  /* ── Global ── */
  * { max-width: 100%; }

  /* Sections get tighter side padding on mobile */
  section { padding: 64px 20px; }

  /* ── NAV ── */
  nav {
    padding: 14px 20px !important;
    gap: 8px;
  }
  .nav-logo { font-size: 18px; letter-spacing: 2px; }
  .theme-toggle { width: 32px; height: 32px; margin-right: 4px; }
  .hamburger { cursor: pointer; }

  /* ── HERO: fix the two floating panels overflowing ── */
  #hero { min-height: 100svh; }

  /* Shows panel — smaller and constrained */
  .hero-shows-panel {
    top: 60px;
    left: 12px;
    right: auto;
    min-width: 0;
    max-width: calc(50vw - 16px);
    padding: 10px 12px;
  }
  .hsp-title { font-size: 7px; letter-spacing: 1.5px; }
  .hsp-row { font-size: 7px; gap: 8px; }
  .hsp-loc { font-size: 7px; }

  /* Stream pills — constrained to right side */
  .hero-stream-pills {
    top: 60px;
    right: 12px;
    left: auto;
    max-width: calc(50vw - 16px);
    gap: 5px;
  }
  .stream-pill {
    font-size: 8px;
    padding: 5px 8px;
    white-space: nowrap;
  }

  /* Hero bottom block */
  .hero-bottom {
    padding: 0 16px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-name-main {
    font-size: clamp(28px, 9vw, 52px);
    letter-spacing: 1px;
  }
  .hero-tagline-bottom {
    font-size: 8px;
    max-width: 100%;
    letter-spacing: 1.5px;
  }
  .hero-listen-btn {
    padding: 11px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* ── ABOUT ── */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .about-visual { height: 320px; }

  /* ── MUSIC ── */
  .music-grid { grid-template-columns: 1fr !important; }
  .featured-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ── SHOWS ── */
  .show-row {
    grid-template-columns: 70px 1fr !important;
    gap: 10px;
    padding: 14px 0;
  }

  /* ── VIDEOS ── */
  .video-grid { grid-template-columns: 1fr !important; }
  .video-side { flex-direction: column !important; }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: none !important;
  }
  .gi1,.gi2,.gi3,.gi4,.gi5,.gi6,.gi7,.gi8,.gi9,.gi10 {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 160px;
  }

  /* ── MERCH ── */
  .merch-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── NEWSLETTER ── */
  .newsletter-inner { grid-template-columns: 1fr !important; gap: 32px; }
  #newsletter::before { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .form-row { grid-template-columns: 1fr !important; }
  .form-field input,
  .form-field select,
  .form-field textarea { width: 100%; box-sizing: border-box; }

  /* ── SHOWS PLACEHOLDER ── */
  .scp-inner { padding: 40px 20px; }

  /* ── FOOTER ── */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-logo { font-size: 42px; }
  .footer-inner { padding: 48px 20px 24px; }
  .socials-strip { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── MOBILE MENU ── */
  .mobile-menu-links a { font-size: clamp(28px, 9vw, 44px); }

  /* ── SECTION TITLES ── */
  .section-title { font-size: clamp(40px, 10vw, 64px); }

  /* Disable custom cursor on touch devices */
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto; }
  a, button, [class*="btn"], .track-card, .video-card,
  .merch-card, .gal-item, .show-row, .hsp-arrow,
  .stream-pill, .hero-listen-btn, .form-submit,
  .hamburger, .theme-toggle { cursor: pointer !important; }
}

@media (max-width: 480px) {
  nav { padding: 12px 16px !important; }
  .nav-logo { font-size: 16px; letter-spacing: 1.5px; }

  section { padding: 56px 16px; }

  .hero-shows-panel { max-width: calc(48vw - 12px); }
  .hero-stream-pills { max-width: calc(48vw - 12px); }
  .stream-pill { font-size: 7px; padding: 5px 7px; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .music-grid { grid-template-columns: 1fr !important; }
  .merch-grid { grid-template-columns: 1fr !important; }

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .gi1,.gi2,.gi3,.gi4,.gi5,.gi6,.gi7,.gi8,.gi9,.gi10 {
    height: 200px;
  }

  .footer-logo { font-size: 36px; }
  .mobile-menu-links a { font-size: clamp(24px, 8vw, 36px); }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE POLISH — PASS 2
   Fixes remaining overflow sources & interaction issues
═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Fix global cursor:none on links (breaks touch taps) ── */
  a, button { cursor: pointer !important; }

  /* ── Featured track ── */
  .featured-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
  }
  .featured-vinyl { width: 80px; height: 80px; }
  .featured-title { font-size: 28px; }
  .featured-sub { font-size: 9px; letter-spacing: 1px; word-break: break-word; }
  .featured-actions { gap: 8px; }
  .stream-btn { font-size: 8px; padding: 7px 12px; cursor: pointer !important; }

  /* ── Section label ── */
  .section-label { font-size: 9px; letter-spacing: 2px; }

  /* ── About stats ── */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── Shows section ── */
  .show-row {
    grid-template-columns: 64px 1fr !important;
    gap: 8px;
    padding: 14px 0;
  }
  .show-date { font-size: 22px; }
  .show-tag { display: none; }
  .show-venue, .show-city { font-size: 11px; }
  .show-cta { font-size: 9px; padding: 6px 12px; }

  /* ── Videos ── */
  .video-grid { grid-template-columns: 1fr !important; }
  .video-side { flex-direction: column !important; }
  .video-thumb { height: 200px; }

  /* ── Merch cards ── */
  .merch-img { height: 220px; }
  .merch-name { font-size: 14px; }

  /* ── Socials strip ── */
  .socials-strip {
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .social-links { flex-wrap: wrap; gap: 16px; }

  /* ── Footer ── */
  footer { padding: 48px 20px 32px; }
  .footer-inner { padding: 0; }
  .footer-top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-logo { font-size: 40px; line-height: 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }
  .footer-copy { font-size: 10px; }

  /* ── Mobile menu padding fix ── */
  .mobile-menu { padding: 90px 32px 40px; }
  .mobile-menu-links { gap: 2px; }

  /* ── SCP (coming soon) inner ── */
  .scp-inner { padding: 36px 20px; }
  .scp-text { font-size: 10px; letter-spacing: 2px; }

  /* ── Newsletter ── */
  .newsletter-form input { font-size: 13px; }
  #newsletter { padding: 64px 20px; }

  /* ── Contact section ── */
  #contact .contact-form { gap: 16px; }
  #contact .btn-primary,
  #contact .btn-ghost { max-width: 100% !important; width: 100%; box-sizing: border-box; text-align: center; }

  /* ── Hero bg name — prevent overflow ── */
  .hero-bg-name {
    font-size: clamp(40px, 13vw, 80px) !important;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }

  /* ── Marquee — ensure it doesn't cause scroll ── */
  .marquee-bar { overflow: hidden; }

  /* ── Max width guard for all images ── */
  img { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  /* ── Tightest phones ── */
  .hero-shows-panel { display: none; } /* hide on very small screens to give hero breathing room */
  .hero-stream-pills { top: 60px; right: 10px; }
  .stream-pill { font-size: 7px; padding: 4px 7px; gap: 4px; }
  .featured-track { padding: 20px 16px; }
  .featured-actions { flex-wrap: wrap; }
  .socials-strip { padding: 24px 16px; }
  footer { padding: 40px 16px 28px; }
  .mobile-menu { padding: 80px 24px 32px; }
}
