/* ==========================================================================
   STATIC FUZZ RECORDS — Swiss-brutalist spec sheet
   Strict monochrome: #000 and #fff only. No accents, no radii, no shadows,
   no gradients. Hairline 1px grid throughout. Hover = full invert.
   ========================================================================== */

:root {
  --ink: #fff;
  --paper: #000;
  --hairline: 1px solid #fff;
  --hairline-inv: 1px solid #000;
  --pad: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  border-left: var(--hairline);
  border-right: var(--hairline);
  max-width: 84rem;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

a:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  background: var(--ink);
  color: var(--paper);
}

.section--invert :focus-visible {
  outline-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* --- Utilities ----------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* --- Header --------------------------------------------------------------- */

.site-header {
  border-bottom: var(--hairline);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}

.header-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem var(--pad);
  border-right: var(--hairline);
  text-decoration: none;
}

.logo:hover {
  background: var(--ink);
  color: var(--paper);
}

.logo-mark {
  display: block;
  flex: none;
}

/* On invert, flip the mark's inner stroke so it stays legible */
.logo:hover .logo-mark path,
.logo:focus-visible .logo-mark path {
  stroke: var(--ink);
}

.logo-type {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: flex-end;
}

/* Never rendered at desktop widths; only the mobile media query below
   (and only with JS, html.js) ever shows it. */
.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper);
  color: var(--ink);
  border: 0;
  border-left: var(--hairline);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--ink);
  color: var(--paper);
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: stretch;
}

.nav-list li {
  display: flex;
  border-left: var(--hairline);
}

.nav-list a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-list a:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Mobile nav: stacked by default (works without JS, no button shown).
   With JS (html.js) the list becomes a full-width inverted curtain that
   drops down from under the header. */
@media (max-width: 47.99rem) {
  .header-grid {
    display: block;
  }

  .logo {
    border-right: 0;
    border-bottom: var(--hairline);
    justify-content: flex-start;
  }

  .site-nav {
    display: block;
  }

  .nav-toggle {
    width: 100%;
    border-left: 0;
    text-align: left;
  }

  .js .nav-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    border-left: 0;
    border-top: var(--hairline);
  }

  .nav-list a {
    width: 100%;
    padding: 0.85rem var(--pad);
  }

  /* Curtain panel: inverted (white paper, black ink), pinned under the
     sticky header. Closed unless JS sets data-collapsed="false". */
  .js .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--paper);
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
  }

  .js .nav-list li {
    border-top: var(--hairline-inv);
  }

  .js .nav-list a:hover,
  .js .nav-list a:active {
    background: var(--paper);
    color: var(--ink);
  }

  .js .nav-list a:focus-visible {
    outline-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
  }

  .js .nav-list[data-collapsed="false"] {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }

  /* The numbered links snap in from the left, staggered. Reduced motion
     gets an instant open/close: no transitions, no transforms. */
  @media (prefers-reduced-motion: no-preference) {
    .js .nav-list {
      transition: clip-path 0.28s cubic-bezier(0.85, 0, 0.15, 1),
        visibility 0s linear 0.28s;
    }

    .js .nav-list[data-collapsed="false"] {
      transition: clip-path 0.28s cubic-bezier(0.85, 0, 0.15, 1),
        visibility 0s;
    }

    .js .nav-list li {
      opacity: 0;
      transform: translateX(-1.25rem);
      transition: opacity 0.16s linear, transform 0.2s cubic-bezier(0.85, 0, 0.15, 1);
    }

    .js .nav-list[data-collapsed="false"] li {
      opacity: 1;
      transform: none;
    }

    .js .nav-list[data-collapsed="false"] li:nth-child(1) { transition-delay: 0.05s; }
    .js .nav-list[data-collapsed="false"] li:nth-child(2) { transition-delay: 0.09s; }
    .js .nav-list[data-collapsed="false"] li:nth-child(3) { transition-delay: 0.13s; }
    .js .nav-list[data-collapsed="false"] li:nth-child(4) { transition-delay: 0.17s; }
    .js .nav-list[data-collapsed="false"] li:nth-child(5) { transition-delay: 0.21s; }
    .js .nav-list[data-collapsed="false"] li:nth-child(6) { transition-delay: 0.25s; }
  }
}

/* --- Hero ------------------------------------------------------------------ */

.hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border-bottom: var(--hairline);
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.82;
  padding: var(--pad);
  border-right: var(--hairline);
}

.hero-meta {
  display: flex;
  flex-direction: column;
}

/* Meaningful inline SVG: the static-burst waveform mark */
.hero-glyph {
  display: block;
  width: 100%;
  height: 4rem;
  flex: none;
  padding: 0.65rem var(--pad);
  border-bottom: var(--hairline);
  color: var(--ink);
}

.hero-statement {
  padding: var(--pad);
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: var(--hairline);
  flex: 1;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-facts .fact {
  padding: 1rem var(--pad);
  border-bottom: var(--hairline);
}

.hero-facts .fact:nth-child(odd) {
  border-right: var(--hairline);
}

.hero-facts .fact:nth-last-child(-n+2) {
  border-bottom: 0;
}

.hero-facts dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.hero-facts dd {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 63.99rem) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    border-right: 0;
    border-bottom: var(--hairline);
  }
}

@media (max-width: 35.99rem) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts .fact:nth-child(odd) {
    border-right: 0;
  }

  .hero-facts .fact:nth-last-child(-n+2) {
    border-bottom: var(--hairline);
  }

  .hero-facts .fact:last-child {
    border-bottom: 0;
  }
}

/* --- Section scaffolding ---------------------------------------------------- */

.section {
  border-bottom: var(--hairline);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--pad);
  padding: var(--pad);
  border-bottom: var(--hairline);
}

.section-num {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.section-note {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 22rem;
  text-align: right;
}

.section h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

@media (max-width: 47.99rem) {
  .section-head {
    grid-template-columns: auto 1fr;
  }

  .section-note {
    grid-column: 1 / -1;
    text-align: left;
    max-width: none;
  }
}

/* Inverted sections: white paper, black ink */
.section--invert {
  background: var(--ink);
  color: var(--paper);
}

.section--invert .section-head,
.section--invert .rule,
.section--invert .visit-block {
  border-color: var(--paper);
}

.section--invert a:hover {
  background: var(--paper);
  color: var(--ink);
}

.section--invert ::selection {
  background: var(--paper);
  color: var(--ink);
}

/* --- 01 Roster --------------------------------------------------------------- */

.roster-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.artist {
  padding: var(--pad);
  border-right: var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.artist:last-child {
  border-right: 0;
}

.artist:hover {
  background: var(--ink);
  color: var(--paper);
}

.artist-index {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.artist-genre {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.3rem 0;
  margin-bottom: 0.35rem;
}

.artist p:last-child {
  font-size: 0.9rem;
}

@media (max-width: 63.99rem) {
  .roster-grid {
    grid-template-columns: 1fr;
  }

  .artist {
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .artist:last-child {
    border-bottom: 0;
  }
}

/* --- 02 Catalog ---------------------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.catalog-table th,
.catalog-table td {
  text-align: left;
  padding: 0.85rem var(--pad);
  border-bottom: var(--hairline);
  font-weight: 500;
}

.catalog-table thead th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.catalog-table tbody th {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.catalog-table tbody tr:last-child th,
.catalog-table tbody tr:last-child td {
  border-bottom: 0;
}

.catalog-table tbody tr:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 47.99rem) {
  .catalog-table th,
  .catalog-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* --- 03 Demos -------------------------------------------------------------------- */

.rules-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: rule;
}

.rule {
  counter-increment: rule;
  padding: var(--pad);
  border-right: var(--hairline-inv);
}

.rule:last-child {
  border-right: 0;
}

.rule::before {
  content: counter(rule, decimal-leading-zero);
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.rule p {
  font-size: 0.95rem;
}

.licensing-line {
  border-top: var(--hairline-inv);
  padding: var(--pad);
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 63.99rem) {
  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rule {
    border-bottom: var(--hairline-inv);
  }

  .rule:nth-child(even) {
    border-right: 0;
  }

  .rule:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 35.99rem) {
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .rule {
    border-right: 0;
    border-bottom: var(--hairline-inv);
  }

  .rule:nth-last-child(-n+2) {
    border-bottom: var(--hairline-inv);
  }

  .rule:last-child {
    border-bottom: 0;
  }
}

/* --- 04 About ----------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-lede {
  padding: var(--pad);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  border-right: var(--hairline);
}

.about-cols {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 63.99rem) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-lede {
    border-right: 0;
    border-bottom: var(--hairline);
  }
}

/* --- 05 FAQ ----------------------------------------------------------------------------- */

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.faq-item {
  padding: var(--pad);
  border-bottom: var(--hairline);
}

.faq-item:nth-child(odd) {
  border-right: var(--hairline);
}

.faq-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.faq-item dt {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.faq-item dd p {
  font-size: 0.95rem;
}

@media (max-width: 63.99rem) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item:nth-child(odd) {
    border-right: 0;
  }

  .faq-item:nth-last-child(-n+2) {
    border-bottom: var(--hairline);
  }

  .faq-item:last-child {
    border-bottom: 0;
  }
}

/* --- 06 Visit ------------------------------------------------------------------------------ */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.visit-block {
  padding: var(--pad);
  border-right: var(--hairline-inv);
}

.visit-block:last-child {
  border-right: 0;
}

.visit-block p,
.visit-block td,
.visit-block th {
  font-size: 0.95rem;
  font-weight: 500;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.4rem 0;
  border-bottom: 1px solid currentColor;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table th {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

@media (max-width: 63.99rem) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-block {
    border-bottom: var(--hairline-inv);
  }

  .visit-block:nth-child(even) {
    border-right: 0;
  }

  .visit-block:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 35.99rem) {
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-block {
    border-right: 0;
    border-bottom: var(--hairline-inv);
  }

  .visit-block:nth-last-child(-n+2) {
    border-bottom: var(--hairline-inv);
  }

  .visit-block:last-child {
    border-bottom: 0;
  }
}

/* --- Footer ------------------------------------------------------------------------------------ */

.site-footer {
  border-bottom: var(--hairline);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--pad);
  align-items: start;
  padding: var(--pad);
}

.footer-mark {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.footer-grid p {
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-fine {
  grid-column: 1 / -1;
  border-top: var(--hairline);
  padding-top: 1rem;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 47.99rem) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Social links (fictional .example profiles) */
.social-links { display: flex; gap: 1.2rem; list-style: none; justify-content: center; padding: 0 1.5rem; margin: 1.5rem auto 0; }
.social-links a { display: inline-flex; color: inherit; opacity: 0.85; }
.social-links a:hover, .social-links a:focus-visible { opacity: 1; }
.social-links svg { width: 1.3rem; height: 1.3rem; }

/* Anchor targets clear the sticky header instead of sliding under it */
[id] {
  scroll-margin-top: 130px;
}
