  /* ============ TOKENS ============
     Colour  — bold yellow backdrop, ink-black text and rules,
     a single warm red for links/CTAs. Deliberately flat and graphic,
     like a gig poster run off a photocopier — the imagery you drop
     in is what carries the texture, not gradients.
     Type    — Hilsfiger is the brand wordmark font (bring your own
     licensed file — see comment near .wordmark). Fraunces stands in
     as a kindred bold display serif. Body is IBM Plex Sans; labels
     and timestamps run in IBM Plex Mono.
     Images  — every image slot below is a plain <img> with a
     data-slot comment telling you what to drop in and roughly what
     shape it wants (square, wide, tall). Swap the src, keep the class.
  =================================== */
  :root{
    --yellow: #F5C518;
    --yellow-deep: #E0B10F;
    --ink: #17140A;
    --ink-soft: #4a4326;
    --red: #C7361A;
    --paper: #FFFBEF;
    --rule: rgba(23,20,10,0.18);

    --display: 'Fraunces', 'Hilsfiger', Georgia, serif;
    --body: 'Courier Prime', 'IBM Plex Mono', monospace;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.5;
  }
  a{ color: inherit; }
  img{ max-width:100%; display:block; }

  /* Tier 3: body copy keeps a legible workhorse font, just a hairline
     grain sitting behind the text rather than any fringe/erosion —
     enough to feel of a piece with the headline/subhead without
     costing readability across full sentences. */
  .release p, .board p, .join-card p, .hero-sub{
    position: relative;
  }
  .release p::before, .board p::before, .join-card p::before, .hero-sub::before{
    content: '';
    position: absolute; inset: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  :focus-visible{
    outline: 2px solid var(--red);
    outline-offset: 3px;
  }

  .wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .img-slot{
    width:100%; object-fit: cover;
    background: var(--paper);
    border: 2px solid var(--ink);
  }
  .img-slot[data-empty]{
    display:flex; align-items:center; justify-content:center;
    font-family: var(--mono); font-size: 0.72rem; color: var(--ink-soft);
    text-align:center; padding: 12px;
  }

  /* VHS split-line: RGB-fringed, noisy rule replacing a flat border.
     Base line stays as the anchor; two noise-textured, colour-tinted
     pseudo-elements sit just above it, screen-blended and offset in
     opposite directions, with an occasional snap-jitter for tracking
     glitch. Shared by the nav underline and the hero's closing rule. */
  header::before, header::after,
  .hero::before, .hero::after{
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 5px;
    bottom: -3px;
    pointer-events: none;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='10'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 140px 10px;
    background-blend-mode: multiply;
    mix-blend-mode: screen;
  }
  header::before, .hero::before{
    background-color: #ff173c;
    opacity: 0.5;
    transform: translateX(-2px);
    animation: vhsJitterA 6.4s steps(1) infinite;
  }
  header::after, .hero::after{
    background-color: #2be8ff;
    opacity: 0.5;
    transform: translateX(2px);
    animation: vhsJitterB 6.4s steps(1) infinite;
  }
  @keyframes vhsJitterA{
    0%, 84%, 100%{ transform: translateX(-2px); opacity: 0.5; }
    86%{ transform: translateX(-5px); opacity: 0.8; }
    88%{ transform: translateX(-1px); opacity: 0.3; }
    90%{ transform: translateX(-3px); opacity: 0.6; }
  }
  @keyframes vhsJitterB{
    0%, 84%, 100%{ transform: translateX(2px); opacity: 0.5; }
    86%{ transform: translateX(5px); opacity: 0.8; }
    88%{ transform: translateX(1px); opacity: 0.3; }
    90%{ transform: translateX(3px); opacity: 0.6; }
  }
  @media (prefers-reduced-motion: reduce){
    header::before, header::after, .hero::before, .hero::after{ animation: none; }
  }

  /* ============ NAV ============ */
  header{
    position: sticky; top:0; z-index: 10;
    background: var(--yellow);
    border-bottom: 2px solid var(--ink);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top: 16px; padding-bottom: 16px;
  }
  .nav-mark{
    font-family: var(--display);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-decoration:none;
    display: inline-flex;
    align-items: center;
  }
  .nav-mark img{
    display: block;
    height: 64px;
    width: auto;
    /* Wordmark ("RICH chance") stays fully solid; the pop-art figure
       riding along the right edge fades out via mask so it reads as
       a soft flourish behind the type rather than competing with it
       at nav scale. Adjust the 78%/100% stops if the fade needs to
       start sooner/later once you see it against real content. */
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 78%, rgba(0,0,0,0.32) 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 78%, rgba(0,0,0,0.32) 100%);
  }
  .nav-links{
    display:flex; gap: 28px; list-style:none; margin:0; padding:0;
    font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-links a{
    text-decoration:none; color: var(--ink);
    padding-bottom: 4px; border-bottom: 2px solid transparent;
    transition: border-color .15s ease;
  }
  .nav-links a:hover, .nav-links a[aria-current]{
    border-color: var(--red);
  }
  .nav-toggle-checkbox{ display:none; }
  .hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px; height:32px;
    cursor:pointer;
  }
  .hamburger span{
    display:block; width:100%; height:2px;
    background:var(--ink);
  }
  @media (max-width: 880px){
    nav.wrap{ flex-wrap:wrap; }
    .hamburger{ display:flex; }
    .nav-links{
      display:none;
      width:100%;
      order:3;
      flex-direction:column;
      gap:0;
      margin-top:12px;
    }
    .nav-links li{ width:100%; }
    .nav-links a{
      display:block;
      width:100%;
      padding:14px 4px;
      border-bottom:1px solid rgba(0,0,0,0.15);
    }
    .nav-toggle-checkbox:checked ~ .nav-links{
      display:flex;
    }
  }

  /* ============ HERO ============ */
  .hero{
    position: relative;
    border-bottom: 2px solid var(--ink);
    overflow: visible;
  }
  .pop-cutout{
    position: absolute;
    top: -18px;
    right: 8%;
    width: clamp(120px, 14vw, 190px);
    transform: rotate(-7deg);
    filter: drop-shadow(10px 14px 0 rgba(0,0,0,0.85));
    z-index: 1;
    pointer-events: none;
  }
  @media (max-width: 640px){
    .pop-cutout{ right: 4%; width: 100px; top: -8px; }
  }
  .hero-visual{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-bottom: 2px solid var(--ink);
    /* Sized by its own content (the TV graphic) plus breathing room,
       not by viewport width — the old aspect-ratio:16/9 approach blew
       up to 1400px+ tall on wide desktop windows, burying everything
       below the fold. */
    padding: clamp(28px, 6vw, 56px) 20px;
  }
  .tv-glitch-wrap{
    position: relative;
    display: inline-block;
  }
  .hero-photo{
    display: block;
    width: clamp(220px, 22vw, 340px);
    height: auto;
    transform: rotate(-5deg);
    filter: drop-shadow(10px 14px 0 rgba(0,0,0,0.85));
    border: 3px solid var(--ink);
    position: relative;
    z-index: 2;
  }
  .tv-ghost{
    display: block;
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: rotate(-5deg);
    border: 3px solid var(--ink);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
  }
  .tv-ghost-r{ filter: saturate(4) hue-rotate(-45deg) contrast(1.15); }
  .tv-ghost-c{ filter: saturate(4) hue-rotate(150deg) contrast(1.15); }

  .tv-glitch-wrap.glitching .hero-photo{ animation: tvTear 0.55s steps(1) 1; }
  .tv-glitch-wrap.glitching .tv-ghost-r{ animation: tvGhostR 0.55s steps(1) 1; }
  .tv-glitch-wrap.glitching .tv-ghost-c{ animation: tvGhostC 0.55s steps(1) 1; }

  @keyframes tvTear{
    0%   { transform: rotate(-5deg) translate(0,0); clip-path: none; }
    8%   { transform: rotate(-5deg) translate(-9px,0); clip-path: inset(4% 0 71% 0); }
    16%  { transform: rotate(-5deg) translate(7px,0); clip-path: inset(38% 0 22% 0); }
    24%  { transform: rotate(-5deg) translate(0,0); clip-path: none; }
    32%  { transform: rotate(-5deg) translate(-6px,0); clip-path: inset(62% 0 6% 0); }
    40%  { transform: rotate(-5deg) translate(8px,0); clip-path: inset(0 0 84% 0); }
    48%  { transform: rotate(-5deg) translate(-3px,0); clip-path: inset(18% 0 55% 0); }
    56%  { transform: rotate(-5deg) translate(0,0); clip-path: none; }
    64%  { transform: rotate(-5deg) translate(5px,0); clip-path: inset(48% 0 15% 0); }
    72%  { transform: rotate(-5deg) translate(0,0); clip-path: none; }
    100% { transform: rotate(-5deg) translate(0,0); clip-path: none; }
  }
  @keyframes tvGhostR{
    0%   { opacity: 0; transform: rotate(-5deg) translate(0,0); }
    8%   { opacity: 0.65; transform: rotate(-5deg) translate(-14px,1px); }
    16%  { opacity: 0.5; transform: rotate(-5deg) translate(-9px,-1px); }
    24%  { opacity: 0; }
    32%  { opacity: 0.6; transform: rotate(-5deg) translate(-11px,0); }
    48%  { opacity: 0.4; transform: rotate(-5deg) translate(-6px,1px); }
    56%  { opacity: 0; }
    64%  { opacity: 0.55; transform: rotate(-5deg) translate(-10px,0); }
    72%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @keyframes tvGhostC{
    0%   { opacity: 0; transform: rotate(-5deg) translate(0,0); }
    8%   { opacity: 0.65; transform: rotate(-5deg) translate(14px,-1px); }
    16%  { opacity: 0.5; transform: rotate(-5deg) translate(9px,1px); }
    24%  { opacity: 0; }
    32%  { opacity: 0.6; transform: rotate(-5deg) translate(11px,0); }
    48%  { opacity: 0.4; transform: rotate(-5deg) translate(6px,-1px); }
    56%  { opacity: 0; }
    64%  { opacity: 0.55; transform: rotate(-5deg) translate(10px,0); }
    72%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce){
    .tv-glitch-wrap.glitching .hero-photo,
    .tv-glitch-wrap.glitching .tv-ghost-r,
    .tv-glitch-wrap.glitching .tv-ghost-c{ animation: none; }
  }
  .hero-inner{
    position: relative;
    padding: 56px 0 64px;
    text-align:center;
  }
  .sign-badge{
    position: absolute;
    right: -12px;
    bottom: -10px;
    z-index: 4;
    display:inline-flex; align-items:center;
    background: var(--ink);
    padding: 9px 18px; border-radius: 4px;
    box-shadow: 4px 5px 0 rgba(0,0,0,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: transform .12s ease;
  }
  .sign-badge:hover{ transform: translateY(-2px); }
  @media (max-width: 640px){
    .sign-badge{ right: -6px; bottom: -8px; padding: 7px 14px; }
  }
  .neon-text{
    font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  .neon-letter{
    display: inline-block;
    color: #fff2e8;
    text-shadow:
      0 0 3px #fff2e8,
      0 0 7px #ff7a59,
      0 0 13px #ff7a59,
      0 0 24px #c7361a,
      0 0 42px #c7361a;
    transition: color .05s linear, text-shadow .05s linear, opacity .05s linear;
  }
  .neon-letter.is-out{
    color: #5c2a20;
    text-shadow: none;
    opacity: 0.55;
  }
  @media (prefers-reduced-motion: reduce){
    .neon-letter{ transition: none; }
  }

  .wordmark{
    /* Swap in the real Hilsfiger webfont here once licensed:
       @font-face{ font-family:'Hilsfiger'; src:url('/fonts/hilsfiger.woff2') format('woff2'); }
       Fraunces is the placeholder stand-in above. */
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.92;
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--ink);
    position: relative;
    z-index: 2;
  }
  /* Logo swap-in: same box/position as the text wordmark above,
     just constrains the image instead of setting type. Remove
     .wordmark-logo (and the <img>) to go back to plain text —
     the base .wordmark rules are untouched either way. */
  .wordmark-logo{
    display: inline-block;
    line-height: 0;
  }
  .wordmark-logo img{
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
  }
  .hero-tag{
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.15rem, 2.6vw, 1.6rem);
    color: var(--ink-soft);
    max-width: 34ch; margin: 22px auto 0;
  }
  /* Tier 2 tagline treatment: worn-typewriter font + light fringe/erosion */
  .glitch-sub{
    position: relative;
    display: block;
    line-height: 1.3;
  }
  .glitch-sub span{ display: block; }
  .glitch-sub .fringe{ position: absolute; top: 0; left: 0; right: 0; }
  .glitch-sub .fringe.r{ color:#ff173c; transform:translate(-3px,1px); opacity:0.75; clip-path:inset(0 0 60% 0); z-index:1; }
  .glitch-sub .fringe.c{ color:#2be8ff; transform:translate(3px,1px); opacity:0.75; clip-path:inset(35% 0 30% 0); z-index:1; }
  .glitch-sub .base{
    position: relative; z-index: 2;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0.9 0.9 0.9 0 -0.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0.9 0.9 0.9 0 -0.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    -webkit-mask-size: 160px 160px; mask-size: 160px 160px;
    -webkit-mask-repeat: repeat; mask-repeat: repeat;
  }
  .hero-tag.glitch-sub{
    font-family: 'Special Elite', var(--display);
    font-style: normal;
    font-weight: 400;
  }
  .release h3.glitch-sub{
    font-family: 'Special Elite', var(--display);
    font-style: normal;
    font-weight: 400;
  }
  .hero-sub{
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 46ch; margin: 18px auto 0;
  }
  .hero-cta{
    display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
    margin-top: 34px;
  }
  .btn{
    display:inline-block;
    font-family: var(--mono); font-size: 0.82rem; letter-spacing:0.06em;
    text-transform: uppercase; text-decoration:none;
    padding: 12px 22px; border-radius: 2px;
    border: 2px solid var(--ink);
    transition: transform .15s ease, background .15s ease, color .15s ease;
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn-solid{ background: var(--ink); color: var(--yellow); }
  .btn-solid:hover{ background: var(--red); border-color: var(--red); color: var(--paper); }
  .btn-ghost{ background: transparent; color: var(--ink); }
  .btn-ghost:hover{ border-color: var(--red); color: var(--red); }

  /* ============ SECTIONS ============ */
  section{ padding: 64px 0; border-bottom: 2px solid var(--ink); }
  section:last-of-type{ border-bottom:none; }

  .eyebrow{
    font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--red);
    margin: 0 0 10px;
  }
  h2.glitch-h2{
    position: relative;
    display: block;
    font-family: 'Bungee', var(--display);
    font-weight: 400;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    line-height: 1.1;
    margin: 0 0 28px;
  }
  h2.glitch-h2 span{ display: block; }
  h2.glitch-h2 .fringe{ position: absolute; top: 0; left: 0; right: 0; }
  h2.glitch-h2 .fringe.r{ color:#ff173c; transform:translate(-4px,1px); opacity:0.9; clip-path:inset(0 0 60% 0); z-index:1; }
  h2.glitch-h2 .fringe.r2{ color:#ff173c; transform:translate(3px,-1px); opacity:0.7; clip-path:inset(65% 0 0 0); z-index:1; }
  h2.glitch-h2 .fringe.c{ color:#2be8ff; transform:translate(4px,1px); opacity:0.9; clip-path:inset(30% 0 35% 0); z-index:1; }
  h2.glitch-h2 .base{
    position: relative; color: var(--ink); z-index: 2;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0.9 0.9 0.9 0 -0.35'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0.9 0.9 0.9 0 -0.35'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    -webkit-mask-size: 180px 180px; mask-size: 180px 180px;
    -webkit-mask-repeat: repeat; mask-repeat: repeat;
  }

  /* Latest release */
  .release{
    display:grid; grid-template-columns: 300px 1fr; gap: 32px; align-items:start;
  }
  .album-embeds{
    border: 3px solid var(--ink);
    box-shadow: 8px 10px 0 rgba(0,0,0,0.35);
    line-height: 0; /* kill the iframe's inline-element gap */
  }
  .album-embeds iframe{ display:block; }
  .release h3{
    font-family: var(--display); font-weight: 600; font-style: italic;
    font-size: 1.5rem; margin: 0 0 8px; color: var(--ink);
  }
  .release p{ color: var(--ink-soft); margin: 0 0 18px; max-width: 52ch; }
  .platform-links{
    display: flex; flex-wrap: wrap; gap: 8px 18px;
    margin-top: 18px;
    font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .platform-links a{
    text-decoration: none; color: var(--ink-soft);
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease, color .15s ease;
  }
  .platform-links a:hover{ color: var(--ink); border-color: var(--red); }

  /* News / specials board */
  .board{ list-style:none; margin:0; padding:0; }
  .board li{
    display:grid; grid-template-columns: 110px 1fr; gap: 20px;
    padding: 18px 0; border-top: 2px dashed var(--ink);
  }
  .board li:last-child{ border-bottom: 2px dashed var(--ink); }
  .board time{
    font-family: var(--mono); font-size: 0.78rem; color: var(--red);
  }
  .board p{ margin:0; color: var(--ink-soft); }
  .board strong{ color: var(--ink); font-weight: 500; }

  /* Gallery strip — pull frames from your own video/photo footage */
  .gallery{
    display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin-top: 28px;
  }
  .gallery .img-slot{ aspect-ratio: 1; }
  @media (max-width: 640px){
    .gallery{ grid-template-columns: repeat(2, 1fr); }
  }

  /* Join / sleep album funnel */
  .join-card{
    border: 2px solid var(--ink);
    padding: 36px;
    display:grid; gap: 18px;
    background: var(--paper);
  }
  .join-card h3{
    font-family: var(--display); font-weight: 900; font-size: 1.6rem; margin:0;
  }
  .join-card p{ color: var(--ink-soft); margin:0; max-width: 58ch; }
  .join-note{
    font-family: var(--mono); font-size: 0.75rem; color: var(--ink-soft);
    border-left: 3px solid var(--red); padding-left: 12px;
  }

  /* Footer */
  footer{ padding: 40px 0 56px; text-align:center; }
  .social-row{
    display:flex; gap: 20px; justify-content:center; flex-wrap:wrap;
    margin-bottom: 22px;
    font-family: var(--mono); font-size: 0.78rem; letter-spacing:0.04em;
  }
  .social-row a{ text-decoration:none; color: var(--ink-soft); }
  .social-row a:hover{ color: var(--red); }
  .fine{ color: var(--ink-soft); font-size: 0.8rem; }

  @media (max-width: 640px){
    .release{ grid-template-columns: 1fr; }
    .album-embeds{ max-width: 340px; margin: 0 auto; }
    .board li{ grid-template-columns: 1fr; gap: 4px; }
  }
