body.home,
body.page-template-page-no-title,
body.jdc-plugin-document {
	--jdc-content-width: 100%;
	--jdc-inner-width: min(1600px, 100%);
}

body.jdc-plugin-document {
	margin: 0;
	background: #ffffff;
}

body.home .wp-block-post-content,
body.home .entry-content,
body.home .page-content,
body.page-template-page-no-title .wp-block-post-content,
body.page-template-page-no-title .entry-content,
body.page-template-page-no-title .page-content {
	width: var(--jdc-content-width);
	max-width: var(--jdc-content-width) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.jdc-shell {
	--jdc-bg: radial-gradient(circle at top left, #f6efe0 0%, #edf3eb 58%, #e3ece4 100%);
	--jdc-panel: rgba(255, 252, 245, 0.88);
	--jdc-ink: #16261f;
	--jdc-muted: #52645d;
	--jdc-accent: #256f5b;
	--jdc-accent-dark: #184f41;
	--jdc-border: rgba(22, 38, 31, 0.1);
	color: var(--jdc-ink);
	background: var(--jdc-bg);
	border-radius: 36px;
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	padding: 30px;
	box-shadow: 0 28px 80px rgba(22, 38, 32, 0.08);
	overflow: hidden;
}

.jdc-site-header,
.jdc-hero,
.jdc-content,
.jdc-site-footer {
	width: 100%;
	max-width: var(--jdc-inner-width);
	margin-left: auto;
	margin-right: auto;
}

.jdc-site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-site-header__brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: var(--jdc-ink);
	font-size: 1.05rem;
	font-weight: 800;
	text-decoration: none;
}

.jdc-site-header__brand-mark {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	display: block;
	border-radius: 10px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(22, 38, 31, 0.08);
}

.jdc-site-header__brand-text {
	overflow-wrap: anywhere;
	line-height: 1.15;
}

.jdc-site-header__toggle {
	display: none;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 9px 12px;
	border: 1px solid var(--jdc-border);
	border-radius: 999px;
	color: var(--jdc-ink);
	background: rgba(255, 252, 245, 0.72);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.jdc-site-header__toggle-icon {
	display: grid;
	gap: 3px;
	width: 16px;
}

.jdc-site-header__toggle-icon span {
	display: block;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.jdc-site-header__toggle-label--close {
	display: none;
}

body.jdc-menu-lock {
	overflow: hidden;
}

.jdc-site-header__brand:hover,
.jdc-site-header__brand:focus-visible,
.jdc-site-header__toggle:hover,
.jdc-site-header__toggle:focus-visible,
.jdc-site-header__nav a:hover,
.jdc-site-header__nav a:focus-visible,
.jdc-site-footer__nav a:hover,
.jdc-site-footer__nav a:focus-visible {
	color: var(--jdc-accent-dark);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.jdc-site-header__nav,
.jdc-site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.jdc-site-header__nav {
	justify-content: flex-end;
}

.jdc-nav-submenu {
	position: relative;
}

.jdc-nav-submenu__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 10px;
	border: 0;
	border-radius: 999px;
	color: var(--jdc-muted);
	background: transparent;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}

.jdc-nav-submenu.is-current > .jdc-nav-submenu__toggle {
	background: rgba(37, 111, 91, 0.1);
	color: var(--jdc-accent-dark);
}

.jdc-nav-submenu__toggle:hover,
.jdc-nav-submenu__toggle:focus-visible {
	color: var(--jdc-accent-dark);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.jdc-nav-submenu__chevron {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}

.jdc-nav-submenu__panel {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 20;
	display: none;
	flex-direction: column;
	gap: 6px;
	min-width: 230px;
	padding: 16px 8px 8px;
	border: 1px solid var(--jdc-border);
	border-radius: 16px;
	background: rgba(255, 252, 245, 0.96);
	box-shadow: 0 18px 44px rgba(22, 38, 32, 0.14);
}

.jdc-nav-submenu.is-open .jdc-nav-submenu__panel {
	display: flex;
}

.jdc-nav-submenu.is-open .jdc-nav-submenu__chevron {
	transform: translateY(2px) rotate(225deg);
}

@media (min-width: 641px) {
	.jdc-nav-submenu:hover .jdc-nav-submenu__panel,
	.jdc-nav-submenu:focus-within .jdc-nav-submenu__panel {
		display: flex;
	}

	.jdc-nav-submenu:hover .jdc-nav-submenu__chevron,
	.jdc-nav-submenu:focus-within .jdc-nav-submenu__chevron {
		transform: translateY(2px) rotate(225deg);
	}
}

.jdc-site-header__nav a,
.jdc-site-footer__nav a {
	color: var(--jdc-muted);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.jdc-site-header__nav a {
	padding: 8px 10px;
	border-radius: 999px;
}

.jdc-site-header__nav a.is-current {
	background: rgba(37, 111, 91, 0.1);
	color: var(--jdc-accent-dark);
}

.jdc-hero {
	display: grid;
	grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 0.95fr);
	gap: 22px;
	align-items: start;
}

.jdc-eyebrow {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jdc-accent);
}

.jdc-hero h1 {
	margin: 0;
	font-size: clamp(2.4rem, 4.8vw, 5rem);
	line-height: 0.95;
}

.jdc-hero__copy {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 10px 4px 10px 0;
}

.jdc-hero__lede {
	margin: 0;
	color: var(--jdc-muted);
	font-size: 0.96rem;
	line-height: 1.6;
}

.jdc-hero__keywords {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.jdc-keyword,
.jdc-workspace,
.jdc-panel,
.jdc-result-card,
.jdc-result-spotlight {
	background: var(--jdc-panel);
	border: 1px solid var(--jdc-border);
	backdrop-filter: blur(10px);
}

.jdc-keyword {
	display: grid;
	gap: 6px;
	padding-top: 10px;
	border-top: 1px solid rgba(22, 38, 31, 0.1);
	background: transparent;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	backdrop-filter: none;
}

.jdc-keyword h2 {
	margin: 0;
	font-size: 1.04rem;
	font-weight: 700;
	line-height: 1.2;
}

.jdc-keyword p {
	margin: 0;
	color: var(--jdc-muted);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.55;
}

.jdc-workspace {
	padding: 18px;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	background: rgba(255, 252, 245, 0.72);
	border: 1px solid rgba(22, 38, 31, 0.12);
	border-radius: 28px;
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(22, 38, 32, 0.06);
}

.jdc-panel {
	padding: 0;
	background: transparent;
	border: 0;
	backdrop-filter: none;
}

.jdc-panel--form {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-panel--result {
	display: grid;
	gap: 14px;
	min-height: 220px;
	padding-top: 4px;
}

.jdc-result-head {
	display: grid;
	gap: 4px;
}

.jdc-result-kicker {
	margin: 0;
	color: var(--jdc-accent);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.jdc-panel--result h2 {
	margin: 0;
	font-size: 1.45rem;
}

.jdc-result-empty {
	display: grid;
	align-content: center;
	gap: 8px;
	flex: 1;
	min-height: 140px;
}

.jdc-result-empty strong {
	font-size: 1.05rem;
}

.jdc-result-spotlight {
	padding: 0;
	display: grid;
	gap: 6px;
	background: transparent;
	border: 0;
	backdrop-filter: none;
}

.jdc-result-spotlight strong {
	font-size: clamp(1.8rem, 4vw, 3.1rem);
	line-height: 1;
}

.jdc-form {
	display: grid;
	gap: 14px;
}

.jdc-mode-toggle {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 6px;
	border-radius: 20px;
	background: #eef2eb;
}

.jdc-mode-option {
	position: relative;
	display: block;
	cursor: pointer;
}

.jdc-mode-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.jdc-mode-option span {
	display: block;
	padding: 13px 16px;
	border-radius: 14px;
	border: 1px solid transparent;
	background: transparent;
	font-size: 0.96rem;
	font-weight: 700;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jdc-mode-option.is-active span,
.jdc-mode-option input:checked + span {
	background: linear-gradient(135deg, var(--jdc-accent) 0%, #2a7d66 100%);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.16);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(37, 111, 91, 0.18);
}

.jdc-field-group {
	display: grid;
	gap: 6px;
}

.jdc-field-group.is-hidden {
	display: none;
}

.jdc-field-group label {
	font-size: 0.92rem;
	font-weight: 700;
}

.jdc-field-group input {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 13px 14px;
	border: 1px solid var(--jdc-border);
	border-radius: 16px;
	background: #ffffff;
	font: inherit;
	color: inherit;
}

.jdc-field-group input:focus {
	outline: 2px solid rgba(37, 111, 91, 0.18);
	outline-offset: 2px;
	border-color: var(--jdc-accent);
}

.jdc-help,
.jdc-placeholder,
.jdc-footnote,
.jdc-result-card span {
	margin: 0;
	color: var(--jdc-muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.jdc-alert {
	padding: 12px 14px;
	border-radius: 16px;
	font-size: 0.9rem;
	font-weight: 600;
}

.jdc-alert--error {
	background: #fff0ec;
	color: #9b3d22;
	border: 1px solid rgba(155, 61, 34, 0.16);
}

.jdc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--jdc-accent-dark) 0%, var(--jdc-accent) 100%);
	color: #ffffff;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 16px 28px rgba(24, 79, 65, 0.18);
}

.jdc-button:hover,
.jdc-button:focus-visible {
	background: linear-gradient(135deg, var(--jdc-accent) 0%, #2e856d 100%);
}

.jdc-result-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.jdc-result-card {
	padding: 12px 0 0;
	display: grid;
	flex-direction: column;
	gap: 6px;
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(22, 38, 31, 0.1);
	backdrop-filter: none;
}

.jdc-result-card strong {
	font-size: clamp(1.15rem, 2.6vw, 1.7rem);
	line-height: 1.1;
}

.jdc-result-label {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jdc-accent);
}

.jdc-content {
	display: grid;
	gap: 0;
	max-width: min(1080px, 100%);
	margin-top: 36px;
}

.jdc-content-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 18px;
	padding: 34px 0;
	border-top: 1px solid rgba(22, 38, 31, 0.12);
}

.jdc-content-section__intro {
	display: grid;
	align-content: start;
	gap: 12px;
}

.jdc-content-label {
	margin: 0;
	color: var(--jdc-accent);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.jdc-content-section h2,
.jdc-content-section h3,
.jdc-content-section p {
	margin: 0;
}

.jdc-content-section h2 {
	font-size: clamp(1.55rem, 2.4vw, 2.25rem);
	line-height: 1.12;
}

.jdc-content-section p {
	color: var(--jdc-muted);
	font-size: 1rem;
	line-height: 1.78;
}

.jdc-content-items {
	display: grid;
	gap: 0;
	align-content: start;
	border-top: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-content-section--faq .jdc-content-items {
	grid-template-columns: minmax(0, 1fr);
}

.jdc-content-item {
	position: relative;
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
	box-sizing: border-box;
}

.jdc-content-item--steps {
	grid-template-columns: 42px minmax(0, 1fr);
	column-gap: 14px;
}

.jdc-content-item--steps h3,
.jdc-content-item--steps p {
	grid-column: 2;
}

.jdc-content-item h3 {
	font-size: 1.08rem;
	line-height: 1.35;
}

.jdc-content-item strong {
	color: var(--jdc-accent-dark);
	font-size: 1.04rem;
	line-height: 1.35;
}

.jdc-content-item a {
	color: var(--jdc-accent-dark);
	font-size: 0.96rem;
	font-weight: 800;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.jdc-content-item a:hover,
.jdc-content-item a:focus-visible {
	color: var(--jdc-accent);
}

.jdc-content-item__count {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(37, 111, 91, 0.1);
	color: var(--jdc-accent-dark);
	font-size: 0.85rem;
	font-weight: 800;
	grid-row: 1 / span 2;
}

.jdc-site-footer {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-site-footer__nav {
	justify-content: center;
}

.jdc-site-footer__nav a {
	padding: 6px 8px;
}

.jdc-policy-page,
.jdc-blog-index,
.jdc-blog-article {
	display: grid;
	gap: 18px;
	width: 100%;
	max-width: min(920px, 100%);
	margin: 34px auto 0;
	padding: 10px 0 18px;
}

.jdc-policy-page h1,
.jdc-policy-page h2,
.jdc-policy-page p,
.jdc-blog-index h1,
.jdc-blog-index h2,
.jdc-blog-index p,
.jdc-blog-article h1,
.jdc-blog-article h2,
.jdc-blog-article p {
	margin: 0;
}

.jdc-policy-page h1,
.jdc-blog-index h1,
.jdc-blog-article h1 {
	font-size: clamp(2.25rem, 4.8vw, 4.6rem);
	line-height: 0.98;
}

.jdc-policy-page__lede,
.jdc-blog-hero__lede,
.jdc-blog-article__header > p {
	color: var(--jdc-muted);
	font-size: 1.05rem;
	line-height: 1.72;
}

.jdc-policy-page__sections {
	display: grid;
	gap: 0;
	margin-top: 10px;
	border-top: 1px solid rgba(22, 38, 31, 0.12);
}

.jdc-policy-section {
	display: grid;
	gap: 12px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-policy-section h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.95rem);
	line-height: 1.18;
}

.jdc-policy-section p {
	color: var(--jdc-muted);
	font-size: 1rem;
	line-height: 1.78;
}

.jdc-blog-hero,
.jdc-blog-article__header {
	display: grid;
	gap: 14px;
}

.jdc-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 16px;
}

.jdc-blog-card {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 20px 0;
	border-top: 1px solid rgba(22, 38, 31, 0.12);
}

.jdc-blog-card__meta,
.jdc-blog-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: var(--jdc-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jdc-blog-card h2 {
	font-size: clamp(1.28rem, 2vw, 1.8rem);
	line-height: 1.16;
}

.jdc-blog-card h2 a,
.jdc-blog-card__link,
.jdc-blog-back {
	color: var(--jdc-accent-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.jdc-blog-card h2 a {
	text-decoration: none;
}

.jdc-blog-card h2 a:hover,
.jdc-blog-card h2 a:focus-visible,
.jdc-blog-card__link:hover,
.jdc-blog-card__link:focus-visible,
.jdc-blog-back:hover,
.jdc-blog-back:focus-visible {
	color: var(--jdc-accent);
	text-decoration: underline;
}

.jdc-blog-card p {
	color: var(--jdc-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.jdc-blog-card__link,
.jdc-blog-back {
	font-size: 0.96rem;
	font-weight: 800;
}

.jdc-blog-back {
	justify-self: start;
}

.jdc-blog-article__body {
	display: grid;
	gap: 0;
	margin-top: 10px;
	border-top: 1px solid rgba(22, 38, 31, 0.12);
}

.jdc-blog-article__section {
	display: grid;
	gap: 12px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-blog-article__section h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.95rem);
	line-height: 1.18;
}

.jdc-blog-article__section p {
	color: var(--jdc-muted);
	font-size: 1rem;
	line-height: 1.82;
}

.jdc-blog-related {
	display: grid;
	gap: 16px;
	padding: 28px 0 4px;
	border-bottom: 1px solid rgba(22, 38, 31, 0.1);
}

.jdc-blog-related h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.95rem);
	line-height: 1.18;
}

.jdc-blog-related__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.jdc-blog-related__link {
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px solid rgba(22, 38, 31, 0.12);
	border-radius: 8px;
	color: var(--jdc-text);
	text-decoration: none;
}

.jdc-blog-related__link:hover,
.jdc-blog-related__link:focus-visible {
	border-color: rgba(16, 121, 89, 0.36);
	color: var(--jdc-accent-dark);
}

.jdc-blog-related__link strong {
	font-size: 0.98rem;
	line-height: 1.35;
}

.jdc-blog-related__link span {
	color: var(--jdc-muted);
	font-size: 0.92rem;
	line-height: 1.58;
}

@media (max-width: 860px) {
	.jdc-shell {
		padding: 22px;
		border-radius: 0;
		box-shadow: none;
	}

	.jdc-site-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.jdc-site-header__nav {
		justify-content: flex-start;
	}

	.jdc-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.jdc-mode-toggle,
	.jdc-result-grid,
	.jdc-hero__keywords,
	.jdc-blog-grid {
		grid-template-columns: 1fr;
	}

	.jdc-shell {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 16px;
	}

	.jdc-blog-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.jdc-blog-index,
	.jdc-blog-article {
		gap: 16px;
		margin-top: 18px;
		padding: 0 0 10px;
	}

	.jdc-blog-index h1,
	.jdc-blog-article h1 {
		font-size: clamp(2rem, 12vw, 3.1rem);
		line-height: 1.03;
		overflow-wrap: anywhere;
	}

	.jdc-blog-hero__lede,
	.jdc-blog-article__header > p {
		font-size: 1rem;
		line-height: 1.62;
	}

	.jdc-blog-article__meta,
	.jdc-blog-card__meta {
		gap: 6px 12px;
		font-size: 0.72rem;
		line-height: 1.35;
	}

	.jdc-blog-back {
		display: inline-flex;
		max-width: 100%;
		font-size: 0.92rem;
		line-height: 1.35;
	}

	.jdc-blog-grid {
		gap: 8px;
		margin-top: 8px;
	}

	.jdc-blog-related__links {
		grid-template-columns: 1fr;
	}

	.jdc-blog-card {
		gap: 10px;
		padding: 18px 0;
	}

	.jdc-blog-card h2 {
		font-size: 1.28rem;
	}

	.jdc-blog-article__body {
		margin-top: 4px;
	}

	.jdc-blog-article__section {
		gap: 10px;
		padding: 22px 0;
	}

	.jdc-blog-article__section h2 {
		font-size: 1.35rem;
		line-height: 1.22;
	}

	.jdc-blog-article__section p {
		font-size: 0.98rem;
		line-height: 1.72;
		overflow-wrap: anywhere;
	}

	.jdc-blog-related {
		gap: 12px;
		padding: 22px 0 2px;
	}

	.jdc-blog-related h2 {
		font-size: 1.35rem;
		line-height: 1.22;
	}

	.jdc-blog-related__link {
		padding: 14px;
	}

	.jdc-site-header {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		margin-bottom: 22px;
	}

	.jdc-site-header__toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.jdc-site-header__nav,
	.jdc-site-footer__nav {
		align-items: stretch;
	}

	.jdc-site-header__nav {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: block;
		box-sizing: border-box;
		width: auto;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		padding: calc(84px + env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: scroll;
		overscroll-behavior: contain;
		background: rgba(246, 239, 224, 0.96);
		backdrop-filter: blur(16px);
		-webkit-overflow-scrolling: touch;
	}

	.jdc-site-header__nav > * + * {
		margin-top: 8px;
	}

	.jdc-nav-submenu {
		width: 100%;
	}

	.jdc-nav-submenu__toggle {
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
		padding: 14px 18px;
		border: 1px solid var(--jdc-border);
		border-radius: 14px;
		background: rgba(255, 252, 245, 0.78);
		box-shadow: 0 12px 32px rgba(22, 38, 32, 0.08);
		font-size: 1rem;
	}

	.jdc-nav-submenu__panel {
		position: static;
		display: none;
		box-sizing: border-box;
		gap: 8px;
		min-width: 0;
		width: 100%;
		margin-top: 8px;
		padding: 0 0 0 14px;
		border: 0;
		border-left: 2px solid rgba(37, 111, 91, 0.24);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.jdc-nav-submenu.is-open .jdc-nav-submenu__panel {
		display: flex;
	}

	.jdc-site-header.is-menu-ready:not(.is-menu-open) .jdc-site-header__nav {
		display: none;
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle {
		position: fixed;
		top: 16px;
		right: 16px;
		z-index: 1001;
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle-icon span:first-child {
		transform: translateY(5px) rotate(45deg);
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle-icon span:nth-child(2) {
		opacity: 0;
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle-icon span:last-child {
		transform: translateY(-5px) rotate(-45deg);
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle-label--open {
		display: none;
	}

	.jdc-site-header.is-menu-open .jdc-site-header__toggle-label--close {
		display: inline;
	}

	.jdc-site-header__nav a,
	.jdc-site-footer__nav a {
		width: 100%;
		box-sizing: border-box;
	}

	.jdc-site-header__nav a {
		display: flex;
		justify-content: center;
		min-width: 0;
		padding: 14px 18px;
		border: 1px solid var(--jdc-border);
		border-radius: 14px;
		background: rgba(255, 252, 245, 0.78);
		box-shadow: 0 12px 32px rgba(22, 38, 32, 0.08);
		font-size: 1rem;
		line-height: 1.35;
		overflow-wrap: anywhere;
		text-align: center;
	}

	.jdc-workspace,
	.jdc-panel {
		padding: 0;
	}

	.jdc-workspace {
		padding: 16px;
	}
}
