/* =====================================================
   omarcharq.com — Homepage styles
   Fonts: Neue Haas Grotesk (Display Black / Text Roman)
   Palette: #F5F2EE / #1A1A1A / #E83A2F
   ===================================================== */

/* ------------------------------
   1. FONTS
   Paths assume this file lives in /assets/css/
   and fonts live in /assets/fonts/
   ------------------------------ */
@font-face {
	font-family: 'Haas Display';
	src: url('../fonts/NeueHaasGrotDisp-95Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Display';
	src: url('../fonts/NeueHaasGrotDisp-96BlackItalic.woff2') format('woff2');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Display';
	src: url('../fonts/NeueHaasGrotDisp-55Roman.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Display';
	src: url('../fonts/NeueHaasGrotDisp-75Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Display';
	src: url('../fonts/NeueHaasGrotDisp-76BoldItalic.woff2') format('woff2');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Text';
	src: url('../fonts/NeueHaasGrotText-55Roman.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Haas Text';
	src: url('../fonts/NeueHaasGrotText-56Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* MOOD's wordmark face — used ONLY for the word "mood" */
@font-face {
	font-family: 'Gazpacho';
	src: url('../fonts/Gazpacho-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* ------------------------------
   2. TOKENS
   ------------------------------ */
:root {
	--c-paper: #F5F2EE;
	--c-ink: #000000;
	--c-accent: #E83A2F;

	--f-display: 'Haas Display', 'Helvetica Neue', Arial, sans-serif;
	--f-text: 'Haas Text', 'Helvetica Neue', Arial, sans-serif;

	--container: 1200px;
	--pad-x: 24px;
}

/* ------------------------------
   3. BASE (homepage scope)
   .hp carries the base styles directly so they apply
   even without body_class() support in the header.
   ------------------------------ */
body.home,
body {
	margin: 0;
}

.hp {
	background: var(--c-paper);
	color: var(--c-ink);
	font-family: var(--f-text);
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.hp-container {
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}

/* Mobile-only line breaks in the hero statement */
.hp-br {
	display: none;
}

.hp-accent {
	color: var(--c-accent);
	font-family: var(--f-display);
	font-weight: 900;
	font-style: italic;
	position: relative;
	display: inline-block;
}

/* The word "mood" appears as itself — wordmark cameo, nothing more */
.brand-mood {
	font-family: 'Gazpacho', var(--f-text);
	font-weight: 900;
	letter-spacing: 0.01em;
}

/* "choose" — a red underline draws in, holds, erases, repeats */
.hp-accent--choose::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.07em;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: left;
	animation: hp-draw-loop 4s ease-in-out infinite;
	animation-delay: 0.7s;
}

/* "like" — struck through in ink, same repeating cycle */
.hp-accent--like::after {
	content: '';
	position: absolute;
	left: -0.05em;
	top: 0.52em;
	width: calc(100% + 0.1em);
	height: 0.08em;
	background: var(--c-ink);
	transform: scaleX(0);
	transform-origin: left;
	animation: hp-draw-loop 4s ease-in-out infinite;
	animation-delay: 1.4s;
}

/* draw from the left, hold, erase toward the right, rest, repeat */
@keyframes hp-draw-loop {
	0% {
		transform: scaleX(0);
		transform-origin: left;
	}
	18% {
		transform: scaleX(1);
		transform-origin: left;
	}
	60% {
		transform: scaleX(1);
		transform-origin: left;
	}
	61% {
		transform: scaleX(1);
		transform-origin: right;
	}
	80% {
		transform: scaleX(0);
		transform-origin: right;
	}
	100% {
		transform: scaleX(0);
		transform-origin: right;
	}
}

/* ------------------------------
   4. BUTTON (shared pill)
   ------------------------------ */
.hp-btn {
	display: inline-block;
	background: var(--c-accent);
	color: var(--c-paper);
	font-family: var(--f-text);
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 999px;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.hp-btn:hover {
	background: var(--c-ink);
	transform: translateY(-2px);
}

.hp-btn:focus-visible {
	outline: 3px solid var(--c-ink);
	outline-offset: 3px;
}

/* Buttons sitting on the dark contact band need to stay visible on hover */
.hp-contact .hp-btn:hover {
	background: var(--c-paper);
	color: var(--c-ink);
}

/* ------------------------------
   5. HERO
   ------------------------------ */
.hp-hero {
	padding: 220px 0 180px;
	text-align: center;
}

.hp-statement {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(20px, 2.2vw, 32px);
	line-height: 1.2;
	letter-spacing: 0;
	margin: 0 auto 40px;
	max-width: none;
	text-wrap: balance;
}

/* ------------------------------
   6. WORK GRID  (CJ-style: near full-bleed, tight gaps)
   ------------------------------ */
.hp-work {
	padding: 0 0 140px;
}

/* CJ-style grid: wide but held off the edges, like CJ — FINAL */
.hp-work .hp-container {
	max-width: none;
	padding-left: clamp(24px, 5vw, 96px);
	padding-right: clamp(24px, 5vw, 96px);
}

.hp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.hp-tile {
	position: relative;
	aspect-ratio: 1 / 1;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

/* Per-brand tile colors — each tile previews its brand's world */
.hp-tile--mood {
	background: #FFC600;
}

.hp-tile--logos {
	background: #FFFFFF;
}

.hp-tile--arcadia {
	background: #BCE6D8;
}

.hp-tile--hedmen {
	background: #002B45;
}

.hp-tile--vida {
	background: #C8102E;
}

.hp-tile--falafel {
	background: #FAEBBD;
}

/* Legacy tones (kept for safety) */
.hp-tile--red {
	background: var(--c-accent);
}

.hp-tile--dark {
	background: var(--c-ink);
}

.hp-tile__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

a.hp-tile:hover .hp-tile__img {
	transform: scale(1.04);
}

/* Labels: always visible on real projects, lift slightly on hover */
/* CJ hover system: dark fade sweeps in, name appears */
.hp-tile__fade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(26, 26, 26, 0);
	transition: background-color 0.3s ease;
}

a.hp-tile:hover .hp-tile__fade,
a.hp-tile:focus-visible .hp-tile__fade {
	background: rgba(26, 26, 26, 0.6);
}

.hp-tile__label {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 2;
	text-align: center;
	font-family: var(--f-text);
	font-weight: 400;
	font-size: clamp(12px, 1vw, 15px);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-paper);
	opacity: 0;
	transform: translateY(calc(-50% + 8px));
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	padding: 0 16px;
}

a.hp-tile:hover .hp-tile__label,
a.hp-tile:focus-visible .hp-tile__label {
	opacity: 1;
	transform: translateY(-50%);
}

/* LOGOS tile: white field, black marks cycling, same hover as the rest */
.hp-logocycle {
	position: absolute;
	inset: 0;
}

.hp-logocycle img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 62%;
	height: 58%;
	object-fit: contain;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.hp-logocycle img.is-active {
	opacity: 1;
}

/* Touch devices: a finger resting on a tile mid-scroll reveals the
   fade + name (like CJ); scrolling on cancels the tap, so no navigation */
@media (hover: none) {
	a.hp-tile:active .hp-tile__fade,
	a.hp-tile.is-touched .hp-tile__fade {
		background: rgba(26, 26, 26, 0.6);
	}

	a.hp-tile:active .hp-tile__label,
	a.hp-tile.is-touched .hp-tile__label {
		opacity: 1;
		transform: translateY(-50%);
	}
}


a.hp-tile:focus-visible {
	outline: 3px solid var(--c-accent);
	outline-offset: 3px;
}

/* ------------------------------
   7. ABOUT BAND
   ------------------------------ */
.hp-about {
	background: var(--c-paper);
	color: var(--c-ink);
	padding: 120px 0;
}

/* About band escapes the 1200px container — text starts near the left edge, like CJ */
.hp-about .hp-container {
	max-width: none;
	padding-left: clamp(24px, 5vw, 96px);
	padding-right: clamp(24px, 5vw, 96px);
}

.hp-about__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.hp-heading {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

/* "Pretty" — struck through in red on a slow loop,
   same visual language as "like" in the hero */
.hp-strike {
	position: relative;
	display: inline-block;
}

.hp-strike::after {
	content: '';
	position: absolute;
	left: -0.04em;
	top: 0.5em;
	width: calc(100% + 0.08em);
	height: 0.09em;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: left;
	animation: hp-draw-loop 5s ease-in-out infinite;
	animation-delay: 1s;
}

.hp-about__text p {
	margin: 0 0 20px;
	max-width: 46ch;
}

.hp-about__text .hp-btn {
	margin-top: 16px;
}

.hp-about__media {
	margin: 0;
}

.hp-about__media img {
	display: block;
	width: 100%;
	height: auto;
}

/* ------------------------------
   8. CONTACT BAND
   ------------------------------ */
.hp-contact {
	background: var(--c-ink);
	color: var(--c-paper);
	padding: 160px 0;
	text-align: center;
}

.hp-contact__heading {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(48px, 7vw, 104px);
	line-height: 0.98;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.hp-accent-text {
	color: var(--c-accent);
	position: relative;
	display: inline-block;
}

/* "BRAND" — red underline on the same repeating cycle as the hero */
.hp-accent-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0.02em;
	width: 100%;
	height: 0.06em;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: left;
	animation: hp-draw-loop 4.5s ease-in-out infinite;
	animation-delay: 0.8s;
}

.hp-contact__subline {
	font-size: 19px;
	margin: 0 auto 40px;
}

/* ------------------------------
   8b. CASE STUDY PLACEHOLDER
   ------------------------------ */
.cs-ph {
	padding: 200px 0 160px;
	text-align: center;
}

.cs-ph__eyebrow {
	font-family: var(--f-text);
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin: 0 0 16px;
}

.cs-ph__title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(48px, 7vw, 96px);
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 24px;
}

.cs-ph__line {
	font-size: 18px;
	margin: 0 auto 40px;
	max-width: 40ch;
}

/* ------------------------------
   8c. WORK ARCHIVE PAGE — grid only
   ------------------------------ */
.wa .wa-grid-only {
	padding-top: 80px;
	padding-bottom: 140px;
}

@media (max-width: 600px) {
	.wa .wa-grid-only {
		padding-top: 40px;
	}
}

/* ------------------------------
   8d. LOGOS PAGE
   ------------------------------ */
.logos-page {
	background: var(--c-ink);
}

.lg-wall {
	padding: 100px 0 140px;
	min-height: 60vh;
}

.lg-wall .hp-container {
	max-width: none;
	padding-left: clamp(40px, 9vw, 180px);
	padding-right: clamp(40px, 9vw, 180px);
}

.lg-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
}

.lg-cell {
	margin: 0;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lg-cell img {
	/* actual size comes from the per-logo inline width (equal visual area);
	   these are safety caps only */
	max-width: 84%;
	max-height: 84%;
	height: auto;
	transition: transform 0.3s ease;
}

.lg-cell:hover img {
	transform: scale(1.06);
}

/* Thumbs (black homepage SVGs) rendered white on the dark wall.
   Cells fed from /marks/ carry no invert — upload white artwork there. */
.lg-cell--invert img {
	filter: invert(1);
}

/* Entrance: cells rise + fade in on scroll (JS adds .lg-anim to grid, .is-in per cell).
   Inline transition-delay on each cell staggers the row left-to-right. */
.lg-anim .lg-cell {
	opacity: 0;
}

.lg-anim .lg-cell.is-in {
	animation: lg-zoom-in 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@keyframes lg-zoom-in {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lg-anim .lg-cell {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.lg-empty {
	color: var(--c-paper);
	text-align: center;
	font-size: 18px;
	padding: 120px 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.lg-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.lg-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.lg-wall {
		padding-top: 16px;
	}

	.lg-cell {
		aspect-ratio: auto;
		min-height: 42vh;
	}

	.lg-cell img {
		max-height: 58vw;
	}
}

/* ------------------------------
   8e. ABOUT PAGE
   ------------------------------ */
.ab-hero {
	padding: 100px 0 56px;
}

.ab-hero__title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(56px, 8vw, 120px);
	line-height: 0.98;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0;
}

.ab-story {
	padding: 0 0 64px;
}

.ab-story__layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: start;
}

.ab-story__media {
	margin: 0;
}

.ab-story__media img {
	display: block;
	width: 100%;
	height: auto;
}

.ab-story__text p {
	margin: 0 0 20px;
	max-width: 58ch;
	font-size: 18px;
}

.ab-facts {
	padding: 16px 0 96px;
	text-align: center;
}

.ab-facts__row {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.ab-fact__num {
	display: block;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.ab-fact__label {
	display: block;
	font-size: 15px;
	opacity: 0.75;
	max-width: 22ch;
	margin: 0 auto;
}



.ab-method {
	background: var(--c-ink);
	color: var(--c-paper);
	padding: 120px 0;
}

.ab-method__heading {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(32px, 3.5vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin: 0 0 56px;
}

.ab-method__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.ab-step__num {
	display: block;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 18px;
	color: var(--c-accent);
	margin-bottom: 12px;
}

.ab-step__title {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1.15;
	margin: 0 0 16px;
}

.ab-step p {
	margin: 0;
	font-size: 16px;
	opacity: 0.85;
}

.ab-exp {
	padding: 120px 0;
}

.ab-exp__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-exp__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.ab-exp__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.ab-exp__role {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: clamp(18px, 1.8vw, 24px);
}

.ab-exp__place {
	font-size: 16px;
	text-align: right;
}

@media (max-width: 768px) {
	.ab-story__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ab-method__grid {
		grid-template-columns: 1fr;
	}

	.ab-exp__item {
		flex-direction: column;
		gap: 4px;
	}

	.ab-exp__place {
		text-align: left;
	}

	.ab-hero {
		padding: 56px 0 32px;
	}

	.ab-facts__row {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ab-fact__num {
		font-size: 72px;
	}

	.ab-story {
		padding: 0 0 40px;
	}

	.ab-facts {
		padding: 8px 0 64px;
	}
}

/* ------------------------------
   8f. CONTACT PAGE
   ------------------------------ */
.ct-split {
	padding: 80px 0 120px;
}

.ct-split__layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 72px;
	align-items: start;
}

.ct-photo {
	margin: 0;
}

.ct-photo img {
	display: block;
	width: 100%;
	height: auto;
}

.ct-panel__title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(36px, 3.6vw, 56px);
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.ct-panel__line {
	font-size: 17px;
	margin: 0 0 40px;
	max-width: 50ch;
}

.ct-form .ct-field {
	margin-bottom: 24px;
}

.ct-field label {
	display: block;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.ct-optional {
	opacity: 0.5;
	text-transform: none;
	letter-spacing: 0;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.25);
	padding: 14px 16px;
	font-family: var(--f-text);
	font-size: 16px;
	color: var(--c-ink);
	border-radius: 0;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
	outline: 2px solid var(--c-accent);
	outline-offset: 0;
	border-color: var(--c-accent);
}

.ct-submit {
	margin-top: 28px;
	border: 0;
	cursor: pointer;
}

.ct-direct {
	text-align: center;
	margin: 32px 0 0;
	font-size: 15px;
}

.ct-direct a {
	color: var(--c-accent);
}

.ct-hp {
	position: absolute;
	left: -9999px;
}

.ct-notice {
	max-width: 760px;
	margin: 0 auto 32px;
	padding: 16px 20px;
}

.ct-notice p {
	margin: 0;
}

.ct-notice--ok {
	background: #DFF5E9;
}

.ct-notice--err {
	background: #FBE3E0;
}

.ct-next {
	background: var(--c-ink);
	color: var(--c-paper);
	padding: 100px 0 120px;
}

@media (max-width: 900px) {
	.ct-split__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ct-photo {
		position: static;
	}

	.ct-split {
		padding: 40px 0 80px;
	}

	.ct-panel__title {
		font-size: clamp(44px, 11vw, 56px);
	}
}

/* ------------------------------
   9. RESPONSIVE
   ------------------------------ */
@media (max-width: 1024px) {
	.hp-hero {
		padding: 160px 0 120px;
	}

	.hp-about__layout {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.hp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.hp-about__layout {
		grid-template-columns: 1fr;
	}

	.hp-about__media {
		order: -1;
	}

	.hp-about,
	.hp-contact {
		padding: 90px 0;
	}
}

@media (max-width: 480px) {
	.hp-hero {
		padding: 110px 0 80px;
	}

	.hp-grid {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------
   10. REDUCED MOTION
   ------------------------------ */
@media (prefers-reduced-motion: reduce) {
	.hp-btn,
	.hp-tile__img,
	.hp-tile__label {
		transition: none;
	}

	.hp-accent--choose::after,
	.hp-accent--like::after,
	.hp-strike::after,
	.hp-accent-text::after {
		animation: none;
		transform: scaleX(1);
	}
}

/* ------------------------------
   11. SITE HEADER
   ------------------------------ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--c-ink);
	border-bottom: 1px solid var(--c-ink);
}

.site-header__inner {
	position: relative;
}

.site-header__inner {
	max-width: none;
	padding: 20px clamp(24px, 5vw, 96px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 26px;
	color: var(--c-paper);
	text-decoration: none;
	letter-spacing: -0.01em;
}

.site-nav {
	display: flex;
	gap: 40px;
}

.site-nav a {
	font-family: var(--f-text);
	font-size: 16px;
	color: var(--c-paper);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--c-accent);
}

.site-logo:focus-visible,
.site-nav a:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 4px;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-paper);
	margin: 5px 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------
   12. SITE FOOTER
   ------------------------------ */
.site-footer {
	background: var(--c-ink);
	color: var(--c-paper);
}

.site-footer__inner {
	max-width: none;
	padding: 32px clamp(24px, 5vw, 96px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-footer__socials {
	display: flex;
	gap: 36px;
}

.site-footer__socials a {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-paper);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
	color: var(--c-accent);
}

.site-footer__copy {
	margin: 0;
	font-size: 14px;
}

/* ------------------------------
   13. HEADER/FOOTER RESPONSIVE
   ------------------------------ */
@media (max-width: 600px) {
	/* Mobile header: ink bar, paper text — mobile only */
	.site-header {
		background: var(--c-ink);
		border-bottom: 1px solid var(--c-ink);
	}

	.site-logo {
		color: var(--c-paper);
	}

	.nav-toggle {
		display: block;
	}

	.nav-toggle span {
		background: var(--c-paper);
	}

	/* Statement: larger on phones */
	.hp-statement {
		font-size: 38px;
	}

	.site-header {
		position: sticky;
	}

	.site-nav {
		display: none;
	}

	body.nav-open .site-nav {
		display: flex;
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--c-ink);
		border-bottom: 1px solid var(--c-ink);
		padding: 8px 0 16px;
	}

	body.nav-open .site-nav a {
		padding: 14px clamp(24px, 5vw, 96px);
		font-size: 18px;
		color: var(--c-paper);
	}

	.site-header__inner {
		position: relative;
	}

	.site-footer__inner {
		flex-direction: column;
		text-align: center;
	}

	/* Hero statement: the four-line break */
	.hp-br {
		display: inline;
	}
}

/* ------------------------------
   11. CASE STUDY (MOOD) — black world, editorial finish
   ------------------------------ */
.cs {
	background: #000000;
	color: #FFFFFF;
}

.cs ::selection {
	background: var(--c-accent);
	color: var(--c-paper);
}

/* Mood palettes — PLACEHOLDER HEXES, confirm against brand files */
.cs-mood--thoughtful { --mood: #6B8CAE; }
.cs-mood--romantic   { --mood: #D96A7B; }
.cs-mood--energetic  { --mood: #FFC600; }

.cs-text {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}

.cs-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--f-text);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.65;
	margin: 0 0 40px;
}

.cs-eyebrow::before {
	content: '';
	width: 22px;
	height: 2px;
	background: var(--c-accent);
	flex: none;
}

/* HERO — the whisper */
.cs-hero {
	padding: clamp(56px, 9vh, 110px) 0 clamp(48px, 7vh, 90px);
}

.cs-hero .cs-text {
	max-width: 1160px;
	text-align: center;
}

.cs-hero .cs-statement {
	margin-left: auto;
	margin-right: auto;
}

.cs-title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(34px, 6.1vw, 88px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0 0 44px;
}

.cs-title__line {
	display: block;
	white-space: nowrap;
}

@media (max-width: 700px) {
	.cs-title__line {
		white-space: normal;
	}
}

.cs-statement {
	font-family: var(--f-text);
	font-size: clamp(19px, 1.7vw, 23px);
	line-height: 1.6;
	max-width: 640px;
	color: #FFFFFF;
	margin: 0 0 44px;
}

.cs-cover {
	max-width: 1160px;
	margin: 0 auto clamp(72px, 11vh, 150px);
	padding: 0 24px;
}

.cs-cover img {
	display: block;
	width: 100%;
	max-height: 72vh;
	object-fit: cover;
	height: auto;
}

/* SECTIONS */
.cs-section {
	padding: 24px 0;
}

.cs-h2 {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 3.6vw, 48px);
	line-height: 1.03;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	margin: 0 0 30px;
}

.cs-section p {
	font-size: clamp(16px, 1.35vw, 19px);
	line-height: 1.7;
	color: #FFFFFF;
	margin: 0 0 22px;
}

.cs-section p strong,
.cs-section p em {
	color: #FFFFFF;
}

/* MOOD CHAPTERS — the palette loads into the page */
.cs-mood {
	background: #000000;
	border-top: 2px solid var(--mood);
}

.cs-mood .cs-h2 {
	color: var(--mood);
}

.cs-mood-load {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mood);
	margin: 0 0 18px;
}

.cs-mood-load::before {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--mood);
	flex: none;
}

/* THE LEDGER */
.cs-bridge {
	padding: clamp(70px, 11vh, 130px) 0 clamp(30px, 5vh, 60px);
}

.cs-bridge .cs-text {
	text-align: center;
}

.cs-bridge__line {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0;
}

.cs-title__logo {
	display: inline-block;
	height: 1.12em;
	width: auto;
	vertical-align: baseline;
	transform: translateY(0.15em);
	margin: 0 0.05em;
}

.cs-lead {
	font-family: var(--f-text);
	font-weight: 700;
	font-size: clamp(19px, 1.8vw, 24px);
	line-height: 1.4;
	color: #FFFFFF;
	margin: 0 0 18px;
}

/* CJ-style split: headline left, body right */
.cs-split {
	max-width: 1160px;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(32px, 5vw, 88px);
	align-items: center;
}

.cs-split .cs-h2 {
	margin-bottom: 22px;
}

.cs-split__body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 820px) {
	.cs-split {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

/* SYSTEM — specimen band */
.cs-band {
	background: #000000;
}

/* CLUSTERS + editorial placeholder frames */
.cs-cluster {
	max-width: none;
	margin: 48px auto 0;
	padding: 0 20px;
	display: grid;
	gap: 20px;
}

.cs-cluster + .cs-cluster {
	margin-top: 20px;
}

.cs-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cs-grid-3 { grid-template-columns: repeat(3, 1fr); }

.cs-slot {
	aspect-ratio: 1 / 1;
	background: #0A0A0A;
	border: 1px solid rgba(255, 255, 255, 0.07);
	position: relative;
}

.cs-slot--wide { aspect-ratio: 16 / 9; }
.cs-slot--cover { aspect-ratio: 21 / 9; }

.cs-slot span {
	position: absolute;
	left: 18px;
	bottom: 14px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.38;
}

/* THE ANIMATION — the story told back */
.cs-anim {
	padding: clamp(40px, 7vh, 90px) 0 0;
}

.cs-anim video {
	display: block;
	width: 100%;
	height: auto;
}

/* THE FLOOD — page stops talking */
.cs-flood {
	padding: clamp(72px, 11vh, 140px) 0;
}

.cs-flood .cs-cluster {
	gap: 16px;
	margin-top: 16px;
}

.cs-flood .cs-cluster:first-child {
	margin-top: 0;
}

.cs-flood__full {
	grid-column: 1 / -1;
}

.cs-flood video {
	display: block;
	width: 100%;
	height: auto;
}

/* NEXT — exit into daylight */
.cs-next a {
	display: block;
	background: var(--c-paper);
	color: var(--c-ink);
	text-align: center;
	text-decoration: none;
	padding: clamp(40px, 6vh, 64px) 24px;
}

.cs-next a:focus-visible {
	outline: 3px solid var(--c-accent);
	outline-offset: -3px;
}

.cs-next__label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.55;
	margin-bottom: 14px;
}

.cs-next__title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(26px, 3vw, 42px);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	position: relative;
	display: inline-block;
}

.cs-next__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0.02em;
	width: 100%;
	height: 0.07em;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.cs-next a:hover .cs-next__title::after {
	transform: scaleX(1);
}

@media (max-width: 700px) {
	.cs-grid-2,
	.cs-grid-3 {
		grid-template-columns: 1fr;
	}

	.cs-title {
		margin-bottom: 32px;
	}

	.cs-cluster {
		margin-top: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-next__title::after {
		transition: none;
	}
}