/* ==========================================================================
   NEW ENGLAND NORTHERN SOUL
   styles.css  |  v2.0  |  2026-08-14
   Art direction: black dominant, off-white text, silver secondary, red and
   dark blue from the flags used sparingly. Flat. No gradients, no rounded
   app boxes, no glossy effects. Circle is the repeating graphic device.
   ========================================================================== */

:root {
  --black:      #33333a;   /* page ground: dark metallic grey */
  --ink:        #3d3d46;   /* alternating panel sections */
  --ink-2:      #45454f;
  --panel:      #3d3d46;
  --line:       #56565f;
  --line-2:     #6b6b76;
  --pit:        #292930;   /* footer and form wells */

  --paper:      #ece9e4;   /* off-white, never pure white */
  --paper-dim:  #d8d5cf;
  --silver:     #bcc2c8;
  --silver-lo:  #adb4bc;

  --red:        #c8102e;
  --navy:       #0a3161;

  --font-display: "Oswald", "Trade Gothic Condensed", "Franklin Gothic Condensed",
                  "Arial Narrow", "Haettenschweiler", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--black);
  background-image:
    linear-gradient(157deg, rgba(255,255,255,0.070) 0%, rgba(255,255,255,0.020) 30%, rgba(0,0,0,0.045) 66%, rgba(0,0,0,0.11) 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--paper); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- type ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 0.55em;
  color: var(--paper);
}
h1 { font-size: clamp(2.5rem, 8.4vw, 7rem); }
h2 { font-size: clamp(2.1rem, 5.6vw, 4.2rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); letter-spacing: 0.05em; }
h4 { font-size: 0.86rem; letter-spacing: 0.22em; color: var(--silver); font-weight: 400; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--paper); font-weight: 600; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver-lo);
  margin: 0 0 1.1rem;
}
.eyebrow--red { color: var(--red); }
.lede { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--paper-dim); line-height: 1.55; }
.muted { color: var(--silver); }
.small { font-size: 0.9rem; }
.tiny { font-size: 0.76rem; line-height: 1.6; color: var(--silver-lo); letter-spacing: 0.02em; }
.stack-lines { line-height: 1.28; }

/* the "American music, British movement, back home" statement block */
.statement {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin: 0;
}
.statement span { display: block; }
.statement .dim { color: var(--silver-lo); font-size: 0.62em; line-height: 1.32; padding: 0.35em 0; }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.section { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--hair { border-top: 1px solid var(--line); }
.section--panel {
  background-color: var(--ink);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.040) 0%, rgba(255,255,255,0) 58%);
  border-block: 1px solid var(--line);
}
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.split { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 920px) { .split { grid-template-columns: 1.15fr 0.85fr; align-items: start; } }
@media (min-width: 920px) { .split--even { grid-template-columns: 1fr 1fr; align-items: center; } }
.measure { max-width: 66ch; }
.center { text-align: center; }
.center .measure { margin-inline: auto; }

.rule { height: 1px; width: 100%; background: var(--line); margin: 0; border: 0; }
.tick { width: 60px; height: 3px; background: var(--red); margin-bottom: 1.5rem; }
.center .tick { margin-inline: auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(51,51,58,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.35rem 0; position: relative;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand:hover { text-decoration: none; }
.brand img { width: clamp(72px, 7.2vw, 108px); height: auto; aspect-ratio: 1; flex: none; }
.brand__text {
  font-family: var(--font-display); text-transform: uppercase;
  line-height: 1.0; letter-spacing: 0.16em; font-size: 0.8rem; color: var(--paper);
}
.brand__text span { display: block; color: var(--silver-lo); letter-spacing: 0.22em; font-size: 0.62rem; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 0.84rem; letter-spacing: 0.16em; color: var(--silver);
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--paper); border-bottom-color: var(--red); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--paper); border-bottom-color: var(--paper); }
.nav .btn { margin-left: 0.4rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  color: var(--paper); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.76rem; padding: 0.55rem 0.85rem; cursor: pointer;
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; inset: 100% 0 auto 0; margin-top: 1px;
    background: var(--ink); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.25rem 1.25rem 1.25rem; display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 0.95rem 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
  .nav .btn { margin: 1rem 0 0; justify-content: center; }
}

/* ---------- buttons: flat, square, bordered ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.17em; font-size: 0.85rem; font-weight: 500;
  padding: 0.9rem 1.7rem; border: 1px solid var(--paper);
  background: transparent; color: var(--paper); cursor: pointer;
  transition: background 0.14s linear, color 0.14s linear, border-color 0.14s linear;
}
.btn:hover { background: var(--paper); color: var(--black); text-decoration: none; }
.btn--solid { background: var(--paper); color: var(--black); }
.btn--solid:hover { background: transparent; color: var(--paper); }
.btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.btn--red:hover { background: transparent; color: var(--red); border-color: var(--red); }
.btn--quiet { border-color: var(--line-2); color: var(--silver); }
.btn--quiet:hover { background: transparent; border-color: var(--paper); color: var(--paper); }
.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.74rem; letter-spacing: 0.14em; }
.btn--lg { padding: 1.05rem 2.3rem; font-size: 0.95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.center .btn-row { justify-content: center; }

/* ---------- hero: photograph left, words right ---------- */
.hero {
  position: relative; background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) {
  .hero__split { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); }
}
.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%; height: auto; max-height: 76vh; object-fit: contain;
  filter: grayscale(100%) contrast(1.06);
  border: 1px solid var(--line); background: var(--pit);
}
.hero__figure figcaption {
  margin-top: 0.75rem; font-size: 0.68rem; letter-spacing: 0.07em;
  color: var(--silver-lo);
}
.hero__copy { text-align: left; }
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 5.4rem);
  margin-bottom: 1.25rem;
}
.hero h1 span { display: block; }
.hero__faith {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: clamp(1rem, 1.9vw, 1.45rem);
  color: var(--paper-dim); margin: 0 0 1.4rem; line-height: 1.4;
}
.hero__one-line {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--silver);
  letter-spacing: 0.02em; margin: 0 0 2.2rem;
}
.hero .btn-row { justify-content: flex-start; }

/* interior page header */
.pagehead { border-bottom: 1px solid var(--line); background: var(--ink); }
.pagehead__inner { padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); }

/* ---------- circle device ---------- */
.circ { border-radius: 50%; overflow: hidden; aspect-ratio: 1; }
.circ img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); }

.datecircle {
  width: clamp(180px, 26vw, 250px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--paper); display: grid; place-content: center;
  text-align: center; flex: none; padding: 1rem;
}
.datecircle .dow {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.82rem; color: var(--red);
}
.datecircle .day {
  font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 5rem);
  line-height: 0.9; margin: 0.25rem 0 0.1rem; color: var(--paper);
}
.datecircle .mon {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.95rem; color: var(--paper);
}
.datecircle .yr {
  font-family: var(--font-display); letter-spacing: 0.24em;
  font-size: 0.72rem; color: var(--silver-lo); margin-top: 0.35rem;
}

/* 45 disc */
.disc { display: block; position: relative; }
.disc img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: contain;
  background: #ffffff; border: 1px solid var(--line); padding: 0.6rem;
  transition: border-color 0.15s linear, opacity 0.15s linear;
}
.disc:hover { text-decoration: none; }
.disc:hover img { border-color: var(--paper); }

/* the badge file is already cut to the disc, so no crop is needed */
.logo-round { border-radius: 0; }

.discgrid { display: grid; gap: clamp(1.8rem, 4vw, 3.2rem); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.disccard { text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.disccard .artist {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 1.05rem; color: var(--paper); margin-top: 1.3rem;
}
.disccard .title { font-size: 0.98rem; color: var(--silver); }
.disccard .meta { font-family: var(--font-display); letter-spacing: 0.18em; font-size: 0.7rem; color: var(--silver-lo); text-transform: uppercase; }

/* ---------- cards ---------- */
.card {
  background: var(--ink); border: 1px solid var(--line);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem;
}
.card__num {
  font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.24em;
  color: var(--red); margin-bottom: 0.35rem;
}
.card h3 { margin-bottom: 0.15rem; }
.card p { font-size: 0.94rem; color: var(--silver); }

.tag {
  display: inline-block; font-family: var(--font-display); font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.25rem 0.6rem;
  border: 1px solid var(--line-2); color: var(--silver-lo);
}
.tag--live { color: #7fbe89; border-color: #2f5c36; }
.tag--wip { color: #c9a35e; border-color: #5c4a2a; }
.tag--red { color: #fff; background: var(--red); border-color: var(--red); }

/* ---------- next all-nighter block ---------- */
.nighter { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); }
.nighter__inner {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: 1fr; padding: clamp(3rem, 7vw, 5rem) 0;
}
@media (min-width: 860px) { .nighter__inner { grid-template-columns: auto 1fr; } }
.nighter h2 { margin-bottom: 0.4rem; }
.billing {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin: 1.4rem 0 1.8rem;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.19em; font-size: 0.84rem; color: var(--silver);
}
.billing span { position: relative; }
.billing span::after { content: "\00B7"; position: absolute; right: -0.85rem; color: var(--red); }
.billing span:last-child::after { content: ""; }
.venueline {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.13em; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--paper-dim);
  line-height: 1.4;
}

/* ---------- gallery strip ---------- */
.strip { display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.strip .shot {
  aspect-ratio: 1; background: var(--ink); border: 1px solid var(--line);
  display: grid; place-content: center; overflow: hidden;
}
.strip .shot img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); }
.strip .shot .ph {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.66rem; color: var(--silver-lo); text-align: center; padding: 0.5rem;
}

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 520px; }
th, td { text-align: left; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.73rem; color: var(--silver); background: var(--ink);
}
td { color: var(--paper-dim); }
tbody tr:last-child td { border-bottom: 0; }

/* facts panel */
.facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.facts li {
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.94rem; color: var(--paper-dim);
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: baseline;
}
.facts li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); display: block;
}

/* ---------- membership price ---------- */
.price { border: 1px solid var(--paper); padding: 2.2rem 1.9rem; }
.price__amount {
  font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 2.9rem);
  line-height: 0.95; color: var(--paper); margin: 0.3rem 0 0.2rem;
}
.price__unit {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--silver-lo);
}
.ticklist { list-style: none; margin: 1.5rem 0; padding: 0; }
.ticklist li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.7rem;
  font-size: 0.95rem; color: var(--paper-dim);
}
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
}

/* ---------- forms ---------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.2em; color: var(--silver);
}
.field input, .field select, .field textarea {
  background: var(--pit); border: 1px solid var(--line-2);
  color: var(--paper); font-family: var(--font-body); font-size: 1rem;
  padding: 0.78rem 0.9rem; width: 100%; border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--paper);
}
.field textarea { min-height: 150px; resize: vertical; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- callout ---------- */
.callout { border-left: 3px solid var(--red); background: var(--ink); padding: 1.35rem 1.5rem; }
.callout--navy { border-left-color: #2f5286; }
.callout h4 { margin-bottom: 0.5rem; color: var(--paper); letter-spacing: 0.18em; }
.callout p { font-size: 0.94rem; color: var(--silver); }

/* ---------- status list ---------- */
.status { list-style: none; margin: 0; padding: 0; }
.status li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; color: var(--paper-dim);
}
.status li:last-child { border-bottom: 0; }
.status .dot { width: 11px; height: 11px; border-radius: 50%; margin-top: 0.5em; background: var(--line-2); }
.status .dot--done { background: #4fae60; }
.status .dot--now { background: var(--red); }
.status .dot--next { background: #3f5f8f; }

/* ---------- faq ---------- */
details.faq { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
details.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.07em; font-size: 1.05rem; color: var(--paper);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; line-height: 1; }
details.faq[open] summary::after { content: "\2013"; }
details.faq p { margin-top: 0.85rem; color: var(--silver); font-size: 0.95rem; }

/* ---------- footer: back of a record sleeve ---------- */
.site-footer { background: var(--pit); border-top: 1px solid var(--line); padding: clamp(3rem, 7vw, 5rem) 0 2.2rem; }
.footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .footer-top { grid-template-columns: auto 1fr; gap: 4rem; } }
.footer-badge { width: 128px; filter: grayscale(100%) contrast(1.05) brightness(0.95); }
.footer-sleeve h3 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); letter-spacing: 0.04em; margin-bottom: 0.3rem;
}
.footer-sleeve .faith {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.32em; font-size: 0.86rem; color: var(--red); margin-bottom: 0.4rem;
}
.footer-sleeve .est {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.32em; font-size: 0.72rem; color: var(--silver-lo);
}
.footer-cols { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 3rem; }
.site-footer h4 { color: var(--silver); letter-spacing: 0.24em; font-size: 0.72rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: var(--silver); font-size: 0.92rem; }
.site-footer a:hover { color: var(--paper); }
.footer-rights { flex-basis: 100%; margin: 0.2rem 0 0; font-size: 0.76rem; color: var(--silver-lo); line-height: 1.6; }
.footer-rights a { font-size: inherit; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between;
  font-size: 0.76rem; color: var(--silver-lo); letter-spacing: 0.03em;
}

/* ---------- misc ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--paper); color: #000; padding: 0.7rem 1.2rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

/* ==========================================================================
   TOP 500 CHART  (added v1.2)
   ========================================================================== */
.chart-tools {
  display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; align-items: center;
  margin-bottom: 1.6rem;
}
.chart-tools .field { flex: 1 1 260px; max-width: 380px; }
.chart-count {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.72rem; color: var(--silver-lo);
}
.chart { border-top: 1px solid var(--line); }
.chart__row {
  display: grid; grid-template-columns: 3.2rem 1fr auto; gap: 0.6rem 1.2rem;
  padding: 0.72rem 0.5rem; border-bottom: 1px solid var(--line);
  align-items: baseline; color: inherit;
}
a.chart__row:hover { text-decoration: none; background: rgba(255,255,255,0.045); }
a.chart__row:hover .chart__artist { color: var(--paper); }
.chart__row[hidden] { display: none; }
.chart__rank {
  font-family: var(--font-display); font-size: 0.92rem; letter-spacing: 0.08em;
  color: var(--silver-lo); font-variant-numeric: tabular-nums;
}
.chart__row--top .chart__rank { color: var(--paper); }
.chart__names { min-width: 0; }
.chart__artist {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.07em; font-size: 1.02rem; color: var(--paper-dim); line-height: 1.2;
}
.chart__title { display: block; font-size: 0.94rem; color: var(--silver); line-height: 1.35; }
.chart__cta {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.64rem; color: var(--paper); white-space: nowrap;
}
.chart__soon {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.62rem; color: var(--silver-lo); white-space: nowrap;
}
.chart-empty { padding: 2.5rem 0; color: var(--silver-lo); }
@media (max-width: 620px) {
  .chart__row { grid-template-columns: 2.5rem 1fr; }
  .chart__cta, .chart__soon { grid-column: 2; }
}

/* the book behind the list */
.bookcard {
  display: grid; gap: 1.6rem; align-items: center; grid-template-columns: 1fr;
  border: 1px solid var(--line); background: var(--ink); padding: 1.8rem;
}
@media (min-width: 720px) { .bookcard { grid-template-columns: auto 1fr; } }
.bookcard__spine {
  width: 132px; aspect-ratio: 2/3; border: 1px solid var(--line-2); background: var(--pit);
  display: grid; place-content: center; text-align: center; padding: 0.9rem;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.15;
}
.bookcard__spine b { display: block; font-size: 1.5rem; font-weight: 500; color: var(--paper); }
.bookcard__spine span { display: block; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--silver-lo); margin-top: 0.5rem; }

/* ==========================================================================
   ON-PAGE PLAYER  (added v1.8)
   A facade: no YouTube code loads until the visitor clicks.
   ========================================================================== */
.player { border: 1px solid var(--line-2); background: var(--pit); }
.player__stage {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; cursor: pointer; background: var(--pit);
  transition: background 0.15s linear;
}
.player__stage:hover, .player__stage:focus-visible { background: #24242a; outline: none; }
.player__btn {
  width: clamp(64px, 9vw, 88px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--paper); display: grid; place-content: center;
  transition: transform 0.15s ease, background 0.15s linear;
}
.player__btn::before {
  content: ""; display: block;
  border-left: 22px solid var(--paper);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 7px;
}
.player__stage:hover .player__btn { transform: scale(1.06); background: rgba(255,255,255,0.06); }
.player__label {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.72rem; color: var(--silver);
}
.player iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
@media (prefers-reduced-motion: reduce) { .player__stage:hover .player__btn { transform: none; } }

/* ==========================================================================
   HERO FILM
   The 1977 Wigan Casino footage runs as a silent, looping band above the
   wordmark. Six sections play in order, then repeat. Sound is off until
   the visitor asks for it: no browser autoplays audio.
   ========================================================================== */

.hero--film { padding-top: 0; }

.ns-loop {
  position: relative;
  width: 100%;
  height: clamp(340px, 62vh, 620px);
  overflow: hidden;
  background: var(--pit);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

/* The player is 16:9. Scaling it past the frame on the short axis fills
   the band edge to edge without letterboxing, the same result object-fit
   cover gives an image. An iframe ignores object-fit, so it is done here. */
.ns-loop__frame,
.ns-loop iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;          /* 16/9 of the viewport height */
  min-width: 100%;
  height: 56.25vw;          /* 9/16 of the viewport width */
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.02);
  border: 0;
  pointer-events: none;
}

.ns-loop__frame { opacity: 0; transition: opacity 600ms ease; }
.ns-loop.is-live .ns-loop__frame { opacity: 1; }

/* Grades the footage into the site palette and keeps the wordmark legible
   against a moving picture. */
.ns-loop__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(41,41,48,.42) 0%, rgba(41,41,48,0) 30%,
                    rgba(41,41,48,0) 62%, rgba(41,41,48,.86) 100%);
}

.ns-loop__shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  appearance: none;
}

.ns-loop__shield.is-prompt { background: rgba(41,41,48,.55); cursor: pointer; }

.ns-loop__shield.is-prompt::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 26px 0 26px 44px;
  border-color: transparent transparent transparent var(--paper);
}

.ns-loop__sound {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.05rem .6rem .85rem;
  border: 1px solid var(--line-2);
  background: rgba(41,41,48,.72);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 400ms ease, background 160ms ease, border-color 160ms ease;
}

.ns-loop.is-live .ns-loop__sound { opacity: 1; }
.ns-loop__sound:hover { background: var(--red); border-color: var(--red); }
.ns-loop__sound:focus-visible { outline: 2px solid var(--paper); outline-offset: 2px; }

.ns-loop__ico {
  width: 9px; height: 11px;
  background: currentColor;
  clip-path: polygon(0 32%, 38% 32%, 100% 0, 100% 100%, 38% 68%, 0 68%);
}

.ns-loop__sound[aria-pressed="true"] .ns-loop__ico { box-shadow: 0 0 0 2px currentColor inset; }

.ns-loop__credit {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  margin: 0;
  font-size: .66rem;
  letter-spacing: .09em;
  color: var(--silver-lo);
  opacity: 0;
  transition: opacity 400ms ease;
}

.ns-loop.is-live .ns-loop__credit { opacity: 1; }

#ns-loop-audio { display: none; }

.hero__copy--film { text-align: left; max-width: 46rem; }

@media (min-width: 940px) {
  .hero__copy--film { text-align: center; margin-inline: auto; }
  .hero--film .btn-row { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ns-loop__frame { transition: none; }
}

/* ---------- the floor: still photograph, now below the film ---------- */
.floor-photo { margin: 0; text-align: center; }

.floor-photo img {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: grayscale(100%) contrast(1.06);
  border: 1px solid var(--line);
  background: var(--pit);
  margin-inline: auto;   /* the reset sets img to display:block */
}

.floor-photo figcaption {
  margin-top: .75rem;
  font-size: .68rem;
  letter-spacing: .07em;
  color: var(--silver-lo);
}

/* On a narrow screen the cover crop would show only the middle quarter of
   the frame and cut the dancers at the edges. Below 700px the band takes
   the full 16:9 picture instead. */
@media (max-width: 699px) {
  .ns-loop { height: auto; aspect-ratio: 16 / 9; }
  .ns-loop__frame,
  .ns-loop iframe {
    width: 100%; height: 100%;
    min-width: 0; min-height: 0;
  }
}


/* ==========================================================================
   THE TOP TEN
   The ten records at the head of the Top 500, each with a review link and a
   way to hear it. Built on .discgrid, so the covers keep the same rhythm as
   the rest of the site.
   ========================================================================== */

.topten__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* the cover itself stays a link where a full page exists, a plain span
   where the review lives only on Substack */
/* Every disc sits on the same white square. The two photographed sleeves
   already carry a white field, the Frank Wilson artwork is a transparent
   PNG and the drawn labels have transparent corners, so a white background
   plus contain gives all ten an identical treatment with nothing cropped. */
.topten__item .disc img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  padding: 0.8rem;
  border: 1px solid var(--line);
}

.topten__item .disc:hover img { border-color: var(--paper); }

.topten__item .artist {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .16em; font-size: 1.05rem; color: var(--paper); margin-top: 1.3rem;
}

.topten__item .artist a { color: inherit; text-decoration: none; }
.topten__item .artist a:hover { text-decoration: underline; }

.topten__item .title { font-size: .98rem; color: var(--silver); margin-top: .35rem; }

.topten__item .meta {
  font-family: var(--font-display); letter-spacing: .18em; font-size: .7rem;
  color: var(--silver-lo); text-transform: uppercase; margin-top: .45rem;
}

/* pinned to the bottom so the two buttons line up across the grid whatever
   the length of the record title above them */
.topten__links {
  display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center;
  margin-top: auto; padding-top: 1.1rem;
}


/* ---------- book cover, replacing the drawn spine ---------- */
/* The bookcard column is auto-sized, so the cover carries an explicit width
   the way the drawn spine it replaces did. A percentage here collapses the
   column to nothing and the image never loads. */
.bookcard__cover { display: block; align-self: start; width: 150px; max-width: 100%; }
.bookcard__cover img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line-2); background: var(--pit);
}
.bookcard__cover:hover img { border-color: var(--paper); }

/* ---------- photograph inside a story column ---------- */
.storyshot { margin: 2.2rem 0 0; }
.storyshot img {
  width: 100%; height: auto;
  filter: grayscale(100%) contrast(1.04);
  border: 1px solid var(--line); background: var(--pit);
}
.storyshot figcaption {
  margin-top: .7rem; font-size: .68rem; letter-spacing: .07em; color: var(--silver-lo);
}


/* The archive photographs run monochrome. This one is a present-day room,
   and the section it sits in argues that the scene is alive now, so it
   keeps its colour rather than being aged to match. */
.storyshot--now img { filter: none; max-width: 460px; }


/* ---------- founding membership: struck price, free legend ---------- */
.price__amount s { text-decoration-thickness: 3px; opacity: .55; }

.price__free {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .1em; line-height: 1.25;
  font-size: clamp(.92rem, 1.5vw, 1.08rem);
  color: var(--red); margin: .35rem 0 .7rem;
}

.joinform { margin-top: 1.6rem; }
.joinform[hidden] { display: none; }


/* The circle carries the club badge while no date is fixed. The badge
   already has its own metal rim, so the drawn border comes off. */
.datecircle--badge { border: 0; padding: 0; overflow: hidden; }
.datecircle--badge img { width: 100%; height: 100%; object-fit: contain; display: block; }


/* ==========================================================================
   ABOUT ME
   Words on the left, portrait on the right. The headshot is cut out and
   feathered, so it sits on the page ground rather than in a box.
   ========================================================================== */
.aboutme { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }

@media (min-width: 860px) {
  .aboutme { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }
  .aboutme__portrait { margin-top: 1.5rem; }
}

.aboutme__text p { max-width: 40rem; }

.aboutme__portrait img {
  width: 100%; max-width: 380px; height: auto; display: block;
  margin-inline: auto;
}

@media (min-width: 860px) {
  .aboutme__portrait img { margin-inline: 0 auto; }
}


/* ==========================================================================
   CLUB BADGE ARCHIVE
   Every badge gets the same square white tile whatever the source image
   measures, so the grid reads as a collection rather than a scrapbook.
   ========================================================================== */
.badgegrid {
  display: grid;
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.badge { display: flex; flex-direction: column; }

.badge__shot {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 1.4rem;
  margin-bottom: 1.1rem;
}

.badge__shot img { max-width: 100%; max-height: 100%; width: auto; height: auto; }

.badge__club {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .18em; font-size: .66rem; color: var(--red);
}

.badge__title {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.15rem; color: var(--paper);
  margin: .35rem 0 .2rem; line-height: 1.15;
}

.badge__date {
  font-family: var(--font-display); letter-spacing: .16em;
  font-size: .72rem; color: var(--paper-dim);
}

.badge__notes { font-size: .88rem; color: var(--silver); margin: .7rem 0 0; }

/* pinned to the bottom so the status lines up across every column */
.badge__status {
  margin-top: auto; padding-top: .9rem;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .12em; font-size: .62rem; color: var(--silver-lo);
}

/* ==========================================================================
   THE DJS and THE NEW NORTHERN 50  (added with the New Northern section)
   ========================================================================== */
.chart__acts { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: flex-end; }
.chart__listen {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.62rem; color: var(--paper);
  border: 1px solid var(--line-2); padding: 0.28rem 0.6rem; white-space: nowrap;
}
.chart__listen:hover { text-decoration: none; border-color: var(--paper); background: rgba(255,255,255,0.06); }

.djgrid { display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.dj {
  background: var(--ink); border: 1px solid var(--line);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem;
}
.section--panel .dj { background: var(--black); }
.dj__portrait {
  width: 104px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--pit);
  display: grid; place-content: center; margin-bottom: 0.4rem;
  font-family: var(--font-display); letter-spacing: 0.1em;
  font-size: 1.3rem; color: var(--silver-lo);
}
.dj__portrait img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; filter: grayscale(100%); }
.dj h3 { margin: 0; letter-spacing: 0.04em; }
.dj p { font-size: 0.95rem; color: var(--silver); margin: 0; }
.dj .btn-row { margin-top: auto; padding-top: 0.9rem; }

.nn__row { align-items: start; padding: 1rem 0.5rem; }
.nn__meta { display: block; margin-top: 0.45rem; font-size: 0.78rem; line-height: 1.5; color: var(--silver-lo); }
.nn__meta b { color: var(--silver); font-weight: 400; }

.listen {
  border: 1px solid var(--line-2); background: var(--pit);
  padding: 1.4rem 1.5rem; display: grid; gap: 1rem;
}
.listen h4 { margin: 0; }
.listen iframe { display: block; width: 100%; border: 0; }

/* the nav carries nine items now, so tighten it just before it wraps */
@media (min-width: 981px) and (max-width: 1300px) {
  .nav { gap: 1rem; }
  .nav a { font-size: 0.76rem; letter-spacing: 0.11em; }
}

/* ==========================================================================
   WATCH buttons: the 114 Top 500 sides that never reached Spotify
   ========================================================================== */
.chart__watch { color: var(--silver); border-color: var(--line); }
.chart__watch:hover { color: var(--paper); border-color: var(--paper); }
#chart-hear { color: var(--silver-lo); }
.callout--plain { border-left-color: var(--silver-lo); }
.callout--plain p:last-of-type { margin-bottom: 0; }

/* ==========================================================================
   FASHIONS: the plate catalogue, the rights chips and the buy-the-look grid
   ========================================================================== */

/* counts above the gallery */
.statgrid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 1.4rem 1.2rem; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--paper); line-height: 1; }
.stat span { display: block; margin-top: 0.5rem; font-size: 0.78rem; color: var(--silver-lo); text-transform: uppercase; letter-spacing: 0.14em; }

/* the catalogue itself */
.plategrid { display: grid; gap: clamp(1.4rem, 2.6vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.plate { margin: 0; background: var(--ink); border: 1px solid var(--line); display: flex; flex-direction: column; }
.plate__frame {
  position: relative; aspect-ratio: 4 / 5; background: var(--pit);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.plate__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plate--empty .plate__frame {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 12px, transparent 12px 24px);
}
.plate__num {
  font-family: var(--font-display); font-weight: 300; font-size: 4.2rem; line-height: 1;
  color: var(--line-2); letter-spacing: 0.02em;
}
.plate__note {
  margin-top: 0.6rem; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.56rem; color: var(--silver-lo);
}
.plate figcaption { padding: 1.2rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plate figcaption h3 { font-size: 0.98rem; letter-spacing: 0.06em; margin: 0; color: var(--paper); }
.plate__look { font-size: 0.9rem; color: var(--silver); margin: 0; }
.plate__credit { font-size: 0.78rem; color: var(--silver-lo); margin: 0; font-style: italic; }
.plate__meta { margin: 0.15rem 0 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.plate figcaption .chart__listen { align-self: flex-start; margin-top: auto; }

/* rights status chips */
.rights {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.13em; font-size: 0.54rem; padding: 0.24rem 0.5rem;
  border: 1px solid var(--line-2); color: var(--silver);
}
.rights--traced { border-color: #3f6b4a; color: #9dc4a6; }
.rights--untraced { border-color: #7a6a3a; color: #ceba85; }
.rights--archive { border-color: #2f5286; color: #9db6dd; }
.rights--conf { border-style: dashed; color: var(--silver-lo); }
.plate__first {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.13em; font-size: 0.54rem; padding: 0.24rem 0.5rem;
  background: var(--red); color: #fff;
}

/* buy the look */
.kitgrid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1.6rem; }
.kit { background: var(--ink); border: 1px solid var(--line); padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.kit h3 { font-size: 1rem; letter-spacing: 0.06em; margin: 0; }
.kit__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--paper); letter-spacing: 0.04em; }
.kit p { font-size: 0.9rem; color: var(--silver); margin: 0; }
.kit .btn-row { margin-top: auto; padding-top: 0.5rem; }

@media (max-width: 620px) {
  .plate__num { font-size: 3.2rem; }
  .stat b { font-size: 1.9rem; }
}

/* ten nav items now, so tighten a little further before the wrap */
@media (min-width: 981px) and (max-width: 1360px) {
  .nav { gap: 0.85rem; }
  .nav a { font-size: 0.73rem; letter-spacing: 0.09em; }
}

/* Grid items default to min-width:auto, so one long unbreakable string inside
   a .split column stops the column shrinking and pushes the whole page wider
   than the phone. This showed up on the seven record pages at 390px. */
.split > *, .discgrid > *, .bdggrid > *, .kitgrid > *, .djgrid > * { min-width: 0; }
.split p, .split li, .split h2, .split h3, .split h4 { overflow-wrap: anywhere; }
