/* Chuck Bronson 911 — "Signal & Record".
   A neon broadcast band up top (the channel: header + hero) that resolves into
   a sober accountability desk below (the reporting). Two self-hosted display
   faces, each subset to ~5 KB, load with `swap` so a phone still first-paints on
   system fonts. Amber is the bodycam burn-in; red is reserved for LIVE & errors;
   cyan is the interactive accent. */

@font-face { font-family:"Saira Condensed"; font-style:normal; font-weight:600; font-display:swap; src:url(/static/fonts/saira-cond-600.woff2) format("woff2"); }
@font-face { font-family:"Saira Condensed"; font-style:normal; font-weight:800; font-display:swap; src:url(/static/fonts/saira-cond-800.woff2) format("woff2"); }
@font-face { font-family:"IBM Plex Mono"; font-style:normal; font-weight:500; font-display:swap; src:url(/static/fonts/plex-mono-500.woff2) format("woff2"); }
@font-face { font-family:"IBM Plex Mono"; font-style:normal; font-weight:600; font-display:swap; src:url(/static/fonts/plex-mono-600.woff2) format("woff2"); }

:root {
	--bg: #0b0b12;
	--bg-2: #0e0e18;
	--panel: #14141f;
	--panel-2: #1b1b2a;
	--ink: #edecf2;
	--muted: #8f8fa6;
	--line: #26263a;
	--cyan: #22d3ee;
	--cyan-hi: #67e8f9;
	--magenta: #e23bd8;
	--violet: #8b5cf6;
	--amber: #ffb000;
	--red: #ff2740;      /* LIVE + errors only */
	--red-hi: #ff4b5f;
	--max: 1100px;
	--sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--display: "Saira Condensed", "Arial Narrow", "Roboto Condensed", var(--sans);
	--mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	--cond: var(--display); /* legacy alias, kept so older refs resolve */
}

* { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* overflow-x: clip contains any wide child (e.g. the heavy display headline on a
   narrow phone) without creating a horizontal scrollbar. It's on main, not body,
   so the sticky header is unaffected. */
main { max-width: var(--max); margin: 0 auto; padding: 0 20px; overflow-x: clip; }

/* ---- header (the broadcast band) ---- */
/* The header is the channel's neon banner, edge to edge. The CHUCK BRONSON
   MEDIA lockup is composited into a mirror-tiled neon-city field so the art
   fills the full width (no dead bars) with the logo glowing out of the centre.
   The right-side scrim keeps the nav readable over the busy art; a violet
   underglow marks the seam where broadcast meets record. */
.site-header {
	position: sticky; top: 0; z-index: 20;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; padding: 0 20px; min-height: clamp(80px, 7vw, 132px);
	background-color: #0d0a1f;
	background-image:
		linear-gradient(90deg, rgba(13, 10, 31, 0) 56%, rgba(13, 10, 31, 0.88) 86%),
		url(/static/img/yt-header.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-bottom: 1px solid #2a2350;
	box-shadow: 0 10px 30px -12px rgba(124, 58, 237, 0.55);
}
/* Transparent home link over the logo half of the banner. */
.brand { align-self: stretch; flex: 1; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a {
	color: #fff; font-family: var(--mono); font-weight: 500;
	font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9); transition: color .15s;
}
.site-nav a:hover { color: var(--cyan); text-shadow: 0 0 12px rgba(34, 211, 238, .7); }
/* LIVE gets a pulsing red tally light, the one true-red thing in the nav. */
.nav-live::before {
	content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
	background: var(--red); box-shadow: 0 0 8px var(--red); margin-right: 7px;
	vertical-align: baseline; animation: tally 1.6s ease-in-out infinite;
}
@keyframes tally { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ---- buttons ---- */
.btn {
	display: inline-block; padding: 13px 22px; border-radius: 2px;
	font-family: var(--mono); font-weight: 600; letter-spacing: 1.5px;
	text-transform: uppercase; font-size: 13px; cursor: pointer;
	border: 1px solid transparent; background: transparent;
	transition: box-shadow .15s, border-color .15s, background .15s, color .15s;
}
.btn-primary { background: var(--cyan); color: #04121a; box-shadow: 0 0 18px rgba(34, 211, 238, .3); }
.btn-primary:hover { background: var(--cyan-hi); box-shadow: 0 0 26px rgba(34, 211, 238, .55); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 18px rgba(34, 211, 238, .2); }
.btn-donate { background: var(--amber); color: #1a1200; }
.btn-donate:hover { background: #ffc23a; box-shadow: 0 0 22px rgba(255, 176, 0, .4); }
.site-nav .btn-donate { padding: 9px 15px; }

/* ---- bodycam metadata bar (the connective tissue) ---- */
.rec-bar {
	font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 1px;
	text-transform: uppercase; color: var(--amber);
	display: flex; flex-wrap: wrap; align-items: center; gap: 7px 16px; margin: 0 0 22px;
}
.rec-bar span { display: inline-flex; align-items: center; gap: 7px; }
.rec-bar .muted-tag { color: var(--muted); }
.rec-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--red); box-shadow: 0 0 9px var(--red);
	animation: tally 1.6s ease-in-out infinite;
}

/* ---- hero (the thesis) ---- */
.hero { padding: 34px 0 44px; border-bottom: 1px solid var(--line); }
.hero-kicker {
	font-family: var(--mono); font-weight: 600; color: var(--cyan);
	text-transform: uppercase; letter-spacing: 3px; font-size: 13px; margin: 0 0 14px;
	text-shadow: 0 0 14px rgba(34, 211, 238, .5);
}
.hero-title {
	font-family: var(--display); font-weight: 800; text-transform: uppercase;
	letter-spacing: .5px; line-height: .98; margin: 0;
	font-size: clamp(34px, 8.5vw, 86px); overflow-wrap: break-word;
}
/* "First Amendment" — the right he fights for — set in glowing cyan. */
.redact { color: var(--cyan-hi); text-shadow: 0 0 22px rgba(34, 211, 238, .45); }
.hero-sub { color: var(--muted); max-width: 60ch; margin: 20px 0 0; font-size: 19px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---- section headings (the file dividers) ---- */
.section-title {
	font-family: var(--display); text-transform: uppercase; letter-spacing: 1.5px;
	font-size: 24px; color: var(--ink); margin: 52px 0 20px;
	padding: 0 0 10px; border-bottom: 1px solid var(--line);
}
.section-title::before {
	content: "// "; font-family: var(--mono); font-weight: 600;
	color: var(--amber); font-size: 15px; letter-spacing: 0;
}

/* ---- investigations docket ---- */
.inv-grid {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.inv-card {
	background: var(--panel); border: 1px solid var(--line); border-radius: 3px;
	overflow: hidden; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.inv-card:hover {
	border-color: var(--cyan); transform: translateY(-2px);
	box-shadow: 0 0 0 1px var(--cyan), 0 10px 30px -12px rgba(34, 211, 238, .5);
}
.inv-card:hover h3 { color: var(--cyan); }
.inv-card a { display: block; height: 100%; }
.inv-thumb { aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.inv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.inv-card:hover .inv-thumb img { transform: scale(1.04); }
.inv-card-body { padding: 15px 18px 20px; }
.inv-file {
	font-family: var(--mono); font-weight: 500; color: var(--amber);
	font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 9px;
}
.inv-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; transition: color .15s; }
.inv-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.inv-read {
	font-family: var(--mono); color: var(--cyan); font-size: 12px;
	font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

/* ---- videos (footage) ---- */
.video-grid {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.video-card {
	display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 3px;
	overflow: hidden; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.video-card:hover {
	border-color: var(--cyan); transform: translateY(-2px);
	box-shadow: 0 0 0 1px var(--cyan), 0 10px 30px -12px rgba(34, 211, 238, .5);
}
.video-card:hover .video-title { color: var(--cyan); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 54px; height: 54px; border-radius: 50%;
	background: rgba(34, 211, 238, 0.92); color: #04121a;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; line-height: 1; padding-left: 3px;
	box-shadow: 0 0 24px rgba(34, 211, 238, .5);
}
/* Bodycam burn-in: the view count as a footage counter, one line, bottom-right. */
.rec-burn {
	position: absolute; left: 0; right: 0; bottom: 0;
	display: flex; justify-content: flex-end; padding: 16px 9px 6px;
	font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: .5px;
	white-space: nowrap; color: var(--amber); text-shadow: 0 1px 2px #000;
	background: linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0));
}
/* Click-to-play opens the player in a centered modal (see videoFacadeScript). */
.video-modal {
	position: fixed; inset: 0; z-index: 100;
	display: flex; align-items: center; justify-content: center;
	padding: 20px; background: rgba(0, 0, 0, 0.9);
}
.video-modal-frame { position: relative; width: 100%; max-width: 960px; aspect-ratio: 16 / 9; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 6px; display: block; background: #000; }
.video-modal-close {
	position: absolute; top: -42px; right: -4px;
	background: none; border: 0; color: #fff; cursor: pointer;
	font-size: 34px; line-height: 1; padding: 4px 10px;
}
.video-modal-close:hover { color: var(--cyan); }
.video-meta { display: block; padding: 12px 14px 16px; }
.video-title { display: block; font-size: 15px; line-height: 1.3; margin: 0 0 6px; transition: color .15s; }
.video-sub { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: .5px; }
.home-videos { margin: 44px 0; }

/* ---- donate ---- */
.donate {
	margin: 52px 0; padding: 32px 24px; border-radius: 4px;
	background: linear-gradient(180deg, var(--panel-2), var(--panel));
	border: 1px solid var(--line); border-left: 3px solid var(--amber);
}
.donate-note { color: var(--muted); margin: 0 0 18px; }
.donate-links { display: flex; flex-wrap: wrap; gap: 12px; }
.donate-cashapp { background: #00d54b; color: #00210f; }
.donate-cashapp:hover { background: #00c545; box-shadow: 0 0 22px rgba(0, 213, 75, .35); }

/* ---- socials ---- */
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 56px; }
.social {
	padding: 10px 16px; border: 1px solid var(--line); border-radius: 2px;
	color: var(--muted); font-family: var(--mono); font-size: 12px;
	text-transform: uppercase; letter-spacing: 1px; transition: color .15s, border-color .15s;
}
.social:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---- footer (colophon) ---- */
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; padding: 30px 20px; text-align: center; }
.foot-brand { font-family: var(--display); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 6px; font-size: 20px; }
.foot-note { color: var(--muted); margin: 0; font-size: 14px; }
.foot-note::before { content: "● "; color: var(--amber); font-family: var(--mono); }
.foot-links { margin-top: 14px; display: flex; gap: 20px; justify-content: center; }
.foot-links a { color: var(--muted); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.foot-links a:hover { color: var(--cyan); }

/* ---- article (blog post) ---- */
.article { max-width: 720px; margin: 40px auto; }
.article h1 { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; line-height: 1.02; font-size: clamp(34px, 6vw, 56px); }
.article p { font-size: 18px; }
.article img { max-width: 100%; height: auto; border-radius: 4px; }
.article-date { color: var(--amber); font-family: var(--mono); text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin: 0 0 20px; }
.article-hero { width: 100%; border-radius: 6px; margin-bottom: 24px; }

/* ---- static content page (about, privacy) ---- */
.page h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: 24px; margin: 34px 0 8px; }
.page blockquote { margin: 28px 0; padding-left: 18px; border-left: 3px solid var(--amber); color: var(--muted); font-style: italic; font-size: 20px; }
.page-cta { display: inline-block; margin: 20px 14px 0 0; }

/* ---- shop ---- */
.shop-head { padding-top: 32px; }
.shop-note { color: var(--muted); margin: 0 0 8px; }
.shop-grid {
	list-style: none; margin: 0 0 56px; padding: 0;
	display: grid; gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.shop-card {
	background: var(--panel); border: 1px solid var(--line); border-radius: 3px;
	overflow: hidden; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.shop-card:hover {
	border-color: var(--cyan); transform: translateY(-2px);
	box-shadow: 0 0 0 1px var(--cyan), 0 10px 30px -12px rgba(34, 211, 238, .5);
}
.shop-card a { display: block; }
.shop-img-wrap { aspect-ratio: 1 / 1; background: #fff; }
.shop-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.shop-card h3 { margin: 12px 14px 4px; font-family: var(--display); font-size: 17px; text-transform: uppercase; letter-spacing: .5px; }
.price { display: block; margin: 0 14px 14px; color: var(--amber); font-family: var(--mono); font-weight: 500; }
.price-lg { font-size: 24px; color: var(--ink); font-family: var(--mono); margin: 0 0 20px; }

/* ---- product page ---- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 32px 0 56px; align-items: start; }
.product-media { background: #fff; border-radius: 6px; aspect-ratio: 1 / 1; }
.product-media img { width: 100%; height: 100%; object-fit: contain; }
.product-info h1 { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-size: clamp(28px, 4vw, 42px); margin: 0 0 16px; }
.product-buy { margin-bottom: 14px; }
.product-note { color: var(--muted); font-size: 14px; max-width: 42ch; }
.shop-back { display: inline-block; margin-top: 16px; color: var(--cyan); font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.product-cart { display: block; width: fit-content; margin-bottom: 14px; }
.product-spec { color: var(--muted); font-family: var(--mono); font-size: 13px; margin: -8px 0 18px; text-transform: uppercase; letter-spacing: .5px; }
.swatches { margin: 0 0 20px; }
.swatch-label { color: var(--muted); font-family: var(--mono); font-size: 12px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.swatch-label span { color: var(--ink); font-weight: 700; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch {
	width: 30px; height: 30px; border-radius: 50%; cursor: pointer; padding: 0;
	background: #555;
	border: 2px solid rgba(255, 255, 255, .35);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .55);
}
.swatch-wrap { position: relative; display: inline-flex; cursor: pointer; }
.swatch-radio { position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; }
.swatch-wrap:hover .swatch { border-color: var(--cyan); }
.swatch-radio:checked + .swatch { border-color: var(--ink); box-shadow: 0 0 0 2px var(--cyan); }
.swatch-radio:focus-visible + .swatch { outline: 2px solid var(--cyan); outline-offset: 3px; }
.swatches { border: 0; padding: 0; margin: 0 0 20px; }
.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;
}

/* ---- add to cart & cart page ---- */
.pick { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.pick label { color: var(--muted); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; min-width: 46px; }
.pick select, .pick input, .cart-qty input {
	background: #14161a; color: var(--ink); border: 1px solid #2c3138;
	border-radius: 4px; padding: 8px 10px; font: inherit; font-size: 15px;
}
.pick input#qty, .cart-qty input { width: 78px; }
.pick select:focus-visible, .pick input:focus-visible, .cart-qty input:focus-visible { outline: 2px solid var(--cyan); outline-offset: 1px; }
.add-form { margin: 0 0 10px; }
.cart-link { display: inline-block; margin: 0 0 16px; color: var(--cyan); font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.cart-head { padding-top: 32px; }
.cart-empty { color: var(--muted); margin: 0 0 18px; }
.cart-error {
	background: #2a1114; border: 1px solid var(--red); border-radius: 4px;
	padding: 12px 14px; margin: 0 0 20px; color: var(--ink);
}
.cart-error a { color: var(--red); }
.cart-list { list-style: none; padding: 0; margin: 0 0 28px; }
.cart-row {
	display: grid; grid-template-columns: 120px 1fr auto auto; gap: 18px;
	align-items: center; padding: 16px 0; border-bottom: 1px solid #23262b;
}
.cart-thumb { background: #fff; border-radius: 6px; display: block; }
.cart-thumb img { width: 100%; height: auto; display: block; object-fit: contain; }
.cart-title { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .5px; font-size: 18px; }
.cart-opts { color: var(--muted); font-size: 14px; margin: 4px 0; }
.cart-unit { color: var(--muted); font-family: var(--mono); font-size: 13px; margin: 0; }
.cart-qty { display: flex; gap: 8px; align-items: center; }
.cart-update { padding: 8px 12px; font-size: 12px; }
.cart-line-total { text-align: right; }
.cart-line-total .price { margin: 0 0 6px; }
.cart-buy { display: inline-block; padding: 6px 10px; font-size: 12px; margin: 0 0 6px; }
.cart-remove { background: none; border: 0; color: var(--muted); font-family: var(--mono); font-size: 13px; cursor: pointer; padding: 0; text-decoration: underline; }
.cart-remove:hover { color: var(--red); }
.cart-foot { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 56px; }
.cart-total { display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.cart-total .price-lg { margin: 0; }
.cart-checkout { margin-bottom: 10px; }

/* ---- blog docket ---- */
.blog-head { padding-top: 32px; }
.blog-intro { color: var(--muted); margin: 0 0 8px; }
.blog-empty { color: var(--muted); }
.blog-list { list-style: none; margin: 0 0 56px; padding: 0; }
.blog-item { border-bottom: 1px solid var(--line); }
.blog-item a { display: flex; gap: 18px; padding: 20px 0; align-items: flex-start; }
.blog-item:hover h2 { color: var(--cyan); }
.blog-thumb { flex: 0 0 120px; aspect-ratio: 1 / 1; background: #fff; border-radius: 4px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: contain; }
.blog-item-body h2 { margin: 0 0 6px; font-family: var(--display); font-size: 22px; letter-spacing: .3px; line-height: 1.1; text-transform: uppercase; transition: color .15s; }
.blog-date { color: var(--amber); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.blog-date::before { content: "FILED "; color: var(--muted); }
.blog-item-body p { color: var(--muted); margin: 8px 0 0; font-size: 15px; }

@media (max-width: 640px) {
	.site-nav a:not(.btn) { display: none; }
	.hero { padding: 30px 0 32px; }
	.product { grid-template-columns: 1fr; }
	.blog-thumb { flex-basis: 84px; }
	/* Chuck's audience is mostly on phones, so the cart stacks rather than
	   squeezing four columns into 360px. */
	.cart-row { grid-template-columns: 72px 1fr; row-gap: 10px; }
	.cart-qty, .cart-line-total { grid-column: 2; justify-self: start; text-align: left; }
	/* Fill the row instead of hugging the left with dead space; three equal
	   buttons beat a lone Donate orphaned on its own wrapped line. */
	.hero-cta .btn, .donate-links .btn {
		flex: 1 1 0; text-align: center;
		padding-left: 10px; padding-right: 10px;
	}
}

/* ---- contact ---- */
.contact { max-width: 640px; padding: 32px 0 56px; }
.contact h1 { font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 8px; }
.contact-intro { color: var(--muted); margin: 0 0 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.contact-form input, .contact-form textarea {
	background: var(--panel); color: var(--ink); border: 1px solid var(--line);
	border-radius: 4px; padding: 12px 14px; font: inherit; text-transform: none; letter-spacing: normal;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { align-self: flex-start; }
.field-optional { color: var(--muted); text-transform: none; letter-spacing: normal; font-size: 12px; }
.field-error { color: var(--red-hi); font-size: 13px; text-transform: none; letter-spacing: normal; }
/* Honeypot: off-screen, never shown to a real visitor. */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-sent p { font-size: 18px; color: var(--ink); margin: 0 0 20px; }

/* ---- motion off ---- */
@media (prefers-reduced-motion: reduce) {
	.rec-dot, .nav-live::before { animation: none; }
	.inv-card, .video-card, .shop-card { transition: border-color .15s, box-shadow .15s; }
	.inv-card:hover, .video-card:hover, .shop-card:hover { transform: none; }
	.inv-card:hover .inv-thumb img, .video-card:hover .video-thumb img { transform: none; }
}
