/**
 * Jamroots Graphic — Design System
 * Cream / Forest / Gold / Red · DM Sans headings · Inter body
 */

/* ==========================================================================
   1. Design tokens, reset & body
   ========================================================================== */

:root {
	--jr-bg: #F7F2E6;
	--jr-bg-elevated: #FFFEFA;
	--jr-elevated: #FFFEFA;
	--jr-sand: #EFE6D3;
	--jr-bg-deep: #EFE6D3;
	--jr-ink: #141210;
	--jr-text: #1C1A16;
	--jr-muted: #625E55;
	--jr-primary: #1F6A33;
	--jr-primary-hover: #185528;
	--jr-accent: #1F6A33;
	--jr-forest: #1F6A33;
	--jr-brass: #E6B80C;
	--jr-gold: #E6B80C;
	--jr-gold-soft: #F2D04A;
	--jr-brass-soft: #F2D04A;
	--jr-red: #B54A3C;
	--jr-border: #E4DAC6;
	--jr-border-strong: #D2C5AB;
	--jr-white: #FFFFFF;
	--jr-success: #1F6A33;
	--jr-error: #B54A3C;
	--jr-shadow: 0 18px 42px rgba(28, 24, 16, 0.1);
	--jr-shadow-soft: 0 8px 24px rgba(28, 24, 16, 0.07);
	--jr-radius-sm: 12px;
	--jr-radius: 22px;
	--jr-radius-lg: 26px;
	--jr-radius-pill: 999px;
	--jr-font-hero: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
	--jr-font-display: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
	--jr-font-accent: "Cormorant Garamond", "Times New Roman", serif;
	--jr-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
	--jr-heading-accent: #1F6A33;
	--jr-container: 1240px;
	--jr-header-h: 80px;
	--jr-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--jr-focus: 0 0 0 3px rgba(230, 184, 12, 0.4);
	--jr-footer-bg: #12110F;
	--jr-footer: #12110F;
	--jr-light: #F7F2E6;
	--jr-gradient-brand: linear-gradient(90deg, #E6B80C 0%, #B54A3C 50%, #1F6A33 100%);
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--jr-font-body);
	font-size: 1.05rem;
	line-height: 1.65;
	letter-spacing: -0.01em;
	color: var(--jr-text);
	background:
		radial-gradient(ellipse 80% 50% at 100% 0%, rgba(31, 106, 51, 0.07), transparent 55%),
		radial-gradient(ellipse 60% 40% at 0% 100%, rgba(230, 184, 12, 0.06), transparent 50%),
		radial-gradient(ellipse 45% 30% at 50% 55%, rgba(31, 106, 51, 0.025), transparent 65%),
		var(--jr-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure { margin: 0; }

/* ==========================================================================
   2. Typography, links, focus, skip link, container, sections
   ========================================================================== */

h1, h2, h3, h4, h5, h6, .jr-display {
	font-family: var(--jr-font-hero);
	font-weight: 700;
	line-height: 1.15;
	color: var(--jr-ink);
	letter-spacing: -0.025em;
}

h1 em, h2 em, h3 em, h4 em,
.jr-display em,
.jr-heading-accent {
	font-family: var(--jr-font-accent);
	font-style: italic;
	font-weight: 500;
	color: var(--jr-heading-accent);
}

p { margin: 0 0 1rem; }

a {
	color: var(--jr-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 0.2s var(--jr-ease);
}

a:hover { color: var(--jr-primary-hover); }

:focus-visible {
	outline: none;
	box-shadow: var(--jr-focus);
	border-radius: var(--jr-radius-sm);
}

.jr-eyebrow,
.jr-section__eyebrow {
	font-family: var(--jr-font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--jr-brass);
	margin: 0 0 0.9rem;
}

.jr-lead {
	font-size: 1.12rem;
	line-height: 1.6;
	color: var(--jr-muted);
	max-width: 38rem;
	margin: 0;
}

.jr-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--jr-ink);
	color: var(--jr-white);
	padding: 0.75rem 1.15rem;
	border-radius: var(--jr-radius-sm);
	font-weight: 600;
	text-decoration: none;
}

.jr-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.jr-container {
	width: min(100% - 2rem, var(--jr-container));
	margin-inline: auto;
}

.jr-main { min-height: 40vh; }

.jr-content { padding-block: 3.75rem; }
.jr-content--narrow { max-width: 42rem; }

/* Sections */
.jr-section {
	padding-block: clamp(3.75rem, 8vw, 7rem);
	position: relative;
}

.jr-section--alt,
.jr-section--sand {
	background:
		linear-gradient(180deg, rgba(20, 61, 50, 0.04) 0%, transparent 38%),
		var(--jr-sand);
}

.jr-section--ink {
	background: var(--jr-ink);
	color: rgba(245, 243, 238, 0.88);
}

.jr-section--ink .jr-section__eyebrow { color: var(--jr-gold-soft); }
.jr-section--ink .jr-section__title { color: var(--jr-light); }
.jr-section--ink .jr-section__sub { color: rgba(245, 243, 238, 0.68); }
.jr-section--ink .jr-btn--secondary {
	color: var(--jr-light);
	border-color: rgba(245, 243, 238, 0.45);
}
.jr-section--ink .jr-btn--secondary:hover {
	color: var(--jr-white);
	border-color: var(--jr-gold-soft);
	background: rgba(245, 243, 238, 0.06);
}

.jr-section__title {
	font-family: var(--jr-font-hero);
	font-size: clamp(2.15rem, 4.2vw, 3.35rem);
	margin: 0 0 0.9rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.12;
}

.jr-section__sub {
	font-size: 1.1rem;
	letter-spacing: -0.011em;
	color: var(--jr-muted);
	max-width: 36rem;
	margin: 0 0 2.15rem;
}

.jr-section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	margin-bottom: 2.4rem;
}

.jr-section__header .jr-section__sub { margin-bottom: 0; }

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.jr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 50px;
	padding: 0.8rem 1.55rem;
	font-family: var(--jr-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: var(--jr-radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.25s var(--jr-ease),
		color 0.25s var(--jr-ease),
		border-color 0.25s var(--jr-ease),
		transform 0.25s var(--jr-ease),
		box-shadow 0.25s var(--jr-ease);
}

.jr-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
	.jr-btn:hover { transform: none; }
}

.jr-btn--primary {
	background: var(--jr-ink);
	color: var(--jr-white);
}

.jr-btn--primary:hover {
	background: var(--jr-forest);
	color: var(--jr-white);
}

.jr-btn--forest {
	background: var(--jr-forest, #216C35);
	color: #fff;
	border-color: var(--jr-forest, #216C35);
}

.jr-btn--forest:hover {
	background: #1a5429;
	border-color: #1a5429;
	color: #fff;
}

.jr-btn--secondary {
	background: transparent;
	color: var(--jr-ink);
	border-color: var(--jr-ink);
}

.jr-btn--secondary:hover {
	border-color: var(--jr-forest);
	color: var(--jr-forest);
	background: rgba(20, 61, 50, 0.04);
}

.jr-btn--gold,
.jr-btn--brass {
	background: var(--jr-gold);
	color: var(--jr-ink);
	border-color: var(--jr-gold);
}

.jr-btn--gold:hover,
.jr-btn--brass:hover {
	background: var(--jr-gold-soft);
	border-color: var(--jr-gold-soft);
	color: var(--jr-ink);
}

.jr-btn--ghost-light {
	background: transparent;
	color: var(--jr-light);
	border-color: rgba(245, 243, 238, 0.5);
}

.jr-btn--ghost-light:hover {
	background: rgba(245, 243, 238, 0.1);
	color: var(--jr-white);
	border-color: var(--jr-white);
}

.jr-btn--ghost {
	background: transparent;
	color: var(--jr-light);
	border-color: rgba(245, 243, 238, 0.45);
}

.jr-btn--ghost:hover {
	background: rgba(245, 243, 238, 0.08);
	color: var(--jr-white);
	border-color: var(--jr-gold-soft);
}

.jr-btn--header-cta {
	display: none;
	padding: 0.5rem 1rem;
	font-size: 0.72rem;
	background: var(--jr-gold);
	color: var(--jr-ink);
	border-color: var(--jr-gold);
	white-space: nowrap;
}

.jr-btn--header-cta:hover {
	background: var(--jr-gold-soft);
	border-color: var(--jr-gold-soft);
}

.jr-btn--footer-primary {
	background: var(--jr-brass);
	color: var(--jr-ink);
	border-color: transparent;
	box-shadow: 0 14px 34px rgba(201, 162, 39, 0.22);
}

.jr-btn--footer-primary:hover {
	background: var(--jr-brass-soft);
	color: var(--jr-ink);
}

.jr-btn--footer-ghost {
	background: transparent;
	color: var(--jr-white);
	border-color: rgba(245, 243, 238, 0.35);
}

.jr-btn--footer-ghost:hover {
	background: rgba(245, 243, 238, 0.08);
	border-color: var(--jr-brass-soft);
}

/* ==========================================================================
   4. Header & drawer
   ========================================================================== */

.jr-announce {
	background: var(--jr-forest, #216C35);
	color: var(--jr-gold, #F4C709);
	border-bottom: 0;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
}

.jr-announce__inner {
	padding-block: 0.65rem;
	text-align: center;
}

.jr-announce__text {
	margin: 0;
	color: var(--jr-gold, #F4C709);
}

.jr-header {
	position: relative;
	z-index: 100;
	background: rgba(255, 254, 250, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(28, 24, 16, 0.07);
	transition:
		box-shadow 0.3s var(--jr-ease),
		border-color 0.3s var(--jr-ease),
		background 0.3s var(--jr-ease),
		color 0.3s var(--jr-ease);
}

.jr-header--sticky {
	position: sticky;
	top: 0;
}

.jr-header.is-scrolled {
	border-bottom-color: rgba(28, 24, 16, 0.08);
	box-shadow: 0 8px 28px rgba(28, 24, 16, 0.06);
	background: rgba(255, 254, 250, 0.98);
}

.jr-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--jr-header-h);
}

/* Logo — official brand mark */
.jr-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--jr-ink);
	min-width: 0;
	line-height: 0;
}

.jr-logo__img {
	display: block;
	width: auto;
	height: auto;
	max-width: var(--jr-logo-max-w, 160px);
	max-height: calc(var(--jr-header-h, 80px) - 1.25rem);
	object-fit: contain;
	border-radius: 0.35rem;
}

.jr-logo--footer .jr-logo__img {
	max-width: var(--jr-logo-footer-max-w, 200px);
	max-height: none;
}

.jr-logo--drawer .jr-logo__img {
	max-width: var(--jr-logo-max-w, 160px);
	max-height: 3.25rem;
}

/* Desktop nav */
.jr-nav--desktop {
	display: none;
	flex: 1;
	justify-content: center;
}

.jr-nav__list {
	display: flex;
	align-items: center;
	gap: 0.2rem 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jr-nav__list a {
	color: var(--jr-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.55rem 0 0.4rem;
	position: relative;
}

.jr-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 2px;
	background: var(--jr-gold, #F4C709);
	transition: right 0.3s var(--jr-ease);
}

.jr-nav__list a:hover::after,
.jr-nav__list .current-menu-item > a::after { right: 0; }

.jr-nav__list a:hover,
.jr-nav__list .current-menu-item > a { color: var(--jr-forest, #216C35); }

.jr-nav__list .current-menu-item > a::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0.1rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--jr-gold, #F4C709);
	transform: translateX(-50%);
}

.jr-header__actions {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.jr-cart-count {
	position: absolute;
	top: 1px;
	right: -1px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--jr-red, var(--jr-red));
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 2px #fff;
	line-height: 1;
}

.jr-header__menu-toggle { display: inline-flex; }

/* Visual page heroes (not homepage — homepage uses solid white header) */
body:has(.jr-page-hero--visual):not(.home):not(.front-page) .jr-header:not(.is-scrolled) {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom-color: transparent;
	box-shadow: none;
}

body:has(.jr-page-hero--visual):not(.home):not(.front-page) .jr-header:not(.is-scrolled) .jr-logo { color: var(--jr-light); }
body:has(.jr-page-hero--visual):not(.home):not(.front-page) .jr-header:not(.is-scrolled) .jr-icon-btn { color: var(--jr-light); }

@media (min-width: 900px) {
	.jr-btn--header-cta { display: inline-flex; }
}

@media (min-width: 1024px) {
	.jr-nav--desktop { display: flex; }
	.jr-header .jr-header__menu-toggle { display: none !important; }
}

/* Drawer */
.jr-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(10, 10, 10, 0.58);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--jr-ease), visibility 0.3s var(--jr-ease);
}

.jr-drawer-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
}

.jr-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 210;
	width: min(100vw - 3rem, 360px);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--jr-bg-elevated);
	box-shadow: 24px 0 60px rgba(10, 10, 10, 0.22);
	transform: translateX(-105%);
	transition: transform 0.35s var(--jr-ease);
}

.jr-drawer.is-open { transform: translateX(0); }

.jr-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.15rem 1rem;
	border-bottom: 1px solid var(--jr-border);
}

.jr-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding: 0.75rem 0.5rem 1.25rem;
}

.jr-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.jr-drawer__list > li { border-bottom: 1px solid var(--jr-border); }

.jr-drawer__list > li > a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 1.15rem;
	font-family: var(--jr-font-display);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--jr-ink);
	text-decoration: none;
	transition: background 0.2s var(--jr-ease), color 0.2s var(--jr-ease);
}

.jr-drawer__list > li > a:hover,
.jr-drawer__list .current-menu-item > a {
	background: rgba(20, 61, 50, 0.06);
	color: var(--jr-forest);
}

.jr-drawer__footer {
	display: grid;
	gap: 0.65rem;
	padding: 1.15rem;
	border-top: 1px solid var(--jr-border);
	background: var(--jr-bg);
}

.jr-drawer__footer .jr-btn { width: 100%; }

body.jr-drawer-open { overflow: hidden; }

/* ==========================================================================
   5. Hero — brand-led full bleed
   ========================================================================== */

.jr-hero {
	position: relative;
	margin-top: calc(-1 * var(--jr-header-h));
	display: flex;
	flex-direction: column;
	min-height: min(92vh, 920px);
	overflow: hidden;
	background: #0A1210;
	color: var(--jr-light);
}

.jr-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.jr-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	transform: scale(1.02);
}

.jr-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(6, 10, 9, 0.82) 0%, rgba(6, 10, 9, 0.48) 38%, rgba(6, 10, 9, 0.14) 62%, transparent 78%),
		linear-gradient(0deg, rgba(6, 10, 9, 0.58) 0%, transparent 42%),
		linear-gradient(180deg, rgba(6, 10, 9, 0.38) 0%, transparent 22%);
	pointer-events: none;
}

.jr-hero__stage {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: inherit;
	padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

.jr-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	max-width: 44rem;
	padding-top: calc(var(--jr-header-h) + clamp(3rem, 10vh, 7rem));
}

.jr-hero__brand {
	margin: 0;
	font-family: var(--jr-font-hero);
	font-size: clamp(2.5rem, 5.8vw, 4.5rem);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: 0.01em;
	color: var(--jr-light);
	text-wrap: balance;
}

.jr-hero__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 0.35em;
	margin: 0;
	font-family: var(--jr-font-display);
	font-size: clamp(1.1rem, 2.4vw, 1.5rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(245, 243, 238, 0.9);
}

.jr-hero__title-line { display: inline; }

.jr-hero__title-accent {
	display: inline;
	font-family: var(--jr-font-hero);
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	font-size: 1.4em;
	color: var(--jr-gold);
}

.jr-hero__text {
	margin: 0;
	max-width: 28rem;
	font-size: clamp(1rem, 1.5vw, 1.12rem);
	line-height: 1.6;
	color: rgba(245, 243, 238, 0.78);
}

.jr-hero__actions {
	margin-top: 0.65rem;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (max-width: 719px) {
	.jr-hero { min-height: min(86vh, 780px); }
	.jr-hero__media img { object-position: center 30%; }
}

/* ==========================================================================
   6. Home — spaces, style nav, product grid, process, culture, CTA
   ========================================================================== */

/* Shop by space — full-bleed image panels */
.jr-spaces__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.jr-spaces__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.jr-space {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: var(--jr-radius-sm);
	text-decoration: none;
	color: var(--jr-light);
	border: 1px solid var(--jr-border);
}

.jr-space img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.75s var(--jr-ease);
}

.jr-space:hover img { transform: scale(1.05); }

.jr-space::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.78) 100%);
	pointer-events: none;
}

.jr-space__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.5rem 1.35rem;
}

.jr-space__name {
	display: block;
	font-family: var(--jr-font-display);
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--jr-light);
}

.jr-space__hint {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.88rem;
	color: rgba(245, 243, 238, 0.72);
}

/* Style navigation — text links */
.jr-style-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1.25rem;
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--jr-border);
}

.jr-style-nav__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--jr-muted);
	margin-right: 0.25rem;
}

.jr-style-nav a {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--jr-ink);
	text-decoration: none;
	padding-block: 0.25rem;
	border-bottom: 1px solid transparent;
	transition: color 0.2s var(--jr-ease), border-color 0.2s var(--jr-ease);
}

.jr-style-nav a:hover {
	color: var(--jr-forest);
	border-bottom-color: var(--jr-brass);
}

.jr-style-nav__all {
	margin-left: auto;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jr-brass) !important;
}

.jr-style-nav__all:hover {
	color: var(--jr-forest) !important;
}

/* Featured product grid — layout only; cards in commerce.css */
.jr-product-grid {
	display: grid;
	gap: 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 640px) {
	.jr-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
	.jr-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* How it works / steps */
.jr-how {
	background:
		radial-gradient(ellipse 80% 60% at 0% 0%, rgba(201, 162, 39, 0.06), transparent 55%),
		var(--jr-bg);
}

.jr-steps {
	counter-reset: jr-step;
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.jr-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
}

.jr-steps__item,
.jr-steps > li {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 1.75rem 1.4rem 1.65rem;
	background: var(--jr-white);
	border: 1px solid var(--jr-border);
	border-radius: var(--jr-radius-sm);
	box-shadow: var(--jr-shadow-soft);
	transition: transform 0.35s var(--jr-ease), box-shadow 0.35s var(--jr-ease);
}

.jr-steps > li {
	flex-direction: row;
	gap: 0.85rem;
	padding: 1.15rem;
}

.jr-steps__item:hover {
	transform: translateY(-3px);
	box-shadow: var(--jr-shadow);
}

@media (prefers-reduced-motion: reduce) {
	.jr-steps__item:hover { transform: none; }
}

.jr-steps__num,
.jr-steps > li > span:first-child {
	display: block;
	margin: 0 0 0.85rem;
	font-family: var(--jr-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jr-brass);
	flex-shrink: 0;
}

.jr-steps__num::before {
	content: counter(jr-step, decimal-leading-zero);
	counter-increment: jr-step;
}

.jr-steps > li > span:first-child { margin-bottom: 0; }

.jr-steps__title,
.jr-steps h3 {
	margin: 0 0 0.55rem;
	font-family: var(--jr-font-display);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.jr-steps__text,
.jr-steps p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--jr-muted);
}

/* Culture split */
.jr-culture__layout {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.jr-culture__layout {
		grid-template-columns: 1.05fr 1fr;
		gap: 3.5rem;
	}
}

.jr-culture__media {
	border-radius: var(--jr-radius-sm);
	overflow: hidden;
	aspect-ratio: 5 / 4;
	box-shadow: var(--jr-shadow);
	border: 1px solid var(--jr-border);
}

.jr-culture__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jr-culture__body .jr-section__title { max-width: 14ch; }

/* CTA band */
.jr-cta-band {
	position: relative;
	overflow: hidden;
	color: var(--jr-light);
	padding-block: clamp(4rem, 9vw, 6.5rem);
	background: #0F1A17;
}

.jr-cta-band__media {
	position: absolute;
	inset: 0;
}

.jr-cta-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
}

.jr-cta-band__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(10, 10, 10, 0.92) 8%, rgba(10, 10, 10, 0.58) 55%, rgba(10, 10, 10, 0.72) 100%);
}

.jr-cta-band .jr-container {
	position: relative;
	z-index: 1;
}

.jr-cta-band__inner { max-width: 38rem; }

.jr-cta-band__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--jr-brass);
}

.jr-cta-band .jr-section__title {
	color: var(--jr-light) !important;
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4.2vw, 3rem);
	max-width: 14ch;
}

.jr-cta-band .jr-section__sub,
.jr-cta-band p {
	color: rgba(245, 243, 238, 0.82) !important;
	margin: 0 0 1.5rem;
	max-width: 32rem;
}

.jr-cta-band .jr-eyebrow { color: var(--jr-brass); }

.jr-cta-band h2 {
	font-family: var(--jr-font-hero);
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--jr-light);
	margin: 0 0 0.75rem;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */

.jr-footer {
	background: var(--jr-footer-bg);
	color: rgba(245, 243, 238, 0.72);
	overflow: clip;
}

.jr-footer a {
	color: rgba(245, 243, 238, 0.82);
	text-decoration: none;
	transition: color 0.2s var(--jr-ease);
}

.jr-footer a:hover { color: var(--jr-brass-soft); }

.jr-footer__cta {
	position: relative;
	padding-block: clamp(2.75rem, 6vw, 4.25rem);
	background:
		radial-gradient(ellipse at 12% 20%, rgba(201, 162, 39, 0.2), transparent 48%),
		radial-gradient(ellipse at 88% 80%, rgba(20, 61, 50, 0.32), transparent 50%),
		linear-gradient(135deg, #121A17 0%, #0A0A0A 45%, #142820 100%);
	border-bottom: 1px solid rgba(201, 162, 39, 0.16);
}

.jr-footer__cta-inner {
	display: grid;
	gap: 1.75rem;
	align-items: end;
}

@media (min-width: 860px) {
	.jr-footer__cta-inner {
		grid-template-columns: minmax(0, 1.4fr) auto;
		gap: 2.5rem;
		align-items: center;
	}
}

.jr-footer__cta-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--jr-brass);
	margin: 0 0 0.75rem;
}

.jr-footer__cta-title {
	font-family: var(--jr-font-display);
	font-size: clamp(1.85rem, 3.6vw, 2.75rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: var(--jr-white);
	margin: 0 0 0.75rem;
	max-width: 18ch;
}

.jr-footer__cta-text {
	margin: 0;
	max-width: 34rem;
	font-size: 1.02rem;
	color: rgba(245, 243, 238, 0.68);
}

.jr-footer__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.jr-footer__main {
	padding-block: clamp(3rem, 6vw, 4.5rem) 0;
}

.jr-footer__grid {
	display: grid;
	gap: 2.5rem 1.75rem;
	padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.jr-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jr-footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 1000px) {
	.jr-footer__grid {
		grid-template-columns: minmax(14rem, 1.45fr) repeat(3, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}
	.jr-footer__brand { grid-column: auto; }
}

.jr-footer .jr-logo { color: var(--jr-white); }

.jr-footer__tagline {
	margin: 1.25rem 0 0;
	max-width: 22rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(245, 243, 238, 0.68);
}

.jr-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.35rem 0 0;
	padding: 0;
	list-style: none;
}

.jr-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.85);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.jr-footer__social a:hover {
	border-color: rgba(244, 199, 9, 0.65);
	color: #F4C709;
	background: rgba(244, 199, 9, 0.08);
}

.jr-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 1.15rem 1.35rem;
}

.jr-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.5rem;
}

.jr-footer__bottom-inner--center {
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 0.45rem;
}

.jr-footer__credit-line {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.55);
}

.jr-footer__credit-brand {
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

.jr-footer__credit-brand:hover {
	color: #F4C709;
	text-decoration: underline;
}

.jr-footer__credit-sep {
	margin: 0 0.2em;
	opacity: 0.75;
}

.jr-footer__credit-client {
	color: rgba(255, 255, 255, 0.72);
}

.jr-footer__credit-copy {
	margin-left: 0.15em;
	color: rgba(255, 255, 255, 0.5);
}

.jr-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.jr-footer__copy-brand {
	color: #F4C709;
	font-weight: 600;
}

/* ==========================================================================
   8. Generic pages — hero, FAQ, forms, prose, 404, search
   ========================================================================== */

/* Page hero — simple (ink band) */
.jr-page-hero--simple {
	padding: calc(var(--jr-header-h) + 3rem) 0 2.75rem;
	background: var(--jr-ink);
	color: var(--jr-light);
}

.jr-page-hero--simple .jr-eyebrow { color: var(--jr-gold); }

.jr-page-hero--simple h1,
.jr-page-hero--simple .jr-page-hero__title {
	color: var(--jr-light);
	font-family: var(--jr-font-hero);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 600;
	margin: 0 0 0.75rem;
	line-height: 1.12;
}

.jr-page-hero--simple .jr-lead,
.jr-page-hero--simple .jr-page-hero__lead {
	color: rgba(245, 243, 238, 0.72);
	margin: 0;
	max-width: 38rem;
}

/* Page hero — visual (shared + legacy markup) */
.jr-page-hero--visual {
	position: relative;
	margin-top: calc(-1 * var(--jr-header-h));
	min-height: clamp(16rem, 34vh, 22rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	background: #0A1210;
	color: var(--jr-light);
}

.jr-page-hero__bg,
.jr-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.jr-page-hero__bg img,
.jr-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jr-page-hero__bg::after,
.jr-page-hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.52) 45%, rgba(10, 10, 10, 0.28) 100%),
		linear-gradient(0deg, rgba(10, 10, 10, 0.55) 0%, transparent 40%);
	pointer-events: none;
}

.jr-page-hero__veil { z-index: 1; }

.jr-page-hero__frame,
.jr-page-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: calc(var(--jr-header-h) + 2.5rem) clamp(2.5rem, 6vw, 4rem);
}

.jr-page-hero__copy { max-width: 42rem; }

.jr-page-hero__eyebrow,
.jr-page-hero--visual .jr-eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--jr-gold);
	margin: 0 0 0.85rem;
}

.jr-page-hero__title {
	font-family: var(--jr-font-hero);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--jr-light);
	margin: 0 0 0.85rem;
	max-width: 18ch;
}

.jr-page-hero__lead {
	font-size: 1.08rem;
	line-height: 1.6;
	color: rgba(245, 243, 238, 0.76);
	margin: 0;
	max-width: 36rem;
}

.jr-page-hero__meta {
	margin: 1.25rem 0 0;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--jr-gold-soft);
}

.jr-page-hero--visual .jr-btn-row {
	margin-top: 1.25rem;
}

/* Prose & about page blocks */
.jr-prose {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--jr-text);
	max-width: 42rem;
}

.jr-prose > *:first-child { margin-top: 0; }

.jr-prose h2 {
	font-family: var(--jr-font-hero);
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	font-weight: 600;
	margin: 2rem 0 0.85rem;
}

.jr-prose h3 {
	font-size: 1.15rem;
	margin: 1.5rem 0 0.65rem;
}

.jr-prose ul,
.jr-prose ol {
	padding-left: 1.25rem;
	margin: 0 0 1.25rem;
}

.jr-prose li { margin-bottom: 0.35rem; }

.jr-feature-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-top: 2rem;
}

@media (min-width: 720px) {
	.jr-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
	.jr-feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.jr-feature-grid article {
	background: transparent;
	border: 0;
	border-top: 2px solid var(--jr-forest);
	border-radius: 0;
	padding: 1.15rem 0 0;
}

.jr-feature-grid h3 {
	margin: 0 0 0.5rem;
	font-family: var(--jr-font-display);
	font-size: 1.05rem;
}

.jr-feature-grid p {
	margin: 0;
	color: var(--jr-muted);
	font-size: 0.95rem;
}

.jr-split-mission {
	display: grid;
	gap: 2rem;
}

@media (min-width: 800px) {
	.jr-split-mission { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.jr-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2.5rem;
}

@media (min-width: 800px) {
	.jr-stats { grid-template-columns: repeat(4, 1fr); }
}

.jr-stats div {
	text-align: left;
	padding: 0.35rem 0 1rem;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--jr-border);
	border-radius: 0;
}

.jr-stats strong {
	display: block;
	font-family: var(--jr-font-hero);
	font-size: 2rem;
	color: var(--jr-forest);
}

.jr-stats span {
	color: var(--jr-muted);
	font-size: 0.85rem;
}

/* FAQ */
.jr-faq details {
	border: 1px solid var(--jr-border);
	border-radius: var(--jr-radius-sm);
	padding: 0.85rem 1rem;
	margin-bottom: 0.65rem;
	background: var(--jr-elevated);
}

.jr-faq summary {
	cursor: pointer;
	font-weight: 600;
	font-family: var(--jr-font-display);
	font-size: 1rem;
	list-style: none;
	padding-right: 1.5rem;
	position: relative;
}

.jr-faq summary::-webkit-details-marker { display: none; }

.jr-faq summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--jr-brass);
	line-height: 1;
}

.jr-faq details[open] summary::after { content: "−"; }

.jr-faq p {
	margin: 0.75rem 0 0;
	color: var(--jr-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Contact form */
.jr-contact-layout {
	display: grid;
	gap: 2rem;
}

@media (min-width: 800px) {
	.jr-contact-layout { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}

.jr-contact-intro h2 {
	margin: 0 0 0.65rem;
	font-size: 1.5rem;
}

.jr-contact-intro p {
	color: var(--jr-muted);
	margin: 0 0 1.5rem;
}

.jr-contact-form,
.jr-custom-form {
	display: grid;
	gap: 0;
}

.jr-contact-form label,
.jr-custom-form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jr-muted);
	margin: 0.85rem 0 0.35rem;
}

.jr-contact-form input,
.jr-contact-form select,
.jr-contact-form textarea,
.jr-custom-form input,
.jr-custom-form select,
.jr-custom-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border: 1px solid var(--jr-border-strong);
	border-radius: var(--jr-radius-sm);
	background: var(--jr-white);
	font: inherit;
	color: var(--jr-text);
	transition: border-color 0.2s var(--jr-ease), box-shadow 0.2s var(--jr-ease);
}

.jr-contact-form textarea,
.jr-custom-form textarea {
	min-height: 140px;
	resize: vertical;
}

.jr-contact-form input:focus,
.jr-contact-form select:focus,
.jr-contact-form textarea:focus,
.jr-custom-form input:focus,
.jr-custom-form select:focus,
.jr-custom-form textarea:focus {
	outline: none;
	border-color: var(--jr-brass);
	box-shadow: var(--jr-focus);
}

.jr-contact-form button,
.jr-custom-form button {
	margin-top: 1.25rem;
	justify-self: start;
}

.jr-contact-note {
	padding: 0 0 0 1.25rem;
	background: transparent;
	border: 0;
	border-left: 2px solid var(--jr-forest);
	border-radius: 0;
}

.jr-contact-note h2 {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
}

.jr-contact-channels {
	list-style: none;
	margin: 1.25rem 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.jr-contact-channels strong {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jr-muted);
	margin-bottom: 0.25rem;
}

.jr-contact-response,
.jr-contact-cta {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--jr-border);
}

.jr-contact-response h3,
.jr-contact-cta h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

.jr-contact-cta p {
	color: var(--jr-muted);
	margin: 0 0 1rem;
}

/* Form notices */
.jr-form-notice {
	padding: 1rem 1.15rem;
	border-radius: var(--jr-radius-sm);
	margin-bottom: 1.25rem;
}

.jr-form-notice p { margin: 0.35rem 0 0; }

.jr-form-notice--success {
	background: color-mix(in srgb, var(--jr-success) 12%, var(--jr-white));
	border: 1px solid color-mix(in srgb, var(--jr-success) 35%, transparent);
}

.jr-form-notice--error {
	background: color-mix(in srgb, var(--jr-error) 10%, var(--jr-white));
	border: 1px solid color-mix(in srgb, var(--jr-error) 30%, transparent);
}

/* Custom orders layout */
.jr-custom-layout {
	display: grid;
	gap: 2rem;
}

@media (min-width: 900px) {
	.jr-custom-layout { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}

.jr-custom-aside {
	background: var(--jr-ink);
	color: rgba(245, 243, 238, 0.88);
	padding: 1.75rem;
	border-radius: var(--jr-radius-sm);
	border: 1px solid rgba(201, 162, 39, 0.2);
}

.jr-custom-aside h2 {
	color: var(--jr-gold);
	font-family: var(--jr-font-hero);
	font-size: 1.65rem;
	margin: 0 0 1rem;
}

.jr-custom-aside ol {
	padding-left: 1.1rem;
	margin: 0 0 1rem;
}

.jr-custom-aside li { margin-bottom: 0.5rem; }

.jr-custom-aside p {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	color: rgba(245, 243, 238, 0.72);
}

/* 404 & search */
.jr-error-page {
	min-height: 70vh;
	display: grid;
	place-items: center;
	padding: calc(var(--jr-header-h) + 3rem) 1.25rem 4rem;
	background:
		radial-gradient(ellipse 70% 50% at 80% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
		radial-gradient(ellipse 60% 40% at 0% 100%, rgba(20, 61, 50, 0.06), transparent 50%),
		var(--jr-bg);
}

.jr-error-page__inner {
	max-width: 36rem;
	text-align: center;
}

.jr-error-page__title {
	font-family: var(--jr-font-hero);
	font-size: clamp(2rem, 5vw, 3.25rem);
	margin: 0.5rem 0 1rem;
	line-height: 1.15;
}

.jr-error-page__text {
	color: var(--jr-muted);
	margin: 0 0 1.5rem;
}

.jr-error-page__search,
.jr-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 1.75rem;
}

.jr-page-hero--simple .jr-search-form {
	justify-content: flex-start;
	margin-top: 1.25rem;
}

.jr-error-page__search input,
.jr-search-form input {
	flex: 1 1 220px;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border: 1px solid var(--jr-border);
	border-radius: var(--jr-radius-sm);
	font: inherit;
	background: var(--jr-white);
	color: var(--jr-text);
}

.jr-page-hero--simple .jr-search-form input {
	background: rgba(245, 243, 238, 0.08);
	border-color: rgba(245, 243, 238, 0.25);
	color: var(--jr-light);
}

.jr-page-hero--simple .jr-search-form input::placeholder {
	color: rgba(245, 243, 238, 0.45);
}

.jr-search-results {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.jr-search-result__link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid var(--jr-border);
	border-radius: var(--jr-radius-sm);
	background: var(--jr-elevated);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s var(--jr-ease), box-shadow 0.2s var(--jr-ease);
}

.jr-search-result__link:hover {
	border-color: var(--jr-gold);
	box-shadow: var(--jr-shadow-soft);
}

.jr-search-result__type {
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--jr-gold);
	font-weight: 700;
}

.jr-search-result__title { font-size: 1.1rem; }

.jr-search-result__excerpt {
	color: var(--jr-muted);
	font-size: 0.9rem;
}

.jr-empty {
	color: var(--jr-muted);
	margin-bottom: 1.25rem;
}

/* Pagination (search) */
.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 0.65rem;
	border: 1px solid var(--jr-border);
	border-radius: var(--jr-radius-sm);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--jr-ink);
	background: var(--jr-white);
	transition: border-color 0.2s var(--jr-ease), background 0.2s var(--jr-ease);
}

.page-numbers:hover,
.page-numbers.current {
	border-color: var(--jr-forest);
	background: rgba(20, 61, 50, 0.06);
	color: var(--jr-forest);
}

/* ==========================================================================
   9. Utilities — btn row, icons, reveal motion
   ========================================================================== */

.jr-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.jr-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1.5px solid rgba(18, 18, 18, 0.18);
	background: transparent;
	color: var(--jr-ink);
	cursor: pointer;
	position: relative;
	border-radius: 50%;
	text-decoration: none;
	transition:
		background 0.2s var(--jr-ease),
		border-color 0.2s var(--jr-ease),
		color 0.2s var(--jr-ease);
}

.jr-icon-btn:hover {
	background: rgba(33, 108, 53, 0.06);
	border-color: var(--jr-forest, #216C35);
	color: var(--jr-forest, #216C35);
}

/* Match reference header: no CTA button on homepage */
.home .jr-header .jr-btn--header-cta,
.front-page .jr-header .jr-btn--header-cta {
	display: none;
}

.jr-icon {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Reveal motion */
.jr-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.85s var(--jr-ease), transform 0.85s var(--jr-ease);
}

.jr-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.jr-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Footer trust bar + newsletter (design match) */
.jr-footer__trust {
	background: linear-gradient(180deg, #1f6b36 0%, #1a5429 55%, #143f20 100%);
	color: #fff;
	padding: clamp(2rem, 3.8vw, 2.75rem) 0;
	position: relative;
}

.jr-footer__trust::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, #F4C709 0%, var(--jr-red) 55%, #216C35 100%);
}

.jr-footer__trust-grid {
	display: grid;
	gap: 1.5rem 1.75rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.jr-footer__trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.jr-footer__trust-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem 2rem;
	}
}

.jr-footer__trust-item {
	display: flex;
	gap: 0.95rem;
	align-items: flex-start;
}

.jr-footer__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	flex-shrink: 0;
	border: 1.5px solid rgba(244, 199, 9, 0.75);
	border-radius: 0.55rem;
	color: #F4C709;
	background: transparent;
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jr-footer__trust-item.is-featured .jr-footer__trust-icon,
.jr-footer__trust-item:hover .jr-footer__trust-icon {
	background: #F4C709;
	border-color: #F4C709;
	color: #121212;
	box-shadow: 0 10px 24px rgba(244, 199, 9, 0.35);
}

.jr-footer__trust-icon svg {
	display: block;
}

.jr-footer__trust-title {
	display: block;
	margin: 0 0 0.35rem;
	color: #fff;
	font-family: var(--jr-font-hero, Georgia, serif);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.jr-footer__trust-item.is-featured .jr-footer__trust-title,
.jr-footer__trust-item:hover .jr-footer__trust-title {
	color: #F4C709;
}

.jr-footer__trust-text {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.45;
}

.jr-footer__heading {
	margin: 0 0 1.2rem;
	color: #fff;
	font-family: var(--jr-font-hero, Georgia, serif);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	text-transform: none;
	line-height: 1.2;
}

.jr-footer__heading::after {
	content: "";
	display: block;
	width: 2.6rem;
	height: 3px;
	margin-top: 0.55rem;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--jr-red) 0%, #F4C709 100%);
}

.jr-footer__list {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jr-footer__list a {
	color: rgba(245, 243, 238, 0.72);
	font-size: 0.94rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.jr-footer__list a:hover {
	color: #F4C709;
}

.jr-footer__newsletter {
	display: flex;
	align-items: stretch;
	gap: 0.35rem;
	margin: 1rem 0 0.65rem;
	padding: 0.3rem;
	border-radius: 999px;
	border: 1.5px solid rgba(244, 199, 9, 0.55);
	background: rgba(0, 0, 0, 0.28);
}

.jr-footer__newsletter input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 2.65rem;
	padding: 0.55rem 1rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 0.9rem;
	box-shadow: none;
}

.jr-footer__newsletter input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.jr-footer__newsletter input[type="email"]:focus {
	outline: none;
}

.jr-footer__newsletter .jr-btn {
	flex: 0 0 auto;
	justify-content: center;
	border-radius: 999px;
	min-height: 2.65rem;
	padding-inline: 1.2rem;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(244, 199, 9, 0.28);
}

.jr-footer__newsletter-text {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.5;
}

.jr-footer__newsletter-note {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.45;
}

.jr-footer__newsletter-note span {
	color: #F4C709;
}

.jr-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jr-footer__legal-links a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s ease;
}

.jr-footer__legal-links a:hover {
	color: #F4C709;
}

.jr-footer__legal-links a:hover {
	color: #F4C709;
}

@media (max-width: 559px) {
	.jr-footer__newsletter {
		flex-direction: column;
		border-radius: 1rem;
		padding: 0.55rem;
	}

	.jr-footer__newsletter .jr-btn {
		width: 100%;
	}
}
