/* ============================================================
   cc.css — ClothedCaptioned consolidated stylesheet (v1.3.0)
   Mono-Terminal Editorial. Strict B/W. Single source of truth.
   Replaces: tokens / base / components / glitch / header / footer /
             home / shop / product / woocommerce / spacing-fix / intake.
   Mobile-first. BEM. Two breakpoints: 768px and 1024px.
   ============================================================ */


/* ============================================================
   1. tokens
   ============================================================ */

:root {
  /* Strict B/W palette. Anything outside this list is forbidden
     except --live (status dots only) and --glitch-* (.cc-glitch* only). */
  --pitch:    #000000;
  --paper:    #FFFFFF;
  --mid:      #737373;
  --hairline: #E5E5E5;
  --text:     #0A0A0A;

  --live:     #00FF6A;
  --glitch-r: #FF0033;
  --glitch-g: #00FF66;
  --glitch-b: #0066FF;

  /* Type families */
  --ff-pixel: 'Silkscreen', 'Pixelify Sans', 'Courier New', monospace;
  --ff-mono:  'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --ff-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale (4px base) */
  --s-1:  4px;  --s-2:  8px;  --s-3:  12px; --s-4:  16px;
  --s-5:  20px; --s-6:  24px; --s-7:  32px; --s-8:  40px;
  --s-9:  48px; --s-10: 64px; --s-11: 80px; --s-12: 96px;

  /* Font-size scale */
  --fs-12: 0.75rem;  --fs-13: 0.8125rem; --fs-14: 0.875rem;
  --fs-15: 0.9375rem; --fs-16: 1rem;     --fs-18: 1.125rem;
  --fs-20: 1.25rem;  --fs-24: 1.5rem;    --fs-28: 1.75rem;
  --fs-32: 2rem;     --fs-40: 2.5rem;    --fs-48: 3rem;
  --fs-56: 3.5rem;   --fs-64: 4rem;      --fs-72: 4.5rem;

  /* Line / letter */
  --lh-tight: 1.05; --lh-snug: 1.2; --lh-normal: 1.5; --lh-relaxed: 1.7;
  --ls-tight: -0.01em; --ls-normal: 0; --ls-wide: 0.04em; --ls-wider: 0.08em;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(24px, 4vw, 80px);
  --section-vpad: clamp(64px, 8vw, 128px);

  --hairline-w: 1px;
  --t-fast: 120ms;  --t-base: 180ms;  --t-slow: 300ms;
  --ease:   cubic-bezier(0.2, 0.8, 0.2, 1);

  --z-nav: 50; --z-modal: 90; --z-toast: 100;
}


/* ============================================================
   2. @font-face — relative to ../fonts/
   ============================================================ */

@font-face {
  font-family: 'Silkscreen';
  src: url('../fonts/Silkscreen-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Silkscreen';
  src: url('../fonts/Silkscreen-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Pixelify Sans';
  src: url('../fonts/PixelifySans-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Pixelify Sans';
  src: url('../fonts/PixelifySans-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}


/* ============================================================
   3. reset + base typography
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--paper);
  font-feature-settings: "tnum" off, "ss01" on, "cv01" on;
  -webkit-tap-highlight-color: transparent;
}
img, picture, video, canvas, svg {
  display: block; max-width: 100%; height: auto;
}
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-body);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--pitch);
}
*::selection { background: var(--pitch); color: var(--paper); }
*::-moz-selection { background: var(--pitch); color: var(--paper); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--pitch); outline-offset: 2px; }

a {
  color: var(--pitch);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: opacity var(--t-fast) var(--ease);
}
a:hover { opacity: 0.6; }

/* Lists — default to NO bullets, NO indent. The few places that want
   bullets opt-in via .cc-prose ul or content owning its own. This kills
   Kadence's default disc-list leak even without !important. */
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: var(--s-6) 0;
}

/* Tabular figures on numeric chrome */
.cc-tnum,
.cc-product-card__price,
.cc-spec-table__val,
.woocommerce-Price-amount,
.price, .amount, .sku, .cc-sku, [data-tnum] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   4. layout primitives
   ============================================================ */

.cc-container,
[data-cc-container] {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.cc-section { padding-block: var(--section-vpad); }
.cc-section--tight { padding-block: clamp(32px, 4vw, 64px); }

.cc-rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  width: 100%;
  height: 0;
  display: block;
  margin: 0;
}
.cc-rule--strong { border-top-color: var(--pitch); }


/* ============================================================
   5. utility classes
   ============================================================ */

.cc-mono {
  font-family: var(--ff-mono);
  font-weight: 400;
  letter-spacing: var(--ls-normal);
}
.cc-mono--up {
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-size: var(--fs-12);
}
.cc-pixel {
  font-family: var(--ff-pixel);
  font-weight: 400;
  letter-spacing: var(--ls-normal);
  text-transform: uppercase;
  font-size: var(--fs-14);
}
.cc-prompt { display: inline-block; font-family: var(--ff-mono); color: var(--pitch); }
.cc-prompt--active::before { content: '> '; color: var(--pitch); }
.cc-prompt--inactive::before { content: '~ '; color: var(--mid); }
.cc-prompt--inactive { color: var(--mid); }

.cc-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  text-transform: lowercase;
  color: var(--pitch);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: var(--s-1) var(--s-3);
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.cc-pill::before { content: '[ '; }
.cc-pill::after  { content: ' ]'; }
.cc-pill:hover,
.cc-pill[aria-pressed="true"],
.cc-pill.is-active {
  background: var(--pitch); color: var(--paper);
  border-color: var(--pitch); opacity: 1;
}

.cc-status-dot {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  gap: var(--s-2);
  line-height: 1;
}
.cc-status-dot::before {
  content: '\25CF'; color: var(--mid);
  font-size: 0.7em; line-height: 1;
}
.cc-status-dot--live { color: var(--pitch); }
.cc-status-dot--live::before { color: var(--live); }

.cc-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  text-transform: lowercase;
  letter-spacing: var(--ls-wide);
  color: var(--mid);
}

.cc-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text { /* WP default class */
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: var(--s-3); left: var(--s-3);
  width: auto; height: auto;
  clip: auto;
  background: var(--pitch); color: var(--paper);
  padding: var(--s-3) var(--s-4);
  z-index: var(--z-toast);
}


/* ============================================================
   6. buttons (.cc-btn / .cc-cta — same primitive, two names)
   ============================================================ */

.cc-cta, .cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: var(--fs-14);
  text-transform: lowercase;
  letter-spacing: var(--ls-normal);
  background: var(--pitch);
  color: var(--paper);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-5);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.cc-cta::before, .cc-btn::before { content: '[ '; }
.cc-cta::after,  .cc-btn::after  { content: ' ]'; }
.cc-cta:hover, .cc-cta:focus-visible,
.cc-btn:hover, .cc-btn:focus-visible {
  background: var(--paper); color: var(--pitch);
  border-color: var(--pitch); opacity: 1;
}
.cc-cta[disabled], .cc-cta:disabled,
.cc-btn[disabled], .cc-btn:disabled {
  opacity: 0.4; cursor: not-allowed;
}

/* Ghost — paper bg, pitch border. Hover inverts. */
.cc-cta--ghost, .cc-btn--ghost {
  background: var(--paper); color: var(--pitch); border-color: var(--pitch);
}
.cc-cta--ghost:hover, .cc-cta--ghost:focus-visible,
.cc-btn--ghost:hover, .cc-btn--ghost:focus-visible {
  background: var(--pitch); color: var(--paper);
}

/* Solid — alias for default (pitch fill on light) */
.cc-cta--solid, .cc-btn--solid {
  background: var(--pitch); color: var(--paper); border-color: var(--pitch);
}

/* Prompt-prefix variant: "> add to cart" */
.cc-cta--prompt::before, .cc-btn--prompt::before { content: '> '; }
.cc-cta--prompt::after,  .cc-btn--prompt::after  { content: ''; }

.cc-cta--lg, .cc-btn--lg { padding: var(--s-4) var(--s-7); font-size: var(--fs-16); }
.cc-cta--sm, .cc-btn--sm { padding: var(--s-2) var(--s-4); font-size: var(--fs-12); }

/* Inputs */
.cc-input {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  background: var(--paper);
  color: var(--pitch);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-4);
  width: 100%;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--t-fast) var(--ease);
}
.cc-input::placeholder { color: var(--mid); }
.cc-input:focus { outline: 2px solid var(--pitch); outline-offset: 2px; }


/* ============================================================
   7. header (.cc-header / .cc-nav)
   ============================================================ */

.cc-header {
  background: var(--paper);
  position: relative;
  z-index: var(--z-nav);
}
.cc-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-4) var(--container-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
}
.cc-header__mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--pitch);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 1;
}
.cc-header__mark img,
.cc-header__mark .cc-mark { display: inline-block; height: 24px; width: auto; }

.cc-header__cart {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
  text-decoration: none;
  white-space: nowrap;
  justify-self: end;
}
.cc-header__cart:hover { opacity: 0.6; }

.cc-header__toggle {
  display: inline-flex;
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
  background: transparent;
  border: 0;
  padding: var(--s-2);
  cursor: pointer;
  justify-self: end;
}

/* Nav: hidden on mobile, replaces hamburger on desktop */
.cc-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  letter-spacing: var(--ls-normal);
}
.cc-nav__item {
  color: var(--pitch);
  text-decoration: none;
  display: inline-flex;
  gap: var(--s-1);
  align-items: baseline;
}
.cc-nav__item:hover { opacity: 0.6; }
.cc-nav__item--active { color: var(--pitch); font-weight: 500; }
.cc-nav__item--secondary { color: var(--mid); }
.cc-nav__item--secondary:hover { color: var(--pitch); opacity: 1; }
.cc-nav__prefix { color: inherit; }
.cc-nav__sep { width: 0; }

/* Mobile drawer */
.cc-mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--paper);
  padding: var(--s-5) var(--container-pad);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cc-mobile-nav[data-open="true"] { display: flex; }
.cc-mobile-nav__item {
  font-family: var(--ff-mono);
  font-size: var(--fs-15);
  color: var(--pitch);
  text-decoration: none;
}

@media (min-width: 768px) {
  .cc-header__toggle { display: none; }
  .cc-nav { display: inline-flex; justify-self: start; }
  .cc-mobile-nav { display: none !important; }
}


/* ============================================================
   8. footer (.cc-footer)
   ============================================================ */

.cc-footer {
  background: var(--paper);
  color: var(--pitch);
  margin-top: var(--section-vpad);
}
.cc-footer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: var(--s-7);
}
.cc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-block: var(--s-5);
}
.cc-footer__brand-line {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
}
.cc-footer__brand-line strong { font-weight: 500; }

.cc-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  padding-block: var(--s-5);
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
}
.cc-footer__row a {
  color: var(--pitch);
  text-decoration: none;
}
.cc-footer__row a:hover { opacity: 0.6; }
.cc-footer__row--secondary { font-size: var(--fs-12); }
.cc-footer__row--secondary a { color: var(--mid); }
.cc-footer__row--secondary a:hover { color: var(--pitch); opacity: 1; }

.cc-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-4);
  padding-block: var(--s-5);
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
}
.cc-footer__meta-build {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}


/* ============================================================
   9. hero (.cc-hero — preserved per spec, RGB via .cc-glitch)
   ============================================================ */

.cc-hero {
  background: var(--pitch);
  color: var(--paper);
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--s-10) var(--container-pad);
  min-height: 80vh;
  overflow: hidden;
}
.cc-hero__inner {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-7);
}
.cc-hero__wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: var(--s-2);
  font-family: var(--ff-pixel);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: var(--fs-32);
  color: var(--paper);
  margin: 0;
}
.cc-hero__wordmark img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  height: auto;
}
/* Legacy span-based wordmark fallback */
.cc-hero__wordmark > span {
  background: var(--pitch);
  color: var(--paper);
  border: 2px solid var(--paper);
  padding: var(--s-3) var(--s-5);
  display: inline-block;
}
.cc-hero__wordmark > span::before { content: '[ '; }
.cc-hero__wordmark > span::after  { content: ' ]'; }

.cc-hero__line,
.cc-hero__cursor {
  font-family: var(--ff-mono);
  font-size: var(--fs-16);
  color: var(--paper);
  letter-spacing: var(--ls-normal);
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}
.cc-hero__line::before { content: '> '; color: var(--paper); }

/* Cursor block (block-cursor terminal style) */
.cc-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  background: var(--paper);
  margin-left: 0.15em;
  vertical-align: -0.1em;
  animation: cc-cursor-blink-loop 1.05s steps(2, jump-none) infinite;
}
@keyframes cc-cursor-blink-loop {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.cc-hero__cta { margin-top: var(--s-2); }
.cc-hero__cta.cc-cta {
  background: var(--paper);
  color: var(--pitch);
  border-color: var(--paper);
}
.cc-hero__cta.cc-cta:hover {
  background: var(--pitch);
  color: var(--paper);
  border-color: var(--paper);
}

@media (min-width: 768px) {
  .cc-hero { min-height: 85vh; }
  .cc-hero__wordmark { font-size: var(--fs-48); }
  .cc-hero__line, .cc-hero__cursor { font-size: var(--fs-18); }
}
@media (min-width: 1024px) {
  .cc-hero { min-height: 90vh; padding: var(--s-12) var(--container-pad); }
  .cc-hero__wordmark { font-size: var(--fs-72); }
  .cc-hero__line, .cc-hero__cursor { font-size: var(--fs-20); }
  .cc-hero__inner { gap: var(--s-9); }
}


/* ============================================================
   10. 2-rail (.cc-rails / .cc-rail-card)
   ============================================================ */

.cc-rails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
  margin-block: 0;
}
.cc-rail-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-6);
  padding: clamp(40px, 6vw, 96px) var(--container-pad);
  background: var(--paper);
  color: var(--pitch);
  text-decoration: none;
  min-height: 60vh;
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.cc-rail-card:hover {
  background: var(--pitch);
  color: var(--paper);
  opacity: 1;
}
.cc-rail-card__eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  text-transform: lowercase;
  letter-spacing: var(--ls-wide);
  color: inherit;
  opacity: 0.6;
}
.cc-rail-card__eyebrow::before { content: '> '; }
.cc-rail-card__title {
  font-family: var(--ff-pixel);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: var(--ls-tight);
  color: inherit;
  margin: 0;
}
.cc-rail-card__lede {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  line-height: var(--lh-normal);
  color: inherit;
  max-width: 50ch;
}
.cc-rail-card__open {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  text-transform: lowercase;
  color: inherit;
}
.cc-rail-card__open::before { content: '> '; }
.cc-rail-card__open::after  { content: ' \2197'; } /* ↗ */

@media (min-width: 768px) {
  .cc-rails { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   11. current-drop callout (.cc-drop)
   ============================================================ */

.cc-drop {
  padding: var(--section-vpad) var(--container-pad);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}
.cc-drop__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--s-7);
}
.cc-drop__eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--pitch);
}
.cc-drop__eyebrow::before { content: '> '; }
.cc-drop__more {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
  text-decoration: none;
}
.cc-drop__more:hover { opacity: 0.6; }
.cc-drop__intro {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  color: var(--mid);
  max-width: 60ch;
  margin-bottom: var(--s-7);
}
.cc-drop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.cc-drop__empty {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--mid);
  padding: var(--s-7);
  border: 1px dashed var(--hairline);
  text-align: center;
}

@media (min-width: 768px) {
  .cc-drop__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}


/* ============================================================
   12. field-note card (.cc-field-note-card)
   ============================================================ */

.cc-field-note-card {
  display: block;
  border: 1px solid var(--hairline);
  padding: var(--s-6);
  background: var(--paper);
  color: var(--pitch);
  text-decoration: none;
  width: 100%;
  max-width: var(--container-max);
  margin: var(--section-vpad) auto;
  transition: border-color var(--t-base) var(--ease);
}
.cc-field-note-card:hover { border-color: var(--pitch); opacity: 1; }
.cc-field-note-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.cc-field-note-card__date {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  letter-spacing: var(--ls-wide);
}
.cc-field-note-card__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-20);
  line-height: var(--lh-snug);
  color: var(--pitch);
  margin-bottom: var(--s-3);
}
.cc-field-note-card__title a { text-decoration: none; color: inherit; }
.cc-field-note-card__title a:hover { opacity: 0.6; }
.cc-field-note-card__excerpt {
  font-family: var(--ff-body);
  font-size: var(--fs-15);
  color: var(--mid);
  line-height: var(--lh-normal);
  margin-bottom: var(--s-5);
}
.cc-field-note-card__empty {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  color: var(--mid);
}

@media (min-width: 1024px) {
  .cc-field-note-card { padding: var(--s-8); }
  .cc-field-note-card__title { font-size: var(--fs-28); }
}


/* ============================================================
   13. newsletter (.cc-newsletter)
   ============================================================ */

.cc-newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cc-newsletter__lead,
.cc-newsletter label {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  color: var(--pitch);
}
.cc-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.cc-newsletter__input {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  background: var(--paper);
  color: var(--pitch);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-4);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.cc-newsletter__input::placeholder { color: var(--mid); }
.cc-newsletter__input:focus {
  outline: 2px solid var(--pitch);
  outline-offset: 2px;
}
.cc-newsletter__submit {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: var(--fs-14);
  text-transform: lowercase;
  background: var(--pitch);
  color: var(--paper);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-5);
  cursor: pointer;
  line-height: 1;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.cc-newsletter__submit::before { content: '[ '; }
.cc-newsletter__submit::after  { content: ' ]'; }
.cc-newsletter__submit:hover {
  background: var(--paper);
  color: var(--pitch);
}
.cc-newsletter__note,
.cc-newsletter__fineprint {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
}

@media (min-width: 768px) {
  .cc-newsletter__form { flex-direction: row; align-items: stretch; }
  .cc-newsletter__input { flex: 1; }
  .cc-newsletter__submit { flex: 0 0 auto; }
}


/* ============================================================
   14. captions archive + .cc-product-card
   ============================================================ */

.cc-captions-archive,
.cc-shop-grid {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}

.cc-archive-hero {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) 0;
}
.cc-archive-hero__title {
  font-family: var(--ff-pixel);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  text-transform: lowercase;
  color: var(--pitch);
  margin: var(--s-4) 0 var(--s-5);
}
.cc-archive-hero__intro {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  color: var(--mid);
  max-width: 60ch;
  margin-bottom: var(--s-6);
}

.cc-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.cc-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--pitch);
  background: var(--paper);
  border: 1px solid var(--hairline);
  transition: border-color var(--t-base) var(--ease);
  position: relative;
}
.cc-product-card:hover {
  border-color: var(--pitch);
  opacity: 1;
}
.cc-product-card__media {
  display: block;
  background: var(--paper);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.cc-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-product-card__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.cc-product-card__title {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--fs-15);
  line-height: var(--lh-snug);
  color: var(--pitch);
  text-decoration: none;
  margin: 0;
}
.cc-product-card__title a { color: inherit; text-decoration: none; }
.cc-product-card__price {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
}
.cc-product-card__meta {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  text-transform: lowercase;
}

@media (min-width: 768px) {
  .cc-product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
}
@media (min-width: 1024px) {
  .cc-product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}


/* ============================================================
   15. single product (.cc-product / .cc-product-meta / .cc-spec-table)
   ============================================================ */

.cc-product-page,
.cc-product-hero {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.cc-product-hero { padding-block: var(--s-5); }
.cc-product-page { padding-block: var(--s-5) var(--section-vpad); }

.cc-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
.cc-product__gallery {
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.cc-product__gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cc-product__info {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.cc-product__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  color: var(--pitch);
}
.cc-product__edition {
  /* Pill — uses cc-pill base */
}
.cc-product__price {
  font-family: var(--ff-mono);
  font-size: var(--fs-20);
  color: var(--pitch);
  font-variant-numeric: tabular-nums;
}
.cc-product__desc {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  line-height: var(--lh-normal);
  color: var(--text);
  max-width: 60ch;
}
.cc-product__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.cc-product__variations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.cc-product__select {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  background: var(--paper);
  color: var(--pitch);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-4);
}

.cc-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  margin-top: var(--s-5);
}
.cc-spec-table tr { border-bottom: 1px solid var(--hairline); }
.cc-spec-table tr:last-child { border-bottom: 0; }
.cc-spec-table th, .cc-spec-table td {
  padding: var(--s-3) 0;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}
.cc-spec-table__key {
  width: 35%;
  color: var(--mid);
  text-transform: lowercase;
  letter-spacing: var(--ls-wide);
  padding-right: var(--s-4);
}
.cc-spec-table__val {
  color: var(--pitch);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .cc-product { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
  .cc-spec-table__key { width: 30%; }
}
@media (min-width: 1024px) {
  .cc-product { grid-template-columns: 1.2fr 1fr; gap: var(--s-10); }
}


/* ============================================================
   16. collabs index + partner page
   ============================================================ */

.cc-collabs {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}
.cc-collabs__header {
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--hairline);
}
.cc-collabs__title {
  font-family: var(--ff-pixel);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  text-transform: lowercase;
  color: var(--pitch);
  margin-bottom: var(--s-4);
}
.cc-collabs__intro {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  color: var(--mid);
  max-width: 60ch;
}
.cc-collabs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.cc-collab-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--pitch);
  background: var(--paper);
  transition: border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.cc-collab-card:hover {
  border-color: var(--pitch);
  opacity: 1;
}
.cc-collab-card__name {
  font-family: var(--ff-pixel);
  font-size: var(--fs-24);
  color: inherit;
  text-transform: lowercase;
}
.cc-collab-card__lede {
  font-family: var(--ff-body);
  font-size: var(--fs-15);
  color: var(--mid);
  line-height: var(--lh-normal);
}
.cc-collab-card__cta {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: inherit;
  margin-top: auto;
}
.cc-collab-card__cta::before { content: '> '; }
.cc-collab-card__cta::after  { content: ' \2197'; }

@media (min-width: 768px) {
  .cc-collabs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cc-collabs__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
}

/* Partner page hero */
.cc-collab-hero {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--section-vpad) var(--container-pad) var(--s-7);
  border-bottom: 1px solid var(--hairline);
}
.cc-collab-hero__partner {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--s-3);
}
.cc-collab-hero__partner::before { content: '> partner / '; }
.cc-collab-hero__title {
  font-family: var(--ff-pixel);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  text-transform: lowercase;
  color: var(--pitch);
  margin-bottom: var(--s-5);
}
.cc-collab-hero__lede {
  font-family: var(--ff-body);
  font-size: var(--fs-18);
  color: var(--text);
  max-width: 60ch;
  line-height: var(--lh-normal);
}


/* ============================================================
   17. intake form (.cc-intake-form)
   ============================================================ */

.cc-intake {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}
.cc-intake__title {
  font-family: var(--ff-pixel);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: lowercase;
  color: var(--pitch);
  margin-bottom: var(--s-4);
}
.cc-intake__intro {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  color: var(--mid);
  line-height: var(--lh-normal);
  margin-bottom: var(--s-7);
  max-width: 60ch;
}
.cc-intake-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.cc-intake-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.cc-intake-form__label {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
}
.cc-intake-form__label::before { content: '> '; }
.cc-intake-form__hint {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
}
.cc-intake-form input[type="text"],
.cc-intake-form input[type="email"],
.cc-intake-form input[type="url"],
.cc-intake-form select,
.cc-intake-form textarea {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  background: var(--paper);
  color: var(--pitch);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-3) var(--s-4);
  width: 100%;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}
.cc-intake-form textarea {
  min-height: 160px;
  resize: vertical;
  line-height: var(--lh-normal);
}
.cc-intake-form input:focus,
.cc-intake-form select:focus,
.cc-intake-form textarea:focus {
  outline: 2px solid var(--pitch);
  outline-offset: 2px;
}
.cc-intake-form__file {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
}
.cc-intake-form__honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cc-intake-form__submit {
  align-self: flex-start;
}
.cc-intake__success {
  border: 1px solid var(--pitch);
  padding: var(--s-5) var(--s-6);
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  color: var(--pitch);
  margin-bottom: var(--s-7);
}
.cc-intake__success::before { content: '> '; }


/* ============================================================
   18. field notes archive + single (.cc-blog-archive / .cc-blog-single)
   ============================================================ */

.cc-blog-archive {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}
.cc-blog-archive__title {
  font-family: var(--ff-pixel);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: lowercase;
  color: var(--pitch);
  margin-bottom: var(--s-7);
}
.cc-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.cc-blog-list__item {
  display: block;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--hairline);
}
.cc-blog-list__date {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  letter-spacing: var(--ls-wide);
}
.cc-blog-list__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: var(--lh-snug);
  margin-block: var(--s-3);
}
.cc-blog-list__title a { color: var(--pitch); text-decoration: none; }
.cc-blog-list__title a:hover { opacity: 0.6; }
.cc-blog-list__excerpt {
  font-family: var(--ff-body);
  font-size: var(--fs-15);
  color: var(--mid);
  line-height: var(--lh-normal);
  max-width: 65ch;
}

.cc-blog-single {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}
.cc-blog-single__date {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--mid);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--s-3);
}
.cc-blog-single__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  color: var(--pitch);
  margin-bottom: var(--s-7);
}


/* ============================================================
   19. content pages — .cc-prose
   ============================================================ */

.cc-prose {
  font-family: var(--ff-body);
  font-size: var(--fs-16);
  line-height: var(--lh-normal);
  color: var(--text);
  max-width: 65ch;
  margin-inline: auto;
  padding: var(--s-7) var(--container-pad) var(--section-vpad);
}
.cc-prose h1 {
  font-family: var(--ff-pixel);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: lowercase;
  margin-block: var(--s-5);
}
.cc-prose h2 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: var(--lh-snug);
  margin-block: var(--s-7) var(--s-3);
}
.cc-prose h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-18);
  line-height: var(--lh-snug);
  margin-block: var(--s-5) var(--s-2);
}
.cc-prose p { margin-block: var(--s-4); }
.cc-prose ul, .cc-prose ol {
  list-style: none;
  padding-left: 0;
  margin-block: var(--s-4);
}
.cc-prose ul li, .cc-prose ol li {
  position: relative;
  padding-left: var(--s-5);
  margin-block: var(--s-2);
}
.cc-prose ul li::before {
  content: '\2014'; /* — */
  position: absolute;
  left: 0;
  color: var(--mid);
}
.cc-prose ol { counter-reset: cc-prose-list; }
.cc-prose ol li::before {
  counter-increment: cc-prose-list;
  content: counter(cc-prose-list) '.';
  position: absolute;
  left: 0;
  color: var(--mid);
  font-family: var(--ff-mono);
}
.cc-prose a { text-decoration: underline; text-underline-offset: 0.18em; }
.cc-prose blockquote {
  margin-block: var(--s-5);
  padding-left: var(--s-5);
  border-left: 2px solid var(--pitch);
  color: var(--mid);
  font-style: italic;
}
.cc-prose code,
.cc-prose pre {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.cc-prose code { padding: 0.1em 0.3em; }
.cc-prose pre {
  padding: var(--s-4);
  overflow-x: auto;
  line-height: var(--lh-normal);
}

/* Manifesto bullets specifically — no markers, mono, prompt-prefix */
.cc-manifesto__list,
.cc-prose .cc-manifesto__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.cc-manifesto__list li {
  font-family: var(--ff-mono);
  padding-left: 0;
}
.cc-manifesto__list li::before { content: ''; }


/* ============================================================
   20. WooCommerce overrides (cart / checkout / account)
   ============================================================ */

.woocommerce, .woocommerce-page {
  font-family: var(--ff-body);
}
.woocommerce .button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce button.button,
.woocommerce input[type="submit"].button,
.woocommerce #respond input#submit,
.woocommerce-page .button {
  font-family: var(--ff-mono) !important;
  font-weight: 500 !important;
  font-size: var(--fs-14) !important;
  text-transform: lowercase !important;
  background: var(--pitch) !important;
  color: var(--paper) !important;
  border: 1px solid var(--pitch) !important;
  border-radius: 0 !important;
  padding: var(--s-3) var(--s-5) !important;
  letter-spacing: var(--ls-normal) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  line-height: 1 !important;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease) !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button:hover {
  background: var(--paper) !important;
  color: var(--pitch) !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  font-family: var(--ff-mono) !important;
  font-size: var(--fs-13) !important;
  background: var(--paper) !important;
  color: var(--pitch) !important;
  border: 1px solid var(--hairline) !important;
  border-left: 4px solid var(--pitch) !important;
  border-radius: 0 !important;
  padding: var(--s-4) var(--s-5) !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { display: none !important; }

/* Cart + checkout tables */
.woocommerce table.shop_table,
.woocommerce-cart table.cart,
.woocommerce-checkout table {
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  border: 1px solid var(--hairline);
  border-collapse: collapse;
  border-radius: 0;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--hairline);
  text-transform: lowercase;
}

/* Quantity input — Woo's default 0 minus 0 plus stepper */
.woocommerce .quantity .qty,
.cc-product .quantity .qty {
  font-family: var(--ff-mono);
  font-size: var(--fs-14);
  border: 1px solid var(--pitch);
  border-radius: 0;
  padding: var(--s-2) var(--s-3);
  width: 64px;
  text-align: center;
}

/* Cart / checkout headings */
.woocommerce h1, .woocommerce h2, .woocommerce h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: none;
}

/* Woo notices live above content */
.woocommerce-notices-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Account page nav */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}
.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--hairline);
}
.woocommerce-MyAccount-navigation a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--ff-mono);
  font-size: var(--fs-13);
  color: var(--pitch);
  text-decoration: none;
}
.woocommerce-MyAccount-navigation a:hover { opacity: 0.6; }
.woocommerce-MyAccount-navigation li.is-active a { font-weight: 500; }
.woocommerce-MyAccount-navigation li.is-active a::before { content: '> '; }


/* ============================================================
   21. glitch effect
   ============================================================ */

.cc-glitch {
  position: relative;
  display: inline-block;
  text-shadow:
    1px 0 0 var(--glitch-r),
   -1px 0 0 var(--glitch-b);
  will-change: transform, text-shadow;
}
.cc-glitch--hover {
  text-shadow: none;
  transition: text-shadow var(--t-fast) var(--ease);
}
.cc-glitch--hover:hover,
.cc-glitch--hover:focus-visible {
  animation: cc-glitch 240ms steps(3, jump-end) 1 forwards;
}
.cc-glitch--always {
  text-shadow:
    1px 0 0 var(--glitch-r),
   -1px 0 0 var(--glitch-b),
    0 1px 0 var(--glitch-g);
  animation: cc-glitch-idle 7s steps(8, jump-none) infinite;
}
.cc-glitch--shake {
  animation: cc-glitch 200ms steps(3, jump-end) 1 forwards;
}

@keyframes cc-glitch {
  0% {
    text-shadow:
      0 0 0 var(--glitch-r),
      0 0 0 var(--glitch-b);
    transform: translate3d(0, 0, 0);
  }
  33% {
    text-shadow:
      2px 0 0 var(--glitch-r),
     -2px 0 0 var(--glitch-b),
      0 1px 0 var(--glitch-g);
    transform: translate3d(-1px, 0, 0);
  }
  66% {
    text-shadow:
     -2px 0 0 var(--glitch-r),
      2px 0 0 var(--glitch-b),
      0 -1px 0 var(--glitch-g);
    transform: translate3d(1px, 0, 0);
  }
  100% {
    text-shadow:
      1px 0 0 var(--glitch-r),
     -1px 0 0 var(--glitch-b);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes cc-glitch-idle {
  0%, 92%, 100% {
    text-shadow:
      1px 0 0 var(--glitch-r),
     -1px 0 0 var(--glitch-b),
      0 1px 0 var(--glitch-g);
    transform: translate3d(0, 0, 0);
  }
  93% {
    text-shadow:
      2px 0 0 var(--glitch-r),
     -2px 0 0 var(--glitch-b);
    transform: translate3d(-1px, 0, 0);
  }
  96% {
    text-shadow:
     -2px 0 0 var(--glitch-r),
      2px 0 0 var(--glitch-b);
    transform: translate3d(1px, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cc-glitch--always,
  .cc-glitch--hover,
  .cc-glitch--shake { animation: none; }
}

/* Compact mark [cc] — used in header / footer */
.cc-mark {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: var(--ls-normal);
  color: var(--pitch);
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}


/* ============================================================
   22. Kadence killers — these MUST win even though specificity
       is fighting Kadence's ID selectors. Confined to this block.
   ============================================================ */

/* If Kadence content.min.css slipped through and applied disc bullets
   to top-level lists (e.g. inside the post body), kill it explicitly
   on chrome lists; .cc-prose handles its own. */
.cc-header ul,
.cc-footer ul,
.cc-nav,
.cc-mobile-nav,
.cc-rails,
.cc-product-grid,
.cc-blog-list,
.cc-collabs__grid,
.cc-manifesto__list,
.cc-footer__row {
  list-style: none !important;
  padding-left: 0 !important;
}
.cc-header li,
.cc-footer li,
.cc-nav li,
.cc-mobile-nav li,
.cc-blog-list li {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Kadence's content max-width container — we own layout */
.content-container.site-container,
.content-wrap,
#primary,
.site-main {
  max-width: none;
  padding-inline: 0;
  margin-inline: 0;
}

/* Kadence default page-title bar — hidden; our templates render breadcrumbs */
.entry-hero,
.kadence-breadcrumbs,
.title-wrap .entry-header { display: none; }
