/* ============================================================
   Stigma Contact — comic-book contact page widget
   Scoped under .stigma-contact so it cannot leak.
   Accent + bg variables are injected per-widget via inline <style>.
   ============================================================ */

.stigma-contact {
	--sc-accent: #00C8E0;
	--sc-deep:   #0098AD;
	--sc-alt:    #FF1F8F;
	--sc-glow:   rgba(0,200,224,0.30);
	--sc-bg:     #FAF9F4;
	--sc-ink:    #0A0A0B;
	--sc-paper:  #ffffff;
	--sc-muted:  #6B6358;
	--sc-display: 'Bangers', 'Archivo Black', system-ui, sans-serif;
	--sc-heavy:   'Archivo Black', system-ui, sans-serif;
	--sc-body:    'Archivo', system-ui, sans-serif;
	--sc-mono:    'JetBrains Mono', ui-monospace, monospace;

	width: 100%;
	background: var(--sc-bg);
	color: var(--sc-ink);
	font-family: var(--sc-body);
}
.stigma-contact * { box-sizing: border-box; }

/* ============ HERO ============ */
.stigma-contact .sc-hero {
	position: relative;
	padding: 120px 56px 100px;
	overflow: hidden;
}
@media (max-width: 768px) { .stigma-contact .sc-hero { padding: 64px 20px 48px; } }

.stigma-contact .sc-hero__wave {
	position: absolute; inset: 0; opacity: 0.25; pointer-events: none;
	background:
		radial-gradient(60% 30% at 20% 80%, var(--sc-accent), transparent 70%),
		radial-gradient(70% 40% at 80% 70%, var(--sc-accent), transparent 70%);
}
.stigma-contact .sc-hero__glow {
	position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
	width: 900px; height: 500px; max-width: 100%;
	border-radius: 50%;
	background: radial-gradient(ellipse, var(--sc-glow), transparent 65%);
	filter: blur(50px);
	pointer-events: none;
}
.stigma-contact .sc-hero__halftone {
	position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
	background-image: radial-gradient(circle, #000 0.8px, transparent 1.1px);
	background-size: 14px 14px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.stigma-contact .sc-hero__inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}

.stigma-contact .sc-pill {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 18px;
	background: #000; color: var(--sc-accent);
	border: 3px solid #000;
	box-shadow: 4px 4px 0 var(--sc-accent);
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	margin-bottom: 36px;
}
.stigma-contact .sc-pill__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--sc-accent);
	box-shadow: 0 0 0 3px var(--sc-glow);
	animation: sc-pulse 1.6s ease-in-out infinite;
}
@keyframes sc-pulse {
	0%, 100% { box-shadow: 0 0 0 3px var(--sc-glow); }
	50%      { box-shadow: 0 0 0 8px rgba(0,0,0,0.05); }
}

.stigma-contact .sc-hero__title {
	font-family: var(--sc-heavy);
	font-size: clamp(56px, 14vw, 200px);
	line-height: 0.82;
	letter-spacing: -0.045em;
	margin: 0;
	text-transform: uppercase;
	color: #000;
}
.stigma-contact .sc-hero__line { display: block; }
.stigma-contact .sc-hero__line--accent {
	color: var(--sc-accent);
	-webkit-text-stroke: 2px #000;
	filter: drop-shadow(8px 8px 0 #000);
}
.stigma-contact .sc-hero__sub {
	font-size: clamp(15px, 1.6vw, 19px);
	line-height: 1.55;
	max-width: 580px;
	margin: 36px auto 0;
	color: #3A3530;
	font-weight: 500;
}

.stigma-contact .sc-hero__stats {
	position: relative;
	display: flex; justify-content: center; flex-wrap: wrap;
	gap: clamp(20px, 5vw, 56px);
	margin-top: 56px;
	padding-top: 36px;
}
.stigma-contact .sc-hero__stats::before {
	content: ""; position: absolute; top: 0; left: 20%; right: 20%;
	height: 2px; background: #000;
}
.stigma-contact .sc-stat { text-align: center; }
.stigma-contact .sc-stat__num {
	font-family: var(--sc-heavy);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1; color: #000;
	letter-spacing: -0.02em;
}
.stigma-contact .sc-stat__pct { color: var(--sc-accent); }
.stigma-contact .sc-stat__label {
	margin-top: 8px;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--sc-muted);
}

/* ============ MAIN GRID (form + sidebar) ============ */
.stigma-contact .sc-grid { padding: 24px 56px 100px; }
@media (max-width: 768px) { .stigma-contact .sc-grid { padding: 12px 20px 60px; } }

.stigma-contact .sc-grid-inner {
	max-width: 1300px; margin: 0 auto;
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 32px;
	align-items: flex-start;
}
@media (max-width: 960px) { .stigma-contact .sc-grid-inner { grid-template-columns: 1fr; } }

/* ============ Comic-book panel base ============ */
.stigma-contact .sc-panel {
	position: relative;
	background: #fff;
	border: 4px solid #000;
	box-shadow: 8px 8px 0 #000;
	padding: 28px;
	overflow: hidden;
}
.stigma-contact .sc-panel--form { padding: 40px; }
@media (max-width: 768px) {
	.stigma-contact .sc-panel { padding: 22px; }
	.stigma-contact .sc-panel--form { padding: 24px; }
}

.stigma-contact .sc-panel__label {
	display: inline-block;
	background: #000; color: var(--sc-accent);
	padding: 6px 14px; margin-bottom: 20px;
	font-family: var(--sc-mono);
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.2em; text-transform: uppercase;
}
.stigma-contact .sc-panel__heading {
	font-family: var(--sc-display);
	font-size: clamp(36px, 5vw, 60px);
	line-height: 0.9; margin: 0;
	letter-spacing: 0.02em;
	color: #000;
}
.stigma-contact .sc-panel__sub {
	font-size: 14px;
	margin: 8px 0 28px;
	color: #3A3530;
}

/* ============ Topic chips ============ */
.stigma-contact .sc-chips {
	display: flex; flex-wrap: wrap; gap: 10px;
	margin-bottom: 28px;
}
.stigma-contact .sc-chip {
	padding: 12px 20px;
	background: #fff; color: #000;
	border: 3px solid #000;
	font-family: var(--sc-display);
	font-size: 18px; letter-spacing: 0.06em;
	cursor: pointer;
	box-shadow: 4px 4px 0 #000;
	transition: transform 0.1s, box-shadow 0.1s, background 0.1s, color 0.1s;
}
.stigma-contact .sc-chip:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #000; }
.stigma-contact .sc-chip.is-active {
	background: #000; color: var(--sc-accent);
	box-shadow: none;
	transform: translate(4px, 4px);
}

/* ============ Form fields ============ */
.stigma-contact .sc-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
@media (max-width: 540px) { .stigma-contact .sc-row { grid-template-columns: 1fr; } }

.stigma-contact .sc-field { min-width: 0; }
.stigma-contact .sc-label {
	display: block;
	font-family: var(--sc-display);
	font-size: 18px; letter-spacing: 0.05em;
	color: #000; margin-bottom: 6px;
}
.stigma-contact .sc-label__hint {
	font-size: 12px; opacity: 0.55;
	font-family: var(--sc-body); font-weight: 400;
}

.stigma-contact .sc-input {
	width: 100%;
	font-family: inherit; font-size: 16px; color: #000;
	background: #fff;
	border: 3px solid #000;
	border-radius: 0;
	padding: 14px 16px;
	outline: none;
	box-shadow: 4px 4px 0 #000;
	font-weight: 600;
	transition: transform 0.1s, box-shadow 0.1s;
}
.stigma-contact .sc-form--outlined .sc-input {
	background: transparent;
	box-shadow: none;
}
.stigma-contact .sc-input:focus {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--sc-accent);
}
.stigma-contact .sc-textarea { resize: vertical; min-height: 120px; }
.stigma-contact .sc-input::placeholder { color: #999; font-weight: 500; }

.stigma-contact .sc-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important; height: 1px !important;
	overflow: hidden !important;
	opacity: 0;
}

/* Attach a file */
.stigma-contact .sc-attach {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 3px dashed #000;
	font-size: 14px; font-weight: 600;
	cursor: pointer;
	transition: background 0.1s;
}
.stigma-contact .sc-attach:hover { background: #f5f5f5; }
.stigma-contact .sc-attach.is-loaded { background: var(--sc-accent); }
.stigma-contact .sc-attach__icon { font-size: 18px; }

/* Submit */
.stigma-contact .sc-submit-row {
	display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
	margin-top: 8px;
}
.stigma-contact .sc-submit {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 20px 36px;
	background: var(--sc-accent); color: #000;
	border: 4px solid #000;
	font-family: var(--sc-display);
	font-size: 26px; letter-spacing: 0.06em;
	cursor: pointer;
	box-shadow: 6px 6px 0 #000;
	text-transform: uppercase;
	transition: transform 0.1s, box-shadow 0.1s;
}
.stigma-contact .sc-submit:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 #000; }
.stigma-contact .sc-submit.is-loading { opacity: 0.7; cursor: wait; }
.stigma-contact .sc-submit.is-success { background: #2BC471; color: #fff; }
.stigma-contact .sc-submit__arrow { font-size: 22px; }
.stigma-contact .sc-submit-note {
	font-size: 12px; color: #3A3530;
	max-width: 220px; line-height: 1.45;
}

.stigma-contact .sc-feedback {
	margin-top: 16px;
	font-size: 14px; font-weight: 600;
	display: none;
}
.stigma-contact .sc-feedback.is-error {
	display: block;
	background: #fff;
	border: 3px solid #c0392b;
	color: #c0392b;
	padding: 12px 14px;
	box-shadow: 4px 4px 0 #c0392b;
}
.stigma-contact .sc-feedback.is-success {
	display: block;
	background: #fff;
	border: 3px solid #2BC471;
	color: #1f6e3e;
	padding: 12px 14px;
	box-shadow: 4px 4px 0 #2BC471;
}

/* ============ Sidebar panels ============ */
.stigma-contact .sc-side {
	display: flex; flex-direction: column; gap: 24px;
}

.stigma-contact .sc-panel--direct {
	background: #000; color: #fff;
	border-color: #000;
}
.stigma-contact .sc-halftone-bg {
	position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
	background-image: radial-gradient(circle, var(--sc-accent) 1.5px, transparent 1.8px);
	background-size: 12px 12px;
}
.stigma-contact .sc-panel--socials {
	background: var(--sc-accent); color: #000;
	border-color: #000;
}
.stigma-contact .sc-panel--news { background: #fff; }

.stigma-contact .sc-tag {
	position: relative;
	display: inline-block;
	padding: 4px 12px;
	font-family: var(--sc-mono);
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	margin-bottom: 14px;
}
.stigma-contact .sc-tag--invert         { background: var(--sc-accent); color: #000; }
.stigma-contact .sc-tag--inverse-on-accent { background: #000; color: var(--sc-accent); }
.stigma-contact .sc-tag--alt            { background: var(--sc-alt); color: #000; }
.stigma-contact .sc-tag--accent         { background: var(--sc-accent); color: #000; }

.stigma-contact .sc-block-heading {
	font-family: var(--sc-display);
	font-size: clamp(28px, 3.4vw, 40px);
	line-height: 0.95;
	color: #000;
	letter-spacing: 0.02em;
	margin: 0 0 18px;
	position: relative;
}
.stigma-contact .sc-panel--direct .sc-block-heading { color: #fff; }
.stigma-contact .sc-block-heading__line { display: block; }
.stigma-contact .sc-block-heading__line--accent { color: var(--sc-accent); }

.stigma-contact .sc-mail-list { position: relative; }
.stigma-contact .sc-mail-row {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 0;
	border-top: 2px solid rgba(255,255,255,0.15);
	color: #fff;
}
.stigma-contact .sc-mail-row:first-child { border-top: 0; }
.stigma-contact .sc-mail-row__tag {
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	opacity: 0.65;
}
.stigma-contact .sc-mail-row__email {
	font-size: 14px; font-weight: 700;
	color: var(--sc-accent);
	text-decoration: none;
	max-width: 60%;
	word-break: break-all;
	text-align: right;
}
.stigma-contact .sc-mail-row__email:hover { text-decoration: underline; }

.stigma-contact .sc-socials {
	display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
	margin-top: 18px;
}
.stigma-contact .sc-social {
	display: flex; align-items: center; gap: 10px;
	padding: 12px 14px;
	background: #000; color: #fff;
	border: 3px solid #000;
	font-family: var(--sc-heavy);
	font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.1s;
}
.stigma-contact .sc-social:hover { transform: translate(2px, 2px); }
.stigma-contact .sc-social__icon { display: inline-flex; }

.stigma-contact .sc-news-form { display: flex; gap: 0; }
.stigma-contact .sc-news-form__input {
	flex: 1;
	border-right: 0;
	box-shadow: none;
	font-size: 14px;
	padding: 12px 14px;
}
.stigma-contact .sc-news-form__btn {
	background: #000; color: var(--sc-accent);
	border: 3px solid #000;
	padding: 0 18px;
	font-family: var(--sc-display);
	font-size: 18px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.1s;
}
.stigma-contact .sc-news-form__btn:hover { transform: translate(2px, 2px); }

/* ============ FAQ ============ */
.stigma-contact .sc-faq {
	padding: 80px 56px 100px;
	background: #000; color: #fff;
	position: relative; overflow: hidden;
}
@media (max-width: 768px) { .stigma-contact .sc-faq { padding: 56px 20px 60px; } }
.stigma-contact .sc-faq__bg {
	position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
	background-image: radial-gradient(circle, var(--sc-accent) 2px, transparent 2.4px);
	background-size: 18px 18px;
}
.stigma-contact .sc-faq__inner { max-width: 1300px; margin: 0 auto; position: relative; }
.stigma-contact .sc-faq__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
.stigma-contact .sc-faq__title {
	font-family: var(--sc-display);
	font-size: clamp(48px, 8vw, 104px);
	line-height: 0.85; margin: 0;
	letter-spacing: 0.01em;
	color: #fff;
}
.stigma-contact .sc-faq__title-accent { color: var(--sc-accent); }
.stigma-contact .sc-faq__intro {
	font-size: 16px; line-height: 1.55;
	max-width: 320px;
	opacity: 0.7; margin: 0;
}

.stigma-contact .sc-faq__grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 800px) { .stigma-contact .sc-faq__grid { grid-template-columns: 1fr; } }

.stigma-contact .sc-faq__item {
	background: #fff; color: #000;
	border: 4px solid #000;
	box-shadow: 6px 6px 0 var(--sc-accent);
	padding: 24px;
	cursor: pointer;
	transition: background 0.15s;
}
.stigma-contact .sc-faq__item[open] { background: var(--sc-accent); }
.stigma-contact .sc-faq__item summary {
	list-style: none;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	font-family: var(--sc-display);
	font-size: clamp(20px, 2.2vw, 26px);
	letter-spacing: 0.02em;
}
.stigma-contact .sc-faq__item summary::-webkit-details-marker { display: none; }
.stigma-contact .sc-faq__plus {
	width: 36px; height: 36px;
	display: grid; place-items: center;
	background: #000; color: #fff;
	font-size: 20px; font-weight: 700;
	transition: transform 0.2s, color 0.2s;
	flex-shrink: 0;
}
.stigma-contact .sc-faq__item[open] .sc-faq__plus {
	transform: rotate(45deg);
	color: var(--sc-accent);
}
.stigma-contact .sc-faq__a {
	margin-top: 14px;
	font-size: 14px; line-height: 1.55; font-weight: 500;
	font-family: var(--sc-body);
}
