/* =========================================================================
   SoberBoy — Pressing Plant
   One red ink on paper stock. Every colour, size and rule is declared here.
   ========================================================================= */

:root {
	/* Ink */
	--paper:        #FAF8F5;
	--surface:      #FFFFFF;
	--red:          #C81428;
	--red-deep:     #8A0F1A;
	--ink:          #17130F;

	/* Neutrals, warmed very slightly toward the red so nothing reads as grey-by-default */
	--ink-70:       #55504B;
	--ink-45:       #8B837C;
	--rule:         #E4DBD6;
	--rule-strong:  #17130F;
	--tint:         #F3EAE7;

	/* Type */
	--display: "Big Shoulders Display", "Haettenschweiler", "Arial Narrow", sans-serif;
	--body:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	/* Scale */
	--step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.89rem);
	--step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
	--step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
	--step-2:  clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
	--step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
	--step-4:  clamp(2.6rem, 1.7rem + 4.4vw, 5.6rem);
	--step-5:  clamp(3.2rem, 1.6rem + 7.5vw, 8rem);

	/* Space */
	--gap:      clamp(1rem, 0.8rem + 1vw, 1.6rem);
	--gap-lg:   clamp(2rem, 1.4rem + 3vw, 4.5rem);
	--section:  clamp(3.5rem, 2rem + 6vw, 8rem);
	--shell:    min(1240px, 100% - clamp(2rem, 5vw, 6rem));

	--focus: 0 0 0 3px rgba(200, 20, 40, 0.35);
}

/* -------------------------------------------------------------------------
   Reset & base
   ---------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

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

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: var(--step-0);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; }
img, video { height: auto; display: block; }

a { color: var(--red-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--red); }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
	outline: none;
	box-shadow: var(--focus);
	border-radius: 2px;
}

::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	text-wrap: balance;
	margin: 0;
}

p { margin: 0 0 1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
	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 {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ink); color: var(--paper);
	padding: 0.9rem 1.4rem;
	font-family: var(--mono); font-size: var(--step--1);
}
.skip-link:focus { left: 0; }

.shell { width: var(--shell); margin-inline: auto; }

/* -------------------------------------------------------------------------
   Shared type devices
   ---------------------------------------------------------------------- */

.kicker {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red-deep);
	margin: 0 0 0.9rem;
}

.lead {
	font-size: var(--step-1);
	line-height: 1.45;
	color: var(--ink-70);
	max-width: 56ch;
}

.meta {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.06em;
	color: var(--ink-45);
	font-variant-numeric: tabular-nums;
}

.rule-top {
	border-top: 2px solid var(--rule-strong);
	padding-top: clamp(1.4rem, 1rem + 1.6vw, 2.6rem);
}

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.95em 1.6em;
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--red);
	background: var(--red);
	color: #fff;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; transform: translateY(-1px); }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--quiet { background: transparent; color: var(--red-deep); border-color: var(--rule); }
.btn--quiet:hover { background: var(--tint); color: var(--red-deep); border-color: var(--red); }

.btn[disabled], .btn--disabled {
	background: var(--rule); border-color: var(--rule); color: var(--ink-45);
	cursor: not-allowed; transform: none;
}

/* -------------------------------------------------------------------------
   Cursor trail
   ---------------------------------------------------------------------- */

#sb-trail {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9998;
	mix-blend-mode: multiply;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
	#sb-trail { display: none; }
}

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--paper);
	border-bottom: 2px solid var(--rule-strong);
}

.site-header__inner {
	width: var(--shell);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	min-height: 74px;
}

.brandmark {
	display: inline-flex;
	align-items: center;
	background: var(--ink);
	padding: 0.6rem 0.9rem;
	color: var(--paper);
	text-decoration: none;
	border-radius: 2px;
	flex: none;
}
.brandmark__svg { display: block; width: clamp(132px, 15vw, 186px); color: var(--paper); }
.brandmark__svg svg { display: block; width: 100%; height: auto; }
.brandmark__img { width: clamp(132px, 15vw, 186px); height: auto; }
.brandmark__text { font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.02em; }

.brandmark--light { background: transparent; padding: 0; color: var(--paper); }

/* Navigation */

.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2.2rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav__list a {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	padding: 0.4em 0;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.nav__list a:hover { color: var(--red); border-bottom-color: var(--red); }
.nav__list .current-menu-item > a,
.nav__list .current_page_item > a { color: var(--red-deep); border-bottom-color: var(--red-deep); }

.nav-toggle {
	display: none;
	background: none;
	border: 2px solid var(--ink);
	border-radius: 2px;
	padding: 0.5rem 0.7rem;
	cursor: pointer;
	font-family: var(--mono);
	font-size: var(--step--1);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink);
}

@media (max-width: 940px) {
	.nav-toggle { display: inline-block; }
	.site-nav {
		position: fixed;
		inset: 74px 0 auto;
		background: var(--paper);
		border-bottom: 2px solid var(--rule-strong);
		padding: var(--gap) 0 calc(var(--gap) * 1.5);
		transform: translateY(-120%);
		transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
		visibility: hidden;
	}
	.site-nav.is-open { transform: translateY(0); visibility: visible; }
	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: var(--shell);
		margin-inline: auto;
	}
	.nav__list li { width: 100%; border-bottom: 1px solid var(--rule); }
	.nav__list a { display: block; padding: 0.9rem 0; font-size: var(--step-0); border-bottom: none; }
}

/* -------------------------------------------------------------------------
   Breadcrumbs
   ---------------------------------------------------------------------- */

.breadcrumbs {
	border-bottom: 1px solid var(--rule);
	background: var(--paper);
}
.breadcrumbs__list {
	width: var(--shell);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0.85rem 0;
	margin-block: 0;
	font-family: var(--mono);
	font-size: var(--step--1);
	color: var(--ink-45);
}
.breadcrumbs__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs a { color: var(--ink-45); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); }
.breadcrumbs__sep { color: var(--rule); }

/* -------------------------------------------------------------------------
   Hero — the type-led left column, image printed in red off the right edge
   ---------------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	border-bottom: 2px solid var(--rule-strong);
	background: var(--paper);
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: 0 0 0 auto;
	width: 56%;
	z-index: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}
.hero__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 58% 18%;
	filter: grayscale(1) contrast(1.45) brightness(1.12);
}
.hero__ink {
	position: absolute; inset: 0;
	background: var(--red);
	mix-blend-mode: lighten;
}
.hero__ink--deep {
	background: var(--red-deep);
	mix-blend-mode: multiply;
	opacity: 0.55;
}
.hero__wash {
	position: absolute;
	inset: 0 auto 0 0;
	width: 46%;
	z-index: 1;
	background: linear-gradient(90deg, var(--paper) 58%, rgba(250, 248, 245, 0));
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: var(--shell);
	margin-inline: auto;
	padding-block: clamp(3rem, 2rem + 6vw, 7.5rem);
	min-height: clamp(420px, 60vh, 720px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero__copy { max-width: min(62%, 42rem); }

.hero__title {
	font-size: var(--step-5);
	line-height: 0.84;
	margin: 0 0 clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
}
.hero__title .is-red { color: var(--red); display: block; }
.hero__title span { display: block; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

@media (max-width: 860px) {
	.hero__media { width: 100%; opacity: 0.28; -webkit-mask-image: none; mask-image: none; }
	.hero__wash {
		width: 100%;
		background: linear-gradient(180deg, rgba(250, 248, 245, 0.75), var(--paper) 78%);
	}
	.hero__copy { max-width: 100%; }
}

/* -------------------------------------------------------------------------
   Page header (interior pages)
   ---------------------------------------------------------------------- */

.page-head {
	border-bottom: 2px solid var(--rule-strong);
	padding-block: clamp(2.4rem, 1.6rem + 4vw, 5.5rem);
	position: relative;
	overflow: hidden;
}
.page-head__inner { width: var(--shell); margin-inline: auto; position: relative; z-index: 2; }
.page-head__title { font-size: var(--step-4); margin: 0 0 1rem; }
.page-head__media {
	position: absolute; inset: 0 0 0 auto; width: 40%; z-index: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
	mask-image: linear-gradient(90deg, transparent, #000 45%);
}
.page-head__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.4) brightness(1.12); }
.page-head__media .hero__ink { background: var(--red); mix-blend-mode: lighten; }

/* -------------------------------------------------------------------------
   Sections
   ---------------------------------------------------------------------- */

.section { padding-block: var(--section); }
.section--tint { background: var(--tint); border-block: 2px solid var(--rule-strong); }
.section--ink { background: var(--ink); color: var(--paper); border-block: 2px solid var(--ink); }
.section--ink .kicker { color: #E9A0A6; }
.section--ink .meta { color: rgba(250, 248, 245, 0.6); }
.section--ink a { color: #fff; }

.section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: clamp(1.6rem, 1.2rem + 2vw, 3rem);
	border-top: 2px solid currentColor;
	padding-top: 1.4rem;
}
.section__title { font-size: var(--step-3); margin: 0; }
.section__aside { max-width: 40ch; }

/* -------------------------------------------------------------------------
   Release cards
   ---------------------------------------------------------------------- */

.releases {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: clamp(1rem, 0.7rem + 1.4vw, 2rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.release {
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 3px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: border-color 0.18s ease, transform 0.18s ease;
}
.release:hover { border-color: var(--red); transform: translateY(-2px); }

.release__art {
	position: relative;
	aspect-ratio: 1;
	background: var(--tint);
	overflow: hidden;
}
.release__art img { width: 100%; height: 100%; object-fit: cover; }
.release__art--empty {
	display: grid;
	place-items: center;
	font-family: var(--mono);
	font-size: var(--step--1);
	color: var(--ink-45);
}

.release__kind {
	position: absolute;
	top: 0.6rem; left: 0.6rem;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--mono);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25em 0.6em;
	border-radius: 2px;
}

.release__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.release__title { font-family: var(--body); font-weight: 700; font-size: var(--step-0); text-transform: none; line-height: 1.25; letter-spacing: 0; }
.release__title a { color: var(--ink); text-decoration: none; }
.release__title a:hover { color: var(--red); }
.release__artist { font-size: var(--step--1); color: var(--ink-70); margin: 0; }
.release__links { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.7rem; }
.release__link {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--red-deep);
	border: 1px solid var(--rule);
	padding: 0.3em 0.55em;
	border-radius: 2px;
}
.release__link:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* -------------------------------------------------------------------------
   Events carousel
   ---------------------------------------------------------------------- */

.events { position: relative; }

.events__track {
	display: flex;
	gap: clamp(0.9rem, 0.6rem + 1.2vw, 1.6rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
	margin: 0;
	list-style: none;
	scrollbar-width: thin;
	scrollbar-color: var(--red) var(--rule);
}
.events__track::-webkit-scrollbar { height: 6px; }
.events__track::-webkit-scrollbar-track { background: var(--rule); }
.events__track::-webkit-scrollbar-thumb { background: var(--red); }

.event {
	scroll-snap-align: start;
	flex: 0 0 clamp(258px, 30vw, 340px);
	background: var(--surface);
	border: 1px solid var(--rule);
	border-top: 4px solid var(--red);
	border-radius: 3px;
	padding: 1.3rem 1.35rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.event--past { border-top-color: var(--rule); opacity: 0.72; }

.event__date {
	font-family: var(--display);
	font-weight: 900;
	font-size: var(--step-2);
	line-height: 0.9;
	color: var(--ink);
	text-transform: uppercase;
	font-variant-numeric: tabular-nums;
}
.event__day { font-family: var(--mono); font-size: var(--step--1); color: var(--red-deep); letter-spacing: 0.1em; text-transform: uppercase; }
.event__name { font-family: var(--body); font-weight: 700; font-size: var(--step-0); text-transform: none; letter-spacing: 0; line-height: 1.3; }
.event__place { font-size: var(--step--1); color: var(--ink-70); margin: 0; }
.event__lineup { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-45); margin: 0; line-height: 1.55; }
.event__cta { margin-top: auto; padding-top: 0.8rem; }
.event__soldout {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--red-deep);
	border: 1px dashed var(--red-deep);
	padding: 0.5em 0.8em;
	display: inline-block;
	border-radius: 2px;
}

.events__nav { display: flex; gap: 0.5rem; }
.events__btn {
	width: 44px; height: 44px;
	border: 2px solid var(--ink);
	background: transparent;
	color: var(--ink);
	border-radius: 2px;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.16s ease, color 0.16s ease;
}
.events__btn:hover { background: var(--ink); color: var(--paper); }
.events__btn[disabled] { opacity: 0.3; cursor: default; }
.events__btn .icon { width: 20px; height: 20px; }
.events__btn--prev .icon { transform: rotate(180deg); }

.events__empty {
	border: 2px dashed var(--rule);
	border-radius: 3px;
	padding: clamp(1.6rem, 1.2rem + 2vw, 3rem);
	text-align: center;
	color: var(--ink-45);
	font-family: var(--mono);
	font-size: var(--step--1);
}

/* -------------------------------------------------------------------------
   Instagram
   ---------------------------------------------------------------------- */

.ig-feed { --ig-gap: 4px; }
.ig-feed #sb_instagram,
.ig-feed .sbi_photo_wrap { border-radius: 2px; overflow: hidden; }
.ig-feed #sbi_images { gap: var(--ig-gap) !important; }
.ig-feed .sbi_photo { filter: grayscale(1) contrast(1.15); transition: filter 0.25s ease; }
.ig-feed .sbi_photo:hover { filter: none; }
.ig-feed #sbi_load { margin-top: 1rem; }

.ig-fallback {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 4px;
}
.ig-fallback__cell {
	aspect-ratio: 1;
	background: var(--tint);
	border-radius: 2px;
	display: grid;
	place-items: center;
	font-family: var(--mono);
	font-size: 0.72rem;
	color: var(--ink-45);
}

/* -------------------------------------------------------------------------
   Consultation
   ---------------------------------------------------------------------- */

.services {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: clamp(1rem, 0.7rem + 1.4vw, 1.8rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.service {
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 3px;
	padding: 1.5rem 1.5rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.service__title { font-size: var(--step-2); }
.service__lead { color: var(--ink-70); margin: 0; }
.service__for {
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px solid var(--rule);
	font-family: var(--mono);
	font-size: var(--step--1);
	color: var(--red-deep);
	letter-spacing: 0.05em;
}

.promises { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; max-width: 66ch; }
.promises li { display: flex; gap: 0.85rem; align-items: flex-start; line-height: 1.5; }
.promises .icon { flex: none; width: 1.25em; height: 1.25em; color: var(--red); margin-top: 0.2em; }

.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 0; }
.step {
	counter-increment: step;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(1rem, 0.8rem + 1.4vw, 2.2rem);
	padding: clamp(1.2rem, 1rem + 1.2vw, 2rem) 0;
	border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step::before {
	content: counter(step, decimal-leading-zero);
	font-family: var(--mono);
	font-size: var(--step--1);
	color: var(--red);
	letter-spacing: 0.08em;
	padding-top: 0.35em;
}
.step__title { font-size: var(--step-2); margin: 0 0 0.4rem; }
.step__body { color: var(--ink-70); margin: 0; }

.sectors { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.sectors li {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.05em;
	border: 1px solid var(--ink);
	border-radius: 2px;
	padding: 0.45em 0.85em;
}

/* -------------------------------------------------------------------------
   Merch
   ---------------------------------------------------------------------- */

.merch {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: clamp(1rem, 0.7rem + 1.4vw, 2rem);
	list-style: none; margin: 0; padding: 0;
}
.merch__item {
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 3px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.merch__figure {
	aspect-ratio: 4 / 5;
	background: var(--tint);
	display: grid;
	place-items: center;
	padding: 1.4rem;
	position: relative;
}
.merch__figure img, .merch__figure svg { width: 100%; height: 100%; object-fit: contain; }
.merch__badge {
	position: absolute; top: 0.8rem; right: 0.8rem;
	background: var(--red); color: #fff;
	font-family: var(--mono); font-size: 0.68rem;
	letter-spacing: 0.09em; text-transform: uppercase;
	padding: 0.3em 0.6em; border-radius: 2px;
}
.merch__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.merch__title { font-size: var(--step-2); }
.merch__desc { font-size: var(--step--1); color: var(--ink-70); margin: 0; }
.merch__sizes { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-45); }
.merch__cta { margin-top: auto; padding-top: 0.8rem; }

/* -------------------------------------------------------------------------
   About
   ---------------------------------------------------------------------- */

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: var(--gap-lg);
	align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.prose { max-width: 66ch; }
.prose p { font-size: var(--step-0); line-height: 1.7; }
.prose h2 { font-size: var(--step-2); margin: 2.2rem 0 0.8rem; }
.prose h3 { font-size: var(--step-1); margin: 1.8rem 0 0.6rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
	margin: 2rem 0;
	padding: 0 0 0 1.4rem;
	border-left: 3px solid var(--red);
	font-size: var(--step-1);
	color: var(--ink);
}

.pullquote {
	font-family: var(--display);
	font-weight: 700;
	font-size: var(--step-2);
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--red-deep);
	border-top: 2px solid var(--rule-strong);
	border-bottom: 2px solid var(--rule-strong);
	padding: 1.4rem 0;
	margin: 2.4rem 0;
	max-width: 30ch;
}

.facts { border-top: 2px solid var(--rule-strong); margin: 0; }
.facts__row {
	display: grid;
	grid-template-columns: minmax(9rem, 38%) 1fr;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--rule);
}
.facts__label { font-family: var(--mono); font-size: var(--step--1); letter-spacing: 0.06em; color: var(--ink-45); text-transform: uppercase; margin: 0; }
.facts__value { margin: 0; font-size: var(--step--1); }

.portrait { border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; background: var(--tint); }
.portrait img { width: 100%; filter: grayscale(1) contrast(1.3); }

/* -------------------------------------------------------------------------
   Press kit
   ---------------------------------------------------------------------- */

.downloads { display: grid; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.download {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.2rem;
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 3px;
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.16s ease;
}
.download:hover { border-color: var(--red); color: var(--ink); }
.download__name { font-family: var(--body); font-weight: 600; }
.download__hint { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-45); }

.quotes { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.quote {
	border-left: 3px solid var(--red);
	padding: 0.4rem 0 0.4rem 1.3rem;
}
.quote__text { font-size: var(--step-1); line-height: 1.35; margin: 0 0 0.4rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; }
.quote__source { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-45); }

.copyblock {
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 3px;
	padding: 1.4rem;
	position: relative;
}
.copyblock__copy {
	position: absolute; top: 0.9rem; right: 0.9rem;
	font-family: var(--mono); font-size: 0.7rem;
	text-transform: uppercase; letter-spacing: 0.07em;
	background: var(--ink); color: var(--paper);
	border: none; border-radius: 2px;
	padding: 0.4em 0.7em; cursor: pointer;
}
.copyblock__copy:hover { background: var(--red); }

/* -------------------------------------------------------------------------
   Forms
   ---------------------------------------------------------------------- */

.sb-form { display: grid; gap: 1rem; max-width: 42rem; }
.sb-form--inline { grid-template-columns: 1fr auto; align-items: end; gap: 0.7rem; max-width: 34rem; }
@media (max-width: 560px) { .sb-form--inline { grid-template-columns: 1fr; } }

.sb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .sb-row { grid-template-columns: 1fr; } }

.sb-field { display: grid; gap: 0.4rem; }
.sb-field label {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink-70);
}
.sb-field input,
.sb-field select,
.sb-field textarea {
	font-family: var(--body);
	font-size: var(--step-0);
	color: var(--ink);
	background: var(--surface);
	border: 1px solid var(--rule);
	border-radius: 2px;
	padding: 0.75em 0.85em;
	width: 100%;
}
.sb-field textarea { min-height: 8rem; resize: vertical; }
.sb-field input:focus,
.sb-field select:focus,
.sb-field textarea:focus { border-color: var(--red); }

.sb-field--sum { max-width: 16rem; }

/* The honeypot: present in the DOM, never on the screen. */
.sb-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.sb-form__note { font-size: var(--step--1); color: var(--ink-45); margin: 0; }

.sb-message {
	font-family: var(--mono);
	font-size: var(--step--1);
	padding: 0.9em 1em;
	border-radius: 2px;
	border: 1px solid;
}
.sb-message[hidden] { display: none; }
.sb-message--ok { border-color: var(--red); background: var(--tint); color: var(--red-deep); }
.sb-message--bad { border-color: var(--ink); background: var(--surface); color: var(--ink); }

.sb-form.is-sending .btn { opacity: 0.6; pointer-events: none; }

/* -------------------------------------------------------------------------
   Newsletter block
   ---------------------------------------------------------------------- */

.signup {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--gap-lg);
	align-items: center;
}
@media (max-width: 860px) { .signup { grid-template-columns: 1fr; } }
.signup__title { font-size: var(--step-3); }

/* -------------------------------------------------------------------------
   Ambient audio player
   ---------------------------------------------------------------------- */

.player {
	position: fixed;
	left: clamp(0.8rem, 2vw, 1.6rem);
	bottom: clamp(0.8rem, 2vw, 1.6rem);
	z-index: 300;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	background: var(--ink);
	color: var(--paper);
	border-radius: 3px;
	padding: 0.55rem 0.9rem 0.55rem 0.55rem;
	box-shadow: 0 6px 24px rgba(23, 19, 15, 0.18);
	transform: translateY(140%);
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	max-width: calc(100vw - 2rem);
}
.player.is-ready { transform: translateY(0); }

.player__art {
	width: 42px; height: 42px;
	border-radius: 2px;
	background: var(--red-deep);
	object-fit: cover;
	flex: none;
}
.player__meta { min-width: 0; display: grid; gap: 0.1rem; }
.player__title {
	font-family: var(--body);
	font-weight: 600;
	font-size: 0.82rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 15rem;
}
.player__artist {
	font-family: var(--mono);
	font-size: 0.68rem;
	color: rgba(250, 248, 245, 0.62);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 15rem;
}
.player__controls { display: flex; gap: 0.3rem; margin-left: 0.3rem; }
.player__btn {
	width: 34px; height: 34px;
	display: grid; place-items: center;
	background: transparent;
	border: 1px solid rgba(250, 248, 245, 0.28);
	color: var(--paper);
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.16s ease, border-color 0.16s ease;
}
.player__btn:hover { background: var(--red); border-color: var(--red); }
.player__btn .icon { width: 16px; height: 16px; }

.player__bar {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: rgba(250, 248, 245, 0.16);
	border-radius: 0 0 3px 3px;
	overflow: hidden;
}
.player__progress { height: 100%; width: 0; background: var(--red); transition: width 0.25s linear; }

@media (max-width: 560px) {
	.player__meta { display: none; }
}

/* -------------------------------------------------------------------------
   Cookie banner
   ---------------------------------------------------------------------- */

.cookie {
	position: fixed;
	right: clamp(0.8rem, 2vw, 1.6rem);
	bottom: clamp(0.8rem, 2vw, 1.6rem);
	z-index: 400;
	width: min(28rem, calc(100vw - 2rem));
	background: var(--surface);
	border: 2px solid var(--ink);
	border-radius: 3px;
	padding: 1.2rem 1.3rem;
	display: grid;
	gap: 0.9rem;
	transform: translateY(160%);
	transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie.is-open { transform: translateY(0); }
.cookie__text { font-size: var(--step--1); color: var(--ink-70); margin: 0; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.cookie__link { font-family: var(--mono); font-size: var(--step--1); margin-left: auto; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */

.site-footer {
	background: var(--ink);
	color: var(--paper);
	padding-block: clamp(2.4rem, 1.6rem + 4vw, 5rem) clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
	margin-top: var(--section);
}
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: #F3B7BD; }

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(150px, 1fr));
	gap: var(--gap-lg);
	padding-bottom: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
	border-bottom: 1px solid rgba(250, 248, 245, 0.18);
}
.footer-col__title {
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(250, 248, 245, 0.55);
	margin: 0 0 0.9rem;
	font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { text-decoration: none; font-size: var(--step--1); }
.footer-col a:hover { text-decoration: underline; }

.footer-brand__tagline { color: rgba(250, 248, 245, 0.62); font-size: var(--step--1); margin: 1rem 0 1.2rem; max-width: 30ch; }
.footer-brand .brandmark { background: transparent; padding: 0; }
.footer-brand .brandmark__svg { color: var(--paper); width: clamp(160px, 22vw, 220px); }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.4rem;
	font-family: var(--mono);
	font-size: var(--step--1);
	color: rgba(250, 248, 245, 0.5);
}
.footer-bottom ul { display: flex; gap: 1.2rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom a { text-decoration: none; }

/* Socials */

.socials { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; margin: 0; padding: 0; }
.socials__link {
	display: inline-block;
	font-family: var(--mono);
	font-size: var(--step--1);
	letter-spacing: 0.05em;
	text-decoration: none;
	border: 1px solid var(--rule);
	border-radius: 2px;
	padding: 0.4em 0.7em;
	color: var(--ink);
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.socials__link:hover { background: var(--red); border-color: var(--red); color: #fff; }

.site-footer .socials__link { border-color: rgba(250, 248, 245, 0.28); color: var(--paper); }
.site-footer .socials__link:hover { background: var(--red); border-color: var(--red); }

/* -------------------------------------------------------------------------
   Audio embeds
   ---------------------------------------------------------------------- */

.audio-embed { border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; background: var(--surface); }
.audio-embed + .audio-embed { margin-top: 0.7rem; }
.audio-embed iframe { display: block; border: 0; }

.embed-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* -------------------------------------------------------------------------
   Single entry
   ---------------------------------------------------------------------- */

.entry { padding-block: var(--section); }
.entry__title { font-size: var(--step-4); margin: 0 0 1.2rem; }
.entry__cover { margin: 0 0 var(--gap-lg); border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; }

/* -------------------------------------------------------------------------
   404 & search
   ---------------------------------------------------------------------- */

.notfound { padding-block: clamp(4rem, 3rem + 6vw, 9rem); text-align: center; }
.notfound__code { font-family: var(--display); font-weight: 900; font-size: var(--step-5); color: var(--red); line-height: 0.8; }
.notfound__links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 2rem; }

.searchlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.searchlist li { border-top: 1px solid var(--rule); padding: 1.2rem 0; }
.searchlist li:last-child { border-bottom: 1px solid var(--rule); }
.searchlist h2 { font-size: var(--step-1); margin: 0 0 0.3rem; }
.searchlist a { text-decoration: none; color: var(--ink); }
.searchlist a:hover { color: var(--red); }

/* -------------------------------------------------------------------------
   Utility
   ---------------------------------------------------------------------- */

.stack > * + * { margin-top: var(--gap); }
.stack-lg > * + * { margin-top: var(--gap-lg); }
.center { text-align: center; }
.hide { display: none !important; }
