/* ==========================================================================
   Janiebond — "A Memory"  ·  Paper Nocturne
   Warm aged paper, Fraunces + Hanken Grotesk, one signature masked-reveal,
   one tonal pivot, one consistent radius system.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
	--paper:        #F4EEE3;
	--surface:      #FCF9F2;
	--band:         #FFFFFF;
	--white:        #FFFFFF;
	--ink:          #22201C;
	--ink-soft:     #3A342E;
	--taupe:        #6E645A;
	--line:         #E2D9C9;
	--line-strong:  #D6C9B2;
	--rose:         #7B2D33;
	--rose-deep:    #5E2227;
	--rose-wash:    #EFE1DD;
	--rose-light:   #E9C3C0;
	--gold:         #A8853F;
	--pivot:        #241F1A;
	--ivory:        #F4EEE3;

	--font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-body:    "Hanken Grotesk", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-eyebrow: 0.75rem;
	--fs-body:    1.125rem;
	--fs-lead:    clamp(1.15rem, 1rem + 0.8vw, 1.375rem);
	--fs-q:       clamp(1.02rem, 0.94rem + 0.42vw, 1.2rem);
	--fs-h3:      clamp(1.6rem, 1.2rem + 2.2vw, 2.25rem);
	--fs-h2:      clamp(2.15rem, 1.3rem + 4.4vw, 3.75rem);
	--fs-quote:   clamp(1.9rem, 1.2rem + 3.4vw, 3rem);
	--fs-name:    clamp(3.4rem, 2rem + 9vw, 8rem);
	--fs-ghost:   clamp(5.5rem, 3rem + 13vw, 12rem);

	/* Consistent radius scale — used everywhere, never ad-hoc */
	--r-xs: 10px;
	--r-sm: 10px;
	--r-md: 10px;
	--r-lg: 10px;
	--r-xl: 10px;
	--r-pill: 999px;

	--sec-pad:     clamp(6rem, 12vh, 10rem);
	--sec-pad-air: clamp(8rem, 16vh, 14rem);
	--gutter:      clamp(1.25rem, 5vw, 4rem);
	--wrap:        1280px;

	--e-expo:  cubic-bezier(0.16, 1, 0.3, 1);
	--e-inout: cubic-bezier(0.65, 0, 0.35, 1);
	--dur-rev: 1s;

	--header-h: 4.75rem;
	--header-h-sm: 3.55rem;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	.jb-header, .jb-header__inner, .jb-logo--header { transition: none !important; }
 html { scroll-behavior: auto; } }

html { overflow-x: clip; }
body.jb {
	margin: 0;
	max-width: 100vw;
	background: var(--paper);
	color: var(--ink-soft);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em, i { font-style: italic; }
::selection { background: var(--rose-wash); color: var(--ink); }
h1, h2, h3, h4, p, blockquote, figure, dl, dd { margin: 0; }

.jb-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- Layout utilities --------------------------------------------------- */
.jb-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.jb-main { display: block; position: relative; z-index: 1; }
.jb-section { position: relative; padding-block: var(--sec-pad); }
.jb-tnum { font-variant-numeric: lining-nums tabular-nums; letter-spacing: 0.01em; }

.jb-eyebrow {
	font-family: var(--font-body);
	font-size: var(--fs-eyebrow); font-weight: 500;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--taupe);
	font-feature-settings: "lnum" 1, "tnum" 1;
}
.jb-eyebrow--light { color: rgba(244, 238, 227, 0.72); }

.jb-h2 {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.02em;
	color: var(--ink); text-wrap: balance;
}
.jb-lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); max-width: 38rem; letter-spacing: -0.005em; }

.jb-rule { display: block; width: 3.5rem; height: 1px; background: var(--line); border: 0; border-radius: var(--r-pill); }
.jb-rule--rose { background: var(--rose); width: 4.25rem; height: 2px; }

.jb-ghost { display: none; }

.jb-link {
	position: relative; color: var(--rose); font-weight: 500;
	background-image: linear-gradient(var(--rose), var(--rose));
	background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1px;
	transition: background-size 0.45s var(--e-expo), color 0.3s var(--e-expo);
	padding-bottom: 0.12em;
}
.jb-link:hover, .jb-link:focus-visible { background-size: 100% 1px; color: var(--rose-deep); }
.jb-link--u { background-size: 100% 1px; }
.jb-link--u:hover { background-size: 0% 1px; }

/* Solid button */
.jb-btn {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--paper); background: var(--rose); border: 1px solid var(--rose);
	padding: 1rem 2.1rem; border-radius: var(--r-pill); cursor: pointer;
	transition: background 0.35s var(--e-expo), border-color 0.35s var(--e-expo), transform 0.35s var(--e-expo);
}
.jb-btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-1px); }
.jb-btn--ghost { background: transparent; color: var(--rose); }
.jb-hero .jb-btn--ghost { color: var(--ivory); border-color: rgba(244, 238, 227, 0.4); }
.jb-hero .jb-btn--ghost:hover { background: var(--rose); border-color: var(--rose); color: var(--paper); }
.jb-btn--ghost:hover { background: var(--rose); color: var(--paper); }

/* ---- Images ------------------------------------------------------------- */
.jb-media { position: relative; overflow: hidden; background: var(--band); border-radius: var(--r-lg); }
.jb-media img { width: 100%; height: 100%; object-fit: cover; }
.jb-media::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit;
	background: radial-gradient(120% 120% at 50% 35%, transparent 58%, rgba(36, 31, 26, 0.14) 100%);
	mix-blend-mode: multiply; pointer-events: none;
}
.jb-media--tall { aspect-ratio: 4 / 5; }
.jb-media--rose { aspect-ratio: 4 / 5; }
.jb-media--desk { aspect-ratio: 4 / 5; }
.jb-media--portrait { aspect-ratio: 4 / 5; }
.jb-media--sleeve { aspect-ratio: 1 / 1; }

.jb-grain {
	position: fixed; inset: 0; z-index: 60; pointer-events: none;
	opacity: 0.05; mix-blend-mode: soft-light;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 150px 150px;
}

/* ---- Skip link / curtain ------------------------------------------------ */
.jb-skip {
	position: fixed; top: -100%; left: 1rem; z-index: 200;
	background: var(--ink); color: var(--paper); padding: 0.6rem 1rem;
	border-radius: var(--r-xs); font-size: 0.85rem;
}
.jb-skip:focus { top: 1rem; }

.jb-curtain { position: fixed; inset: 0; z-index: 120; background: var(--paper); display: grid; place-items: center; }
.jb-curtain__name {
	font-family: var(--font-display); font-weight: 300;
	font-size: clamp(2.5rem, 8vw, 5rem); letter-spacing: -0.02em; color: var(--ink);
	opacity: 0; transform: translateY(0.4em);
}
html.js .jb-curtain.is-armed .jb-curtain__name { animation: jb-curtain-name 0.9s var(--e-expo) forwards; }
.jb-curtain.is-lifting { animation: jb-curtain-lift 1.1s var(--e-expo) forwards; }
@keyframes jb-curtain-name { to { opacity: 1; transform: none; } }
@keyframes jb-curtain-lift { to { clip-path: inset(0 0 100% 0); } }
.jb-curtain:not(.is-armed):not(.is-lifting) { opacity: 0; pointer-events: none; }
html:not(.js) .jb-curtain { display: none; }

/* ---- Header — a clean light bar ---------------------------------------- */
.jb-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	height: var(--header-h); display: flex; align-items: center;
	color: var(--ivory);
	background: color-mix(in srgb, var(--pivot) 82%, transparent);
	-webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
	box-shadow: 0 1px 0 rgba(244, 238, 227, 0.12);
	transition:
		height 0.6s var(--e-expo),
		background 0.5s var(--e-expo),
		box-shadow 0.5s var(--e-expo),
		padding 0.6s var(--e-expo);
}
/* squeezed: the full-width surface dissolves, the inner bar becomes the pill */
.jb-header.is-stuck {
	height: var(--header-h-sm);
	background: transparent;
	-webkit-backdrop-filter: none; backdrop-filter: none;
	box-shadow: none;
	padding-inline: clamp(0.6rem, 2vw, 1.25rem);
}
.jb-header__inner {
	width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
	display: flex; align-items: center; gap: 1.25rem;
	height: 100%;
	border: 1px solid transparent; border-radius: 0;
	transition:
		max-width 0.6s var(--e-expo),
		padding 0.6s var(--e-expo),
		background 0.5s var(--e-expo),
		border-color 0.5s var(--e-expo),
		border-radius 0.6s var(--e-expo),
		box-shadow 0.5s var(--e-expo);
}
.jb-header.is-stuck .jb-header__inner {
	max-width: calc(var(--wrap) - 5rem);
	padding-inline: clamp(1rem, 2.4vw, 1.75rem);
	background: color-mix(in srgb, var(--pivot) 94%, transparent);
	-webkit-backdrop-filter: blur(16px) saturate(1.25); backdrop-filter: blur(16px) saturate(1.25);
	border-color: rgba(244, 238, 227, 0.15);
	border-radius: 999px;
	box-shadow: 0 20px 44px -30px rgba(0, 0, 0, 0.8);
}
.jb-wordmark {
	display: inline-flex; align-items: center; margin-right: auto; line-height: 0;
	color: var(--ivory);
}
.jb-logo {
	display: block; font-family: var(--font-display); font-optical-sizing: auto;
	font-weight: 400; letter-spacing: -0.02em; line-height: 1; white-space: nowrap;
}
.jb-logo--header { font-size: 1.55rem; color: var(--ivory); transition: color 0.4s var(--e-expo), font-size 0.6s var(--e-expo); }
.jb-header.is-stuck .jb-logo--header { font-size: 1.3rem; }
.jb-wordmark:hover .jb-logo--header { color: var(--rose-light); }
.jb-logo--footer { font-size: 2.15rem; color: var(--ivory); transition: color 0.4s var(--e-expo); }
.jb-footer__brand:hover .jb-logo--footer { color: var(--rose-light); }

.jb-nav { display: flex; gap: 1.75rem; align-items: center; }
.jb-nav a {
	position: relative;
	font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
	color: rgba(244, 238, 227, 0.66); padding-block: 0.5rem;
	transition: color 0.35s var(--e-expo);
}
.jb-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0.1rem; height: 1px;
	background: var(--rose-light); border-radius: var(--r-pill);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.45s var(--e-expo);
}
.jb-nav a:hover, .jb-nav a.is-active { color: var(--ivory); }
.jb-nav a:hover::after, .jb-nav a.is-active::after { transform: scaleX(1); }
.jb-nav__n { display: none; }

.jb-burger { display: none; width: 2rem; height: 2rem; position: relative; }
.jb-burger span {
	position: absolute; left: 3px; right: 3px; height: 1.5px; background: currentColor;
	border-radius: var(--r-pill); transition: transform 0.4s var(--e-inout);
}
.jb-burger span:first-child { top: 12px; }
.jb-burger span:last-child { bottom: 12px; }
.jb-burger[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.jb-burger[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.jb-nav-mobile {
	position: fixed; inset: 0; z-index: 95; background: var(--pivot);
	padding-top: var(--header-h);
	display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; padding: var(--gutter);
	transform: translateY(-8px); opacity: 0;
	transition: opacity 0.4s var(--e-expo), transform 0.4s var(--e-expo);
}
.jb-nav-mobile[hidden] { display: none; }
.jb-nav-mobile.is-open { opacity: 1; transform: none; }
.jb-nav-mobile a {
	font-family: var(--font-display); font-size: clamp(1.8rem, 9vw, 2.6rem); font-weight: 400;
	color: var(--ivory); padding-block: 0.35rem; letter-spacing: -0.01em;
	display: flex; align-items: baseline; gap: 0.6rem;
}
.jb-nav-mobile .jb-nav__n { font-family: var(--font-body); font-size: 0.8rem; }

/* ---- Language switcher — custom pill + animated menu -------------------- */
.jb-lang { position: relative; display: inline-flex; align-items: center; }
.jb-lang--footer, .jb-lang--mobile { margin-top: 1.25rem; }

.jb-lang__btn {
	display: inline-flex; align-items: center; gap: 0.55rem; line-height: 1;
	font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
	letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory);
	background: rgba(244, 238, 227, 0.06); border: 1px solid rgba(244, 238, 227, 0.28);
	border-radius: var(--r-sm); padding: 0.62rem 1.05rem;
	transition: border-color 0.4s var(--e-expo), background 0.4s var(--e-expo), box-shadow 0.4s var(--e-expo);
}
.jb-lang__btn:hover { border-color: var(--rose-light); background: rgba(244, 238, 227, 0.1); }
.jb-lang__btn:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.jb-lang__cur { display: inline-block; line-height: 1; transform: translateY(0.5px); }
.jb-lang__short { display: none; line-height: 1; transform: translateY(0.5px); }
.jb-lang__globe { width: 1rem; height: 1rem; color: var(--rose-light); flex: none; display: block; }
.jb-lang__globe svg { width: 100%; height: 100%; display: block; }
.jb-lang__chev { width: 0.62rem; height: 0.62rem; flex: none; color: rgba(244, 238, 227, 0.6); display: block; transition: transform 0.45s var(--e-expo); }
.jb-lang__chev svg { width: 100%; height: 100%; display: block; }
.jb-lang__btn[aria-expanded="true"] .jb-lang__chev { transform: rotate(180deg); }
.jb-lang__btn[aria-expanded="true"] { border-color: var(--rose); }

.jb-lang__menu {
	position: absolute; top: calc(100% + 0.6rem); right: 0; z-index: 60;
	min-width: 13rem; margin: 0; padding: 0.45rem; list-style: none;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: 0 26px 60px -32px rgba(36, 31, 26, 0.55);
	opacity: 0; transform: translateY(-8px) scale(0.97); transform-origin: top right;
	pointer-events: none;
	transition: opacity 0.35s var(--e-expo), transform 0.35s var(--e-expo);
}
.jb-lang__menu[hidden] { display: none; }
.jb-lang.is-open .jb-lang__menu { opacity: 1; transform: none; pointer-events: auto; }

.jb-lang__opt {
	display: flex; align-items: center; gap: 0.7rem;
	padding: 0.6rem 0.75rem; border-radius: var(--r-sm); cursor: pointer;
	opacity: 0; transform: translateY(6px);
	transition: background 0.3s var(--e-expo), opacity 0.4s var(--e-expo), transform 0.4s var(--e-expo);
}
.jb-lang.is-open .jb-lang__opt { opacity: 1; transform: none; transition-delay: calc(var(--i) * 38ms + 60ms); }
.jb-lang__opt:hover, .jb-lang__opt:focus-visible { background: var(--rose-wash); outline: none; }
.jb-lang__code {
	font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; color: var(--rose);
	background: var(--rose-wash); border-radius: var(--r-xs);
	padding: 0.22rem 0.4rem; min-width: 2rem; text-align: center; flex: none;
}
.jb-lang__name { font-size: 0.92rem; color: var(--ink); }
.jb-lang__tick { width: 0.8rem; height: 0.65rem; margin-left: auto; color: var(--rose); opacity: 0; transition: opacity 0.3s var(--e-expo); flex: none; }
.jb-lang__tick svg { width: 100%; height: 100%; }
.jb-lang__opt[aria-selected="true"] .jb-lang__tick { opacity: 1; }
.jb-lang__opt[aria-selected="true"] .jb-lang__name { font-weight: 600; }

/* footer variant sits on the dark band */
.jb-lang--footer .jb-lang__btn { background: transparent; color: var(--ivory); border-color: rgba(244, 238, 227, 0.32); }
.jb-lang--footer .jb-lang__btn:hover { border-color: var(--rose-light); }
.jb-lang--footer .jb-lang__chev { color: rgba(244, 238, 227, 0.6); }
.jb-lang--footer .jb-lang__globe { color: var(--rose-light); }
/* footer menu always opens upward */
.jb-lang--footer .jb-lang__menu {
	right: auto; left: 0; top: auto; bottom: calc(100% + 0.6rem);
	transform-origin: bottom left; transform: translateY(8px) scale(0.97);
}
.jb-lang--footer.is-open .jb-lang__menu { transform: none; }
.jb-gt-hidden {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
	left: -9999px; top: -9999px; pointer-events: none;
}
.skiptranslate iframe, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; color: transparent !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ---- Reveal system ------------------------------------------------------ */
html.js .reveal, html.js [data-reveal] {
	opacity: 0; transform: translateY(24px);
	transition: opacity 0.9s var(--e-expo), transform 0.9s var(--e-expo);
}
html.js .reveal.is-in, html.js [data-reveal].is-in { opacity: 1; transform: none; }
html.js .line { display: block; overflow: hidden; }
html.js .line__in {
	display: block; transform: translateY(112%); opacity: 0;
	transition: transform var(--dur-rev) var(--e-expo), opacity var(--dur-rev) var(--e-expo);
	transition-delay: calc(var(--i, 0) * 90ms);
}
html.js [data-reveal-group].is-in .line__in, html.js .line.is-in .line__in { transform: none; opacity: 1; }
html.js .reveal-media .jb-media { clip-path: inset(100% 0 0 0 round var(--r-lg)); transition: clip-path 1.1s var(--e-expo); }
html.js .reveal-media .jb-media img { transform: scale(1.09); transition: transform 1.4s var(--e-expo); }
html.js .reveal-media.is-in .jb-media { clip-path: inset(0 0 0 0 round var(--r-lg)); }
html.js .reveal-media.is-in .jb-media img { transform: none; }

/* ==========================================================================
   HERO — full-bleed
   ========================================================================== */
.jb-hero {
	position: relative; min-height: 100svh; display: flex; align-items: center;
	padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
	padding-bottom: clamp(3.5rem, 8vh, 6rem);
	background: var(--pivot); color: var(--ivory); overflow: hidden; isolation: isolate;
}
.jb-hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; width: 100%; }
.jb-hero__copy { position: relative; }

.jb-hero__kicker {
	display: block; font-size: 0.72rem; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244, 238, 227, 0.6);
	margin-bottom: 1.75rem;
}
.jb-hero__kicker .line__in { display: inline-flex; align-items: center; gap: 0.6rem; }
.jb-hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose-light); flex: none; }

.jb-hero__name {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: clamp(2.7rem, 1.6rem + 5.4vw, 5rem); line-height: 1.02;
	letter-spacing: -0.032em; color: var(--ivory); margin: 0 0 1.6rem;
}
.jb-hero__name em { color: var(--rose-light); }
.jb-hero__lead { font-size: var(--fs-lead); line-height: 1.6; color: rgba(244, 238, 227, 0.76); max-width: 36rem; margin-bottom: 2.1rem; }
.jb-hero__lead strong { color: var(--ivory); font-weight: 500; font-family: var(--font-display); font-style: italic; font-size: 1.06em; }
.jb-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.25rem; }
.jb-hero__fine { display: flex; align-items: center; gap: 0.85rem; font-size: 0.85rem; color: rgba(244, 238, 227, 0.6); }
.jb-hero__fineline { width: 2.5rem; height: 1px; background: rgba(244, 238, 227, 0.3); flex: none; }

/* Scrolling gallery */
.jb-hero__gallery { position: relative; }
.jb-gal {
	position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.6rem, 1.2vw, 0.9rem);
	height: clamp(28rem, 78vh, 43rem);
	padding: clamp(0.6rem, 1.2vw, 0.9rem);
	background: rgba(244, 238, 227, 0.05); border: 1px solid rgba(244, 238, 227, 0.14); border-radius: var(--r-sm);
	overflow: hidden;
}
.jb-gal__col { overflow: hidden; }
.jb-gal__run { display: flex; flex-direction: column; gap: clamp(0.6rem, 1.2vw, 0.9rem); will-change: transform; }
.jb-gal__col--0 .jb-gal__run { animation: jb-drift-up 42s linear infinite; }
.jb-gal__col--1 .jb-gal__run { animation: jb-drift-down 38s linear infinite; }
.jb-gal__col--2 .jb-gal__run { animation: jb-drift-up 48s linear infinite; }
.jb-gal:hover .jb-gal__run { animation-play-state: paused; }
@keyframes jb-drift-up { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-50%,0); } }
@keyframes jb-drift-down { from { transform: translate3d(0,-50%,0); } to { transform: translate3d(0,0,0); } }

.jb-gcard {
	position: relative; margin: 0; border-radius: var(--r-sm); overflow: hidden;
	background: var(--surface); aspect-ratio: 3 / 4; flex: none;
}
.jb-gcard img { width: 100%; height: 100%; object-fit: cover; }
.jb-gcard::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 46%, rgba(24, 20, 17, 0.72));
}
.jb-gcard figcaption {
	position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.65rem; z-index: 1;
	font-family: var(--font-display); font-style: italic; font-size: 0.92rem;
	color: var(--ivory); line-height: 1.2;
}
/* soft fade at the top and bottom of the panel */
.jb-gal__mask {
	position: absolute; inset: 0; pointer-events: none; z-index: 2;
	background:
		linear-gradient(180deg, rgba(30,25,21,0.96) 0%, transparent 14%, transparent 86%, rgba(30,25,21,0.96) 100%);
}

.jb-scrollcue {
	position: absolute; left: var(--gutter); bottom: 1.5rem; z-index: 2;
	display: inline-flex; align-items: center; gap: 0.7rem;
	font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--taupe);
}
.jb-scrollcue__line {
	display: block; width: 3.5rem; height: 1px; background: var(--taupe);
	border-radius: var(--r-pill); transform-origin: left; animation: jb-cue 2.6s var(--e-inout) infinite;
}
@keyframes jb-cue { 0%,100% { transform: scaleX(0.5); opacity: 0.5; } 50% { transform: scaleX(1); opacity: 1; } }

/* ==========================================================================
   MY MUSIC
   ========================================================================== */
.jb-musik { background: var(--white); }
.jb-musik__intro {
	text-align: center; max-width: 46rem; margin: 0 auto clamp(2.75rem, 5vw, 4rem);
	display: flex; flex-direction: column; align-items: center;
}
.jb-musik__head { margin-bottom: 1.2rem; }
.jb-musik__sub { font-size: var(--fs-lead); line-height: 1.6; color: var(--ink-soft); max-width: 38rem; }

/* Mosaic — tall photograph left, cards right */
.jb-mosaic {
	display: grid; grid-template-columns: 1fr;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: clamp(2.75rem, 5vw, 4rem);
	align-items: stretch;
}
.jb-mosaic__media { margin: 0; position: relative; display: flex; }
.jb-mosaic__media .jb-media { width: 100%; }
.jb-media--figure { aspect-ratio: 3 / 4; border-radius: var(--r-sm); }
.jb-media--figure img { position: absolute; inset: 0; }
.jb-mosaic__cap {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	padding: 3.5rem clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.1rem, 2.2vw, 1.4rem);
	font-family: var(--font-display); font-style: italic;
	font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.12rem); line-height: 1.45;
	color: var(--ivory);
	background: linear-gradient(180deg, transparent, rgba(20, 17, 14, 0.86) 62%);
	border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.jb-mosaic__cards { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.jb-mcard {
	position: relative; isolation: isolate;
	background: var(--pivot); color: var(--ivory);
	border: 1px solid rgba(244, 238, 227, 0.14); border-radius: var(--r-sm);
	padding: clamp(1.4rem, 2.6vw, 2rem);
	display: flex; flex-direction: column; align-items: flex-start;
	transition: border-color 0.5s var(--e-expo), transform 0.5s var(--e-expo), box-shadow 0.5s var(--e-expo);
}
.jb-mcard::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	border-radius: inherit;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-mcard:hover { border-color: var(--rose-light); transform: translateY(-3px); box-shadow: 0 26px 52px -32px rgba(0, 0, 0, 0.55); }
.jb-mcard--rose { background: var(--pivot); border-color: rgba(232, 180, 184, 0.3); }
.jb-mcard__n { font-family: var(--font-display); font-size: 0.86rem; color: var(--rose-light); margin-bottom: 0.85rem; }
.jb-mcard__t {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450;
	font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.65rem); line-height: 1.2;
	letter-spacing: -0.015em; color: var(--ivory); margin-bottom: 0.7rem;
}
.jb-mcard__d { font-size: 0.98rem; line-height: 1.65; color: rgba(244, 238, 227, 0.78); margin-bottom: 1.3rem; }
.jb-mcard__cta {
	display: inline-flex; align-items: center; gap: 0.45rem; margin-top: auto;
	font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--rose-light); transition: gap 0.4s var(--e-expo), color 0.3s var(--e-expo);
}
.jb-mcard__cta:hover { gap: 0.8rem; color: var(--ivory); }

.jb-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.jb-fact { border-top: 1px solid var(--line-strong); padding-top: 0.95rem; }
.jb-fact__k { display: flex; flex-direction: column; gap: 0.12rem; margin-bottom: 0.45rem; }
.jb-fact__k span { font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.jb-fact__k strong {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); line-height: 1.05; color: var(--ink); letter-spacing: -0.015em;
}
.jb-fact__v { font-size: 0.88rem; line-height: 1.5; color: var(--taupe); }

.jb-musik__mosaic { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.jb-musik__media { position: relative; }
.jb-musik__media .jb-media { height: 100%; min-height: 22rem; }
.jb-musik__cap { margin-top: 1rem; font-size: 0.88rem; line-height: 1.55; color: var(--taupe); max-width: 28rem; }

.jb-tiles { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.jb-tile {
	position: relative; background: var(--surface);
	border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: clamp(1.6rem, 3vw, 2.4rem);
	display: flex; flex-direction: column; align-items: flex-start;
	transition: border-color 0.5s var(--e-expo), transform 0.5s var(--e-expo), box-shadow 0.5s var(--e-expo);
}
.jb-tile:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(36, 31, 26, 0.35); }
.jb-tile--rose { background: var(--rose-wash); border-color: transparent; }
.jb-tile__n { font-family: var(--font-display); font-size: 0.9rem; color: var(--rose); margin-bottom: 0.9rem; }
.jb-tile__t {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450;
	font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); line-height: 1.2;
	letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0.85rem;
}
.jb-tile__d { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1.6rem; }
.jb-tile__cta { margin-top: auto; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ==========================================================================
   INTERLUDE — the poetic quote
   ========================================================================== */
.jb-quote {
	position: relative; isolation: isolate; overflow: hidden;
	background: var(--pivot); color: var(--ivory);
	padding-block: var(--sec-pad-air);
}
.jb-quote::after {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-quote .jb-eyebrow { color: rgba(244, 238, 227, 0.6); }
.jb-quote__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.jb-quote__media { position: relative; }
.jb-quote__media .jb-media { max-width: 30rem; }
.jb-quote__text { position: relative; max-width: 40rem; }
.jb-quote__text .jb-eyebrow { margin-bottom: 1.5rem; }
.jb-quote__lines {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400; font-style: italic;
	font-size: var(--fs-quote); line-height: 1.24; letter-spacing: -0.01em;
	color: var(--ivory); max-width: 22ch; margin-bottom: 1.75rem;
}
.jb-quote__body { font-size: var(--fs-lead); line-height: 1.6; color: rgba(244, 238, 227, 0.74); max-width: 34rem; margin-bottom: 1.5rem; }
.jb-quote__sig { display: flex; align-items: center; gap: 0.9rem; }
.jb-quote__sig .jb-rule { width: 2.5rem; background: var(--rose-light); }
.jb-quote__sigtext { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244, 238, 227, 0.6); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.jb-prozess { background: var(--surface); }
.jb-prozess__head { max-width: 48rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.jb-prozess__head .jb-h2 { text-wrap: nowrap; }
@media (max-width: 620px) { .jb-prozess__head .jb-h2 { text-wrap: balance; } }
.jb-prozess__head .jb-eyebrow { margin-bottom: 1.5rem; }
.jb-prozess__head .jb-h2 { margin-bottom: 1.5rem; }
.jb-prozess__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }
.jb-steps { list-style: none; margin: 0; padding: 0; position: relative; border-left: 1px solid var(--line); }
.jb-step { position: relative; padding: 0 0 clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.75rem); }
.jb-step:last-child { padding-bottom: 0; }
.jb-step__dot {
	position: absolute; left: 0; top: 0.55rem; width: 10px; height: 10px;
	border-radius: 50%; background: var(--surface); border: 1px solid var(--rose);
	transform: translateX(-50%); transition: background 0.5s var(--e-expo);
}
.jb-step.is-in .jb-step__dot { background: var(--rose); }
.jb-step__n { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--taupe); margin-bottom: 0.5rem; }
.jb-step__t {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450;
	font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.7rem); line-height: 1.22;
	letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0.7rem;
}
.jb-step__d { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); max-width: 44ch; }

/* ==========================================================================
   IN CONVERSATION
   ========================================================================== */
.jb-talk {
	position: relative; isolation: isolate; overflow: hidden;
	background: var(--pivot); color: var(--ivory);
}
.jb-talk::after {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-talk .jb-eyebrow { color: rgba(244, 238, 227, 0.6); }
.jb-talk .jb-h2 { color: var(--ivory); }
.jb-talk__grid {
	display: grid; grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3.25rem);
	align-items: stretch;
}
.jb-talk__side { display: flex; min-height: 0; }
.jb-talk__sticky { display: flex; flex-direction: column; width: 100%; min-height: 0; }
.jb-talk__side .jb-eyebrow { margin-bottom: 1.35rem; }
.jb-talk__title { margin-bottom: 1.15rem; font-size: clamp(1.9rem, 1.2rem + 3.4vw, 3rem); }
.jb-talk__intro { color: rgba(244, 238, 227, 0.72); font-size: 1rem; line-height: 1.65; max-width: 30rem; margin-bottom: 1.75rem; }
.jb-talk__media { position: relative; flex: 1 1 0; display: flex; min-height: 16rem; }
.jb-talk__media .jb-media { width: 100%; height: 100%; }
.jb-talk__media .jb-media img { position: absolute; inset: 0; }
.jb-talk__cap {
	position: absolute; left: 1rem; bottom: 1rem;
	background: color-mix(in srgb, var(--surface) 92%, transparent);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	padding: 0.55rem 0.95rem; border-radius: var(--r-sm);
	font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}

.jb-accordion { display: grid; gap: 0.55rem; align-content: start; }
.jb-acc {
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
	overflow: hidden;
	transition: border-color 0.45s var(--e-expo), box-shadow 0.45s var(--e-expo), background 0.45s var(--e-expo);
}
.jb-acc:hover { border-color: var(--line-strong); }
.jb-acc.is-open { border-color: var(--rose); box-shadow: 0 18px 44px -30px rgba(36, 31, 26, 0.4); }
.jb-acc__h { margin: 0; }
.jb-acc__btn {
	width: 100%; display: grid; grid-template-columns: 2.4rem 1fr auto;
	align-items: center; gap: clamp(0.65rem, 1.6vw, 1.15rem); text-align: left;
	padding: clamp(0.95rem, 1.7vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
}
.jb-acc__n { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--taupe); transition: color 0.35s var(--e-expo); font-variant-numeric: lining-nums tabular-nums; }
.jb-acc__q {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 500;
	font-size: var(--fs-q); line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance;
}
.jb-acc__ico {
	position: relative; width: 1.85rem; height: 1.85rem; flex: none; border-radius: 50%;
	border: 1px solid var(--line); transition: border-color 0.4s var(--e-expo), background 0.4s var(--e-expo);
}
.jb-acc__ico::before, .jb-acc__ico::after {
	content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink);
	border-radius: var(--r-pill); transition: transform 0.45s var(--e-inout), background 0.35s;
}
.jb-acc__ico::before { width: 10px; height: 1.4px; transform: translate(-50%, -50%); }
.jb-acc__ico::after  { width: 1.4px; height: 10px; transform: translate(-50%, -50%); }
.jb-acc__btn[aria-expanded="true"] .jb-acc__ico { border-color: var(--rose); background: var(--rose); }
.jb-acc__btn[aria-expanded="true"] .jb-acc__ico::before,
.jb-acc__btn[aria-expanded="true"] .jb-acc__ico::after { background: var(--paper); }
.jb-acc__btn[aria-expanded="true"] .jb-acc__ico::after { transform: translate(-50%, -50%) scaleY(0); }
.jb-acc__btn[aria-expanded="true"] .jb-acc__n { color: var(--rose); }

.jb-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--e-inout); }
.jb-acc__panel.is-open { grid-template-rows: 1fr; }
.jb-acc__inner { overflow: hidden; }
.jb-acc__a {
	padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.1rem, 2.2vw, 1.5rem) calc(2.4rem + clamp(0.65rem, 1.6vw, 1.15rem));
	max-width: 46rem; color: var(--ink-soft); font-size: 0.99rem; line-height: 1.72;
	opacity: 0; transform: translateY(8px);
	transition: opacity 0.5s var(--e-expo) 0.06s, transform 0.5s var(--e-expo) 0.06s;
}
.jb-acc__panel.is-open .jb-acc__a { opacity: 1; transform: none; }
.jb-acc__a em { font-family: var(--font-display); font-style: italic; font-size: 1.15em; color: var(--ink); }

/* ==========================================================================
   A SOUND TO ENTER — the tonal pivot
   ========================================================================== */
.jb-sound {
	position: relative; background: var(--white);
	padding-block: var(--sec-pad);
	border-bottom: 1px solid var(--line-strong);
}
.jb-sound__panel {
	position: relative; isolation: isolate; overflow: hidden;
	background: var(--pivot); color: var(--ivory); border-radius: var(--r-xl);
	display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.jb-sound__bg { position: absolute; inset: -6% 0; z-index: -1; will-change: transform; }
.jb-sound__bg img { width: 100%; height: 100%; object-fit: cover; }
.jb-sound__veil {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(26, 22, 18, 0.96) 0%, rgba(26, 22, 18, 0.90) 46%, rgba(26, 22, 18, 0.78) 100%),
		radial-gradient(80% 70% at 20% 30%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-sound__copy { position: relative; }
.jb-sound__copy .jb-eyebrow { margin-bottom: 1.6rem; }
.jb-sound__head {
	color: var(--ivory); font-size: clamp(2.2rem, 1.4rem + 4.2vw, 3.75rem);
	letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 1.5rem;
}
.jb-sound__invite { max-width: 34rem; color: rgba(244, 238, 227, 0.76); font-size: var(--fs-lead); line-height: 1.6; margin-bottom: clamp(2.25rem, 4vw, 3rem); }

.jb-sound__art { position: relative; }
.jb-sleeve { position: relative; max-width: 26rem; margin-inline: auto; }
.jb-sleeve .jb-media { border-radius: var(--r-lg); }
.jb-sleeve__plate {
	position: absolute; left: clamp(-1rem, -2vw, -1.75rem); bottom: clamp(-1rem, -2vw, -1.5rem);
	background: var(--surface); color: var(--ink); padding: 1.1rem 1.35rem;
	max-width: 15rem; border-radius: var(--r-md);
	box-shadow: 0 22px 50px -30px rgba(0, 0, 0, 0.6);
}
.jb-sleeve__k { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.35rem; }
.jb-sleeve__t { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.1; color: var(--ink); margin-bottom: 0.3rem; }
.jb-sleeve__m { font-size: 0.78rem; color: var(--taupe); }

/* Player */
.jb-player { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2rem); }
.jb-player__btn { position: relative; width: 84px; height: 84px; flex: none; display: grid; place-items: center; border-radius: 50%; transition: transform 0.3s var(--e-expo); }
.jb-player__btn:active { transform: scale(0.96); }
.jb-player__ring { position: absolute; inset: 0; width: 84px; height: 84px; transform: rotate(-90deg); }
.jb-player__track { fill: none; stroke: rgba(244, 238, 227, 0.22); stroke-width: 1.5; }
.jb-player__prog { fill: none; stroke: var(--rose-light); stroke-width: 2; stroke-linecap: round; --circ: 339.292; stroke-dasharray: var(--circ); stroke-dashoffset: var(--circ); }
.jb-player__glyph { position: absolute; }
.jb-player__glyph--play { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid var(--ivory); margin-left: 4px; transition: opacity 0.3s var(--e-expo); }
.jb-player__glyph--pause { width: 14px; height: 16px; border-left: 3.5px solid var(--ivory); border-right: 3.5px solid var(--ivory); opacity: 0; transition: opacity 0.3s var(--e-expo); }
.jb-player.is-playing .jb-player__glyph--play { opacity: 0; }
.jb-player.is-playing .jb-player__glyph--pause { opacity: 1; }
.jb-player.is-soon .jb-player__btn { cursor: default; opacity: 0.55; }
.jb-player.is-soon .jb-player__prog { display: none; }
.jb-player__meta { min-width: min(20rem, 60vw); flex: 1; }
.jb-player__title { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ivory); margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.jb-player__seek { position: relative; height: 3px; background: rgba(244, 238, 227, 0.22); border-radius: var(--r-pill); cursor: pointer; margin-bottom: 0.6rem; }
.jb-player__seekfill { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--rose-light); border-radius: var(--r-pill); }
.jb-player__seek:focus-visible { outline: 2px solid var(--rose-light); outline-offset: 4px; }
.jb-player__time { font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(244, 238, 227, 0.6); font-variant-numeric: lining-nums tabular-nums; }
.jb-player__sep { opacity: 0.5; margin: 0 0.2em; }
.jb-player.is-soon .jb-player__title::after {
	content: " · " attr(data-soon); font-family: var(--font-body); font-style: normal;
	font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244, 238, 227, 0.5);
}

/* ==========================================================================
   STIMMEN — stacked-deck slider
   ========================================================================== */
.jb-voices { background: var(--white); }

.jb-score { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.jb-stars { display: inline-flex; gap: 0.28rem; }
.jb-star { width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border-radius: var(--r-xs); background: var(--line); }
.jb-vcard .jb-star { background: rgba(244, 238, 227, 0.16); }
.jb-vcard .jb-star.is-on { background: var(--rose-light); }
.jb-vcard .jb-star svg { fill: var(--pivot); }
.jb-star svg { width: 68%; height: 68%; fill: var(--surface); }
.jb-star.is-on { background: var(--rose); }
.jb-stars--lg .jb-star { width: 1.85rem; height: 1.85rem; border-radius: var(--r-sm); }
.jb-score__meta { font-size: 0.88rem; color: var(--taupe); letter-spacing: 0.03em; }
.jb-score__meta strong { color: var(--ink); font-weight: 600; }
.jb-score__sep { margin: 0 0.4em; opacity: 0.6; }

/* Deck */
.jb-deck { position: relative; }
.jb-deck__top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.1rem; max-width: 44rem; margin-inline: auto; width: 100%; }
.jb-deck__label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.jb-deck__stage {
	position: relative; min-height: 19rem;
	max-width: 44rem; margin-inline: auto;
	perspective: 1600px;
}
.jb-deck__stage:focus-visible { outline: 2px solid var(--rose); outline-offset: 12px; border-radius: var(--r-sm); }
.jb-vcard {
	position: absolute; inset: 0 auto auto 0; width: 100%;
	background: var(--pivot); color: var(--ivory);
	border: 1px solid rgba(244, 238, 227, 0.14); border-radius: var(--r-sm);
	padding: clamp(1.6rem, 3vw, 2.35rem);
	display: flex; flex-direction: column; gap: 0.95rem;
	transition: transform 0.85s var(--e-expo), opacity 0.7s var(--e-expo), box-shadow 0.7s var(--e-expo);
	transform-origin: 50% 118%;
	will-change: transform, opacity;
	backface-visibility: hidden;
}
/* A symmetric fan — petals opening from one point. Positions set by JS. */
.jb-vcard::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	border-radius: inherit;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-vcard[data-pos="0"] {
	transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	opacity: 1; z-index: 5;
	box-shadow: 0 34px 70px -38px rgba(36, 31, 26, 0.5);
}
.jb-vcard[data-pos="1"] {
	transform: translate3d(0, -0.85rem, -60px) rotate(4.2deg) scale(0.965);
	opacity: 0.66; z-index: 4;
	box-shadow: 0 24px 50px -34px rgba(36, 31, 26, 0.4);
}
.jb-vcard[data-pos="2"] {
	transform: translate3d(0, -1.6rem, -120px) rotate(-4.2deg) scale(0.93);
	opacity: 0.42; z-index: 3;
}
.jb-vcard[data-pos="3"] {
	transform: translate3d(0, -2.25rem, -180px) rotate(7.6deg) scale(0.9);
	opacity: 0.2; z-index: 2;
}
.jb-vcard[data-pos="hidden"] {
	transform: translate3d(0, -2.8rem, -220px) rotate(-7.6deg) scale(0.88);
	opacity: 0; z-index: 1; pointer-events: none;
}
/* the outgoing card lifts away rather than snapping behind */
.jb-vcard[data-pos="leaving"] {
	transform: translate3d(0, 1.5rem, 90px) rotate(-2deg) scale(1.03);
	opacity: 0; z-index: 6; pointer-events: none;
	transition: transform 0.6s var(--e-expo), opacity 0.5s var(--e-expo);
}
.jb-vcard__t { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450; font-size: clamp(1.25rem, 1rem + 0.9vw, 1.55rem); line-height: 1.25; letter-spacing: -0.015em; color: var(--ivory); }
.jb-vcard__q p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem); line-height: 1.55; color: rgba(244, 238, 227, 0.8); }
.jb-vcard__f { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 0.9rem; border-top: 1px solid rgba(244, 238, 227, 0.16); }
.jb-avatar {
	position: relative; width: 3rem; height: 3rem; flex: none;
	display: grid; place-items: center; border-radius: 50%;
	overflow: hidden; isolation: isolate;
	box-shadow: 0 0 0 1px rgba(123, 45, 51, 0.14), 0 6px 16px -10px rgba(36, 31, 26, 0.5);
}
.jb-avatar img { width: 100%; height: 100%; object-fit: cover; }
.jb-avatar__i {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450;
	font-size: 0.92rem; letter-spacing: 0.03em; line-height: 1; color: var(--rose-deep);
}
/* a subtle sheen so the monogram reads as a crafted mark, not a placeholder */
.jb-avatar::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: radial-gradient(80% 80% at 30% 22%, rgba(255,255,255,0.85), transparent 70%);
}
.jb-avatar--0 { background: linear-gradient(150deg, #F2DEDA, #E7C9C4); }
.jb-avatar--1 { background: linear-gradient(150deg, #EFE2CE, #E2CFAF); }
.jb-avatar--2 { background: linear-gradient(150deg, #E6DED2, #D3C7B4); }
.jb-avatar--3 { background: linear-gradient(150deg, #F1DFD9, #DDC3BE); }
.jb-avatar--4 { background: linear-gradient(150deg, #EADFD3, #D8C6B0); }
.jb-vcard__n { display: block; font-size: 0.95rem; color: var(--ivory); font-weight: 500; }
.jb-vcard__m { display: block; font-size: 0.78rem; color: rgba(244, 238, 227, 0.6); }
.jb-vcard__chip {
	display: inline-block; margin-left: auto; flex: none;
	border: 1px solid rgba(244, 238, 227, 0.22); border-radius: var(--r-sm);
	padding: 0.38rem 0.85rem; font-size: 0.72rem; color: rgba(244, 238, 227, 0.7);
	letter-spacing: 0.04em; white-space: nowrap;
}

.jb-deck__ui { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; margin-top: clamp(1.1rem, 2vw, 1.6rem); flex-wrap: wrap; max-width: 44rem; margin-inline: auto; width: 100%; }
.jb-deck__dots { display: flex; gap: 0.5rem; }
.jb-dot { width: 1.9rem; height: 3px; background: var(--line); border: 0; padding: 0; cursor: pointer; border-radius: var(--r-pill); transition: background 0.4s var(--e-expo); }
.jb-dot.is-active { background: var(--rose); }
.jb-dot:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }
.jb-arrows { display: flex; gap: 0.6rem; }
.jb-arrow {
	width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%;
	border: 1px solid var(--line); color: var(--ink); background: var(--surface);
	transition: border-color 0.4s var(--e-expo), color 0.4s var(--e-expo), background 0.4s var(--e-expo);
}
.jb-arrow svg { width: 18px; height: 18px; }
.jb-arrow:hover { border-color: var(--rose); color: var(--rose); }
.jb-arrow:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ==========================================================================
   CONCERT — the stage
   ========================================================================== */
.jb-hamburg { background: var(--paper); padding-block: 0; }
.jb-stage {
	position: relative; isolation: isolate; overflow: hidden;
	background: var(--pivot); color: var(--ivory);
	padding-block: clamp(3.5rem, 9vh, 7rem);
}
.jb-stage__bg { position: absolute; inset: -6% 0; z-index: -1; will-change: transform; }
.jb-stage__bg img { width: 100%; height: 100%; object-fit: cover; }
.jb-stage__veil {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(20, 17, 14, 0.96) 0%, rgba(20, 17, 14, 0.88) 48%, rgba(20, 17, 14, 0.74) 100%),
		radial-gradient(70% 60% at 24% 26%, rgba(168, 133, 63, 0.2), transparent 62%);
}
.jb-stage__grid {
	display: grid; grid-template-columns: 1fr; gap: clamp(2.25rem, 5vw, 4rem);
	align-items: center; width: 100%;
}
.jb-stage > .jb-wrap { position: relative; z-index: 1; }
.jb-stage__copy { position: relative; }

.jb-stage__kicker {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
	color: rgba(244, 238, 227, 0.82);
	border: 1px solid rgba(244, 238, 227, 0.25); border-radius: var(--r-sm);
	padding: 0.5rem 1rem; margin-bottom: 1.75rem;
}
.jb-live { width: 7px; height: 7px; border-radius: 50%; background: var(--rose-light); position: relative; flex: none; }
.jb-live::after {
	content: ""; position: absolute; inset: -5px; border-radius: 50%;
	border: 1px solid var(--rose-light); opacity: 0.6; animation: jb-pulse 2.4s var(--e-inout) infinite;
}
@keyframes jb-pulse { 0% { transform: scale(0.6); opacity: 0.8; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

.jb-stage__head {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: clamp(2.3rem, 1.4rem + 4.4vw, 3.9rem); line-height: 1.06; letter-spacing: -0.025em;
	color: var(--ivory); margin-bottom: 1.4rem;
}
.jb-stage__head em { color: var(--rose-light); }
.jb-stage__motto {
	font-family: var(--font-display); font-style: italic;
	font-size: var(--fs-lead); line-height: 1.5; color: rgba(244, 238, 227, 0.78);
	max-width: 34rem; margin-bottom: 2.25rem;
}
.jb-stage__notes { display: grid; gap: 0.95rem; }
.jb-hnote { display: flex; gap: 0.9rem; align-items: flex-start; }
.jb-hnote__b { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-light); margin-top: 0.62rem; flex: none; }
.jb-hnote p { font-size: 0.98rem; line-height: 1.6; color: rgba(244, 238, 227, 0.72); max-width: 42ch; }
.jb-hnote strong { color: var(--ivory); font-weight: 600; }

/* Ticket */
.jb-ticket {
	--ticket-pad: clamp(1.6rem, 3vw, 2.25rem);
	--notch: 1.05rem;
	background: var(--surface); color: var(--ink);
	border-radius: var(--r-lg); padding: var(--ticket-pad);
	position: relative; overflow: hidden;
	box-shadow: 0 40px 80px -44px rgba(0, 0, 0, 0.75);
}
.jb-ticket::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--gold)); }
.jb-ticket__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.jb-ticket__label { font-size: var(--fs-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.jb-ticket__seal {
	width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
	border: 1px solid var(--line); font-family: var(--font-display); font-size: 0.8rem;
	letter-spacing: 0.04em; color: var(--rose);
}
.jb-ticket__date {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: clamp(2.4rem, 1.8rem + 3vw, 3.5rem); line-height: 1;
	color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.45rem;
}
.jb-ticket__day { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
/* perforation line, like a real ticket stub */
.jb-ticket__perf {
	display: block; height: 1px;
	margin: 1.5rem calc(var(--ticket-pad) * -1);
	background-image: linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 11px);
	background-size: 11px 1px; background-repeat: repeat-x;
	position: relative;
}
.jb-ticket__perf::before, .jb-ticket__perf::after {
	content: ""; position: absolute; top: 50%;
	width: var(--notch); height: var(--notch);
	background: var(--pivot); border-radius: 50%;
	transform: translateY(-50%);
}
/* a soft inner edge so they read as punched, not pasted */
.jb-ticket__perf::before {
	left: calc(var(--notch) / -2);
	box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.45);
}
.jb-ticket__perf::after {
	right: calc(var(--notch) / -2);
	box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.45);
}
.jb-ticket__tel {
	color: var(--rose); font-weight: 500; white-space: nowrap;
	background-image: linear-gradient(var(--rose), var(--rose));
	background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 1px;
	transition: background-size 0.4s var(--e-expo);
}
.jb-ticket__tel:hover { background-size: 0% 1px; }
.jb-ticket__rows { display: grid; gap: 0.75rem; margin-bottom: 1.6rem; }
.jb-ticket__row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.jb-ticket__row dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.jb-ticket__row dd { font-size: 0.92rem; color: var(--ink); text-align: right; }
.jb-ticket .jb-btn { width: 100%; justify-content: center; }
.jb-ticket__fine { margin-top: 0.85rem; font-size: 0.76rem; color: var(--taupe); text-align: center; }

/* ==========================================================================
   VOICES — mosaic opening
   ========================================================================== */
.jb-vhero { position: relative; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.jb-vhero__mosaic {
	position: relative;
	display: flex; justify-content: center; align-items: flex-start;
	gap: clamp(0.45rem, 1.2vw, 0.9rem);
	padding-top: clamp(0.5rem, 1.5vw, 1.25rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	overflow: hidden;
	max-width: 100%;
}
.jb-vtile {
	display: block; flex: 0 0 auto;
	width: clamp(4.6rem, 8.2vw, 6.9rem);
	aspect-ratio: 3 / 4;
	border-radius: var(--r-sm); overflow: hidden;
	box-shadow: 0 14px 30px -22px rgba(36, 31, 26, 0.42);
	background: var(--band);
	transform-origin: 50% 50%;
}
.jb-vtile img { width: 100%; height: 100%; object-fit: cover; }
/* Tiles arc along a circle — a fan opening from a single centre */
.jb-vtile { height: 76%; transform-origin: 50% 215%; }
.jb-vtile--a { transform: rotate(-11deg) translateY(1.5rem); }
.jb-vtile--b { transform: rotate(-6.6deg) translateY(0.65rem); }
.jb-vtile--c { transform: rotate(-2.2deg) translateY(0.1rem); }
.jb-vtile--d { transform: rotate(2.2deg)  translateY(0.1rem); }
.jb-vtile--e { transform: rotate(6.6deg)  translateY(0.65rem); }
.jb-vtile--f { transform: rotate(11deg)   translateY(1.5rem); }
.jb-vhero__fade { display: none; }
.jb-vhero__copy { position: relative; text-align: center; margin-top: 0; display: flex; flex-direction: column; align-items: center; }
.jb-chip {
	display: inline-block; font-size: 0.7rem; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe);
	background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
	padding: 0.5rem 1.1rem; margin-bottom: 1.4rem;
}
.jb-vhero__head { margin-bottom: 1.2rem; }
.jb-muted { color: var(--taupe); }
.jb-vhero__sub { max-width: 34rem; font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.jb-contact { background: var(--white); padding-bottom: clamp(7rem, 12vh, 12rem); }
.jb-contact__shell {
	display: grid; grid-template-columns: 1fr;
	border: 1px solid var(--line-strong); border-radius: var(--r-sm);
	background: var(--surface); overflow: hidden;
	align-items: stretch;
}
/* Dark info panel — rounded card inset on the right */
.jb-panel {
	background: var(--pivot); color: var(--ivory); position: relative; isolation: isolate;
	border-radius: var(--r-sm); margin: clamp(0.75rem, 1.2vw, 1rem);
	overflow: hidden;
}
.jb-panel::after {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(120% 90% at 82% 6%, rgba(168, 133, 63, 0.2), transparent 60%);
}
.jb-panel__inner {
	padding: clamp(1.9rem, 4vw, 2.75rem); height: 100%;
	display: flex; flex-direction: column; justify-content: space-between; gap: 0.5rem;
}
.jb-panel__block { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(244, 238, 227, 0.14); }
.jb-panel__block--last { border-bottom: 0; }
.jb-panel__bt {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 500;
	font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ivory); margin-bottom: 0.6rem;
}
.jb-panel__block p { font-size: 0.98rem; line-height: 1.55; color: var(--ivory); }
.jb-panel__sub { color: rgba(244, 238, 227, 0.66) !important; font-size: 0.9rem !important; margin-top: 0.25rem; }
.jb-panel__link {
	color: var(--ivory);
	background-image: linear-gradient(var(--rose-light), var(--rose-light));
	background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 1px;
	transition: background-size 0.45s var(--e-expo); padding-bottom: 0.1em; word-break: break-word;
}
.jb-panel__link:hover { background-size: 0% 1px; }
.jb-panel__motto { margin-top: 0; padding-top: 0.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(244, 238, 227, 0.6); line-height: 1.45; }

.jb-contact__form {
	padding: clamp(1.9rem, 4vw, 2.75rem);
	display: flex; flex-direction: column;
}
.jb-contact__form .jb-form { margin-bottom: 0; }
.jb-contact__form .wpcf7 { margin-bottom: 0; }
.jb-contact__form .wpcf7 form { margin: 0; }
.jb-form__actions { margin-top: 1.5rem; margin-bottom: 0; }
.jb-form__actions p:last-child { margin-bottom: 0; }
.jb-contact__form .jb-eyebrow { margin-bottom: 1rem; }
.jb-eyebrow--dash { display: inline-flex; align-items: center; gap: 0.6rem; }
.jb-eyebrow--dash::before { content: ""; width: 1.6rem; height: 1px; background: var(--rose); }
.jb-contact__formhead {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400;
	font-size: clamp(1.8rem, 1.3rem + 1.9vw, 2.5rem); line-height: 1.14;
	letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.7rem;
}
.jb-contact__formhead em { color: var(--rose); }
.jb-contact__note { font-size: 0.88rem; color: var(--taupe); margin-bottom: 2rem; max-width: 34rem; }
.jb-contact__note span { color: var(--rose); }

.jb-form { max-width: 36rem; }
.jb-form__row { margin: 0 0 1.35rem; }
/* two-up row for name + e-mail */
.jb-form__grid { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 620px) { .jb-form__grid { grid-template-columns: 1fr 1fr; } }
.jb-form label { display: block; font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.jb-form label span { color: var(--rose); margin-left: 0.25em; }
.jb-form label em { font-style: normal; text-transform: none; letter-spacing: 0.02em; opacity: 0.7; margin-left: 0.4em; }

.jb-form input, .jb-form textarea,
.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 textarea {
	width: 100%; margin-top: 0.5rem;
	font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
	padding: 0.85rem 1rem;
	transition: border-color 0.35s var(--e-expo), background 0.35s var(--e-expo), box-shadow 0.35s var(--e-expo);
}
.jb-form input::placeholder, .wpcf7 input::placeholder, .wpcf7 textarea::placeholder { color: var(--taupe); opacity: 0.75; }
.jb-form input:hover, .wpcf7 input:not([type="submit"]):hover, .wpcf7 textarea:hover { border-color: var(--line-strong); }
.jb-form input:focus, .jb-form textarea:focus, .wpcf7 input:focus, .wpcf7 textarea:focus {
	outline: 0; border-color: var(--rose); background: var(--surface);
	box-shadow: 0 0 0 3px rgba(123, 45, 51, 0.09);
}
.jb-form textarea, .wpcf7 textarea { resize: vertical; height: 7.5rem; min-height: 6rem; line-height: 1.6; }

.jb-form__actions { margin-top: 1.75rem; }
.jb-link--send, .wpcf7 input[type="submit"], .wpcf7 button[type="submit"] {
	display: inline-block; font-family: var(--font-body);
	font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--paper); background: var(--rose); border: 1px solid var(--rose);
	padding: 1rem 2.25rem; border-radius: var(--r-sm); cursor: pointer; background-image: none;
	transition: background 0.35s var(--e-expo), border-color 0.35s var(--e-expo), transform 0.35s var(--e-expo);
}
.jb-link--send:hover, .wpcf7 input[type="submit"]:hover, .wpcf7 button[type="submit"]:hover {
	background: var(--rose-deep); border-color: var(--rose-deep); color: var(--paper); transform: translateY(-1px);
}
.wpcf7 form .wpcf7-response-output { border: 0; border-left: 2px solid var(--rose); border-radius: var(--r-xs); padding: 0.7rem 0 0.7rem 1rem; margin: 1.5rem 0 0; font-size: 0.9rem; color: var(--ink-soft); }
.wpcf7-not-valid-tip { color: var(--rose-deep); font-size: 0.78rem; margin-top: 0.4rem; }
.wpcf7 .wpcf7-spinner { margin: 0.75rem 0 0; }

/* ==========================================================================
   FOOTER — full-bleed band
   ========================================================================== */
.jb-footer { background: var(--pivot); padding: 0; }
.jb-footer > .jb-wrap { max-width: none; padding-inline: 0; }
.jb-footer__shell {
	background: var(--pivot); color: var(--ivory);
	padding: clamp(2.75rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
	position: relative; isolation: isolate; overflow: hidden;
}
.jb-footer__shell::after {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(90% 70% at 82% 8%, rgba(168, 133, 63, 0.15), transparent 60%);
}
.jb-footer__center, .jb-footer__rule, .jb-footer__base { max-width: var(--wrap); margin-inline: auto; width: 100%; }

.jb-footer__center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.jb-footer__brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--ivory); }
.jb-footer__mark { width: 1.9rem; height: 1.9rem; color: var(--rose-light); flex: none; }
.jb-footer__mark svg { width: 100%; height: 100%; }
.jb-footer__name { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 400; font-size: 2rem; letter-spacing: -0.015em; line-height: 1; }
.jb-footer__tag { margin-top: 0.7rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244, 238, 227, 0.55); }
.jb-footer__motto {
	margin-top: 1.9rem; max-width: 42rem;
	font-family: var(--font-display); font-style: italic;
	font-size: clamp(1.02rem, 0.9rem + 0.6vw, 1.3rem); line-height: 1.45; color: rgba(244, 238, 227, 0.8);
}
.jb-footer__nav { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem 1.85rem; }
.jb-footer__nav a, .jb-footer__legal a, .jb-footer__social a {
	position: relative; font-size: 0.88rem; color: rgba(244, 238, 227, 0.68);
	transition: color 0.3s var(--e-expo);
}
.jb-footer__nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -0.35rem; height: 1px;
	background: var(--rose-light); border-radius: var(--r-sm);
	transform: scaleX(0); transition: transform 0.4s var(--e-expo);
}
.jb-footer__nav a:hover, .jb-footer__legal a:hover, .jb-footer__social a:hover { color: var(--ivory); }
.jb-footer__nav a:hover::after { transform: scaleX(1); }

.jb-footer__contact { margin-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.jb-footer__mail {
	color: var(--ivory); word-break: break-word;
	transition: color 0.3s var(--e-expo);
}
.jb-footer__mail:hover { color: var(--rose-light); }
.jb-footer__dot { color: rgba(244, 238, 227, 0.35); }
.jb-footer__next { color: rgba(244, 238, 227, 0.6); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

.jb-footer__rule { height: 1px; background: rgba(244, 238, 227, 0.14); margin-block: clamp(2rem, 4vw, 3rem); }

.jb-footer__base {
	display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
	justify-content: space-between; align-items: center;
	font-size: 0.82rem; color: rgba(244, 238, 227, 0.5);
}
.jb-footer__social, .jb-footer__legal { display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; align-items: center; }
.jb-footer__legal span { color: rgba(244, 238, 227, 0.3); }
.jb-footer__copy { margin-left: auto; }
.jb-lang--footer { margin-top: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 900px) {
	.jb-hero__grid { grid-template-columns: 1.02fr 0.98fr; }
	.jb-mosaic { grid-template-columns: 0.82fr 1.18fr; }
	.jb-media--figure { aspect-ratio: auto; height: 100%; min-height: 30rem; }
	.jb-mosaic__cards { grid-template-columns: 1fr 1fr; }
	.jb-mcard--wide { grid-column: 1 / -1; }
	.jb-cards { grid-template-columns: repeat(4, 1fr); }

	.jb-quote__grid { grid-template-columns: 1.12fr 0.88fr; }
	.jb-quote__media { order: 2; justify-self: end; }
	.jb-quote__text { order: 1; }

	.jb-prozess__grid { grid-template-columns: 0.82fr 1.18fr; align-items: stretch; }
	.jb-prozess__media { position: relative; height: 100%; }
	.jb-prozess__media .jb-media {
		position: sticky;
		top: calc(var(--header-h) + 2rem);
		aspect-ratio: auto;
		height: min(74vh, 37rem);
	}
	/* more air between the stops so the pinned image has something to hold against */
	.jb-step { padding-bottom: clamp(3rem, 6vw, 5rem); }
	.jb-step:last-child { padding-bottom: 0; }

	.jb-talk__grid { grid-template-columns: 0.78fr 1.22fr; }
	.jb-media--portrait { aspect-ratio: auto; height: 100%; }

	.jb-sound__panel { grid-template-columns: 1.08fr 0.92fr; }
	.jb-stage__grid { grid-template-columns: 1.15fr 0.85fr; }
	.jb-contact__shell { grid-template-columns: 0.92fr 1.08fr; }
	.jb-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
}

@media (max-width: 899px) {
	:root { --header-h: 4.25rem; --header-h-sm: 3.25rem; }
	.jb-nav { display: none; }
	/* compact switcher stays in the bar, beside the wordmark */
	.jb-lang--header { display: inline-flex; margin-left: auto; }
	.jb-lang--header .jb-lang__cur { display: none; }
	.jb-lang--header .jb-lang__short { display: inline-block; }
	.jb-lang--header .jb-lang__btn { padding: 0.5rem 0.7rem; gap: 0.4rem; }
	.jb-lang--header .jb-lang__menu { right: 0; left: auto; min-width: 12rem; }
	.jb-wordmark { margin-right: 0; }
	.jb-header__inner { gap: 0.75rem; }
	.jb-burger { display: block; }
	.jb-hero__media picture, .jb-hero__media img { object-position: 60% center; }
	.jb-hero__scrim { background: linear-gradient(180deg, rgba(18,15,12,0.68) 0%, rgba(18,15,12,0.5) 40%, rgba(18,15,12,0.62) 100%); }
	.jb-hero__lines { max-width: 100%; }
	.jb-hero__tagline { max-width: 24ch; }
	.jb-musik__media .jb-media { min-height: 18rem; aspect-ratio: 4 / 3; }
	.jb-quote__media .jb-media { max-width: 24rem; }
	.jb-quote__media { justify-self: center; }
	.jb-sleeve { max-width: 20rem; }
	.jb-sleeve__plate { left: 0; bottom: -1rem; }
	.jb-player { flex-direction: column; align-items: flex-start; }
	.jb-deck__stage { min-height: 23rem; }
}

@media (max-width: 620px) {
	.jb-vtile { width: clamp(3.6rem, 15vw, 5rem); }
	.jb-vtile--a, .jb-vtile--f { display: none; }
	.jb-vhero__mosaic { gap: 0.45rem; }
}

@media (max-width: 560px) {
	.jb-acc__btn { grid-template-columns: 1.9rem 1fr auto; gap: 0.65rem; }
	.jb-acc__a { padding-left: 1.15rem; }
	.jb-hero__memory { display: none; }
	.jb-vcard__chip { display: none; }
	.jb-deck__stage { min-height: 26rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.jb-header, .jb-header__inner, .jb-logo--header { transition: none !important; }

	html.js .reveal, html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: opacity 0.2s linear; }
	html.js .line__in { transform: none !important; opacity: 1 !important; transition: opacity 0.2s linear; }
	html.js .reveal-media .jb-media { clip-path: none !important; }
	html.js .reveal-media .jb-media img { transform: none !important; }
	.jb-curtain { display: none !important; }
	.jb-scrollcue__line { animation: none; transform: scaleX(1); opacity: 0.7; }
	.jb-hero__media img, .jb-sound__bg img { transform: none; }
	* { scroll-behavior: auto !important; }
}

.jb-divider { background: var(--pivot); }
.jb-divider__line { display: block; height: 1px; background: rgba(244, 238, 227, 0.14); }

/* ==========================================================================
   STANDALONE PAGES (Impressum, Datenschutz …)
   ========================================================================== */
.jb-page { background: var(--paper); padding-top: calc(var(--header-h) + clamp(3rem, 8vh, 6rem)); }
.jb-page__wrap { max-width: 52rem; }
.jb-page__head { margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: flex-start; }
.jb-page__title { margin-top: 0.4rem; }
.jb-page__body { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.jb-page__body h2 {
	font-family: var(--font-display); font-optical-sizing: auto; font-weight: 450;
	font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem); color: var(--ink);
	margin: 2.25rem 0 0.75rem; letter-spacing: -0.015em;
}
.jb-page__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink); margin: 1.75rem 0 0.5rem; }
.jb-page__body p { margin-bottom: 1.1rem; }
.jb-page__body ul, .jb-page__body ol { margin: 0 0 1.1rem 1.25rem; }
.jb-page__body li { margin-bottom: 0.4rem; }
.jb-page__body a { color: var(--rose); text-decoration: underline; text-underline-offset: 0.2em; }
.jb-page__back { margin-top: clamp(2.5rem, 5vw, 4rem); }
