/* ============================================================
   CRAIG STANLEY STUDIO — brand tokens
   Aesthetic: handmade studio / workshop
   Show the seams. Label everything. One red.
   ============================================================ */
:root {
  --red:    #CC2018;
  --ink:    #141414;
  --paper:  #F4F1E9;
  --white:  #FFFFFF;
  --grey:   #6F6A60;
  --sans:   "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

/* --- reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

/* --- brand kit classes --- */
.cs-redbox {
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 22px 28px;
}
.cs-redbox .title {
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.01em;
}
.cs-labelmaker {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 3px;
  display: inline-block;
}
.cs-stamp {
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 10px;
  letter-spacing: .05em;
  display: inline-block;
  font-size: 11px;
}
.cs-tape {
  background: rgba(220,210,170,.9);
  border-left: 1px dashed #9a8f63;
  border-right: 1px dashed #9a8f63;
  color: var(--ink);
  padding: 7px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
}
.cs-tick  { color: var(--red); font-weight: 800; }
.cs-poster {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
}
.cs-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cs-num { font-variant-numeric: tabular-nums; }
.cs-crop { position: relative; }
.cs-crop::before, .cs-crop::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 0 solid var(--ink);
}
.cs-crop::before { top: 14px; left: 14px; border-left-width: 2px; border-top-width: 2px; }
.cs-crop::after  { bottom: 14px; right: 14px; border-right-width: 2px; border-bottom-width: 2px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.site-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- header --- */
.site-header {
  border-bottom: 4px solid var(--ink);
  padding: 24px 0 20px;
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.wordmark {
  font-size: 15px;
  line-height: 1;
}
.wordmark-line1 { display: block; font-size: 18px; }
a.wordmark-link { text-decoration: none; color: inherit; display: inline-block; }

nav.site-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
nav.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
}
nav.site-nav a:hover .cs-labelmaker {
  background: var(--red);
  transition: background .15s;
}
nav.site-nav a.current .cs-labelmaker {
  background: var(--red);
}

.header-meta {
  margin-left: auto;
  text-align: right;
}
.header-meta p {
  font-size: 11px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
}

/* --- hero --- */
.hero {
  padding: 56px 0 48px;
  border-bottom: 2px solid var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-title {
  font-size: clamp(56px, 9vw, 110px);
}
.hero-sub {
  font-size: 13px;
  color: var(--grey);
  margin-top: 20px;
  line-height: 1.6;
  max-width: 380px;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-inventory {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
.hero-inventory-item {
  border: 2px solid var(--ink);
  padding: 16px 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
}
.hero-inventory-item .item-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-inventory-item.active {
  background: var(--ink);
  color: var(--paper);
}
a.hero-inventory-item:hover { background: var(--ink); color: var(--paper); }
a.hero-inventory-item.active:hover { background: var(--red); }

/* --- section chrome --- */
.section-rule {
  border: none;
  border-top: 4px solid var(--ink);
  margin: 0;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 32px 0 28px;
  flex-wrap: wrap;
}
.section-num {
  font-size: 13px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-title-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex: 1;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
}
.section-count {
  font-size: 12px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: auto;
  white-space: nowrap;
}

/* --- page hero (detail pages) --- */
.page-hero {
  padding: 48px 0 40px;
  border-bottom: 4px solid var(--ink);
}
.breadcrumb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.page-hero-title {
  font-size: clamp(48px, 8vw, 92px);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-hero-intro {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  max-width: 420px;
  margin-top: 18px;
}
.page-hero-intro strong { color: var(--ink); font-weight: 700; }
.page-hero-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

/* --- work grid --- */
.work-grid {
  display: grid;
  gap: 2px;
  padding-bottom: 48px;
}
.work-grid-4 { grid-template-columns: repeat(4, 1fr); }
.work-grid-3 { grid-template-columns: repeat(3, 1fr); }
.work-grid-2 { grid-template-columns: repeat(2, 1fr); }

.work-item {
  border: 2px solid var(--ink);
  padding: 22px 20px 18px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  cursor: pointer;
  transition: background .1s;
  text-decoration: none;
  color: inherit;
}
.work-item:hover { background: var(--white); }
.work-item.featured {
  background: var(--ink);
  color: var(--paper);
}
.work-item.featured .item-label,
.work-item.featured .item-meta { color: rgba(244,241,233,.55); }

.item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.item-title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  flex: 1;
}
.item-meta {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px solid currentColor;
  padding-top: 8px;
  opacity: .6;
}
.item-stamp {
  align-self: flex-start;
}

/* tall items */
.work-item.tall { min-height: 320px; }

/* --- ZINE section --- */
.zine-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  padding-bottom: 48px;
}
.zine-feature {
  border: 2px solid var(--ink);
  padding: 28px 24px 22px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zine-cover-placeholder {
  background: var(--ink);
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.zine-cover-inner {
  text-align: center;
  color: var(--paper);
}
.zine-cover-num {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.zine-cover-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-top: 2px solid var(--paper);
  padding-top: 8px;
  margin-top: 8px;
}
.zine-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.zine-back-issue {
  border: 2px solid var(--ink);
  padding: 14px 16px;
  background: var(--paper);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
  text-decoration: none;
  color: inherit;
}
.zine-back-issue:hover { background: var(--white); }
.zine-back-issue .bi-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.zine-back-issue .bi-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
}
.zine-back-issue .bi-meta {
  font-size: 10px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- BOOKS --- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding-bottom: 48px;
}
.book-item {
  border: 2px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.book-spine {
  background: var(--ink);
  color: var(--paper);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 10px;
  flex: 1;
  line-height: 1;
}
.book-info {
  padding: 12px 14px;
  border-top: 2px solid var(--ink);
}
.book-info .b-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
}
.book-info .b-meta {
  font-size: 10px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.book-item:nth-child(3) .book-spine { background: var(--red); }

/* --- IMAGES knolling --- */
.images-knoll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding-bottom: 48px;
}
.knoll-item {
  border: 2px solid var(--ink);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  padding: 12px;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.knoll-item:hover { background: var(--white); }
.knoll-item .k-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.knoll-item .k-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.knoll-item .k-meta {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--grey);
}
.knoll-item.dark {
  background: var(--ink);
  color: var(--paper);
}
.knoll-item.dark:hover { background: #000; }
.knoll-item.dark .k-label,
.knoll-item.dark .k-meta { color: rgba(244,241,233,.5); }
.knoll-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}

/* --- AUDIO --- */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 48px;
}
.audio-item {
  border: 2px solid var(--ink);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--paper);
  cursor: pointer;
}
.audio-item:hover { background: var(--white); }
.audio-item.playing { background: var(--ink); color: var(--paper); }
.audio-item.playing .a-meta { color: rgba(244,241,233,.5); }
.audio-item.playing .play-mark { border-color: var(--paper); color: var(--paper); }
.a-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.a-info .a-title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.a-info .a-desc {
  font-size: 12px;
  color: var(--grey);
  margin-top: 3px;
}
.audio-item.playing .a-info .a-desc { color: rgba(244,241,233,.6); }
.a-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: right;
  line-height: 1.6;
}
.play-mark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 8px 14px;
  white-space: nowrap;
}
.waveform {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 24px;
}
.waveform span {
  display: inline-block;
  width: 3px;
  background: var(--ink);
  border-radius: 1px;
}

/* --- VIDEO --- */
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  padding-bottom: 48px;
}
.video-feature {
  border: 2px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.video-thumb {
  background: var(--ink);
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-thumb-label {
  position: absolute;
  top: 14px;
  left: 14px;
}
.video-play-indicator {
  width: 60px;
  height: 60px;
  border: 4px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: .05em;
}
.video-info {
  padding: 20px 22px 18px;
  border-top: 2px solid var(--ink);
}
.video-info .v-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.video-info .v-meta {
  font-size: 11px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.video-list-item {
  border: 2px solid var(--ink);
  padding: 16px 18px;
  background: var(--paper);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.video-list-item:hover { background: var(--white); }
.vli-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.vli-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.2;
  flex: 1;
  margin: 8px 0;
}
.vli-meta {
  font-size: 10px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- EXPERIMENTS --- */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
  padding-bottom: 48px;
}
.exp-item {
  border: 2px solid var(--ink);
  padding: 20px 18px 16px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  position: relative;
}
.exp-item:hover { background: var(--white); cursor: pointer; }
.exp-item.in-progress {
  border-style: dashed;
}
.exp-item.complete {
  background: var(--ink);
  color: var(--paper);
}
.exp-item.complete .e-meta { color: rgba(244,241,233,.5); }
.e-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.exp-item.complete .e-label { color: rgba(244,241,233,.5); }
.e-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.15;
  flex: 1;
}
.e-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}
.e-status {
  position: absolute;
  top: 14px;
  right: 14px;
}

/* ============================================================
   ADDED COMPONENTS — buttons, prose, pdf reader, lightbox,
   contact form, audio player bar
   ============================================================ */

/* buttons / links */
.cs-btn {
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  padding: 11px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: background .1s, color .1s;
}
.cs-btn:hover { background: var(--ink); color: var(--paper); }
.cs-btn.red { background: var(--red); color: #fff; border-color: var(--red); }
.cs-btn.red:hover { background: var(--ink); border-color: var(--ink); }

.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* prose blocks */
.prose { max-width: 640px; padding-bottom: 48px; }
.prose p { font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.prose p strong { font-weight: 700; }
.prose h3 {
  font-size: 18px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; margin: 28px 0 10px;
}

/* --- ZINE detail rows --- */
.zine-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2px;
  border: 2px solid var(--ink);
  margin-bottom: 2px;
  background: var(--paper);
}
.zine-detail .zd-cover {
  background: var(--ink);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: 2px solid var(--ink);
}
.zine-detail .zd-cover .zd-num {
  color: var(--paper);
  font-size: 96px;
  font-weight: 800;
  line-height: .9;
  text-align: center;
}
.zine-detail .zd-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zd-title {
  font-size: 26px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; line-height: 1.05;
}
.zd-desc { font-size: 14px; color: var(--grey); line-height: 1.6; }
.zine-detail.sold .zd-cover { background: var(--red); }

/* --- PDF reader modal --- */
.reader {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,20,.92);
  display: none;
  flex-direction: column;
}
.reader.open { display: flex; }
.reader-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-bottom: 2px solid var(--paper);
}
.reader-bar .r-title {
  color: var(--paper); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: 14px;
}
.reader-bar .r-spacer { margin-left: auto; }
.reader-frame { flex: 1; width: 100%; border: none; background: #333; }
.reader-close {
  background: var(--red); color: #fff; border: none;
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: 11px; padding: 10px 16px; cursor: pointer;
}

/* --- lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,20,.94);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  border: 2px solid var(--paper);
  background: var(--paper);
  max-width: min(720px, 90vw);
  width: 100%;
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  padding: 28px; justify-content: space-between;
  position: relative;
}
.lightbox-stage.dark { background: var(--ink); }
.lightbox-stage.dark .lb-title,
.lightbox-stage.dark .lb-label,
.lightbox-stage.dark .lb-meta { color: var(--paper); }
.lb-label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--grey);
}
.lb-title {
  font-size: clamp(28px, 5vw, 44px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1.05;
}
.lb-meta {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey);
}
.lightbox-controls {
  display: flex; gap: 10px; align-items: center; margin-top: 22px;
}
.lb-btn {
  background: var(--paper); color: var(--ink); border: none;
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: 11px; padding: 10px 16px; cursor: pointer;
}
.lb-btn.close { background: var(--red); color: #fff; }
.lb-counter {
  color: var(--paper); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: 11px; font-variant-numeric: tabular-nums;
}

/* --- video modal --- */
.vmodal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,20,.94);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; padding: 40px;
}
.vmodal.open { display: flex; }
.vmodal-stage {
  border: 2px solid var(--paper);
  background: var(--ink);
  max-width: min(900px, 92vw);
  width: 100%;
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
}
.vmodal-stage .vm-title {
  color: var(--paper); font-size: clamp(22px,4vw,40px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; text-align: center;
  padding: 0 24px; line-height: 1.05;
}
.vmodal-stage .vm-note {
  color: rgba(244,241,233,.6); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-top: 16px;
}

/* --- contact form --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding-bottom: 48px; align-items: start;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 3px solid var(--red); outline-offset: 0;
}
.form-note {
  font-size: 11px; color: var(--grey); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-top: 4px;
}
.contact-aside {
  border: 2px solid var(--ink);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-aside .ca-line {
  border-top: 1px solid var(--ink); padding-top: 14px;
}
.contact-aside .ca-label {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grey);
}
.contact-aside .ca-value {
  font-size: 15px; font-weight: 700; margin-top: 4px;
}
.contact-aside a { color: var(--ink); }

/* newsletter strip */
.newsletter {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px;
  align-items: center; margin-bottom: 48px;
}
.newsletter .nl-title {
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; line-height: 1.05;
}
.newsletter .nl-sub {
  font-size: 12px; color: rgba(244,241,233,.6); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-top: 6px;
}
.newsletter form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter input {
  border: 2px solid var(--paper); background: var(--ink);
  color: var(--paper); font-family: var(--sans); font-size: 14px;
  padding: 11px 14px; min-width: 220px;
}
.newsletter input::placeholder { color: rgba(244,241,233,.5); }
.newsletter button {
  border: 2px solid var(--red); background: var(--red); color: #fff;
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: 11px; padding: 11px 18px; cursor: pointer;
}

/* form success banner */
.form-banner {
  border: 2px solid var(--red); background: var(--paper);
  padding: 18px 22px; margin-bottom: 28px;
  display: flex; gap: 14px; align-items: center;
}
.form-banner .fb-title {
  font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: 16px;
}

/* --- footer --- */
.site-footer {
  border-top: 4px solid var(--ink);
  padding: 28px 0;
  margin-top: 8px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-sig {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer-sig span { color: var(--ink); }
.footer-sig a { color: var(--ink); text-decoration: none; }
.footer-sig a:hover { color: var(--red); }

/* --- reveal animation --- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid,
  .zine-layout,
  .page-hero-grid,
  .contact-grid,
  .zine-detail,
  .newsletter,
  .video-grid      { grid-template-columns: 1fr; }
  .work-grid-4     { grid-template-columns: 1fr 1fr; }
  .work-grid-3     { grid-template-columns: 1fr 1fr; }
  .books-grid      { grid-template-columns: repeat(3, 1fr); }
  .images-knoll    { grid-template-columns: 1fr 1fr; }
  .exp-grid        { grid-template-columns: 1fr 1fr; }
  .audio-item      { grid-template-columns: 60px 1fr; }
  .audio-item .a-meta,
  .audio-item .play-mark { display: none; }
  .knoll-item.large { grid-column: span 1; grid-row: span 1; }
  .zine-stack      { flex-direction: row; }
  .zine-detail .zd-cover { min-height: 220px; }

  .nav-toggle { display: inline-block; margin-left: auto; }
  nav.site-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 4px;
    margin-top: 14px;
  }
  nav.site-nav.open { display: flex; }
  nav.site-nav a .cs-labelmaker { display: block; }
  .header-meta { display: none; }
}
@media (max-width: 600px) {
  .site-wrap       { padding: 0 16px; }
  .hero-title      { font-size: 52px; }
  .hero-inventory  { grid-template-columns: 1fr 1fr; }
  .work-grid-4,
  .work-grid-3,
  .work-grid-2,
  .books-grid,
  .images-knoll,
  .exp-grid        { grid-template-columns: 1fr; }
}
