:root {
	--jd-ink: #10140f;
	--jd-forest: #071508;
	--jd-cream: #f8f2e7;
	--jd-paper: #fffaf1;
	--jd-gold: #c8a15c;
	--jd-wine: #6f1730;
	--jd-muted: rgba(16, 20, 15, .64);
	--jd-line: rgba(16, 20, 15, .13);
	--jd-shadow: 0 28px 90px rgba(16, 20, 15, .16);
}

html {
	scroll-behavior: smooth;
}

body.jd-body {
	margin: 0;
	background: var(--jd-forest);
	color: var(--jd-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

.jd-body * {
	box-sizing: border-box;
}

.jd-body img {
	display: block;
	max-width: 100%;
}

.jd-body a {
	color: inherit;
	text-decoration: none;
}

.jd-loader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	background: var(--jd-forest);
	color: var(--jd-gold);
	transition: opacity .75s cubic-bezier(.16, 1, .3, 1), visibility .75s;
}

.jd-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.jd-loader div {
	display: grid;
	place-items: center;
	gap: 18px;
}

.jd-loader img {
	width: 118px;
	border-radius: 50%;
	background: #fff;
	animation: jd-loader-pop 1s cubic-bezier(.16, 1, .3, 1) both;
}

.jd-loader span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 7vw, 7rem);
	letter-spacing: .16em;
	text-transform: uppercase;
}

.jd-progress {
	position: fixed;
	inset: 0 auto auto 0;
	width: var(--jd-scroll, 0%);
	height: 4px;
	z-index: 9999;
	background: linear-gradient(90deg, var(--jd-gold), var(--jd-wine), var(--jd-forest));
}

.jd-nav {
	position: fixed;
	z-index: 9000;
	top: 0;
	left: 0;
	transform: none;
	width: 92px;
	height: 100vh;
	display: grid;
	align-items: center;
	justify-items: center;
	grid-template-rows: 118px 1fr 150px;
	gap: 0;
	padding: 18px 12px;
	border: 0;
	border-right: 1px solid rgba(255, 250, 241, .13);
	border-radius: 0;
	background: rgba(7, 21, 8, .88);
	backdrop-filter: blur(24px);
	box-shadow: none;
}

.jd-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: .62rem;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--jd-paper);
}

.jd-brand img {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	object-fit: cover;
}

.jd-brand span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.jd-links {
	display: grid;
	gap: 18px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.jd-links a {
	border-radius: 0;
	padding: 0;
	color: rgba(255, 250, 241, .7);
	font-size: .84rem;
	font-weight: 850;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	transition: background .25s, color .25s, transform .25s;
}

.jd-links a:hover {
	background: transparent;
	color: var(--jd-paper);
	transform: rotate(180deg) translateY(-2px);
}

.jd-nav-cta,
.jd-btn,
.jd-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid var(--jd-line);
	border-radius: 999px;
	background: #fff;
	color: var(--jd-ink);
	box-shadow: 0 10px 32px rgba(16, 20, 15, .08);
	font-weight: 900;
	padding: .92rem 1.12rem;
	transition: transform .25s, box-shadow .25s, background .25s;
}

.jd-nav-cta {
	width: 58px;
	min-height: 126px;
	padding: .8rem .55rem;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	border-radius: 999px;
}

.jd-btn-dark,
.jd-nav-cta,
.jd-submit {
	border-color: var(--jd-gold);
	background: var(--jd-gold);
	color: var(--jd-forest) !important;
}

.jd-nav-cta:hover,
.jd-btn:hover,
.jd-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 48px rgba(16, 20, 15, .16);
}

.jd-menu {
	display: none;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--jd-gold);
}

.jd-menu span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 5px auto;
	background: var(--jd-forest);
}

.jd-site {
	position: relative;
	background:
		radial-gradient(circle at 76% 10%, rgba(200, 161, 92, .22), transparent 28rem),
		radial-gradient(circle at 8% 42%, rgba(111, 23, 48, .22), transparent 28rem),
		linear-gradient(180deg, #071508 0%, #10140f 42%, #f5ecdd 43%, #fffaf1 100%);
}

.jd-hero {
	width: 100%;
	min-height: 100svh;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	padding: clamp(8rem, 14vw, 12rem) clamp(1.2rem, 5vw, 5rem) 5rem clamp(116px, 12vw, 180px);
	background: #071508;
}

.jd-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(7, 21, 8, .98) 0%, rgba(7, 21, 8, .74) 42%, rgba(7, 21, 8, .2) 100%),
		linear-gradient(0deg, rgba(7, 21, 8, .96) 0%, rgba(7, 21, 8, 0) 34%);
	pointer-events: none;
}

.jd-hero:after {
	content: "JOHANNES DEISS";
	position: absolute;
	left: clamp(116px, 12vw, 180px);
	right: 5vw;
	bottom: 4vh;
	z-index: 1;
	color: rgba(255, 250, 241, .05);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(4rem, 12vw, 13rem);
	line-height: .8;
	letter-spacing: .08em;
	white-space: nowrap;
	pointer-events: none;
}

.jd-hero-copy {
	position: relative;
	z-index: 3;
	max-width: 860px;
}

.jd-kicker {
	margin: 0 0 1.2rem;
	color: var(--jd-gold);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.jd-hero h1,
.jd-section-title h2,
.jd-dish-copy h2,
.jd-book-copy h2,
.jd-contact-copy h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -.055em;
}

.jd-hero h1 {
	margin: 0;
	color: var(--jd-paper);
	font-size: clamp(3.7rem, 8.4vw, 8.6rem);
	line-height: .82;
	max-width: 980px;
}

.jd-hero h1 span {
	display: block;
	overflow: hidden;
	transform: translateY(36px);
	opacity: 0;
	animation: jd-title .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.jd-hero h1 span:nth-child(2) {
	animation-delay: .1s;
}

.jd-hero h1 span:nth-child(3) {
	animation-delay: .2s;
	color: var(--jd-gold);
}

.jd-lead {
	max-width: 710px;
	margin: 1.8rem 0 0;
	color: rgba(255, 250, 241, .74);
	font-size: clamp(1.08rem, 1.6vw, 1.35rem);
	line-height: 1.7;
}

.jd-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 2rem;
}

.jd-proofline {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	margin-top: 1.4rem;
}

.jd-proofline span {
	border: 1px solid rgba(255, 250, 241, .16);
	border-radius: 999px;
	background: rgba(255, 250, 241, .08);
	padding: .68rem .82rem;
	color: rgba(255, 250, 241, .72);
	font-size: .82rem;
	font-weight: 900;
}

.jd-hero-media {
	position: absolute;
	inset: 0;
	min-height: 0;
	border-radius: 0;
	transform: none;
	filter: saturate(.96) contrast(1.03);
	z-index: 0;
}

.jd-hero-media > img:not(.jd-hero-dish):not(.jd-hero-mark) {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: 68% center;
	border-radius: 0;
	box-shadow: none;
}

.jd-hero-media:after {
	display: none;
}

.jd-hero-dish {
	position: absolute;
	left: auto;
	right: clamp(1.2rem, 5vw, 5rem);
	top: 22vh;
	width: min(240px, 20vw);
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border: 9px solid rgba(255, 250, 241, .92);
	border-radius: 50%;
	box-shadow: 0 24px 90px rgba(0, 0, 0, .38);
	transform: rotate(8deg);
	z-index: 4;
}

.jd-hero-mark {
	position: absolute;
	right: clamp(1.4rem, 4vw, 4rem);
	top: 40px;
	width: 112px;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border: 8px solid var(--jd-paper);
	border-radius: 50%;
	box-shadow: 0 20px 70px rgba(0, 0, 0, .34);
	z-index: 4;
}

.jd-signature {
	position: absolute;
	right: clamp(1rem, 5vw, 5rem);
	bottom: 48px;
	max-width: 330px;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 250, 241, .38);
	border-radius: 24px;
	background: rgba(7, 21, 8, .82);
	backdrop-filter: blur(18px);
	box-shadow: 0 24px 90px rgba(0, 0, 0, .36);
	color: var(--jd-paper);
	z-index: 4;
}

.jd-signature b,
.jd-signature span {
	display: block;
}

.jd-signature span {
	margin-top: .3rem;
	color: rgba(255, 250, 241, .68);
	line-height: 1.48;
}

.jd-marquee {
	overflow: hidden;
	border-block: 1px solid var(--jd-line);
	background: var(--jd-forest);
	color: transparent;
	transform: rotate(-1deg) scale(1.02);
}

.jd-marquee div {
	display: flex;
	width: max-content;
	gap: 2rem;
	padding: 1.1rem 0;
	animation: jd-marquee 28s linear infinite;
}

.jd-marquee span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.6rem, 6.8vw, 8rem);
	line-height: .9;
	-webkit-text-stroke: 1px rgba(200, 161, 92, .72);
}

.jd-section {
	width: min(1180px, calc(100% - 34px));
	margin: 0 auto;
	padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.jd-section-title {
	max-width: 920px;
}

.jd-section-title h2,
.jd-dish-copy h2,
.jd-book-copy h2,
.jd-contact-copy h2 {
	margin: 0;
	font-size: clamp(3.1rem, 7.4vw, 7.8rem);
	line-height: .88;
}

.jd-story,
.jd-services {
	color: var(--jd-paper);
}

.jd-story .jd-section-title h2,
.jd-services .jd-section-title h2 {
	color: var(--jd-paper);
}

.jd-story-grid,
.jd-book,
.jd-contact {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: clamp(1rem, 4vw, 4rem);
	align-items: stretch;
	margin-top: 3rem;
}

.jd-story-card,
.jd-quote,
.jd-service,
.jd-dish-copy,
.jd-book-copy,
.jd-form,
.jd-steps > div {
	border: 1px solid var(--jd-line);
	border-radius: 30px;
	background: rgba(255, 250, 241, .78);
	box-shadow: 0 18px 70px rgba(16, 20, 15, .09);
	overflow: hidden;
}

.jd-story-card,
.jd-service {
	border-color: rgba(255, 250, 241, .13);
	background: rgba(255, 250, 241, .08);
	color: var(--jd-paper);
	box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
}

.jd-story-card img,
.jd-quote img,
.jd-book-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jd-story-card div {
	padding: 1.4rem;
}

.jd-story-card p,
.jd-dish-copy p,
.jd-book-copy p,
.jd-contact-copy p {
	color: var(--jd-muted);
	font-size: 1.05rem;
	line-height: 1.74;
}

.jd-story-card p,
.jd-service p {
	color: rgba(255, 250, 241, .7);
}

.jd-quote {
	position: relative;
	min-height: 520px;
	background: var(--jd-forest);
}

.jd-quote img {
	opacity: .74;
}

.jd-quote blockquote {
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: 8%;
	margin: 0;
	color: #fffaf1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4.2vw, 4.3rem);
	line-height: 1.05;
	text-shadow: 0 12px 42px rgba(0, 0, 0, .45);
}

.jd-service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 250, 241, .16);
}

.jd-service {
	min-height: 0;
	padding: 2rem 0;
	position: relative;
	display: grid;
	grid-template-columns: 120px minmax(240px, .5fr) minmax(0, 1fr);
	gap: clamp(1rem, 4vw, 4rem);
	align-items: baseline;
	border: 0;
	border-bottom: 1px solid rgba(255, 250, 241, .16);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transition: transform .3s, background .3s;
}

.jd-service:hover {
	transform: translateX(10px);
	background: transparent;
}

.jd-service span {
	color: var(--jd-gold);
	font-weight: 950;
	letter-spacing: .18em;
}

.jd-service h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 5vw, 5.8rem);
	line-height: .92;
	font-weight: 500;
	letter-spacing: -.05em;
}

.jd-service h3 {
	color: var(--jd-paper);
}

.jd-service p {
	color: rgba(255, 250, 241, .7);
	line-height: 1.72;
	margin: 0;
}

.jd-menu-wall {
	display: grid;
	grid-template-columns: .78fr 1.04fr .78fr;
	gap: 1rem;
	align-items: center;
}

.jd-dish img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 34px;
	box-shadow: var(--jd-shadow);
}

.jd-dish:nth-child(1) {
	transform: rotate(-2deg);
}

.jd-dish:nth-child(3) {
	transform: rotate(2deg);
}

.jd-dish-copy {
	padding: clamp(1.5rem, 4vw, 3rem);
}

.jd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: 1.5rem;
}

.jd-tags span {
	border: 1px solid var(--jd-line);
	border-radius: 999px;
	background: #fff;
	padding: .68rem .86rem;
	font-weight: 850;
}

.jd-book-media {
	min-height: 560px;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--jd-shadow);
}

.jd-book-copy {
	padding: clamp(1.5rem, 4vw, 3rem);
	align-self: center;
}

.jd-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 3rem;
}

.jd-process,
.jd-process .jd-section-title h2 {
	color: var(--jd-ink);
}

.jd-steps > div {
	min-height: 260px;
	padding: 1.25rem;
}

.jd-steps b,
.jd-steps span {
	display: block;
}

.jd-steps b {
	color: var(--jd-gold);
	letter-spacing: .18em;
}

.jd-steps span {
	margin-top: 3rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	line-height: 1;
}

.jd-steps p {
	color: var(--jd-muted);
	line-height: 1.58;
}

.jd-contact {
	align-items: start;
}

.jd-contact-copy {
	position: sticky;
	top: 120px;
}

.jd-form {
	padding: clamp(1rem, 3vw, 1.6rem);
	display: grid;
	gap: 1rem;
}

.jd-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.jd-form label {
	display: grid;
	gap: .45rem;
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.jd-form input,
.jd-form textarea,
.jd-form select {
	width: 100%;
	border: 1px solid rgba(16, 20, 15, .16);
	border-radius: 18px;
	background: rgba(255, 255, 255, .76);
	color: var(--jd-ink);
	font: inherit;
	font-weight: 650;
	letter-spacing: 0;
	padding: 1rem;
	outline: none;
	transition: border .2s, box-shadow .2s, background .2s;
}

.jd-form input:focus,
.jd-form textarea:focus,
.jd-form select:focus {
	border-color: var(--jd-gold);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(200, 161, 92, .16);
}

.jd-consent {
	display: flex !important;
	grid-template-columns: auto 1fr;
	align-items: flex-start;
	gap: .65rem !important;
	color: var(--jd-muted);
	font-size: .82rem !important;
	font-weight: 750 !important;
	line-height: 1.5;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.jd-consent input {
	width: 18px;
	margin-top: 3px;
}

.jd-hide {
	position: absolute;
	left: -9999px;
}

.jd-notice {
	border-radius: 18px;
	padding: .95rem 1rem;
	font-weight: 850;
}

.jd-notice.good {
	background: rgba(29, 118, 82, .12);
	color: #185f42;
}

.jd-notice.bad {
	background: rgba(111, 23, 48, .12);
	color: var(--jd-wine);
}

.jd-submit {
	width: 100%;
	cursor: pointer;
	font-size: 1rem;
}

.jd-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem max(18px, calc((100% - 1180px) / 2));
	background: var(--jd-forest);
	color: #fffaf1;
}

.jd-footer b,
.jd-footer span {
	display: block;
}

.jd-footer span,
.jd-footer a {
	color: rgba(255, 250, 241, .66);
}

.reveal {
	opacity: 0;
	transform: translateY(44px);
	transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

@keyframes jd-loader-pop {
	from {
		opacity: 0;
		transform: scale(.76) rotate(-9deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

@keyframes jd-title {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes jd-marquee {
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 980px) {
	.jd-nav {
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 20px);
		height: 66px;
		display: flex;
		justify-content: space-between;
		padding: 8px 10px 8px 12px;
		border: 1px solid rgba(255, 250, 241, .13);
		border-radius: 999px;
	}

	.jd-brand {
		flex-direction: row;
	}

	.jd-brand span {
		writing-mode: horizontal-tb;
		transform: none;
	}

	.jd-links,
	.jd-nav-cta {
		display: none;
	}

	.jd-menu {
		display: block;
	}

	.jd-nav.is-open .jd-links {
		position: absolute;
		top: 78px;
		left: 10px;
		right: 10px;
		display: flex;
		flex-direction: column;
		padding: .8rem;
		border-radius: 24px;
		background: rgba(255, 250, 241, .96);
		box-shadow: var(--jd-shadow);
	}

	.jd-nav.is-open .jd-links a {
		color: var(--jd-ink);
		writing-mode: horizontal-tb;
		transform: none;
		padding: .8rem;
	}

	.jd-hero,
	.jd-story-grid,
	.jd-book,
	.jd-contact,
	.jd-menu-wall {
		grid-template-columns: 1fr;
	}

	.jd-hero {
		padding: 110px 22px 44px;
		min-height: 100svh;
	}

	.jd-hero-media {
		min-height: auto;
		transform: none;
	}

	.jd-hero-media > img {
		min-height: 100%;
	}

	.jd-signature {
		right: 16px;
	}

	.jd-hero-mark {
		right: 14px;
		top: 14px;
	}

	.jd-hero-dish {
		left: auto;
		right: 18px;
		top: 118px;
	}

	.jd-service-grid,
	.jd-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.jd-service {
		grid-template-columns: 70px 1fr;
	}

	.jd-service p {
		grid-column: 2;
	}

	.jd-contact-copy {
		position: relative;
		top: auto;
	}
}

@media (max-width: 640px) {
	.jd-nav {
		top: 10px;
		width: calc(100% - 18px);
		height: 66px;
	}

	.jd-brand span {
		max-width: 150px;
		font-size: .75rem;
	}

	.jd-brand img {
		width: 44px;
		height: 44px;
	}

	.jd-hero {
		width: 100%;
		padding-top: 110px;
	}

	.jd-hero h1 {
		font-size: 4.25rem;
	}

	.jd-section {
		width: calc(100% - 22px);
	}

	.jd-section-title h2,
	.jd-dish-copy h2,
	.jd-book-copy h2,
	.jd-contact-copy h2 {
		font-size: 3.1rem;
	}

	.jd-hero-media > img {
		min-height: 100%;
		border-radius: 0;
	}

	.jd-signature {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.jd-hero-dish {
		width: 118px;
		border-width: 5px;
	}

	.jd-hero-mark {
		width: 92px;
		border-width: 5px;
	}

	.jd-service-grid,
	.jd-steps,
	.jd-form-row {
		grid-template-columns: 1fr;
	}

	.jd-service {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.jd-service p {
		grid-column: auto;
	}

	.jd-quote {
		min-height: 420px;
	}

	.jd-book-media {
		min-height: 420px;
	}

	.jd-footer {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}

	.reveal,
	.jd-hero h1 span {
		opacity: 1;
		transform: none;
	}
}
