:root {
	--jl-paper: #ede6da;
	--jl-paper-secondary: #e3dacd;
	--jl-paper-light: #f5f1e9;

	--jl-white: #ffffff;
	--jl-ink: #24211d;
	--jl-muted: #6e6861;
	--jl-red: #8b3032;

	--jl-border: rgba(36, 33, 29, 0.14);
	--jl-shadow: 0 24px 60px rgba(42, 33, 27, 0.14);

	--jl-serif: "Cormorant Garamond", Georgia, serif;
	--jl-sans: "Manrope", Arial, sans-serif;
	--jl-handwriting: "Caveat", cursive;

	--jl-space-xs: 0.75rem;
	--jl-space-sm: 1.5rem;
	--jl-space-md: 3rem;
	--jl-space-lg: 5rem;
	--jl-space-xl: 8rem;
	--jl-space-xxl: 11rem;

	--jl-header-height: 6rem;
}


/* Base */

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

html {
	scroll-behavior: auto;
}
html.lenis,
html.lenis body {
	height: auto;
}
html,
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
body {
	background:
		radial-gradient(
			circle at 72% 10%,
			rgba(255, 255, 255, 0.5) 0%,
			rgba(255, 255, 255, 0.12) 28%,
			transparent 52%
		),
		var(--jl-paper);

	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
}
body::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.28'/%3E%3C/svg%3E");
	content: "";
	inset: 0;
	opacity: 0.025;
	pointer-events: none;
	position: fixed;
	z-index: 9999;
}
/* ==========================================================
   Editorial Background Grid
   ========================================================== */

body::after {
	background-image:
		/* Top-left quarter */
		radial-gradient(
			circle at 0 0,
			rgba(36, 33, 29, 0.16) 0 2px,
			transparent 2.1px
		),

		/* Top-right quarter */
		radial-gradient(
			circle at 100% 0,
			rgba(36, 33, 29, 0.16) 0 2px,
			transparent 2.1px
		),

		/* Bottom-left quarter */
		radial-gradient(
			circle at 0 100%,
			rgba(36, 33, 29, 0.16) 0 2px,
			transparent 2.1px
		),

		/* Bottom-right quarter */
		radial-gradient(
			circle at 100% 100%,
			rgba(36, 33, 29, 0.16) 0 2px,
			transparent 2.1px
		),

		/* Major vertical guides */
		linear-gradient(
			90deg,
			rgba(36, 33, 29, 0.05) 1px,
			transparent 1px
		),

		/* Major horizontal guides */
		linear-gradient(
			rgba(36, 33, 29, 0.05) 1px,
			transparent 1px
		),

		/* Minor vertical guides */
		linear-gradient(
			90deg,
			rgba(36, 33, 29, 0.018) 1px,
			transparent 1px
		),

		/* Minor horizontal guides */
		linear-gradient(
			rgba(36, 33, 29, 0.018) 1px,
			transparent 1px
		);

	background-size:
		180px 180px,
		180px 180px,
		180px 180px,
		180px 180px,
		720px 720px,
		720px 720px,
		180px 180px,
		180px 180px;

	background-position: 0 0;
	background-repeat: repeat;
	content: "";
	inset: 0;
	opacity: 0.6;
	pointer-events: none;
	position: fixed;
	z-index: 0;
}

.site-header,
.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}
img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.site-main {
	overflow: hidden;
}

.section-spacing {
	padding-block: var(--jl-space-xl);
}


/* Header */

.site-header {
	background-color: rgba(243, 239, 230, 0.9);
	position: relative;
	z-index: 100;
}

.site-header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: var(--jl-header-height);
}

/* =========================================================
   SITE LOGO
   ========================================================= */

.site-logo {
	align-items: center;

	color: var(--jl-ink);

	display: inline-flex;

	gap: 1.35rem;

	text-decoration: none;
}


/* Chinese surname mark */

.site-logo__mark {
	color: var(--jl-ink);

	display: block;

	font-family:
		"Noto Sans SC",
		"Noto Sans CJK SC",
		"Microsoft YaHei",
		"PingFang SC",
		sans-serif;

	font-size: clamp(2.8rem, 3.4vw, 4rem);
	font-weight: 700;

	letter-spacing: -0.08em;
	line-height: 0.9;

	white-space: nowrap;
}


/* Vertical rule */

.site-logo__divider {
	background: var(--jl-ink);

	height: 3.7rem;

	opacity: 0.4;

	width: 1px;
}


/* Right-hand text */

.site-logo__wordmark {
	display: flex;

	flex-direction: column;

	gap: 0.45rem;
}


/* JAMES L */

.site-logo__name {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 1rem;
	font-weight: 600;

	letter-spacing: 0.42em;

	line-height: 1;

	white-space: nowrap;
}


/* Lower row */

.site-logo__lower {
	align-items: center;

	display: flex;

	gap: 1rem;
}


/* PHOTOGRAPHY */

.site-logo__photography {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 500;

	letter-spacing: 0.38em;

	line-height: 1;

	white-space: nowrap;
}


/* Red rectangle */

.site-logo__red-mark {
	background: var(--jl-red);

	display: block;

	height: 0.65rem;

	width: 2.7rem;
}

.site-menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	padding: 0.5rem;
}

.site-menu-toggle span {
	background-color: var(--jl-ink);
	display: block;
	height: 1px;
	margin: 0.35rem 0;
	width: 1.7rem;
}

.site-navigation.collapse {
	display: block;
}

.site-navigation__menu {
	align-items: center;
	display: flex;
	gap: clamp(1.5rem, 2.5vw, 3rem);
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation__menu a {
	color: var(--jl-ink);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.site-navigation__menu a::after {
	background: var(--jl-red);
	bottom: -0.45rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.site-navigation__menu a:hover::after,
.site-navigation__menu .current-menu-item > a::after {
	transform: scaleX(1);
}
/* =========================================================
   PRECISE SECTION ANCHORS
   ========================================================= */

#selected-frames,
#contact {
	scroll-margin-top: -50px;
}

/* Shared typography */

.section-eyebrow {
	color: var(--jl-red);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin: 0 0 1.6rem;
	text-transform: uppercase;
}

.section-number {
	color: var(--jl-red);
	font-family: var(--jl-sans);
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.section-number span {
	color: var(--jl-muted);
	font-family: var(--jl-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.section-title {
	font-family: var(--jl-serif);
	color: var(--jl-ink);
	font-size: clamp(3rem, 4vw, 4.8rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 0.95;
	margin: 0;
	text-transform: uppercase;
}

.section-header {
	margin-bottom: var(--jl-space-md);
}

.section-header--split {
	align-items: flex-end;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.editorial-rule {
	background: var(--jl-red);
	height: 1px;
	margin: 2rem 0 1.8rem;
	width: 3.25rem;
}

.editorial-link {
	align-items: center;
	border-bottom: 1px solid currentColor;
	color: var(--jl-ink);
	display: inline-flex;
	font-size: 0.68rem;
	font-weight: 700;
	gap: 1rem;
	letter-spacing: 0.17em;
	padding-bottom: 0.35rem;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 180ms ease,
		border-color 180ms ease;
}

.editorial-link:hover {
	color: var(--jl-red);
}


/* Image placeholders */

.image-placeholder {
	align-items: center;
	background: linear-gradient(145deg, #2b2926, #59534d);
	color: rgba(255, 255, 255, 0.58);
	display: flex;
	font-size: 0.65rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.14em;
	text-align: center;
	text-transform: uppercase;
}

/* =========================================================
   HERO — BOLD EDITORIAL SYSTEM
   ========================================================= */

.hero {
	background-color: transparent;
	border-bottom: 1px solid var(--jl-border);
	isolation: isolate;
	min-height: calc(100vh - var(--jl-header-height));
	overflow: hidden;
	padding: 0;
	position: relative;
}

.hero .container {
	max-width: 1680px;
	position: relative;
	z-index: 2;
}

.hero__row {
	align-items: center;
	min-height: 58rem;
	position: relative;
}

/* Hero copy */

.hero__content {
	margin-left: -1rem;
	max-width: 42rem;
	width:100%;
	position: relative;
	top: 1rem;
	z-index: 10;
}

.hero__eyebrow {
	color: var(--jl-red);
	font-family: var(--jl-sans);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	margin: 0 0 1.65rem;
	text-transform: uppercase;
}

.hero__title {
	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: clamp(3.75rem, 6.5vw, 7rem);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.82;
	margin: 0;
	text-transform: uppercase;
	width: 100%;
	max-width: 42rem;
}

.hero__title span {
	display: block;
}
.hero__description {
	font-family: var(--jl-sans);
	font-size: clamp(1rem, 1.25vw, 1.2rem);
	line-height: 1.6;
	margin: 1.5rem 0 0;
	max-width: 32rem;
	width: 100%;
}
.hero__cta {
	align-items: center;

	background: var(--jl-ink);

	color: var(--jl-paper-light);

	display: inline-flex;

	font-family: var(--jl-sans);

	font-size: 0.66rem;
	font-weight: 700;

	gap: 1.4rem;

	letter-spacing: 0.17em;

	margin-top: 2.35rem;

	min-height: 3.25rem;

	padding:
		0.9rem
		1.35rem;

	position: relative;

	text-decoration: none;
	text-transform: uppercase;

	transition:
		background-color 220ms ease,
		color 220ms ease,
		transform 220ms ease;
}


.hero__cta::after {
	color: var(--jl-paper-light);

	content: "→";

	font-size: 1rem;

	line-height: 1;

	position: relative;

	transition:
		transform 220ms
		cubic-bezier(0.16, 1, 0.3, 1);
}


.hero__cta:hover {
	background: var(--jl-red);

	color: var(--jl-paper-light);

	transform: translateY(-2px);
}


.hero__cta:hover::after {
	transform: translateX(5px);
}

/* Hero image composition */

.hero__gallery {
	height: 54rem;
	position: relative;
	transform: translateX(-1rem);
	width: 100%;
	left:2rem;
}

.hero-parallax-layer {
	position: absolute;
	will-change: transform;
}

.hero-image {
	height: 100%;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero-parallax-layer--primary {
	height: 51rem;
	left: -4rem;
	top: 3.5rem;
	width: 40rem;
	z-index: 3;
}

.hero-image--primary {
	box-shadow: 0 2.4rem 5.5rem rgba(30, 25, 20, 0.14);
}

.hero-parallax-layer--secondary {
	height: 24rem;
	right: 4rem;
	top: 3rem;
	width: 18rem;
	z-index: 2;
}

.hero-image--secondary {
	box-shadow: 0 1.7rem 3.75rem rgba(30, 25, 20, 0.11);
}

.hero-parallax-layer--tertiary {
	bottom: 0;
	height: 25rem;
	right: 0;
	width: 30rem;
	z-index: 4;
}

.hero-image--tertiary {
	box-shadow: 0 1.8rem 4rem rgba(30, 25, 20, 0.13);
}

.hero-image--primary img {
	object-position: center center;
}

.hero-image--secondary img {
	object-position: center 34%;
}

.hero-image--tertiary img {
	object-position: center center;
}

/* Hero image metadata */

.hero-image-meta {
	align-items: center;
	bottom: -3rem;
	display: flex;
	font-family: var(--jl-sans);
	font-size: 0.55rem;
	font-weight: 700;
	gap: 1rem;
	left: 0;
	letter-spacing: 0.14em;
	position: absolute;
	text-transform: uppercase;
	width: 100%;
}

.hero-image-meta span:first-child {
	color: var(--jl-red);
}

.hero-image-meta__line {
	background-color: var(--jl-border);
	flex: 1;
	height: 1px;
	max-width: 12rem;
	position: relative;
}

.hero-image-meta__line::before {
	background-color: var(--jl-red);
	content: "";
	height: 1px;
	inset: 0;
	position: absolute;
	transform: scaleX(var(--gauge-progress, 0));
	transform-origin: left center;
	width: 100%;
	will-change: transform;
}

.hero-image-label {
	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: 0.52rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	position: absolute;
	text-transform: uppercase;
}

.hero-image-label--vertical {
	right: -2.6rem;
	top: 8rem;
	transform: rotate(-90deg);
}

.hero-image-settings {
	display: flex;
	flex-direction: column;
	font-family: var(--jl-sans);
	font-size: 0.52rem;
	font-weight: 700;
	gap: 0.28rem;
	letter-spacing: 0.14em;
	position: absolute;
	right: -4.7rem;
	text-transform: uppercase;
	top: 5rem;
}

/* Hero graphic system */

.hero-graphics {
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}
.hero-graphics__red-panel {
	background: var(--jl-red);
	height: 82%;
	left: 0;
	position: absolute;
	top: 6%;
	width: clamp(4rem, 6vw, 7rem);
}
.hero-graphics__red-block {

    position:absolute;
    right:-4rem;
    top:6rem;
    width:17rem;
    height:18rem;
    background:var(--jl-red);
}
.hero-graphics__frame-label {
	bottom: 13rem;
	color: var(--jl-paper);
	font-family: var(--jl-sans);
	font-size: 0.52rem;
	font-weight: 700;
	left: 1.8rem;
	letter-spacing: 0.2em;
	position: absolute;
	text-transform: uppercase;
	transform: rotate(-90deg);
	transform-origin: left center;
}

.hero-graphics__black-arc {
    background: var(--jl-ink);
    border-radius: 50%;

    width: 58rem;
    height: 58rem;

    left: -30rem;
    bottom: -30rem;

    position: absolute;
}
.hero-graphics__red-panel,
.hero-graphics__black-arc,
.hero-graphics__red-block {
	transform-origin: center;
	will-change: transform;
}
.hero-graphics__line {
	background: rgba(51, 45, 40, 0.27);
	position: absolute;
}

.hero-graphics__line--vertical {
	height: 30rem;
	left: 38%;
	top: 2rem;
	width: 1px;
}

.hero-graphics__line--diagonal {
	bottom: 12rem;
	height: 1px;
	left: 8rem;
	transform: rotate(-34deg);
	transform-origin: left;
	width: 42rem;
}

.hero-graphics__coordinates {
	display: flex;
	flex-direction: column;
	font-family: var(--jl-sans);
	font-size: 0.5rem;
	font-weight: 700;
	gap: 0.25rem;
	left: 27%;
	letter-spacing: 0.14em;
	position: absolute;
	top: 4.5rem;
}

.hero-graphics__angle {
	bottom: 14.5rem;
	font-family: var(--jl-sans);
	font-size: 0.5rem;
	font-weight: 700;
	left: 34rem;
	position: absolute;
}

.hero-graphics__dots {
	background-image: radial-gradient(circle, var(--jl-ink) 1px, transparent 1.2px);
	background-size: 13px 13px;
	height: 7rem;
	opacity: 0.48;
	position: absolute;
	right: 2rem;
	top: 21rem;
	width: 6rem;
}

.hero-graphics__cross {
	height: 2.15rem;
	position: absolute;
	width: 2.15rem;
}

.hero-graphics__cross::before,
.hero-graphics__cross::after {
	background: var(--jl-ink);
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.hero-graphics__cross::before {
	height: 1px;
	width: 100%;
}

.hero-graphics__cross::after {
	height: 100%;
	width: 1px;
}

.hero-graphics__cross--one {
	left: 6%;
	top: 4rem;
}

.hero-graphics__cross--two {
	bottom: 3rem;
	left: 27%;
}

.hero-graphics__cross--three {
	bottom: 2.5rem;
	right: 7%;
}
.hero-graphics__cross--two,
.hero-graphics__cross--three {
	transform-origin: center;
	will-change: opacity, transform;
}
.hero-graphics__corner {
	height: 1.5rem;
	position: absolute;
	width: 1.5rem;
}

.hero-graphics__corner::before,
.hero-graphics__corner::after {
	background: var(--jl-ink);
	content: "";
	position: absolute;
}

.hero-graphics__corner--top-left {
	left: 1rem;
	top: 1rem;
}

.hero-graphics__corner--top-left::before,
.hero-graphics__corner--bottom-left::before,
.hero-graphics__corner--top-right::before {
	height: 1px;
	left: 0;
	top: 0;
	width: 100%;
}

.hero-graphics__corner--top-left::after,
.hero-graphics__corner--bottom-left::after,
.hero-graphics__corner--top-right::after {
	height: 100%;
	left: 0;
	top: 0;
	width: 1px;
}

.hero-graphics__corner--bottom-left {
	bottom: 1rem;
	left: 1rem;
	transform: rotate(-90deg);
}

.hero-graphics__corner--top-right {
	right: 1rem;
	top: 1rem;
	transform: rotate(90deg);
}

/* Hero responsive */

@media (min-width: 1600px) {
	.hero__content {
		margin-left: -5rem;
	}

	.hero-parallax-layer--primary {
		left: -4rem;
		width: 37rem;
	}

	.hero-parallax-layer--secondary{
		right: 5rem;
		width:18rem;
	}
	.hero-parallax-layer--tertiary {
		right: -5rem;
		width:40rem;
	}

}

@media (max-width: 1199.98px) {
	.hero__content {
		margin-left: 3rem;
	}

	.hero__title {
		font-size: clamp(4rem, 6vw, 6rem);
	}
	.hero-scramble {
		display: block;
		white-space: nowrap;
		overflow: hidden;
		width: 100%;
	}
	.hero__gallery {
		transform: none;
	}

	.hero-parallax-layer--primary {
		height: 42rem;
		left: 4rem;
		width: 31rem;
	}

	.hero-parallax-layer--secondary {
		height: 22rem;
		right: 2;
		width: 15rem;
	}

	.hero-parallax-layer--tertiary {
		height: 19rem;
		right: 2rem;
		width: 24rem;
	}
}

@media (max-width: 991.98px) {
	.hero {
		min-height: auto;
		padding-block: 5rem 7rem;
	}

	.hero__row {
		min-height: auto;
	}

	.hero__content {
		margin-left: 0;
		margin-bottom: 5rem;

		max-width: 34rem;
		width: 100%;

		top: 0;
	}

	.hero__title {
		font-size: clamp(4rem, 11vw, 6rem);
	}

	.hero__gallery {
		height: 47rem;
		margin-inline: auto;
		max-width: 47rem;
		transform: none;
	}

	.hero-parallax-layer--primary {
		height: 38rem;
		left: 2rem;
		top: 3rem;
		width: 29rem;
	}

	.hero-parallax-layer--secondary {
		height: 18rem;
		right: 2rem;
		top: 0;
		width: 14rem;
	}

	.hero-parallax-layer--tertiary {
		bottom: 1rem;
		height: 16rem;
		right: 0;
		width: 15rem;
	}

	.hero-graphics__coordinates,
	.hero-graphics__angle,
	.hero-graphics__line--vertical {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.hero {
		padding-block: 3rem 5rem;
	}

		.hero__title {
		font-size:
			clamp(
				2.5rem,
				12vw,
				4.2rem
			);

		letter-spacing: -0.045em;

		line-height: 0.9;

		max-width: 100%;
	}
	.hero__description {
		font-size:
			clamp(
				0.9rem,
				3.6vw,
				1rem
			);
	}
	.hero__gallery {
		height: 36rem;
	}

	.hero-parallax-layer--primary {
		height: 30rem;
		left: 0;
		top: 2rem;
		width: 80%;
	}

	.hero-parallax-layer--secondary {
		height: 13rem;
		right: 0;
		top: 0;
		width: 40%;
	}

	.hero-parallax-layer--tertiary {
		bottom: 0;
		height: 13rem;
		right: 0;
		width: 46%;
	}

	.hero-image-meta {
		bottom: -2.4rem;
	}

	.hero-image-label,
	.hero-image-settings {
		display: none;
	}

	.hero-graphics__red-panel {
		height: 52%;
		top: 24%;
		width: 2.4rem;
	}

	.hero-graphics__frame-label {
		bottom: 9rem;
		font-size: 0.45rem;
		left: 1.2rem;
	}

	.hero-graphics__black-arc {
		bottom: -11rem;
		height: 22rem;
		left: -12rem;
		width: 22rem;
	}

	.hero-graphics__line--diagonal {
		bottom: 5rem;
		left: 2rem;
		width: 20rem;
	}

	.hero-graphics__dots {
		display: none;
	}
}
/* =========================================================
   HERO — 1920 × 1080 / SHORT DESKTOP
   ========================================================= */

@media
	(min-width: 1600px)
	and (max-height: 1100px) {

	.hero {
		min-height: calc(100vh - var(--jl-header-height));
	}

	.hero .container {
		max-width: 1500px;
		padding-inline: 2rem;
	}

	.hero__row {
		min-height: 49rem;
	}

	/* Left-side copy */

	.hero__content {
		margin-left: 0rem;
		max-width: 30rem;
		top: -1rem;
	}

	.hero__eyebrow {
		font-size: 0.54rem;
		margin-bottom: 1.35rem;
	}

	.hero__title {
	font-size: clamp(3.8rem, 4.35vw, 5.1rem);
	letter-spacing: -0.055em;
	line-height: 0.86;
}

	.hero__cta {
		margin-top: 1.8rem;
	}

	/* Image composition */

	.hero__gallery {
		height: 44rem;
		left: 1rem;
		margin: 0;
		transform: translateX(3rem);
	}

	.hero-parallax-layer--primary {
		height: 39rem;
		left: -4rem;
		top: 2rem;
		width: 30rem;
	}

	.hero-parallax-layer--secondary {
		height: 21rem;
		right: 9rem;
		top: 0;
		width: 15rem;
	}

	.hero-parallax-layer--tertiary {
		bottom: 0;
		height: 17rem;
		right: 1rem;
		width: 30rem;
	}

	/* Image metadata */

	.hero-image-meta {
		bottom: -2.4rem;
	}

	.hero-image-label--vertical {
		right: -2rem;
		top: 5.8rem;
	}

	.hero-image-settings {
		right: -4rem;
		top: 4rem;
	}

	/* Decorative graphics */

	.hero-graphics__black-arc {
		bottom: -25rem;
		height: 45rem;
		left: -24rem;
		width: 45rem;
	}

	.hero-graphics__red-panel {
		height: 70%;
		top: 10%;
		width: 5rem;
	}

	.hero-graphics__line--vertical {
		height: 22rem;
		left: 39%;
		top: 2rem;
	}

	.hero-graphics__line--diagonal {
		bottom: 10rem;
		left: 9rem;
		width: 31rem;
	}

	.hero-graphics__coordinates {
		left: 27%;
		top: 3.5rem;
	}

	.hero-graphics__angle {
		bottom: 11rem;
		left: 28rem;
	}
}
/* =========================================================
   SELECTED FRAMES — CORNER AND CROSS GRAPHICS
   ========================================================= */

.selected-frames {
	background-color: transparent;
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

/*
 * Keep the title, cards, and links above the graphics.
 */
.selected-frames > .container {
	position: relative;
	z-index: 2;
}

/*
 * Back-most decorative layer.
 */
.selected-frames__graphics {
	inset: 2rem;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

/* =========================================================
   90-DEGREE CORNERS
   ========================================================= */

.selected-frames__corner {
	--corner-horizontal-progress: 0;
	--corner-vertical-progress: 0;

	height: 2rem;
	position: absolute;
	width: 2rem;
}

.selected-frames__corner::before,
.selected-frames__corner::after {
	background-color: var(--jl-ink);
	content: "";
	position: absolute;
	will-change: transform;
}

/*
 * Horizontal arm.
 */
.selected-frames__corner::before {
	height: 1px;
	width: 100%;
}

/*
 * Vertical arm.
 */
.selected-frames__corner::after {
	height: 100%;
	width: 1px;
}

/* Top-left */

.selected-frames__corner--top-left {
	left: 0;
	top: 0;
}

.selected-frames__corner--top-left::before {
	left: 0;
	top: 0;
	transform: scaleX(
		var(--corner-horizontal-progress)
	);
	transform-origin: left center;
}

.selected-frames__corner--top-left::after {
	left: 0;
	top: 0;
	transform: scaleY(
		var(--corner-vertical-progress)
	);
	transform-origin: center top;
}

/* Top-right */

.selected-frames__corner--top-right {
	right: 0;
	top: 0;
}

.selected-frames__corner--top-right::before {
	right: 0;
	top: 0;
	transform: scaleX(
		var(--corner-horizontal-progress)
	);
	transform-origin: right center;
}

.selected-frames__corner--top-right::after {
	right: 0;
	top: 0;
	transform: scaleY(
		var(--corner-vertical-progress)
	);
	transform-origin: center top;
}

/* Bottom-left */

.selected-frames__corner--bottom-left {
	bottom: 0;
	left: 0;
}

.selected-frames__corner--bottom-left::before {
	bottom: 0;
	left: 0;
	transform: scaleX(
		var(--corner-horizontal-progress)
	);
	transform-origin: left center;
}

.selected-frames__corner--bottom-left::after {
	bottom: 0;
	left: 0;
	transform: scaleY(
		var(--corner-vertical-progress)
	);
	transform-origin: center bottom;
}

/* Bottom-right */

.selected-frames__corner--bottom-right {
	bottom: 0;
	right: 0;
}

.selected-frames__corner--bottom-right::before {
	bottom: 0;
	right: 0;
	transform: scaleX(
		var(--corner-horizontal-progress)
	);
	transform-origin: right center;
}

.selected-frames__corner--bottom-right::after {
	bottom: 0;
	right: 0;
	transform: scaleY(
		var(--corner-vertical-progress)
	);
	transform-origin: center bottom;
}

/* =========================================================
   ROTATING CROSSES
   ========================================================= */

.selected-frames__cross {
	height: 1.75rem;
	opacity: 0;
	position: absolute;
	transform: rotate(-90deg) scale(0.65);
	transform-origin: center;
	width: 1.75rem;
	will-change: opacity, transform;
}

.selected-frames__cross::before,
.selected-frames__cross::after {
	background-color: var(--jl-ink);
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.selected-frames__cross::before {
	height: 1px;
	width: 100%;
}

.selected-frames__cross::after {
	height: 100%;
	width: 1px;
}

.selected-frames__cross--one {
	left: 8%;
	top: 21%;
}

.selected-frames__cross--two {
	right: 7%;
	top: 48%;
}

.selected-frames__cross--three {
	bottom: 8%;
	left: 48%;
}
/* =========================================================
   SELECTED FRAMES — DECORATIVE SHAPES
   ========================================================= */

.selected-frames__shape {
	pointer-events: none;
	position: absolute;
}

/*
 * Narrow red panel near the first row.
 */
.selected-frames__shape--red-bar {
	background-color: var(--jl-red);
	height: 20rem;
	left: 10%;
	opacity: 0.9;
	top: 22%;
	width: 3.5rem;
	z-index: -1;
}

/*
 * Large partial circle entering from the lower-right.
 */
.selected-frames__shape--black-circle {
	background-color: var(--jl-ink);
	border-radius: 50%;
	bottom: -18rem;
	height: 34rem;
	opacity: 0.96;
	right: -14rem;
	width: 34rem;
	z-index: -1;
}
.selected-frames__shape--red-bar,
.selected-frames__shape--black-circle {
	transform-origin: center;
	will-change: transform;
}
/*
 * Small technical dot matrix.
 */
.selected-frames__shape--dot-field {
	background-image: radial-gradient(
		circle,
		var(--jl-red) 1px,
		transparent 1px
	);
	background-size: 0.65rem 0.65rem;
	height: 5rem;
	opacity: 0.55;
	right: 7%;
	top: 16%;
	width: 5rem;
	z-index: -1;
}
/* =========================================================
   RESPONSIVE GRAPHICS
   ========================================================= */

@media (max-width: 767.98px) {
	.selected-frames__graphics {
		inset: 1rem;
	}

	.selected-frames__corner {
		height: 1.35rem;
		width: 1.35rem;
	}

	.selected-frames__cross {
		height: 1.25rem;
		width: 1.25rem;
	}
}
/* =========================================================
   SELECTED FRAMES — TYPOGRAPHY
   ========================================================= */

.selected-frames .section-number {
	color: var(--jl-red);
	font-family: var(--jl-sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	line-height: 1;
	margin: 0 0 1.4rem;
	text-transform: uppercase;
}

.selected-frames .section-number span {
	color: var(--jl-muted);
	font-family: var(--jl-sans);
	font-size: inherit;
	font-weight: 700;
	letter-spacing: inherit;
}

.selected-frames .section-title {
	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: clamp(3.5rem, 5vw, 6rem);
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.86;
	margin: 0;
	min-height: 0.86em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.selected-frames .section-title > span {
	display: block;
	max-width: 11ch;
	white-space: normal;
}

.selected-frames .section-header {
	margin-bottom: 5rem;
}

.selected-frames__grid {
	display: grid;
	gap: 4.5rem 2rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.selected-frames__grid > .portfolio-card {
	min-width: 0;
	width: auto;
}

.portfolio-card {
	margin: 0;
}

.portfolio-card__image {
	aspect-ratio: 4 / 5;
	box-shadow: 0 1.5rem 3.5rem rgba(42, 33, 27, 0.12);
	width: 100%;
}

.portfolio-card__number {
	color: var(--jl-red);
	font-family: var(--jl-sans);
	font-size: 0.56rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	margin: 1.15rem 0 0.45rem;
	text-transform: uppercase;
}

.portfolio-card__title {
	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.section-action {
	margin-top: 5rem;
	text-align: right;
}


/* =========================================================
   BEHIND THE IMAGE
   ========================================================= */

.behind-the-scenes {
	background: transparent;
	border-bottom: 1px solid var(--jl-border);
	border-top: 1px solid var(--jl-border);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.behind-the-scenes__inner {
	position: relative;
	z-index: 2;
}

/* Header — intentionally reuses the same shared section system
   as Selected Frames. */

.behind-the-scenes__header {
	margin-bottom: 5rem;
	max-width: 56rem;
}

.behind-the-scenes .section-number {
	color: var(--jl-red);
	font-family: var(--jl-sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	line-height: 1;
	margin: 0 0 1.4rem;
	text-transform: uppercase;
}

.behind-the-scenes .section-number span {
	color: var(--jl-muted);
	font-family: var(--jl-sans);
	font-size: inherit;
	font-weight: 700;
	letter-spacing: inherit;
}

.behind-the-scenes .section-title {
	align-items: flex-start;
	color: var(--jl-ink);
	display: flex;
	flex-direction: column;
	font-family: var(--jl-sans);
	font-size: clamp(3.5rem, 5vw, 6rem);
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.86;
	margin: 0;
	min-height: 0.86em;
	text-transform: uppercase;
}

.behind-the-scenes .section-title > span {
	display: block;
	max-width: 11ch;
	white-space: normal;
}

.behind-the-scenes__lede {
	color: var(--jl-muted);
	font-family: var(--jl-sans);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.55;
	margin: 1.8rem 0 0;
	max-width: 34rem;
}

/* Three-entry editorial row */

.behind-the-scenes__posts {
	display: grid;
	gap: clamp(1.5rem, 3vw, 3rem);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bts-post {
	border: 0;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 0;
	position: relative;
}

.bts-post__image-link {
	display: block;
	text-decoration: none;
}

.bts-post__image {
	aspect-ratio: 4 / 5;
	background: var(--jl-paper-secondary);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.bts-post__thumbnail {
	display: block;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
	width: 100%;
}

.bts-post__image-link:hover .bts-post__thumbnail {
	transform: scale(1.045);
}

.bts-post__image-placeholder {
	background: linear-gradient(
		135deg,
		var(--jl-paper-secondary) 0%,
		#cbc7bf 100%
	);
	height: 100%;
	width: 100%;
}

.bts-post__number {
	align-items: center;
	background: var(--jl-ink);
	bottom: 0;
	color: var(--jl-paper-light);
	display: flex;
	font-family: var(--jl-sans);
	font-size: 0.64rem;
	font-weight: 700;
	height: 3.25rem;
	justify-content: center;
	left: 0;
	letter-spacing: 0.14em;
	position: absolute;
	width: 3.25rem;
}

.bts-post__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 1.5rem;
}

.bts-post__meta {
	align-items: center;
	color: var(--jl-muted);
	display: flex;
	flex-wrap: wrap;
	font-family: var(--jl-sans);
	font-size: 0.61rem;
	font-weight: 700;
	gap: 0.75rem;
	letter-spacing: 0.17em;
	line-height: 1;
	margin-bottom: 1.1rem;
	text-transform: uppercase;
}

.bts-post__category {
	color: var(--jl-red);
}

.bts-post__category,
.bts-post__date {
	display: inline-block;
}

.bts-post__meta-divider {
	background: currentColor;
	display: block;
	height: 1px;
	opacity: 0.4;
	width: 1.4rem;
}

.bts-post__title {
	color: var(--jl-ink);
	font-family: var(--jl-sans);
	font-size: clamp(1.2rem, 2vw, 2.3rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.94;
	margin: 0;
	text-transform: uppercase;
}

.bts-post__title a {
	color: inherit;
	text-decoration: none;
}

.bts-post__title .bts-scramble {
	display: inline;
}

.bts-post__excerpt {
	color: var(--jl-muted);
	font-family: var(--jl-sans);
	font-size: 1rem;
	line-height: 1.6;
	margin-top: 1.3rem;
	max-width: 32rem;
}

.bts-post__excerpt p {
	margin: 0;
}

.bts-post__read-more {
	align-items: center;
	align-self: flex-start;
	border-bottom: 1px solid currentColor;
	color: var(--jl-ink);
	display: inline-flex;
	font-family: var(--jl-sans);
	font-size: 0.66rem;
	font-weight: 700;
	gap: 0.65rem;
	letter-spacing: 0.16em;
	margin-top: 1.5rem;
	padding-bottom: 0.35rem;
	text-decoration: none;
	text-transform: uppercase;
}

.bts-post__arrow {
	display: inline-block;
	transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bts-post__read-more:hover .bts-post__arrow {
	transform: translate(4px, -4px);
}

/* View-all link */

.behind-the-scenes__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: clamp(3rem, 6vw, 6rem);
}

.bts-view-all {
	align-items: center;

	background: var(--jl-ink);

	border: 1px solid var(--jl-ink);

	color: var(--jl-paper-light);

	display: inline-flex;

	font-family: var(--jl-sans);

	font-size: 0.7rem;
	font-weight: 800;

	gap: 4rem;

	justify-content: space-between;

	letter-spacing: 0.16em;

	min-width: min(100%, 340px);

	padding:
		1.15rem
		1.35rem;

	text-decoration: none;
	text-transform: uppercase;

	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		color 220ms ease,
		transform 220ms ease;
}

.bts-view-all__arrow {
	font-size: 1.35rem;
	transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bts-view-all:hover .bts-view-all__arrow {
	transform: translateX(8px);
}
.bts-view-all:hover {
	background: var(--jl-red);

	border-color: var(--jl-red);

	color: var(--jl-paper-light);

	transform: translateY(-2px);
}
/* Decorative layer */

.behind-the-scenes__graphics {
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.bts-shape,
.bts-detail {
	display: block;
	position: absolute;
	pointer-events: none;
}

/* Primary shapes — upright and solid. */

.bts-shape {
	will-change: transform;
}

.bts-shape--left-bar {
	background: var(--jl-ink);
	height: clamp(170px, 23vw, 340px);
	left: 0;
	top: 16%;
	width: clamp(8px, 1.2vw, 18px);
}

.bts-shape--left-circle {
	aspect-ratio: 1;
	background: var(--jl-ink);
	border-radius: 50%;
	left: -105px;
	top: 43%;
	width: clamp(150px, 17vw, 260px);
}

.bts-shape--left-square {
	aspect-ratio: 1;
	background: var(--jl-ink);
	left: 2.5%;
	top: 74%;
	width: clamp(30px, 3vw, 48px);
}

.bts-shape--right-bar {
	background: var(--jl-red);
	height: clamp(180px, 25vw, 390px);
	right: 0;
	top: 28%;
	width: clamp(55px, 7vw, 110px);
}

.bts-shape--right-circle {
	aspect-ratio: 1;
	background: var(--jl-ink);
	border-radius: 50%;
	right: -65px;
	top: 61%;
	width: clamp(100px, 13vw, 190px);
}

.bts-shape--right-square {
	aspect-ratio: 1;
	background: var(--jl-ink);
	right: 4%;
	top: 83%;
	width: clamp(65px, 8vw, 125px);
}

/* Secondary technical flourishes — intentionally quiet. */

.bts-detail {
	opacity: 0.14;
}

.bts-detail--dots {
	background-image: radial-gradient(
		circle,
		var(--jl-ink) 1.2px,
		transparent 1.3px
	);
	background-size: 11px 11px;
	height: 82px;
	right: 5%;
	top: 12%;
	width: 82px;
}

.bts-detail--barcode {
	align-items: stretch;
	display: flex;
	gap: 3px;
	height: 42px;
	left: 2%;
	top: 38%;
	width: 85px;
}

.bts-detail--barcode i {
	background: var(--jl-ink);
	display: block;
	height: 100%;
	width: 3px;
}

.bts-detail--barcode i:nth-child(2),
.bts-detail--barcode i:nth-child(5) {
	width: 7px;
}

.bts-detail--barcode i:nth-child(4) {
	width: 2px;
}

.bts-detail--barcode i:nth-child(6) {
	width: 10px;
}

.bts-detail--crosswalk {
	background: repeating-linear-gradient(
		90deg,
		var(--jl-ink) 0,
		var(--jl-ink) 8px,
		transparent 8px,
		transparent 16px
	);
	height: 68px;
	right: 2%;
	top: 68%;
	width: 90px;
}

.bts-detail--ticks {
	background: repeating-linear-gradient(
		90deg,
		var(--jl-ink) 0,
		var(--jl-ink) 1px,
		transparent 1px,
		transparent 10px
	);
	height: 18px;
	left: 4%;
	top: 89%;
	width: 120px;
}

/* Responsive */

@media (max-width: 991.98px) {
	.behind-the-scenes__header {
		margin-bottom: 4rem;
	}

	.behind-the-scenes__posts {
		gap: 2rem 1.25rem;
	}

	.bts-post__title {
		font-size: clamp(1.55rem, 3vw, 2.2rem);
	}

	.bts-shape--left-circle {
		left: -125px;
	}

	.bts-shape--right-circle {
		right: -100px;
	}
}

@media (max-width: 767.98px) {
	.behind-the-scenes__posts {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.behind-the-scenes .section-title {
		font-size: clamp(3.2rem, 13vw, 5rem);
	}

	.bts-post {
		max-width: 42rem;
	}

	.bts-post__title {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.bts-shape--left-bar {
		left: -6px;
	}

	.bts-shape--left-circle {
		left: -145px;
	}

	.bts-shape--left-square {
		left: -10px;
	}

	.bts-shape--right-bar {
		right: -45px;
	}

	.bts-shape--right-circle {
		right: -120px;
	}

	.bts-shape--right-square {
		right: -45px;
	}

	.bts-detail--barcode,
	.bts-detail--ticks {
		opacity: 0.1;
	}

	.behind-the-scenes__footer {
		justify-content: stretch;
	}

	.bts-view-all {
		width: 100%;
	}
}


/* =========================================================
   CONTACT — LEFT EDITORIAL BLOCK
   ========================================================= */

.contact-section__statement {
	align-items: center;
	display: flex;

	min-height: 31rem;

	position: relative;
}


/*
 * Expanding red background.
 */

.contact-section__red-block {
	--contact-corner-cut: 0px;
	--contact-upper-inset: 0px;

	background: var(--jl-red);

	clip-path:
		polygon(
			0 0,
			100% 0,
			calc(100% - var(--contact-upper-inset)) 25%,
			calc(100% - var(--contact-corner-cut)) 100%,
			0 100%
		);

	height: 100%;

	left: -3rem;

	position: absolute;
	top: 0;

	transform: scaleX(0);
	transform-origin: right center;

	width: calc(100% + 6rem);

	will-change:
		transform,
		clip-path;

	z-index: 0;
}


/*
 * Keep the typography over the red panel.
 */

.contact-section__text-block {
	display: flex;
	flex-direction: column;

	position: relative;

	width: min(100%, 32rem);

	z-index: 1;
}


.contact-section__row {
	position: relative;
	width: 100%;

	will-change:
		transform,
		opacity;
}
.contact-section__row--description {
	margin:
		1.75rem
		0
		2rem;
}
.contact-section__title {
	margin: 0;
	font: inherit;
}

.contact-section__title .contact-section__row {
	display: block;
}

.contact-section__description {
	color:
		rgba(
			255,
			255,
			255,
			0.78
		);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			0.9rem,
			1vw,
			1.05rem
		);

	font-weight: 400;

	line-height: 1.65;

	margin: 0;

	max-width: 34rem;
}

/* =========================================================
   LET'S
   ========================================================= */

.contact-section__word {
	color: var(--jl-paper-light);

	display: block;

	font-family: var(--jl-sans);
	font-weight: 700;

	text-transform: uppercase;

	width: 100%;
}

.contact-section__word--lets {
	font-size: clamp(5.7rem, 7.3vw, 8.6rem);

	letter-spacing: -0.035em;

	line-height: 0.74;
}


/* =========================================================
   COLLABORATE
   ========================================================= */

.contact-section__word--collaborate {
	font-size: clamp(3.15rem, 4vw, 4.7rem);

	letter-spacing: -0.075em;
	line-height: 0.88;

	margin-top: 0.35rem;
}


/* =========================================================
   GET IN TOUCH
   ========================================================= */

.contact-section__get-in-touch {
	color: var(--jl-paper-light);

	display: block;

	font-family: var(--jl-sans);

	font-size: clamp(0.82rem, 0.9vw, 0.95rem);
	font-weight: 700;

	letter-spacing: 0.18em;

	margin-top: 2rem;

	text-transform: uppercase;

	width: 100%;
}


/* =========================================================
   UNDERLINE + RIGHT ARROW
   ========================================================= */

.contact-section__underline {
	align-items: center;
	display: flex;

	margin-top: 0.85rem;

	width: 100%;
}


.contact-section__underline-line {
	background: var(--jl-paper-light);

	flex: 1;

	height: 1px;

	transform-origin: left center;

	will-change: transform;
}


/* =========================================================
   CONTACT FORM WRAPPER
   ========================================================= */

.contact-section__form {
	padding-top: 4.5rem;
	position: relative;
	width: 100%;
}


/* =========================================================
   FROSTED GLASS PANEL
   ========================================================= */

.contact-section__glass {
	background:
	linear-gradient(
		135deg,
		rgba(190, 208, 224, 0.34) 0%,
		rgba(177, 198, 218, 0.30) 50%,
		rgba(165, 188, 210, 0.26) 100%
	);

	backdrop-filter:
		blur(30px)
		saturate(120%);

	-webkit-backdrop-filter:
		blur(22px)
		saturate(115%);

	border:
		1px solid
		rgba(220, 236, 248, .45);

	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.55),
		inset 0 2px 8px rgba(255,255,255,.18),
		0 20px 45px rgba(36,33,29,.06);

	padding:
		clamp(2.25rem, 3vw, 3.25rem);

	position: relative;

	width: 100%;

	will-change:
		transform,
		opacity;
}
.contact-section__glass::before {
	background:
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.22),
			rgba(215, 230, 242, 0.08)
		);

	content: "";

	inset: 0;

	pointer-events: none;

	position: absolute;

	z-index: 0;
}
.contact-section__glass > * {
	position: relative;
	z-index: 1;
}
.contact-section__glass::after,
.contact-section__glass-corner--top-right,
.contact-section__glass-corner--bottom-left {
	border-color:
		rgba(215, 232, 244, 0.52);
}

/* =========================================================
   CONTACT FORM 7
   ========================================================= */

.contact-section .wpcf7,
.contact-section .wpcf7-form {
	margin: 0;

	padding: 0;

	width: 100%;
}


/* =========================================================
   FIELD ROW
   ========================================================= */

.contact-section .contact-form__field {
	margin: 0;

	padding:
		0.8rem
		0
		1rem;

	position: relative;

	will-change:
		transform,
		opacity;
}


/* =========================================================
   LABEL
   ========================================================= */

.contact-section .contact-form__field label {
	color: var(--jl-red);

	display: block;

	font-family: var(--jl-sans);

	font-size: clamp(0.7rem, 0.8vw, 0.9rem);
	font-weight: 700;

	letter-spacing: 0.1em;

	line-height: 1;

	margin-bottom: 0.45rem;

	text-transform: uppercase;
}


/* =========================================================
   CONTROL WRAPPER / PARTIAL FRAME
   ========================================================= */

.contact-section .wpcf7-form-control-wrap {
	padding:
		0.45rem
		.9rem
		0.45rem;

	position: relative;

	display: block;

	width: 100%;
}


/* left vertical */

.contact-section .wpcf7-form-control-wrap::before {
	background:
		linear-gradient(
			to bottom,
			rgba(36, 33, 29, 0.55),
			rgba(36, 33, 29, 0.12)
		);

	content: "";

	height: 100%;

	left: 0;

	position: absolute;

	top: 0;

	width: 1px;
}


/* fading top */

.contact-section .wpcf7-form-control-wrap::after {
	background:
		linear-gradient(
			to right,
				rgba(36, 33, 29, 0.55) 0%,
				rgba(36, 33, 29, 0.45) 75%,
				rgba(36, 33, 29, 0.10) 90%,
				transparent 100%
		);

	content: "";

	height: 1px;

	left: 0;

	position: absolute;

	top: 0;

	width: 100%;
}


/* =========================================================
   INPUTS
   ========================================================= */

.contact-section .wpcf7-text,
.contact-section .wpcf7-email,
.contact-section .wpcf7-tel,
.contact-section .wpcf7-url,
.contact-section .wpcf7-textarea,
.contact-section .wpcf7-select {

	appearance: none;

	background: transparent;

	border: 0;
	border-radius: 0;

	box-shadow: none;

	color: var(--jl-ink);

	display: block;

	font-family: var(--jl-body-font);

	font-size: clamp(1.15rem, 1.4vw, 1.35rem);
	font-weight: 500;
	letter-spacing: 0.015em;
	height: auto;

	line-height: 1.2;

	margin: 0;

	outline: 0;

	padding:
		0
		0
		0.8rem;

	width: 100%;
}


.contact-section .wpcf7-textarea {
	min-height: 8rem;

	resize: none;
}


/* =========================================================
   FOCUS STATE
   ========================================================= */

.contact-section .wpcf7-form-control-wrap:focus-within::before {
	background:
		linear-gradient(
			to bottom,
			var(--jl-red),
			rgba(139, 48, 50, 0.2)
		);
}


.contact-section .wpcf7-form-control-wrap:focus-within::after {
	background:
		linear-gradient(
			to right,
			var(--jl-red) 0%,
			rgba(139, 48, 50, 0.5) 55%,
			transparent 100%
		);
}


.contact-section .wpcf7-form-control-wrap:focus-within
.wpcf7-form-control {
	background:
		linear-gradient(
			to right,
			var(--jl-red) 0%,
			rgba(139, 48, 50, 0.5) 55%,
			transparent 100%
		)
		left bottom / 100% 1px
		no-repeat;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.contact-section .contact-form__submit {
	align-items: center;

	align-self: flex-end;

	background: var(--jl-red);

	display: inline-flex;

	gap: 0.8rem;

	justify-content: flex-end;

	margin-left: auto;
	margin-top: 2rem;

	padding:
		0.95rem
		1.25rem;

	position: relative;

	width: fit-content;

	will-change:
		transform,
		opacity;

	transition:
		background-color 220ms ease,
		transform 220ms ease;
}


.contact-section .wpcf7-submit {
	appearance: none;

	background: transparent;

	border: 0;
	border-radius: 0;

	box-shadow: none;

	color: var(--jl-paper-light);

	cursor: pointer;

	font-family: var(--jl-sans);

	font-size: 0.72rem;
	font-weight: 700;

	inset: 0;

	letter-spacing: 0.16em;

	line-height: 1;

	margin: 0;

	padding:
		0.95rem
		3.5rem
		0.95rem
		1.25rem;

	position: absolute;

	text-align: left;
	text-transform: uppercase;

	width: 100%;

	z-index: 2;
}


.contact-section .contact-form__submit::after {
	color: var(--jl-paper-light);

	content: "→";

	font-family: var(--jl-sans);

	font-size: 1rem;

	line-height: 1;

	margin-left: auto;

	pointer-events: none;

	position: relative;

	z-index: 3;

	transition:
		transform 220ms
		cubic-bezier(0.16, 1, 0.3, 1);
}


.contact-section .contact-form__submit:hover {
	background: var(--jl-ink);

	transform: translateY(-2px);
}


.contact-section .contact-form__submit:hover::after {
	transform: translateX(5px);
}


/* =========================================================
   VALIDATION
   ========================================================= */

.contact-section .wpcf7-not-valid-tip {
	color: var(--jl-red);

	display: block;

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 700;

	letter-spacing: 0.08em;

	margin-top: 0.55rem;

	text-transform: uppercase;
}


/* =========================================================
   RESPONSE MESSAGE
   ========================================================= */

.contact-section .wpcf7-response-output {
	background: transparent;

	border: 1px solid var(--jl-border) !important;

	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.72rem;
	font-weight: 600;

	letter-spacing: 0.04em;

	margin:
		2rem
		0
		0 !important;

	padding:
		1rem
		1.25rem !important;
}


.contact-section form.sent .wpcf7-response-output {
	border-color: var(--jl-red) !important;
}


/* =========================================================
   CF7 SPINNER
   ========================================================= */

.contact-section .wpcf7-spinner {
	background-color: var(--jl-red);

	margin-left: 1rem;
}
/* =========================================================
   CONTACT — RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

	.contact-section {
		min-height: auto;
	}


	.contact-section__layout {
		align-items: stretch;

		display: grid;

		gap: 4rem;

		grid-template-columns: 1fr;

		min-height: 0;
	}


	.contact-section__statement {
		min-height: 28rem;

		width: 100%;
	}


	.contact-section__text-block {
		max-width: 36rem;

		padding:
			4rem
			0;

		width: 100%;
	}


	.contact-section__form {
		margin-left: 0;

		max-width: 100%;

		padding-top: 0;

		width: 100%;
	}


	.contact-section__glass {
		width: 100%;
	}

}


@media (max-width: 575.98px) {

	.contact-section__layout {
		gap: 3rem;
	}


	.contact-section__statement {
		min-height: 23rem;
	}


	.contact-section__red-block {
		left: -1.5rem;

		width: calc(100% + 3rem);
	}


	.contact-section__text-block {
		padding:
			3rem
			0;
	}


	.contact-section__word--lets {
		font-size: clamp(
			4rem,
			20vw,
			6rem
		);
	}


	.contact-section__word--collaborate {
		font-size: clamp(
			2.5rem,
			11vw,
			4rem
		);

		letter-spacing: -0.06em;
	}


	.contact-section__get-in-touch {
		font-size: 0.82rem;
	}


	.contact-section__glass {
		padding:
			1.75rem
			1.25rem;
	}

}

/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
	border-top: 1px solid var(--jl-border);

	padding:
		2rem
		0
		4rem;
}


.site-footer__inner {
	align-items: center;

	display: grid;

	gap: 2rem;

	grid-template-columns:
		1fr
		auto
		auto;
}


.site-footer__copyright {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.72rem;
	font-weight: 600;

	letter-spacing: 0.08em;

	margin: 0;

	text-transform: uppercase;
}


/* =========================================================
   FOOTER MENU
   ========================================================= */

.site-footer__menu {
	align-items: center;

	display: flex;

	gap: 1.5rem;

	list-style: none;

	margin: 0;

	padding: 0;
}


.site-footer__menu a {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.72rem;
	font-weight: 600;

	letter-spacing: 0.12em;

	text-decoration: none;

	text-transform: uppercase;

	transition:
		color 180ms ease;
}


.site-footer__menu a:hover {
	color: var(--jl-red);
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.site-footer__social {
	align-items: center;

	display: flex;

	gap: 1rem;
}


.site-footer__social-link {
	align-items: center;

	color: var(--jl-ink);

	display: inline-flex;

	font-size: 1rem;

	justify-content: center;

	text-decoration: none;

	transition:
		color 180ms ease,
		transform 180ms ease;
}


.site-footer__social-link:hover {
	color: var(--jl-red);

	transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE FOOTER
   ========================================================= */

@media (max-width: 767px) {

	.site-footer__inner {
		align-items: flex-start;

		grid-template-columns: 1fr;
	}


	.site-footer__menu {
		flex-wrap: wrap;
	}


	.site-footer__social {
		padding-top: 0.25rem;
	}

}

/* Tablet */

@media (max-width: 991.98px) {
	:root {
		--jl-header-height: 5rem;
	}

	.site-logo {
		font-size: 1.25rem;
	}

	.site-menu-toggle {
		display: block;
	}

	.site-navigation {
		background-color: var(--jl-paper);
		left: 0;
		position: absolute;
		right: 0;
		top: 100%;
	}

	.site-navigation.collapse {
		display: none;
	}

	.site-navigation.collapse.show {
		display: block;
	}

	.site-navigation__menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
		padding-block: 1rem 2rem;
	}

	.site-navigation__menu li {
		border-bottom: 1px solid var(--jl-border);
		width: 100%;
	}

	.site-navigation__menu a {
		display: block;
		font-size: 0.75rem;
		padding: 1rem 0;
	}

	.section-spacing {
		padding-block: var(--jl-space-lg);
	}

	.section-header--split {
		align-items: flex-start;
		flex-direction: column;
	}

	.selected-frames {
		padding-block: 7rem;
	}
	.selected-frames__grid {
		gap: 3rem 1.25rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.contact-cta__copy {
		margin-top: 2rem;
	}
}


/* Mobile */

@media (max-width: 575.98px) {
	:root {
		--jl-space-md: 2rem;
		--jl-space-lg: 4rem;
		--jl-space-xl: 5rem;
	}
	.site-logo {
		font-size: 1.2rem;
	}

	.section-spacing {
		padding-block: var(--jl-space-lg);
	}

	.section-header {
		margin-bottom: var(--jl-space-sm);
	}

	.section-title {
		font-size: clamp(2.8rem, 13vw, 4.2rem);
	}

	.selected-frames {
		padding-block: 5rem;
	}

	.selected-frames__grid {
		gap: 2.5rem 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section-action {
		text-align: left;
	}

	.contact-cta__inner {
		padding-top: 4rem;
	}

	.contact-cta__title {
		max-width: 100%;
		overflow-wrap: normal;
	}
}

/* =========================================================
   JOURNAL / BEHIND THE IMAGE PAGE
   ========================================================= */

.journal-page {
	overflow: hidden;
}


/* =========================================================
   JOURNAL HERO
   ========================================================= */

.journal-hero {
	border-bottom: 1px solid var(--jl-border);

	isolation: isolate;

	overflow: hidden;

	padding:
		clamp(5rem, 8vw, 9rem)
		0
		clamp(5rem, 7vw, 8rem);

	position: relative;
}


.journal-hero__graphics {
	inset: 0;

	pointer-events: none;

	position: absolute;

	z-index: 0;
}

.journal-hero .container {
	max-width: 1720px;

	position: relative;

	z-index: 2;
}


.journal-hero__layout {
	align-items: center;

	display: grid;

	gap:
		clamp(4rem, 6vw, 7rem);

	grid-template-columns:
		minmax(0, 2fr)
		minmax(0, 3fr);
}


/* =========================================================
   JOURNAL INTRO
   ========================================================= */

.journal-hero__intro {
	align-self: center;

	max-width: none;
	width:100%;

	position: relative;

	z-index: 2;
}


.journal-hero__eyebrow {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 700;

	letter-spacing: 0.23em;

	margin:
		0
		0
		1.8rem;

	text-transform: uppercase;
}


.journal-hero__title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			4.8rem,
			7vw,
			8rem
		);

	font-weight: 500;

	letter-spacing: -0.035em;

	line-height: 0.9;

	margin: 0;

	text-transform: uppercase;
}
.journal-hero__title-line {
	display: block;
}

.journal-hero__red-mark {
	background: var(--jl-red);

	display: block;

	height: 0.7rem;

	margin:
		2rem
		0
		2.5rem;

	width: 3.5rem;
}


.journal-hero__lede {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.9rem;

	line-height: 1.75;

	margin: 0;

	max-width: 18rem;
}


/* =========================================================
   FEATURED STORY
   ========================================================= */

.journal-featured {
	align-items: stretch;

	border: 1px solid var(--jl-border);

	display: grid;

	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(380px, 1.35fr);

	min-width: 0;

	overflow: hidden;

	position: relative;

	width: 100%;

	z-index: 1;
}

.journal-featured__image-link {
	display: block;

	grid-column: 1;

	min-width: 0;

	overflow: hidden;

	position: relative;

	width: 100%;
}

.journal-featured__image {
	aspect-ratio: 5 / 7;

	background: var(--jl-paper-secondary);

	overflow: hidden;

	position: relative;

	width: 100%;
}

.journal-featured__thumbnail {
	display: block;

	height: 100%;
	width: 100%;

	inset: 0;

	object-fit: cover;
	object-position: center;

	position: absolute;

	transform: none;
}


.journal-featured__image-link:hover
.journal-featured__thumbnail {
	transform: scale(1.025);
}


.journal-featured__placeholder {
	background:
		linear-gradient(
			135deg,
			var(--jl-paper-secondary),
			#cbc3b8
		);

	height: 100%;

	width: 100%;
}


.journal-featured__content {
	grid-column: 2;

	padding: 2rem;

	width: 100%;
}


.journal-featured__label {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.62rem;
	font-weight: 700;

	letter-spacing: 0.2em;

	margin:
		0
		0
		1.6rem;

	text-transform: uppercase;
}


.journal-featured__meta {
	align-items: center;

	color: var(--jl-red);

	display: flex;

	flex-wrap: wrap;

	font-family: var(--jl-sans);

	font-size: 0.58rem;
	font-weight: 700;

	gap: 0.65rem;

	letter-spacing: 0.15em;

	margin-bottom: 1rem;

	text-transform: uppercase;
}


.journal-featured__title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			2rem,
			3.3vw,
			2.5rem
		);

	font-weight: 500;

	letter-spacing: -0.025em;

	line-height: 0.95;

	margin: 0;
	display: -webkit-box;

	overflow: hidden;

	-webkit-box-orient: vertical;

	-webkit-line-clamp: 3;

	line-clamp: 3;
	text-transform: uppercase;
}


.journal-featured__title a {
	text-decoration: none;
}


.journal-featured__rule {
	background: var(--jl-red);

	display: block;

	height: 1px;

	margin:
		1.8rem
		0;

	width: 3rem;
}


.journal-featured__excerpt {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.88rem;

	line-height: 1.7;

	margin:
		0
		0
		2rem;

	max-width: 22rem;
}


/* =========================================================
   JOURNAL CTA
   ========================================================= */

.journal-read-link {
	align-items: center;

	background: var(--jl-ink);

	color: var(--jl-paper-light);

	display: inline-flex;

	font-family: var(--jl-sans);

	font-size: 0.66rem;
	font-weight: 700;

	gap: 1.4rem;

	justify-content: space-between;

	letter-spacing: 0.17em;

	min-height: 3.25rem;

	padding:
		0.9rem
		1.35rem;

	text-decoration: none;
	text-transform: uppercase;

	width: fit-content;

	transition:
		background-color 220ms ease,
		color 220ms ease,
		transform 220ms ease;
}


.journal-read-link__arrow {
	display: inline-block;

	font-size: 1rem;

	line-height: 1;

	transition:
		transform 220ms
		cubic-bezier(0.16, 1, 0.3, 1);
}


.journal-read-link:hover {
	background: var(--jl-red);

	color: var(--jl-paper-light);

	transform: translateY(-2px);
}


.journal-read-link:hover
.journal-read-link__arrow {
	transform: translateX(5px);
}

.journal-featured .journal-read-link {
	min-width: 11rem;
}

.journal-card .journal-read-link {
	min-width: 9.5rem;
}

/* =========================================================
   DECORATIVE HERO GRAPHICS
   ========================================================= */

.journal-hero__corner {
	border-right:
		0.75rem solid
		var(--jl-red);

	border-top:
		0.75rem solid
		var(--jl-red);

	height: 3rem;

	position: absolute;

	right: 4%;

	top: 2rem;

	width: 3rem;
}


.journal-hero__roman {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.58rem;
	font-weight: 700;

	left: 1.6rem;

	letter-spacing: 0.2em;

	position: absolute;

	top: 47%;

	transform:
		rotate(
			-90deg
		);

	transform-origin:
		left center;
}


.journal-hero__index {
	align-items: center;

	color: var(--jl-red);

	display: flex;

	flex-direction: column;

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 700;

	gap: 1rem;

	position: absolute;

	right: 1.5rem;

	top: 43%;
}


.journal-hero__index i {
	background: var(--jl-red);

	display: block;

	height: 2rem;

	width: 1px;
}


.journal-hero__registration {
	border:
		1px solid
		rgba(36, 33, 29, 0.18);

	border-radius: 50%;

	height: 1rem;

	position: absolute;

	width: 1rem;
}


.journal-hero__registration::before,
.journal-hero__registration::after {
	background:
		rgba(36, 33, 29, 0.18);

	content: "";

	left: 50%;

	position: absolute;

	top: 50%;

	transform:
		translate(
			-50%,
			-50%
		);
}


.journal-hero__registration::before {
	height: 1px;

	width: 1.8rem;
}


.journal-hero__registration::after {
	height: 1.8rem;

	width: 1px;
}


.journal-hero__registration--left {
	left: 1rem;

	top: 1rem;
}


.journal-hero__registration--right {
	right: 1rem;

	bottom: 2rem;
}


/* =========================================================
   LATEST STORIES
   ========================================================= */

.journal-stories {
	position: relative;
}


.journal-stories__header {
	align-items: center;

	border-bottom:
		1px solid
		var(--jl-border);

	display: flex;

	justify-content:
		space-between;

	margin-bottom:
		clamp(
			3rem,
			5vw,
			5rem
		);

	padding-bottom: 1.4rem;
}


.journal-stories__header h2 {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.2em;

	margin: 0;

	text-transform: uppercase;
}


.journal-stories__rule {
	background: var(--jl-red);

	height: 1px;

	width: 5rem;
}
/* =========================================================
   JOURNAL — PAGE-SIDE GRAPHICS
   ========================================================= */

.journal-page {
	isolation: isolate;

	position: relative;
}


.journal-page__graphics {
	inset: 0;

	overflow: hidden;

	pointer-events: none;

	position: absolute;

	z-index: 0;
}


.journal-hero,
.journal-stories {
	position: relative;

	z-index: 2;
}


.journal-shape,
.journal-detail {
	display: block;

	pointer-events: none;

	position: absolute;
}


/* =========================================================
   PRIMARY SHAPES
   ========================================================= */

.journal-shape {
	will-change: transform;
}


/* Left circle */

.journal-shape--left-circle {
	background: var(--jl-ink);

	border-radius: 50%;

	height: clamp(12rem, 17vw, 20rem);

	left: clamp(-11rem, -8vw, -6rem);

	top: 30%;

	width: clamp(12rem, 17vw, 20rem);
}


/* Left square */

.journal-shape--left-square {
	background: var(--jl-red);

	height: clamp(2rem, 3vw, 3.5rem);

	left: 3%;

	top: 58%;

	width: clamp(2rem, 3vw, 3.5rem);
}


/* Right vertical bar */

.journal-shape--right-bar {
	background: var(--jl-red);

	height: clamp(16rem, 24vw, 27rem);

	right: 0;

	top: 21%;

	width: clamp(3rem, 5vw, 5.5rem);
}


/* Right circle */

.journal-shape--right-circle {
	background: var(--jl-ink);

	border-radius: 50%;

	height: clamp(9rem, 13vw, 15rem);

	right: clamp(-7rem, -5vw, -3rem);

	top: 52%;

	width: clamp(9rem, 13vw, 15rem);
}


/* Right square */

.journal-shape--right-square {
	background: var(--jl-ink);

	height: clamp(4rem, 6vw, 7rem);

	right: 4%;

	top: 78%;

	width: clamp(4rem, 6vw, 7rem);
}


/* =========================================================
   TECHNICAL DETAILS
   ========================================================= */

.journal-detail {
	opacity: 0.13;
}


/* Dots */

.journal-detail--dots {
	background-image:
		radial-gradient(
			circle,
			var(--jl-ink) 1.2px,
			transparent 1.3px
		);

	background-size:
		11px
		11px;

	height: 5rem;

	right: 6%;

	top: 11%;

	width: 5rem;
}


/* Barcode */

.journal-detail--barcode {
	align-items: stretch;

	display: flex;

	gap: 3px;

	height: 3rem;

	left: 2%;

	top: 43%;

	width: 6rem;
}


.journal-detail--barcode i {
	background: var(--jl-ink);

	display: block;

	height: 100%;

	width: 3px;
}


.journal-detail--barcode i:nth-child(2),
.journal-detail--barcode i:nth-child(5) {
	width: 7px;
}


.journal-detail--barcode i:nth-child(4) {
	width: 2px;
}


.journal-detail--barcode i:nth-child(6) {
	width: 10px;
}


/* Crosswalk */

.journal-detail--crosswalk {
	background:
		repeating-linear-gradient(
			90deg,
			var(--jl-ink) 0,
			var(--jl-ink) 8px,
			transparent 8px,
			transparent 16px
		);

	height: 4rem;

	right: 2%;

	top: 67%;

	width: 6rem;
}


/* Tick marks */

.journal-detail--ticks {
	background:
		repeating-linear-gradient(
			90deg,
			var(--jl-ink) 0,
			var(--jl-ink) 1px,
			transparent 1px,
			transparent 10px
		);

	height: 1.2rem;

	left: 4%;

	top: 87%;

	width: 8rem;
}

/* =========================================================
   JOURNAL GRID
   ========================================================= */

.journal-grid {
	display: grid;

	gap:
		clamp(
			4rem,
			6vw,
			6rem
		)
		clamp(
			1.5rem,
			3vw,
			3rem
		);

	grid-template-columns:
		repeat(
			3,
			minmax(
				0,
				1fr
			)
		);
}


.journal-card {
	display: flex;

	flex-direction: column;

	min-width: 0;
}


.journal-card__image-link {
	display: block;

	text-decoration: none;
}


.journal-card__image {
	aspect-ratio: 4 / 3;

	background:
		var(--jl-paper-secondary);

	overflow: hidden;

	position: relative;
}


.journal-card__thumbnail {
	height: 100%;

	object-fit: cover;

	transition:
		transform
		700ms
		cubic-bezier(
			0.16,
			1,
			0.3,
			1
		);

	width: 100%;
}


.journal-card__image-link:hover
.journal-card__thumbnail {
	transform:
		scale(
			1.035
		);
}


.journal-card__placeholder {
	background:
		linear-gradient(
			135deg,
			var(--jl-paper-secondary),
			#cbc3b8
		);

	height: 100%;

	width: 100%;
}


/*
 * Red editorial corner.
 */

.journal-card__corner {
	border-bottom:
		0.45rem solid
		var(--jl-red);

	border-left:
		0.45rem solid
		var(--jl-red);

	bottom: 0;

	height: 2.2rem;

	left: 0;

	position: absolute;

	width: 2.2rem;
}


.journal-card__meta {
	align-items: center;

	color: var(--jl-red);

	display: flex;

	flex-wrap: wrap;

	font-family: var(--jl-sans);

	font-size: 0.58rem;
	font-weight: 700;

	gap: 0.65rem;

	letter-spacing: 0.15em;

	margin-top: 1.3rem;

	text-transform: uppercase;
}


.journal-card__title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			1.3rem,
			1.7vw,
			1.9rem
		);

	font-weight: 500;

	letter-spacing: -0.025em;

	line-height: 1;
	text-transform: uppercase;
	margin:
		0.8rem
		0
		0;
}


.journal-card__title a {
	text-decoration: none;
}


.journal-card__excerpt {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.85rem;

	line-height: 1.65;

	margin:
		1rem
		0
		1.5rem;

	max-width: 27rem;
}


.journal-card .journal-read-link {
	margin-top: auto;

	width: fit-content;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.journal-pagination {
	border-top:
		1px solid
		var(--jl-border);

	margin-top:
		clamp(
			5rem,
			8vw,
			8rem
		);

	padding-top: 2rem;
}


.journal-pagination ul {
	align-items: center;

	display: flex;

	gap: 0.75rem;

	justify-content: center;

	list-style: none;

	margin: 0;

	padding: 0;
}


.journal-pagination a,
.journal-pagination span {
	align-items: center;

	border:
		1px solid
		var(--jl-border);

	display: inline-flex;

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 700;

	justify-content: center;

	letter-spacing: 0.1em;

	min-height: 2.75rem;

	min-width: 2.75rem;

	padding:
		0.5rem
		0.8rem;

	text-decoration: none;

	text-transform: uppercase;
}


.journal-pagination .current {
	background: var(--jl-ink);

	border-color: var(--jl-ink);

	color: var(--jl-paper-light);
}
/* =========================================================
   SINGLE JOURNAL POST
   ========================================================= */

.single-journal {
	isolation: isolate;

	overflow: hidden;

	position: relative;
}

/* =========================================================
   GRAPHICS
   ========================================================= */

.single-journal__graphics {
	inset: 0;

	overflow: hidden;

	pointer-events: none;

	position: absolute;

	z-index: 0;
}


.single-journal__circle {
	aspect-ratio: 1;

	border-radius: 50%;

	position: absolute;

	width:
		clamp(
			18rem,
			25vw,
			32rem
		);

	will-change: transform;
}


.single-journal__circle--left {
	background: var(--jl-ink);

	left: -18rem;

	top: 28rem;
}


.single-journal__circle--right {
	background: var(--jl-red);

	right: -18rem;

	top: 76rem;
}


.single-journal__track {
	background: rgba(36, 33, 29, 0.28);

	height: 30rem;

	position: absolute;

	width: 1px;

	z-index: 3;
}


.single-journal__track--left {
	left: 4.5rem;

	top: 48rem;
}


.single-journal__track--right {
	right: 4.5rem;

	top: 94rem;
}


.single-journal__tracker {
	border-radius: 50%;

	height: 1.5rem;

	position: absolute;

	width: 1.5rem;

	z-index: 5;

	will-change: transform;
}


.single-journal__tracker--left {
	background: var(--jl-red);

	left:
		calc(
			4.5rem -
			0.75rem
		);

	top: 48rem;
}


.single-journal__tracker--right {
	background: var(--jl-ink);

	right:
		calc(
			4.5rem -
			0.75rem
		);

	top: 94rem;
}


.single-journal__dots {
	background-image:
		radial-gradient(
			circle,
			var(--jl-ink) 1px,
			transparent 1.2px
		);

	background-size:
		12px
		12px;

	height: 6rem;

	opacity: 0.18;

	position: absolute;

	right: 4rem;

	top: 24rem;

	width: 6rem;
}


.single-journal__ticks {
	background:
		repeating-linear-gradient(
			90deg,
			var(--jl-ink) 0,
			var(--jl-ink) 1px,
			transparent 1px,
			transparent 9px
		);

	height: 1rem;

	left: 3rem;

	opacity: 0.14;

	position: absolute;

	top: 116rem;

	width: 8rem;
}


/* =========================================================
   HEADER
   ========================================================= */

.single-journal__header {
	border-bottom:
		1px solid
		var(--jl-border);

	padding:
		clamp(
			5rem,
			7vw,
			7.5rem
		)
		0
		clamp(
			2.75rem,
			4vw,
			4rem
		);

	position: relative;

	z-index: 2;
}


.single-journal__header-inner {
	margin-inline: auto;

	max-width: 1280px;
}


.single-journal__meta {
	align-items: center;

	color: var(--jl-muted);

	display: flex;

	flex-wrap: wrap;

	font-family: var(--jl-sans);

	font-size: 0.65rem;
	font-weight: 700;

	gap: 0.9rem;

	letter-spacing: 0.18em;

	margin-bottom: 2rem;

	text-transform: uppercase;
}


.single-journal__category {
	color: var(--jl-red);

	text-decoration: none;
}


.single-journal__meta-line {
	background: var(--jl-red);

	height: 1px;

	width: 1.6rem;
}


.single-journal__title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			2.4rem,
			4vw,
			4.6rem
		);

	font-weight: 700;

	letter-spacing: -0.055em;

	line-height: 0.92;

	margin: 0;

	max-width: none;
	width: 100%;

	text-transform: uppercase;
}


.single-journal__red-mark {
	background: var(--jl-red);

	display: block;

	height: 0.65rem;

	margin:
		2.5rem
		0;

	width: 3.5rem;
}


.single-journal__lede {
	color: var(--jl-muted);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			1.05rem,
			1.4vw,
			1.3rem
		);

	line-height: 1.7;

	margin: 0;

	max-width: 45rem;
}


.single-journal__utility {
	align-items: center;

	border-top:
		1px solid
		var(--jl-border);

	display: flex;

	justify-content: space-between;

	margin-top: 1.75rem;

	padding-top: 1rem;
}


.single-journal__reading-time,
.single-journal__social {
	align-items: center;

	color: var(--jl-muted);

	display: flex;

	font-family: var(--jl-sans);

	font-size: 0.63rem;
	font-weight: 700;

	gap: 0.75rem;

	letter-spacing: 0.14em;

	text-transform: uppercase;
}


.single-journal__social a {
	align-items: center;

	color: var(--jl-ink);

	display: inline-flex;

	font-size: 1rem;

	justify-content: center;

	text-decoration: none;

	transition:
		color 180ms ease,
		transform 180ms ease;
}


.single-journal__social a:hover {
	color: var(--jl-red);

	transform: translateY(-2px);
}


/* =========================================================
   ARTICLE LAYOUT
   ========================================================= */

.single-journal__header {
	padding:
		clamp(
			5rem,
			7vw,
			7.5rem
		)
		0
		clamp(
			2.1rem,
			3vw,
			3.75rem
		);
}


.single-journal__layout {
	align-items: start;

	display: grid;

	gap:
		clamp(
			4rem,
			6vw,
			7rem
		);

	grid-template-columns:
		minmax(0, 1fr)
		minmax(260px, 320px);

	margin-inline: auto;

	max-width: 1470px;
}

.single-journal__body > .container {
	max-width: 1620px;
}
.single-journal__content {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 1.05rem;

	line-height: 1.9;

	max-width: 970px;
}


.single-journal__content > *:first-child {
	margin-top: 0;
}


.single-journal__content a {
	color: var(--jl-red);
}
/* =========================================================
   EXTRA TECHNICAL DETAILS
   ========================================================= */

.single-journal__corner {
	height: 1.6rem;

	position: absolute;

	width: 1.6rem;
}


.single-journal__corner::before,
.single-journal__corner::after {
	background: var(--jl-ink);

	content: "";

	position: absolute;
}


.single-journal__corner::before {
	height: 1px;

	width: 100%;
}


.single-journal__corner::after {
	height: 100%;

	width: 1px;
}


.single-journal__corner--top-left {
	left: 2rem;

	top: 8rem;
}


.single-journal__corner--mid-right {
	right: 2rem;

	top: 55rem;

	transform: rotate(180deg);
}


.single-journal__cross {
	height: 1.5rem;

	position: absolute;

	width: 1.5rem;
}


.single-journal__cross::before,
.single-journal__cross::after {
	background: var(--jl-ink);

	content: "";

	left: 50%;

	position: absolute;

	top: 50%;

	transform:
		translate(
			-50%,
			-50%
		);
}


.single-journal__cross::before {
	height: 1px;

	width: 100%;
}


.single-journal__cross::after {
	height: 100%;

	width: 1px;
}


.single-journal__cross--one {
	left: 6%;

	top: 68rem;
}


.single-journal__cross--two {
	right: 7%;

	top: 126rem;
}


.single-journal__barcode {
	display: flex;

	gap: 3px;

	height: 3rem;

	left: 3rem;

	opacity: 0.16;

	position: absolute;

	top: 145rem;

	width: 6rem;
}


.single-journal__barcode i {
	background: var(--jl-ink);

	display: block;

	height: 100%;

	width: 3px;
}


.single-journal__barcode i:nth-child(2),
.single-journal__barcode i:nth-child(5) {
	width: 7px;
}


.single-journal__barcode i:nth-child(4) {
	width: 2px;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.single-journal__sidebar {
	border-left:
		1px solid
		var(--jl-border);

	padding-left: 2rem;
}


.single-journal__sidebar-section {
	border-bottom:
		1px solid
		var(--jl-border);

	padding:
		2rem
		0
		2.5rem;

	margin-bottom: 2.5rem;
}

.single-journal__sidebar-label {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.6rem;
	font-weight: 700;

	letter-spacing: 0.18em;

	margin:
		0
		0
		1rem;

	text-transform: uppercase;
}


.single-journal__sidebar-title {
	font-family: var(--jl-sans);

	font-size: 1.35rem;

	font-weight: 700;

	letter-spacing: -0.035em;

	line-height: 1;

	margin:
		0
		0
		1.2rem;

	text-transform: uppercase;
}


.single-journal__sidebar-copy {
	color: var(--jl-muted);

	font-size: 0.85rem;

	line-height: 1.7;
}


.single-journal__sidebar-link {
	align-items: center;

	color: var(--jl-ink);

	display: inline-flex;

	font-size: 0.65rem;
	font-weight: 700;

	gap: 1rem;

	letter-spacing: 0.15em;

	margin-top: 1rem;

	text-decoration: none;

	text-transform: uppercase;
}


.single-journal__category-list {
	list-style: none;

	margin: 0;

	padding: 0;
}


.single-journal__category-list li {
	border-bottom:
		1px solid
		var(--jl-border);

	font-size: 0.72rem;

	padding:
		0.75rem
		0;
}


.single-journal__category-list a {
	text-decoration: none;
}


.single-journal__recent {
	display: flex;

	flex-direction: column;

	gap: 1.5rem;
}


.single-journal__recent-post {
	align-items: center;

	display: grid;

	gap: 1rem;

	grid-template-columns:
		4.5rem
		minmax(0, 1fr);

	text-decoration: none;
}


.single-journal__recent-image {
	aspect-ratio: 1;

	overflow: hidden;
}


.single-journal__recent-image img {
	height: 100%;

	object-fit: cover;

	width: 100%;
}


.single-journal__recent-title {
	display: -webkit-box;

	font-size: 0.75rem;

	font-weight: 700;

	line-height: 1.3;

	overflow: hidden;

	-webkit-box-orient: vertical;

	-webkit-line-clamp: 2;
}


.single-journal__recent-date {
	color: var(--jl-muted);

	display: block;

	font-size: 0.56rem;

	letter-spacing: 0.1em;

	margin-top: 0.4rem;

	text-transform: uppercase;
}


/* =========================================================
   PREVIOUS / NEXT
   ========================================================= */

.single-journal__post-nav {
	border-top:
		1px solid
		var(--jl-border);

	padding:
		4rem
		0
		6rem;

	position: relative;

	z-index: 2;
}


.single-journal__post-nav-inner {
	display: grid;

	gap: 3rem;

	grid-template-columns:
		repeat(
			2,
			minmax(
				0,
				1fr
			)
		);
}


.single-journal__post-nav-item {
	max-width: 28rem;
}


.single-journal__post-nav-item--next {
	justify-self: end;

	text-align: right;
}


.single-journal__post-nav-label {
	color: var(--jl-red);

	display: block;

	font-size: 0.6rem;
	font-weight: 700;

	letter-spacing: 0.17em;

	margin-bottom: 0.8rem;

	text-transform: uppercase;
}


.single-journal__post-nav-item a {
	font-family: var(--jl-sans);

	font-size:
		clamp(
			1.3rem,
			2.4vw,
			2.1rem
		);

	font-weight: 700;

	letter-spacing: -0.04em;

	line-height: 1;

	text-decoration: none;

	text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

	.single-journal__layout {
		grid-template-columns: 1fr;
	}


	.single-journal__sidebar {
		border-left: 0;

		border-top:
			1px solid
			var(--jl-border);

		padding:
			3rem
			0
			0;
	}


	.single-journal__circle {
		opacity: 0.55;

		width: 18rem;
	}


	.single-journal__track--left,
	.single-journal__tracker--left {
		left: 1.5rem;
	}


	.single-journal__track--right,
	.single-journal__tracker--right {
		right: 1.5rem;
	}

}


@media (max-width: 575.98px) {

	.single-journal__header {
		padding:
			4rem
			0
			3.5rem;
	}


	.single-journal__title {
		font-size:
			clamp(
				2.8rem,
				13vw,
				4.4rem
			);

		max-width: none;
	}


	.single-journal__utility {
		align-items: flex-start;

		flex-direction: column;

		gap: 1.5rem;
	}


	.single-journal__post-nav-inner {
		grid-template-columns: 1fr;
	}


	.single-journal__post-nav-item--next {
		justify-self: start;

		text-align: left;
	}


	.single-journal__circle {
		opacity: 0.3;
	}

}

/* =========================================================
   RESPONSIVE — JOURNAL
   ========================================================= */

@media (max-width: 1199.98px) {

	.journal-hero__layout {
		gap: 3rem;

		grid-template-columns:
			minmax(190px, 0.65fr)
			minmax(0, 2fr);
	}


	.journal-featured {
		grid-template-columns:
			1.35fr
			0.85fr;
	}

}


@media (max-width: 991.98px) {

	.journal-hero {
		padding:
			5rem
			0;
	}


	.journal-hero__layout {
		grid-template-columns:
			1fr;

		gap: 4rem;
	}


	.journal-hero__intro {
		max-width: 34rem;
	}


	.journal-hero__lede {
		max-width: 28rem;
	}


	.journal-featured {
		grid-template-columns:
			1fr
			0.8fr;
	}


	.journal-grid {
		grid-template-columns:
			repeat(
				2,
				minmax(
					0,
					1fr
				)
			);
	}


	.journal-hero__roman,
	.journal-hero__index {
		display: none;
	}

}


@media (max-width: 767.98px) {

		.journal-featured {
		grid-template-columns: 1fr;
	}

.journal-featured__image-link {
		grid-column: 1;
	}

		.journal-featured__content {
		grid-column: 1;

		padding: 2rem;
	}


	.journal-grid {
		grid-template-columns:
			1fr;

		gap: 4.5rem;
	}


	.journal-card {
		max-width: 42rem;
	}


	.journal-card__image {
		aspect-ratio: 4 / 3;
	}

	.journal-shape--left-circle {
		left: -9rem;

		opacity: 0.8;
	}


	.journal-shape--right-bar {
		right: -3rem;
	}


	.journal-shape--right-circle {
		right: -7rem;
	}


	.journal-shape--left-square,
	.journal-shape--right-square {
		transform: scale(0.75);
	}


	.journal-detail--barcode,
	.journal-detail--crosswalk,
	.journal-detail--ticks {
		opacity: 0.07;
	}
	
}


@media (max-width: 575.98px) {

	.journal-hero__title {
		font-size:
			clamp(
				3.5rem,
				18vw,
				5rem
			);
	}


	.journal-hero__corner {
		height: 2rem;

		right: 1rem;

		width: 2rem;
	}


	.journal-featured__title {
		font-size:
			clamp(
				2.2rem,
				10vw,
				3rem
			);
	}


	.journal-card__title {
		font-size:
			clamp(
				2rem,
				9vw,
				2.8rem
			);
	}


	.journal-pagination ul {
		flex-wrap: wrap;
	}

}



/* =========================================================
   GUTENBERG BLOCKS — FRONT END
   ========================================================= */


/* ---------------------------------------------------------
   PARAGRAPHS
   --------------------------------------------------------- */

.single-journal__content p {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 1.05rem;

	line-height: 1.9;

	margin:
		0
		0
		1.8rem;
}


/* ---------------------------------------------------------
   HEADINGS
   --------------------------------------------------------- */

.single-journal__content h2,
.single-journal__content h3,
.single-journal__content h4 {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-weight: 700;
}


.single-journal__content h2 {
	font-size:
		clamp(
			2rem,
			2.5vw,
			3rem
		);

	letter-spacing: -0.045em;
	line-height: 1;

	margin:
		4rem
		0
		1.5rem;

	text-transform: uppercase;
}


.single-journal__content h3 {
	font-size:
		clamp(
			1.8rem,
			3vw,
			2.8rem
		);

	letter-spacing: -0.04em;

	line-height: 1;

	margin:
		3rem
		0
		1.25rem;
}


/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.single-journal__content a {
	color: var(--jl-red);

	text-decoration-thickness: 1px;

	text-underline-offset: 0.15em;
}


/* ---------------------------------------------------------
   IMAGES
   --------------------------------------------------------- */

.single-journal__content
.wp-block-image {
	margin-block: 3rem;
}


.single-journal__content
.wp-block-image img {
	display: block;

	height: auto;

	width: 100%;
}


/* ---------------------------------------------------------
   WIDE BLOCKS
   --------------------------------------------------------- */

.single-journal__content
.alignwide {
	left: 50%;

	margin-left: 0;

	max-width: 1280px;

	position: relative;

	transform: translateX(-50%);

	width:
		min(
			1280px,
			calc(
				100vw -
				4rem
			)
		);
}


/* ---------------------------------------------------------
   FULL WIDTH BLOCKS
   --------------------------------------------------------- */

.single-journal__content
.alignfull {
	left: 50%;

	margin-left: 0;

	max-width: none;

	position: relative;

	transform: translateX(-50%);

	width: 100vw;
}


/* ---------------------------------------------------------
   CAPTIONS
   --------------------------------------------------------- */

.single-journal__content
.wp-element-caption,
.single-journal__content
.wp-block-image figcaption {
	color: var(--jl-muted);

	font-family: var(--jl-sans);

	font-size: 0.68rem;

	font-weight: 600;

	letter-spacing: 0.08em;

	line-height: 1.5;

	margin-top: 0.75rem;

	text-transform: uppercase;
}


/* ---------------------------------------------------------
   GALLERY
   --------------------------------------------------------- */

.single-journal__content
.wp-block-gallery {
	gap: 1rem;

	margin-block: 4rem;
}


/* ---------------------------------------------------------
   COLUMNS
   --------------------------------------------------------- */

.single-journal__content
.wp-block-columns {
	gap:
		clamp(
			1.5rem,
			3vw,
			3rem
		);

	margin-block: 4rem;
}


/* ---------------------------------------------------------
   QUOTE
   --------------------------------------------------------- */

.single-journal__content
.wp-block-quote {
	border-left:
		8px solid
		var(--jl-red);

	margin:
		4rem
		0;

	padding:
		0.5rem
		0
		0.5rem
		2rem;
}


.single-journal__content
.wp-block-quote p {
	font-size:
		clamp(
			1.5rem,
			2.5vw,
			2.2rem
		);

	font-weight: 700;

	letter-spacing: -0.035em;

	line-height: 1.2;
}


.single-journal__content
.wp-block-quote cite {
	color: var(--jl-muted);

	display: block;

	font-size: 0.65rem;

	font-style: normal;

	font-weight: 700;

	letter-spacing: 0.16em;

	margin-top: 1rem;

	text-transform: uppercase;
}


/* ---------------------------------------------------------
   LISTS
   --------------------------------------------------------- */

.single-journal__content ul,
.single-journal__content ol {
	padding-left: 1.5rem;
}


.single-journal__content li {
	margin-bottom: 0.65rem;
}


/* ---------------------------------------------------------
   SEPARATOR
   --------------------------------------------------------- */

.single-journal__content
.wp-block-separator {
	border: 0;

	border-top:
		1px solid
		var(--jl-border);

	margin-block: 4rem;
}


/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.single-journal__content
.wp-block-button__link {
	background: var(--jl-ink);

	border-radius: 0;

	color: var(--jl-paper-light);

	font-family: var(--jl-sans);

	font-size: 0.68rem;

	font-weight: 700;

	letter-spacing: 0.16em;

	padding:
		0.95rem
		1.3rem;

	text-decoration: none;

	text-transform: uppercase;

	transition:
		background-color 220ms ease,
		transform 220ms ease;
}


.single-journal__content
.wp-block-button__link:hover {
	background: var(--jl-red);

	color: var(--jl-paper-light);

	transform: translateY(-2px);
}


/* ---------------------------------------------------------
   COVER
   --------------------------------------------------------- */

.single-journal__content
.wp-block-cover {
	margin-block: 4rem;

	min-height: 28rem;
}


/* ---------------------------------------------------------
   MEDIA + TEXT
   --------------------------------------------------------- */

.single-journal__content
.wp-block-media-text {
	margin-block: 4rem;
}


/* ---------------------------------------------------------
   VIDEO
   --------------------------------------------------------- */

.single-journal__content
.wp-block-video {
	margin-block: 4rem;
}


/* ---------------------------------------------------------
   CODE
   --------------------------------------------------------- */

.single-journal__content
.wp-block-code,
.single-journal__content
.wp-block-preformatted {
	background: var(--jl-paper-secondary);

	border:
		1px solid
		var(--jl-border);

	padding: 1.5rem;
}

/* =========================================================
   GUTENBERG BUTTONS
   ========================================================= */

.single-journal__content
.wp-block-buttons {
	display: flex;

	flex-wrap: wrap;

	gap: 1rem;

	margin-block: 2.5rem;
}


.single-journal__content
.wp-block-button {
	margin: 0;
}


.single-journal__content
.wp-block-button__link {
	align-items: center;

	background: var(--jl-ink);

	border: 1px solid var(--jl-ink);
	border-radius: 0;

	color: var(--jl-paper-light);

	display: inline-flex;

	font-family: var(--jl-sans);

	font-size: 0.68rem;
	font-weight: 700;

	gap: 1.25rem;

	justify-content: space-between;

	letter-spacing: 0.16em;

	min-height: 3.25rem;

	padding:
		0.9rem
		1.35rem;

	text-decoration: none;

	text-transform: uppercase;

	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		color 220ms ease,
		transform 220ms ease;
}


.single-journal__content
.wp-block-button__link::after {
	content: "→";

	font-size: 1rem;

	line-height: 1;

	transition:
		transform 220ms
		cubic-bezier(
			0.16,
			1,
			0.3,
			1
		);
}


.single-journal__content
.wp-block-button__link:hover {
	background: var(--jl-red);

	border-color: var(--jl-red);

	color: var(--jl-paper-light);

	transform: translateY(-2px);
}


.single-journal__content
.wp-block-button__link:hover::after {
	transform: translateX(5px);
}

/* =========================================================
   JL GUTENBERG PATTERNS
   ========================================================= */

.single-journal__content
.jl-pattern {
	margin-block:
		clamp(
			4rem,
			7vw,
			7rem
		);
}


/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.single-journal__content
.jl-pattern__eyebrow {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.62rem;

	font-weight: 700;

	letter-spacing: 0.18em;

	margin-bottom: 1rem;

	text-transform: uppercase;
}


/* ---------------------------------------------------------
   TWO IMAGE SPREAD
   --------------------------------------------------------- */

.single-journal__content
.jl-image-pair {
	align-items: stretch;

	gap:
		clamp(
			1rem,
			2vw,
			2rem
		);
}


.single-journal__content
.jl-image-pair
.wp-block-image {
	height: 100%;

	margin: 0;
}


.single-journal__content
.jl-image-pair
.wp-block-image img {
	height: 100%;

	object-fit: cover;

	width: 100%;
}


/* ---------------------------------------------------------
   IMAGE + TEXT
   --------------------------------------------------------- */

.single-journal__content
.jl-image-text {
	align-items: center;

	gap:
		clamp(
			2rem,
			5vw,
			5rem
		);
}


.single-journal__content
.jl-image-text
.wp-block-image {
	margin: 0;
}


/* ---------------------------------------------------------
   TECHNICAL NOTES
   --------------------------------------------------------- */

.single-journal__content
.jl-pattern--technical-notes {
	border-top:
		1px solid
		var(--jl-border);

	border-bottom:
		1px solid
		var(--jl-border);

	padding:
		2.5rem
		0;
}


.single-journal__content
.jl-tech-grid {
	margin-top: 2rem;
}


.single-journal__content
.jl-tech-row {
	align-items: baseline;

	border-bottom:
		1px solid
		var(--jl-border);

	display: grid;

	gap: 2rem;

	grid-template-columns:
		9rem
		minmax(
			0,
			1fr
		);

	padding:
		1rem
		0;
}


.single-journal__content
.jl-tech-row:last-child {
	border-bottom: 0;
}


.single-journal__content
.jl-tech-row__label {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.62rem;

	font-weight: 700;

	letter-spacing: 0.16em;

	margin: 0;

	text-transform: uppercase;
}


.single-journal__content
.jl-tech-row__value {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 0.95rem;

	margin: 0;
}


/* ---------------------------------------------------------
MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {

	.single-journal__content
	.jl-tech-row {
		gap: 0.5rem;
		grid-template-columns: 1fr;
	}


	.hero .container {
		max-width: 100%;
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}


	.hero__row {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}


	.hero__row > .col-lg-5 {
		min-width: 0;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}


	.hero__content {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}


	.hero__title {
		font-size:
			clamp(
				2.75rem,
				11vw,
				4.5rem
			);

		letter-spacing: -0.045em;
		line-height: 0.9;
		max-width: 100%;
		overflow: visible;
		width: 100%;
	}


	.hero-scramble {
		max-width: 100%;
		overflow: visible;
	}


	.hero__description {
		font-size:
			clamp(
				0.95rem,
				2.8vw,
				1.05rem
			);

		line-height: 1.5;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}
}

/* =========================================================
   SINGLE PROOF PAGE
   ========================================================= */

.single-proof {
	isolation: isolate;

	overflow: hidden;

	position: relative;
}


/* =========================================================
   GRAPHICS
   ========================================================= */

.single-proof__graphics {
	inset: 0;

	overflow: hidden;

	pointer-events: none;

	position: absolute;

	z-index: 0;
}


.single-proof__circle {
	aspect-ratio: 1;

	border-radius: 50%;

	position: absolute;

	width:
		clamp(
			16rem,
			22vw,
			28rem
		);

	will-change: transform;
}


.single-proof__circle--left {
	background: var(--jl-ink);

	left: -17rem;

	top: 24rem;
}


.single-proof__circle--right {
	background: var(--jl-red);

	right: -17rem;

	top: 76rem;
}


.single-proof__track {
	background:
		rgba(
			36,
			33,
			29,
			0.28
		);

	height: 28rem;

	position: absolute;

	width: 1px;

	z-index: 3;
}


.single-proof__track--left {
	left: 4rem;

	top: 44rem;
}


.single-proof__track--right {
	right: 4rem;

	top: 92rem;
}


.single-proof__tracker {
	border-radius: 50%;

	height: 1.5rem;

	position: absolute;

	width: 1.5rem;

	z-index: 5;

	will-change: transform;
}


.single-proof__tracker--left {
	background: var(--jl-red);

	left:
		calc(
			4rem -
			0.75rem
		);

	top: 44rem;
}


.single-proof__tracker--right {
	background: var(--jl-ink);

	right:
		calc(
			4rem -
			0.75rem
		);

	top: 92rem;
}


.single-proof__dots {
	background-image:
		radial-gradient(
			circle,
			var(--jl-ink) 1px,
			transparent 1.2px
		);

	background-size:
		12px
		12px;

	height: 6rem;

	opacity: 0.18;

	position: absolute;

	right: 4rem;

	top: 24rem;

	width: 6rem;
}


.single-proof__cross {
	height: 1.4rem;

	position: absolute;

	width: 1.4rem;
}


.single-proof__cross::before,
.single-proof__cross::after {
	background: var(--jl-ink);

	content: "";

	left: 50%;

	position: absolute;

	top: 50%;

	transform:
		translate(
			-50%,
			-50%
		);
}


.single-proof__cross::before {
	height: 1px;

	width: 100%;
}


.single-proof__cross::after {
	height: 100%;

	width: 1px;
}


.single-proof__cross--one {
	left: 6%;

	top: 64rem;
}


.single-proof__cross--two {
	right: 7%;

	top: 122rem;
}


/* =========================================================
   HEADER
   ========================================================= */

.single-proof__header {
	border-bottom:
		1px solid
		var(--jl-border);

	padding:
		clamp(
			5rem,
			7vw,
			8rem
		)
		0
		clamp(
			2.5rem,
			4vw,
			4rem
		);

	position: relative;

	z-index: 2;
}


.single-proof__header-inner {
	margin-inline: auto;

	max-width: 1280px;
}


.single-proof__meta {
	align-items: center;

	color: var(--jl-muted);

	display: flex;

	flex-wrap: wrap;

	font-family: var(--jl-sans);

	font-size: 0.65rem;

	font-weight: 700;

	gap: 0.9rem;

	letter-spacing: 0.18em;

	margin-bottom: 2rem;

	text-transform: uppercase;
}


.single-proof__type {
	color: var(--jl-red);
}


.single-proof__meta-line {
	background: var(--jl-red);

	height: 1px;

	width: 1.5rem;
}


.single-proof__title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			2.5rem,
			4.5vw,
			5rem
		);

	font-weight: 700;

	letter-spacing: -0.055em;

	line-height: 0.92;

	margin: 0;

	max-width: none;

	text-transform: uppercase;

	width: 100%;
}


.single-proof__red-mark {
	background: var(--jl-red);

	display: block;

	height: 0.65rem;

	margin:
		2rem
		0;

	width: 3.5rem;
}


.single-proof__lede {
	color: var(--jl-muted);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			1rem,
			1.4vw,
			1.25rem
		);

	line-height: 1.7;

	margin: 0;

	max-width: 48rem;
}


/* =========================================================
   CONTENT
   ========================================================= */

.single-proof__body {
	padding:
		clamp(
			3rem,
			5vw,
			5rem
		)
		0
		clamp(
			6rem,
			9vw,
			10rem
		);

	position: relative;

	z-index: 2;
}


.single-proof__body > .container {
	max-width: 1620px;
}


.single-proof__article {
	margin-inline: auto;

	max-width: 1450px;
}


.single-proof__content {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size: 1rem;

	line-height: 1.8;
}


/* Gutenberg content */

.single-proof__content
.wp-block-image {
	margin-block: 3rem;
}


.single-proof__content
.wp-block-image img {
	display: block;

	height: auto;

	width: 100%;
}


.single-proof__content
.alignwide {
	left: 50%;

	max-width: 1450px;

	position: relative;

	transform: translateX(-50%);

	width:
		min(
			1450px,
			calc(
				100vw -
				4rem
			)
		);
}


.single-proof__content
.alignfull {
	left: 50%;

	max-width: none;

	position: relative;

	transform: translateX(-50%);

	width: 100vw;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

	.single-proof__header {
		padding:
			4rem
			0
			3rem;
	}


	.single-proof__title {
		font-size:
			clamp(
				2.5rem,
				12vw,
				4rem
			);
	}


	.single-proof__circle {
		opacity: 0.35;

		width: 17rem;
	}


	.single-proof__track,
	.single-proof__tracker {
		display: none;
	}

}

/* =========================================================
   SINGLE PROOF PAGE
   ========================================================= */


/* Wider body container */

.single-proof
.single-journal__body > .container {
	max-width: 1620px;
}


/* One-column proof layout */

.single-proof__layout {
	margin-inline: auto;

	max-width: 1450px;

	width: 100%;
}


/* Let the content use the entire proof column */

.single-proof__content {
	max-width: none;

	width: 100%;
}


/* Gutenberg normal content can use the full column */

.single-proof__content
> * {
	max-width: 100%;
}


/* Keep paragraph text readable */

.single-proof__content
> p,
.single-proof__content
> h2,
.single-proof__content
> h3,
.single-proof__content
> h4,
.single-proof__content
> ul,
.single-proof__content
> ol,
.single-proof__content
> blockquote {
	max-width: 970px;
}


/* Images and gallery-type content can use the full proof width */

.single-proof__content
.wp-block-image,
.single-proof__content
.wp-block-gallery,
.single-proof__content
.wp-block-columns,
.single-proof__content
.wp-block-cover,
.single-proof__content
.wp-block-media-text {
	max-width: none;

	width: 100%;
}

/* =========================================================
   PROOF INSTRUCTIONS
   ========================================================= */

.single-proof__instructions {
	border-bottom:
		1px solid
		var(--jl-border);

	margin-bottom: 4rem;

	max-width: 970px;

	padding-bottom: 3rem;
}


.single-proof__instructions-label {
	color: var(--jl-red);

	font-family: var(--jl-sans);

	font-size: 0.62rem;

	font-weight: 700;

	letter-spacing: 0.18em;

	margin:
		0
		0
		1rem;

	text-transform: uppercase;
}


.single-proof__instructions-title {
	color: var(--jl-ink);

	font-family: var(--jl-sans);

	font-size:
		clamp(
			1.8rem,
			3vw,
			2.8rem
		);

	font-weight: 700;

	letter-spacing: -0.04em;

	line-height: 1;

	margin:
		0
		0
		1.5rem;

	text-transform: uppercase;
}


.single-proof__instructions-copy {
	color: var(--jl-muted);

	font-family: var(--jl-sans);

	font-size: 1rem;

	line-height: 1.8;

	margin:
		0
		0
		1rem;
}


.single-proof__instructions-copy:last-child {
	margin-bottom: 0;
}


.single-proof__instructions-copy strong {
	color: var(--jl-ink);

	font-weight: 700;
}