/* ============================================
   B-SIDE / page stylesheet
   self-contained — does not load main.css
   the record-label world: black jacket, cream
   paper, pressing-plant type. analog, not neon.
   ============================================ */

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

:root {
  --ink: #0a0a0a;
  --paper: #ece7dd;
  --paper-dim: #cfcabe;
  --paper-ghost: rgba(236, 231, 221, 0.16);
  --warm-gray: #8a867c;
  --green: #4be36a;
  --green-paper: #1f7a3d;
}

html, body { height: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  opacity: 0;
  animation: page-load 0.5s ease forwards;
}
@keyframes page-load {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================
   TOP BAR — sleeve back print
   ========================================= */
.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 34px;
  border-bottom: 1px solid rgba(236, 231, 221, 0.08);
}
.bar-back {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}
.bar-back:hover { color: var(--paper); }
.bar-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--warm-gray);
}

/* =========================================
   HERO — wordmark + spinning pressing label
   ========================================= */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 34px 72px;
}
.wordmark {
  font-size: clamp(58px, 9vw, 110px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--paper);
}
.spindle {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  border: 0.06em solid var(--paper);
  border-radius: 50%;
  margin: 0 0.12em;
}
.tagline {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--paper-dim);
}
.sub {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--warm-gray);
}
.hero-label { display: flex; justify-content: center; }
.label-spin {
  width: min(340px, 72vw);
  animation: spin 18s linear infinite;
}
.label-spin svg { display: block; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* label print (svg text) */
.rim { font-family: 'DM Mono', monospace; fill: #6a655c; }
.lbl-mark { font-family: 'DM Mono', monospace; font-weight: 500; fill: var(--ink); }
.lbl-64 { font-family: 'Rubik', sans-serif; font-weight: 900; fill: var(--ink); }
.lbl-cat { font-family: 'DM Mono', monospace; font-weight: 500; fill: var(--ink); }
.lbl-status { font-family: 'DM Mono', monospace; fill: var(--green-paper); }
.lbl-dim { font-family: 'DM Mono', monospace; fill: #6a655c; }

/* =========================================
   CONTENT BLOCKS — liner notes
   ========================================= */
.block {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 34px;
  border-top: 1px solid rgba(236, 231, 221, 0.08);
}
.side-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--warm-gray);
  margin-bottom: 34px;
}
.side-a { color: var(--paper); }
.side-b { color: var(--green); }
.copy p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.4px;
  color: var(--paper-dim);
  max-width: 640px;
}
.copy p + p { margin-top: 22px; }

/* =========================================
   CATALOG — pressing list
   ========================================= */
.catalog { border-top: 1px solid rgba(236, 231, 221, 0.14); }
.cat-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(236, 231, 221, 0.14);
  font-size: 12px;
  letter-spacing: 2px;
}
.cat-num { color: var(--paper); font-weight: 500; }
.cat-artist { color: var(--paper-dim); }
.cat-status { color: var(--warm-gray); font-size: 11px; }

/* =========================================
   SUBMISSION FORM
   ========================================= */
.submit-form {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}
.field { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.field-row { display: flex; gap: 24px; }
.field label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--warm-gray);
}
.field input,
.field textarea {
  background: transparent;
  border: 1px solid rgba(236, 231, 221, 0.18);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 13px 14px;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.field textarea { resize: vertical; line-height: 1.8; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(236, 231, 221, 0.25); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--paper);
}
.hint {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #6f6b62;
  line-height: 1.7;
}
.submit-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 14px 30px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.submit-btn:hover {
  background: var(--paper);
  color: var(--ink);
}
.form-error {
  font-size: 11px;
  letter-spacing: 2px;
  color: #e24b4a;
}
.form-note {
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.8;
  color: var(--green);
}
.form-alt {
  font-size: 10px;
  letter-spacing: 2px;
  color: #6f6b62;
}
.form-alt a { color: var(--warm-gray); text-decoration: none; border-bottom: 1px solid rgba(236, 231, 221, 0.2); }
.form-alt a:hover { color: var(--paper); }

/* submission confirmation (replaces the form on success) */
.submit-done {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}
.submit-done span:first-child {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--green);
}
.submit-done-sub {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--paper-dim);
}

/* =========================================
   SUBMIT — CTA link, brief doc, checkbox
   ========================================= */
.brief-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 38px;
  background: transparent;
  border: 1px solid rgba(236, 231, 221, 0.25);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 14px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.brief-link:hover { border-color: var(--paper); background: rgba(236, 231, 221, 0.04); }
.brief-link-disc {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
  flex: none;
}
.brief-link-disc::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.brief-link:hover .brief-link-disc { animation: spin 1.8s linear infinite; }
.brief-link-arrow { color: var(--green); }

/* confirm checkbox — a small record that presses when ticked */
.confirm {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: var(--paper-dim);
  user-select: none;
}
.confirm input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.confirm-box {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(236, 231, 221, 0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.confirm-box::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  transform: scale(0);
  transition: transform 0.28s cubic-bezier(0.2, 1.5, 0.4, 1);
}
.confirm input:checked + .confirm-box {
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(75, 227, 106, 0.35);
}
.confirm input:checked + .confirm-box::after { transform: scale(1); }
.confirm input:focus-visible + .confirm-box { border-color: var(--paper); }
.confirm-text a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 231, 221, 0.3);
}
.confirm-text a:hover { color: var(--green); border-color: var(--green); }

/* submit page heading + brief document (dark page) */
.page-head {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: clamp(26px, 5vw, 42px);
  letter-spacing: 2px;
  color: var(--paper);
  margin-bottom: 32px;
}
.block-first {
  padding-top: 78px;
  border-top: none;
}
.brief-doc { max-width: 680px; }
.brief-intro {
  font-size: 14px;
  line-height: 1.8;
  color: var(--paper-dim);
}
.brief-sec { margin-top: 30px; }
.brief-sec h3 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--green);
  margin-bottom: 12px;
}
.brief-sec p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--paper-dim);
}
.brief-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.brief-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--paper-dim);
}
.brief-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
}
.brief-foot {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(236, 231, 221, 0.12);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--paper);
}

/* =========================================
   FOOTER
   ========================================= */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 34px 48px;
  border-top: 1px solid rgba(236, 231, 221, 0.08);
  font-size: 10px;
  letter-spacing: 2px;
  color: #6f6b62;
}
.foot a {
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.foot a:hover { color: var(--paper); }

/* =========================================
   Reduced motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body { opacity: 1 !important; }
  .label-spin { animation: none !important; }
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 64px 28px 56px;
    text-align: center;
  }
  .wordmark { justify-content: center; }
  .hero-label { justify-content: center; }
  .block { padding: 48px 28px; }
  .field-row { flex-direction: column; gap: 28px; }
  .cat-row { grid-template-columns: 90px 1fr; }
  .cat-status { grid-column: 2; }
  .foot { flex-direction: column; gap: 14px; align-items: flex-start; }
}
