/*
Theme Name: Janchevski Law
Theme URI: https://lawyer.com.mk/
Author: Law Office Janchevski
Author URI: https://lawyer.com.mk/
Description: A refined custom WordPress theme for Law Office Janchevski, with home, about, contact, legal blog, and legal services templates.
Version: 2.7.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: janchevski-law
Tags: custom-logo, custom-menu, featured-images, blog, one-column, two-columns, translation-ready
*/

:root {
	--jl-ink: #16201d;
	--jl-green: #123f36;
	--jl-green-2: #1f5b4c;
	--jl-gold: #b8893b;
	--jl-gold-text: #8a6322;
	--jl-gold-2: #d4ad68;
	--jl-wine: #7b2434;
	--jl-paper: #f7f4ee;
	--jl-mist: #eef3f0;
	--jl-white: #ffffff;
	--jl-text: #2d3430;
	--jl-muted: #65716b;
	--jl-line: #dce2dd;
	--jl-shadow: 0 18px 50px rgba(22, 32, 29, 0.14);
	--jl-black: #090b09;
	--jl-charcoal: #111510;
	--jl-panel: #171b16;
	--jl-panel-2: #20251d;
	--jl-heading: #f3eadb;
	--jl-radius: 8px;
	--jl-wrap: min(1180px, calc(100vw - 40px));
	--jl-serif: Georgia, "Times New Roman", serif;
	--jl-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--jl-white);
	color: var(--jl-text);
	font-family: var(--jl-sans);
	font-size: 17px;
	line-height: 1.68;
}

body.menu-open,
body.intake-open {
	overflow: hidden;
	touch-action: none;
}

a {
	color: var(--jl-green);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--jl-wine);
}

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

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

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

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 100000;
	background: var(--jl-gold);
	color: var(--jl-ink);
	border-radius: var(--jl-radius);
}

.jl-container {
	width: var(--jl-wrap);
	margin-inline: auto;
}

.jl-section {
	padding: 88px 0;
}

.jl-section--paper {
	background: var(--jl-paper);
}

.jl-section--mist {
	background: var(--jl-mist);
}

.jl-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--jl-gold-text);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jl-eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}

.jl-section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.56fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 36px;
}

.jl-section-head h1,
.jl-section-head h2,
.jl-page-header h1,
.jl-article-header h1 {
	margin: 0;
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	font-size: clamp(2.2rem, 4.8vw, 4.7rem);
	line-height: 1.03;
	font-weight: 700;
}

.jl-section-head h2 {
	font-size: clamp(2rem, 4vw, 3.55rem);
}

.jl-section-head p,
.jl-page-header p,
.jl-article-header p {
	margin: 0;
	color: var(--jl-muted);
	font-size: 1.04rem;
}

.jl-section-foot {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.jl-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--jl-radius);
	background: var(--jl-gold);
	color: var(--jl-ink);
	font-weight: 800;
	line-height: 1.2;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.jl-button:hover,
.jl-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(184, 137, 59, 0.28);
	background: var(--jl-gold-2);
	color: var(--jl-ink);
}

.jl-button--dark {
	background: var(--jl-green);
	color: var(--jl-white);
}

.jl-button--dark:hover,
.jl-button--dark:focus {
	background: var(--jl-ink);
	color: var(--jl-white);
}

.jl-button--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.06);
	color: var(--jl-white);
}

.jl-button--ghost:hover,
.jl-button--ghost:focus {
	background: var(--jl-white);
	color: var(--jl-ink);
	box-shadow: none;
}

.jl-turnstile {
	margin: 18px 0;
	min-height: 65px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(220, 226, 221, 0.86);
	backdrop-filter: blur(16px);
}

.admin-bar .site-header {
	top: 32px;
}

.jl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 82px;
}

.jl-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 64px;
	color: var(--jl-ink);
	font-weight: 900;
	line-height: 1.08;
}

.custom-logo-link img {
	max-width: 76px;
	max-height: 76px;
	object-fit: contain;
}

.custom-logo-link,
.jl-brand-wrap {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.jl-brand-logo {
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.jl-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--jl-ink);
	color: var(--jl-gold-text);
	font-family: var(--jl-serif);
	font-size: 1.65rem;
	line-height: 1;
}

.jl-brand-name {
	display: block;
	color: var(--jl-ink);
	font-size: 1.02rem;
}

.jl-brand-sub {
	display: block;
	color: var(--jl-muted);
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
}

.jl-primary-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
}

.jl-primary-navigation .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jl-primary-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 11px;
	color: var(--jl-ink);
	border-radius: var(--jl-radius);
	font-size: 0.95rem;
	font-weight: 750;
	white-space: nowrap;
}

.jl-primary-navigation a:hover,
.jl-primary-navigation a:focus,
.jl-primary-navigation .current-menu-item > a {
	background: var(--jl-mist);
	color: var(--jl-green);
}

.jl-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.jl-header-actions .jl-button {
	min-height: 42px;
	padding: 10px 14px;
	font-size: 0.84rem;
	white-space: nowrap;
}

.jl-header-phone {
	color: var(--jl-green);
	font-size: 0.95rem;
	font-weight: 850;
	white-space: nowrap;
}

.jl-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--jl-line);
	border-radius: var(--jl-radius);
	background: var(--jl-white);
	color: var(--jl-ink);
}

.jl-menu-toggle span {
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .jl-menu-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-open .jl-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.menu-open .jl-menu-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.jl-hero {
	position: relative;
	min-height: min(760px, 82vh);
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(18, 63, 54, 0.94), rgba(18, 63, 54, 0.78) 42%, rgba(18, 63, 54, 0.18)),
		url("assets/images/hero-law-office.png") center right / cover no-repeat,
		var(--jl-green);
	color: var(--jl-white);
}

.jl-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 8px;
	background: linear-gradient(90deg, var(--jl-gold), var(--jl-wine), var(--jl-green-2));
}

.jl-hero-content {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	padding: 86px 0 96px;
}

.jl-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--jl-gold-2);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.jl-hero h1 {
	margin: 0;
	font-family: var(--jl-serif);
	font-size: clamp(3.1rem, 8vw, 7.4rem);
	line-height: 0.92;
	color: var(--jl-white);
}

.jl-hero p {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.jl-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.jl-hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.jl-proof-item {
	min-width: 150px;
	padding: 13px 16px;
	border-left: 2px solid var(--jl-gold);
	background: rgba(255, 255, 255, 0.08);
}

.jl-proof-item strong {
	display: block;
	color: var(--jl-white);
	font-family: var(--jl-serif);
	font-size: 1.75rem;
	line-height: 1;
}

.jl-proof-item span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.jl-services-grid,
.jl-post-grid,
.jl-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.jl-service-card,
.jl-post-card,
.jl-testimonial,
.jl-contact-panel,
.jl-sidebar-box {
	border: 1px solid var(--jl-line);
	border-radius: var(--jl-radius);
	background: var(--jl-white);
	box-shadow: 0 12px 36px rgba(22, 32, 29, 0.08);
}

.jl-service-card {
	position: relative;
	display: flex;
	min-height: 300px;
	flex-direction: column;
	padding: 24px;
	overflow: hidden;
}

.jl-service-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: var(--jl-gold);
}

.jl-service-card[data-accent="green"]::before {
	background: var(--jl-green-2);
}

.jl-service-card[data-accent="wine"]::before {
	background: var(--jl-wine);
}

.jl-service-card[data-accent="ink"]::before {
	background: var(--jl-ink);
}

.jl-service-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--jl-mist);
	color: var(--jl-green);
	font-weight: 900;
}

.jl-service-card h3 {
	margin: 0;
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	font-size: 1.48rem;
	line-height: 1.12;
}

.jl-service-card p {
	margin: 14px 0 22px;
	color: var(--jl-muted);
	font-size: 0.96rem;
}

.jl-card-link {
	margin-top: auto;
	color: var(--jl-green);
	font-weight: 900;
}

.jl-about-band {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.55fr);
	gap: 42px;
	align-items: center;
}

.jl-about-copy h2 {
	margin: 0;
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	font-size: clamp(2.1rem, 4vw, 3.7rem);
	line-height: 1.04;
}

.jl-about-copy p {
	color: var(--jl-muted);
}

.jl-about-note {
	padding: 26px;
	border-radius: var(--jl-radius);
	background: var(--jl-green);
	color: var(--jl-white);
	box-shadow: var(--jl-shadow);
}

.jl-about-note h3 {
	margin: 0 0 14px;
	color: var(--jl-gold-2);
	font-family: var(--jl-serif);
	font-size: 1.85rem;
	line-height: 1.1;
}

.jl-about-note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.83);
}

.jl-values {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.jl-value {
	padding: 20px;
	border: 1px solid rgba(220, 226, 221, 0.9);
	border-radius: var(--jl-radius);
	background: var(--jl-white);
}

.jl-value strong {
	display: block;
	color: var(--jl-ink);
	font-size: 1rem;
}

.jl-value span {
	display: block;
	margin-top: 6px;
	color: var(--jl-muted);
	font-size: 0.94rem;
}

.jl-post-card {
	overflow: hidden;
}

.jl-post-thumb {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--jl-green), var(--jl-gold));
}

.jl-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jl-post-card-content {
	padding: 22px;
}

.jl-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
	color: var(--jl-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.jl-post-card h3,
.jl-post-card h2 {
	margin: 0;
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	font-size: 1.35rem;
	line-height: 1.14;
}

.jl-post-card p {
	margin: 13px 0 18px;
	color: var(--jl-muted);
	font-size: 0.95rem;
}

.jl-testimonial {
	padding: 24px;
	background: var(--jl-white);
}

.jl-testimonial blockquote {
	margin: 0;
}

.jl-testimonial p {
	margin: 0;
	color: var(--jl-text);
}

.jl-testimonial cite {
	display: block;
	margin-top: 18px;
	color: var(--jl-green);
	font-style: normal;
	font-weight: 900;
}

.jl-page-header {
	padding: 82px 0 54px;
	background: var(--jl-paper);
}

.jl-page-header .jl-container {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
	gap: 42px;
	align-items: end;
}

.jl-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 42px;
	align-items: start;
	padding: 70px 0;
}

.jl-content {
	color: var(--jl-text);
}

.jl-content > *:first-child {
	margin-top: 0;
}

.jl-content h2,
.jl-content h3,
.jl-content h4 {
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	line-height: 1.12;
}

.jl-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.jl-content h3 {
	font-size: 1.55rem;
}

.jl-content a {
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.jl-sidebar-box {
	padding: 24px;
	position: sticky;
	top: 112px;
}

.jl-sidebar-box h2,
.jl-sidebar-box h3 {
	margin: 0 0 14px;
	color: var(--jl-ink);
	font-family: var(--jl-serif);
	line-height: 1.1;
}

.jl-sidebar-list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jl-sidebar-list li {
	padding-bottom: 13px;
	border-bottom: 1px solid var(--jl-line);
}

.jl-sidebar-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.jl-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.6fr);
	gap: 22px;
	align-items: start;
}

.jl-contact-panel {
	padding: 28px;
}

.jl-contact-list {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jl-contact-list strong {
	display: block;
	color: var(--jl-ink);
	font-size: 0.84rem;
	text-transform: uppercase;
}

.jl-contact-list span,
.jl-contact-list a {
	display: block;
	margin-top: 3px;
	color: var(--jl-muted);
}

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

.jl-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jl-field {
	display: grid;
	gap: 7px;
}

.jl-field label {
	color: var(--jl-ink);
	font-size: 0.84rem;
	font-weight: 850;
	text-transform: uppercase;
}

.jl-field input,
.jl-field select,
.jl-field textarea,
.search-field {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--jl-line);
	border-radius: var(--jl-radius);
	background: var(--jl-white);
	color: var(--jl-text);
	padding: 12px 13px;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jl-field textarea {
	min-height: 138px;
	resize: vertical;
}

.jl-field input:focus,
.jl-field select:focus,
.jl-field textarea:focus,
.search-field:focus {
	border-color: var(--jl-gold);
	box-shadow: 0 0 0 3px rgba(184, 137, 59, 0.16);
}

.jl-form-note {
	margin: 0;
	color: var(--jl-muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

.jl-honeypot {
	display: none;
}

.jl-alert {
	padding: 13px 15px;
	border-radius: var(--jl-radius);
	font-weight: 800;
}

.jl-alert--success {
	background: #e6f4ea;
	color: #155a2d;
}

.jl-alert--error {
	background: #fae8e8;
	color: #8a1f1f;
}

.site-footer {
	background: var(--jl-ink);
	color: rgba(255, 255, 255, 0.82);
}

.jl-footer-main {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(220px, 0.42fr) minmax(260px, 0.42fr);
	gap: 42px;
	padding: 64px 0;
}

.jl-footer-brand h2 {
	margin: 0;
	color: var(--jl-white);
	font-family: var(--jl-serif);
	font-size: 2.15rem;
	line-height: 1.05;
}

.jl-footer-brand p {
	max-width: 540px;
	color: rgba(255, 255, 255, 0.72);
}

.jl-footer-main h3 {
	margin: 0 0 14px;
	color: var(--jl-gold-2);
	font-family: var(--jl-serif);
}

.jl-footer-main a {
	color: rgba(255, 255, 255, 0.86);
}

.jl-footer-main a:hover,
.jl-footer-main a:focus {
	color: var(--jl-gold-2);
}

.jl-footer-menu,
.jl-footer-contact {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jl-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
}

.jl-article-header {
	padding: 76px 0 44px;
	background: var(--jl-paper);
}

.jl-article-header .jl-container {
	max-width: 920px;
}

.jl-article {
	max-width: 920px;
	margin: 0 auto;
	padding: 66px 0;
}

.jl-article-featured {
	margin-bottom: 34px;
	overflow: hidden;
	border-radius: var(--jl-radius);
}

.jl-article-featured img {
	width: 100%;
}

.jl-pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 42px;
}

.page-numbers,
.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 13px;
	border: 1px solid var(--jl-line);
	border-radius: var(--jl-radius);
	background: var(--jl-white);
	color: var(--jl-ink);
	font-weight: 850;
}

.page-numbers.current,
.nav-links a:hover,
.nav-links a:focus {
	background: var(--jl-green);
	color: var(--jl-white);
}

.post-navigation {
	border-top: 1px solid var(--jl-line);
	margin-top: 42px;
	padding-top: 26px;
}

.post-navigation .nav-links {
	justify-content: space-between;
	margin-top: 0;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-submit {
	border: 0;
	border-radius: var(--jl-radius);
	background: var(--jl-green);
	color: var(--jl-white);
	font-weight: 850;
	padding: 0 16px;
}

.not-found {
	padding: 88px 0;
}

@media (max-width: 1060px) {
	.jl-header-phone {
		display: none;
	}

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

	.jl-testimonial-grid,
	.jl-values {
		grid-template-columns: 1fr;
	}

	.jl-content-layout,
	.jl-contact-grid,
	.jl-footer-main,
	.jl-about-band,
	.jl-section-head,
	.jl-page-header .jl-container {
		grid-template-columns: 1fr;
	}

	.jl-sidebar-box {
		position: static;
	}
}

@media (max-width: 820px) {
	body {
		font-size: 16px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.jl-menu-toggle {
		display: inline-block;
	}

	.jl-primary-navigation {
		position: fixed;
		inset: 82px 0 auto;
		display: none;
		padding: 18px 20px 24px;
		background: var(--jl-white);
		border-bottom: 1px solid var(--jl-line);
		box-shadow: var(--jl-shadow);
	}

	.menu-open .jl-primary-navigation {
		display: block;
	}

	.jl-primary-navigation .menu {
		display: grid;
		gap: 4px;
		justify-content: stretch;
	}

	.jl-primary-navigation a {
		display: flex;
		min-height: 48px;
		padding: 12px;
	}

	.jl-hero {
		min-height: 680px;
		background:
			linear-gradient(180deg, rgba(18, 63, 54, 0.96), rgba(18, 63, 54, 0.86) 58%, rgba(18, 63, 54, 0.34)),
			url("assets/images/hero-law-office.png") center bottom / cover no-repeat,
			var(--jl-green);
	}

	.jl-hero-content {
		padding: 70px 0 88px;
	}

	.jl-services-grid,
	.jl-post-grid,
	.jl-form-grid {
		grid-template-columns: 1fr;
	}

	.jl-section {
		padding: 64px 0;
	}

	.jl-page-header {
		padding: 62px 0 44px;
	}

	.jl-content-layout {
		padding: 54px 0;
	}
}

@media (max-width: 560px) {
	:root {
		--jl-wrap: min(100vw - 28px, 1180px);
	}

	.jl-header-inner {
		min-height: 74px;
	}

	.jl-primary-navigation {
		inset-block-start: 74px;
	}

	.jl-brand {
		min-width: auto;
	}

	.jl-brand-sub {
		display: none;
	}

	.jl-hero {
		min-height: 640px;
	}

	.jl-hero-proof {
		display: grid;
		grid-template-columns: 1fr;
	}

	.jl-proof-item {
		min-width: 0;
	}

	.jl-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.search-form {
		display: grid;
	}

.search-submit {
	min-height: 46px;
	}
}

/*
 * Dark original-inspired skin.
 * The existing site leans on a black and gold law-office palette with
 * attorney-first presentation, so these overrides keep that mood consistent.
 */
body {
	background: var(--jl-black);
	color: #ded5c4;
}

a {
	color: var(--jl-gold-2);
}

a:hover,
a:focus {
	color: var(--jl-white);
}

.jl-eyebrow {
	color: var(--jl-gold-2);
}

.jl-section {
	background: var(--jl-black);
}

.jl-section--paper {
	background: #11130f;
}

.jl-section--mist {
	background: #141811;
}

.jl-section-head h1,
.jl-section-head h2,
.jl-page-header h1,
.jl-article-header h1,
.jl-about-copy h2,
.jl-content h2,
.jl-content h3,
.jl-content h4,
.jl-service-card h3,
.jl-post-card h3,
.jl-post-card h2,
.jl-sidebar-box h2,
.jl-sidebar-box h3,
.jl-contact-list strong,
.jl-field label,
.jl-value strong {
	color: var(--jl-heading);
}

.jl-section-head p,
.jl-page-header p,
.jl-article-header p,
.jl-about-copy p,
.jl-service-card p,
.jl-post-card p,
.jl-content,
.jl-contact-list span,
.jl-contact-list a,
.jl-form-note,
.jl-value span {
	color: #b9ad99;
}

.jl-button,
.wp-block-button__link {
	background: var(--jl-gold);
	color: var(--jl-black);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.jl-button:hover,
.jl-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background: var(--jl-gold-2);
	color: var(--jl-black);
	box-shadow: 0 18px 42px rgba(198, 152, 80, 0.22);
}

.jl-button--dark {
	border-color: rgba(184, 137, 59, 0.55);
	background: #171b16;
	color: var(--jl-gold-2);
}

.jl-button--dark:hover,
.jl-button--dark:focus {
	background: var(--jl-gold);
	color: var(--jl-black);
}

.jl-button--ghost {
	border-color: rgba(212, 173, 104, 0.72);
	background: rgba(8, 10, 8, 0.38);
	color: var(--jl-white);
}

.jl-button--ghost:hover,
.jl-button--ghost:focus {
	background: var(--jl-white);
	color: var(--jl-black);
}

.site-header {
	background: rgba(8, 10, 8, 0.94);
	border-bottom: 1px solid rgba(184, 137, 59, 0.28);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.jl-brand,
.jl-brand-name,
.jl-primary-navigation a {
	color: var(--jl-heading);
}

.jl-brand-mark {
	background: var(--jl-gold);
	color: var(--jl-black);
}

.jl-brand-sub,
.jl-header-phone {
	color: var(--jl-gold-2);
}

.jl-primary-navigation a:hover,
.jl-primary-navigation a:focus,
.jl-primary-navigation .current-menu-item > a {
	background: rgba(184, 137, 59, 0.14);
	color: var(--jl-gold-2);
}

.jl-menu-toggle {
	background: #121510;
	border-color: rgba(184, 137, 59, 0.35);
	color: var(--jl-heading);
}

.jl-hero {
	background:
		linear-gradient(90deg, rgba(5, 7, 6, 0.98), rgba(10, 16, 12, 0.91) 43%, rgba(10, 16, 12, 0.42)),
		url("assets/images/hero-law-office.png") center right / cover no-repeat,
		var(--jl-black);
}

.jl-hero::after {
	height: 5px;
	background: linear-gradient(90deg, transparent, var(--jl-gold), transparent);
}

.jl-hero h1 {
	max-width: 780px;
	text-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

.jl-hero-kicker {
	color: var(--jl-gold-2);
}

.jl-proof-item {
	border-left-color: var(--jl-gold);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(212, 173, 104, 0.12);
}

.jl-service-card,
.jl-post-card,
.jl-testimonial,
.jl-contact-panel,
.jl-sidebar-box,
.jl-value {
	border-color: rgba(184, 137, 59, 0.22);
	background: linear-gradient(180deg, var(--jl-panel-2), var(--jl-panel));
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.jl-service-card::after {
	content: "";
	position: absolute;
	inset: 5px 0 auto;
	height: 92px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
	pointer-events: none;
}

.jl-service-number {
	background: rgba(184, 137, 59, 0.14);
	color: var(--jl-gold-2);
}

.jl-card-link,
.jl-testimonial cite {
	color: var(--jl-gold-2);
}

.jl-about-note {
	background: linear-gradient(145deg, #171b16, #0d100d);
	border: 1px solid rgba(184, 137, 59, 0.32);
}

.jl-post-thumb {
	background:
		linear-gradient(135deg, rgba(184, 137, 59, 0.75), rgba(123, 36, 52, 0.74)),
		#171b16;
}

.jl-testimonial p {
	color: #ded5c4;
}

.jl-page-header,
.jl-article-header {
	background:
		linear-gradient(90deg, rgba(8, 10, 8, 0.96), rgba(18, 26, 20, 0.92)),
		var(--jl-black);
	border-bottom: 1px solid rgba(184, 137, 59, 0.18);
}

.jl-content a {
	color: var(--jl-gold-2);
}

.jl-field input,
.jl-field select,
.jl-field textarea,
.search-field {
	border-color: rgba(184, 137, 59, 0.24);
	background: #0e110d;
	color: var(--jl-heading);
}

.jl-field input::placeholder,
.jl-field textarea::placeholder {
	color: #867d6d;
}

.jl-alert--success {
	background: rgba(42, 91, 54, 0.24);
	color: #bde2c2;
}

.jl-alert--error {
	background: rgba(123, 36, 52, 0.25);
	color: #f0b9c2;
}

.site-footer {
	background:
		linear-gradient(180deg, #0b0d0b, #050605);
	border-top: 1px solid rgba(184, 137, 59, 0.2);
}

.page-numbers,
.nav-links a,
.nav-links span {
	border-color: rgba(184, 137, 59, 0.24);
	background: #121510;
	color: var(--jl-heading);
}

.page-numbers.current,
.nav-links a:hover,
.nav-links a:focus,
.search-submit {
	background: var(--jl-gold);
	color: var(--jl-black);
}

@media (max-width: 820px) {
	.jl-primary-navigation {
		background: rgba(8, 10, 8, 0.98);
		border-bottom-color: rgba(184, 137, 59, 0.28);
	}

	.jl-hero {
		background:
			linear-gradient(180deg, rgba(5, 7, 6, 0.98), rgba(10, 16, 12, 0.88) 58%, rgba(10, 16, 12, 0.58)),
			url("assets/images/hero-law-office.png") center bottom / cover no-repeat,
			var(--jl-black);
	}
}

/* Modern high-authority redesign layer. */
:root {
	--jl-black: #050605;
	--jl-charcoal: #0d100c;
	--jl-panel: #131711;
	--jl-panel-2: #1a2017;
	--jl-heading: #f8f0df;
	--jl-gold: #c89646;
	--jl-gold-2: #e0bd78;
	--jl-wine: #8a2e3f;
	--jl-line: rgba(200, 150, 70, 0.24);
	--jl-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.jl-section {
	padding: 104px 0;
}

.jl-section-head {
	gap: 56px;
	margin-bottom: 44px;
}

.jl-section-head h2,
.jl-page-header h1,
.jl-article-header h1,
.jl-about-copy h2 {
	max-width: 820px;
}

.jl-section-head h1,
.jl-section-head h2,
.jl-page-header h1,
.jl-article-header h1 {
	font-size: clamp(1.95rem, 3.4vw, 3.75rem);
}

.jl-about-copy h2 {
	font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

.site-header {
	background:
		linear-gradient(180deg, rgba(13, 16, 12, 0.97), rgba(5, 6, 5, 0.92));
}

.jl-header-inner {
	min-height: 88px;
}

.jl-brand-mark {
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 0 5px rgba(200, 150, 70, 0.08);
}

.jl-primary-navigation a {
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding-inline: 8px;
}

.jl-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.jl-language-switcher a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	border: 1px solid rgba(224, 189, 120, 0.24);
	border-radius: 999px;
	color: rgba(248, 240, 223, 0.78);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.jl-language-switcher a:hover,
.jl-language-switcher a:focus,
.jl-language-switcher a.is-current {
	background: var(--jl-gold);
	color: var(--jl-black);
}

.jl-language-switcher--footer {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.jl-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.jl-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(224, 189, 120, 0.28);
	border-radius: 50%;
	color: var(--jl-gold-2);
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.jl-social-links a:hover,
.jl-social-links a:focus {
	background: var(--jl-gold);
	color: var(--jl-black);
}

.jl-hero {
	min-height: min(820px, 88vh);
	background:
		linear-gradient(90deg, rgba(5, 6, 5, 0.99), rgba(10, 13, 10, 0.92) 40%, rgba(10, 13, 10, 0.35)),
		radial-gradient(circle at 66% 42%, rgba(200, 150, 70, 0.2), transparent 28%),
		url("assets/images/hero-law-office.png") center right / cover no-repeat,
		var(--jl-black);
}

.jl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 72%);
	pointer-events: none;
}

.jl-hero-content {
	width: min(860px, 100%);
	padding: 110px 0 118px;
}

.jl-hero h1 {
	font-size: clamp(3.4rem, 8.4vw, 8.6rem);
	line-height: 0.9;
}

.jl-hero p {
	max-width: 760px;
	color: rgba(248, 240, 223, 0.82);
	font-size: clamp(1.08rem, 1.9vw, 1.36rem);
	line-height: 1.64;
}

.jl-hero-focus {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	max-width: 760px;
}

.jl-hero-focus span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(224, 189, 120, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	color: rgba(248, 240, 223, 0.82);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.jl-hero-proof {
	gap: 0;
	margin-top: 42px;
	border-top: 1px solid rgba(224, 189, 120, 0.22);
	border-bottom: 1px solid rgba(224, 189, 120, 0.22);
}

.jl-proof-item {
	min-width: 180px;
	padding: 18px 22px;
	border-left: 0;
	border-right: 1px solid rgba(224, 189, 120, 0.2);
	background: rgba(255, 255, 255, 0.025);
}

.jl-proof-item:last-child {
	border-right: 0;
}

.jl-proof-item strong {
	font-size: 2.05rem;
}

.jl-signal-strip {
	background: #0a0c09;
	border-top: 1px solid rgba(224, 189, 120, 0.18);
	border-bottom: 1px solid rgba(224, 189, 120, 0.18);
}

.jl-signal-strip .jl-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jl-signal {
	padding: 25px 30px;
	border-right: 1px solid rgba(224, 189, 120, 0.16);
}

.jl-signal:first-child {
	padding-left: 0;
}

.jl-signal:last-child {
	border-right: 0;
	padding-right: 0;
}

.jl-signal strong {
	display: block;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.2rem;
	line-height: 1.12;
}

.jl-signal span {
	display: block;
	margin-top: 7px;
	color: #a99e8c;
	font-size: 0.93rem;
	line-height: 1.48;
}

.jl-service-card,
.jl-post-card,
.jl-testimonial,
.jl-contact-panel,
.jl-sidebar-box {
	border-color: rgba(224, 189, 120, 0.22);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
		linear-gradient(145deg, #1a2017, #11150f);
}

.jl-service-card {
	min-height: 330px;
	padding: 30px;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.jl-service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(224, 189, 120, 0.42);
	box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
}

.jl-service-card h3 {
	font-size: 1.58rem;
}

.jl-service-number {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(224, 189, 120, 0.25);
}

.jl-about-note {
	padding: 34px;
}

.jl-about-note .jl-values {
	gap: 0;
	border-top: 1px solid rgba(224, 189, 120, 0.18);
}

.jl-about-note .jl-value {
	padding: 20px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.jl-section--process {
	background:
		linear-gradient(180deg, #0f120d, #070807);
	border-top: 1px solid rgba(224, 189, 120, 0.14);
	border-bottom: 1px solid rgba(224, 189, 120, 0.14);
}

.jl-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.jl-process-card {
	position: relative;
	min-height: 260px;
	padding: 30px;
	border: 1px solid rgba(224, 189, 120, 0.22);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(200, 150, 70, 0.1), transparent 44%),
		#12160f;
	overflow: hidden;
}

.jl-process-card::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -72px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(224, 189, 120, 0.15);
	border-radius: 50%;
}

.jl-process-card span {
	display: inline-flex;
	margin-bottom: 34px;
	color: var(--jl-gold-2);
	font-family: var(--jl-serif);
	font-size: 2.8rem;
	line-height: 1;
}

.jl-process-card h3 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.7rem;
	line-height: 1.1;
}

.jl-process-card p {
	margin: 14px 0 0;
	color: #b9ad99;
}

.jl-post-grid {
	gap: 22px;
}

.jl-post-card {
	transition: transform 180ms ease, border-color 180ms ease;
}

.jl-post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(224, 189, 120, 0.4);
}

.jl-testimonial {
	position: relative;
	padding: 30px;
}

.jl-testimonial::before {
	content: "";
	display: block;
	width: 42px;
	height: 2px;
	margin-bottom: 20px;
	background: var(--jl-gold);
}

.jl-contact-panel {
	padding: 34px;
}

.jl-contact-panel > .jl-button {
	margin: 12px 0 24px;
}

.jl-feature-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	color: #b9ad99;
}

.jl-feature-list li {
	position: relative;
	padding-left: 22px;
}

.jl-feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--jl-gold);
	box-shadow: 0 0 0 5px rgba(200, 150, 70, 0.12);
}

.jl-footer-main {
	grid-template-columns: minmax(0, 0.75fr) minmax(190px, 0.3fr) minmax(190px, 0.28fr) minmax(250px, 0.38fr);
	padding: 76px 0;
}

@media (max-width: 1200px) {
	.jl-language-switcher--header,
	.jl-header-phone {
		display: none;
	}
}

@media (max-width: 1060px) {
	.jl-signal-strip .jl-container,
	.jl-process-grid {
		grid-template-columns: 1fr;
	}

	.jl-signal,
	.jl-signal:first-child,
	.jl-signal:last-child {
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(224, 189, 120, 0.16);
	}

	.jl-signal:last-child {
		border-bottom: 0;
	}

	.jl-language-switcher--header,
	.jl-header-phone {
		display: none;
	}
}

@media (max-width: 820px) {
	.jl-section {
		padding: 74px 0;
	}

	.jl-header-inner {
		min-height: 76px;
	}

	.jl-primary-navigation {
		inset: 76px 0 auto;
	}

	.jl-primary-navigation .menu {
		flex-wrap: initial;
	}

	.jl-primary-navigation a {
		white-space: normal;
	}

	.jl-language-switcher--header {
		display: none;
	}

	.jl-hero {
		min-height: 720px;
	}

	.jl-hero-content {
		padding: 82px 0 96px;
	}

	.jl-proof-item {
		border-right: 0;
		border-bottom: 1px solid rgba(224, 189, 120, 0.18);
	}

	.jl-proof-item:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 560px) {
	.jl-hero h1 {
		font-size: clamp(3rem, 17vw, 4.9rem);
	}

	.jl-hero-focus span {
		font-size: 0.72rem;
	}
}

/* Portrait-led conversion update. */
.jl-hero {
	background:
		linear-gradient(115deg, rgba(5, 6, 5, 0.98), rgba(12, 15, 12, 0.96) 54%, rgba(31, 38, 30, 0.84)),
		radial-gradient(circle at 78% 34%, rgba(224, 189, 120, 0.18), transparent 26%),
		var(--jl-black);
}

.jl-hero-content {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.6fr);
	gap: 48px;
	align-items: center;
	width: 100%;
}

.jl-hero-copy {
	position: relative;
	z-index: 2;
}

.jl-hero h1 {
	max-width: 900px;
	font-size: clamp(3rem, 6.2vw, 6.5rem);
	line-height: 0.96;
}

.jl-hero-portrait {
	position: relative;
	align-self: end;
	min-height: 560px;
	border: 1px solid rgba(224, 189, 120, 0.24);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(224, 189, 120, 0.08), transparent),
		#111510;
	overflow: hidden;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.jl-hero-portrait img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
	object-position: center top;
	filter: saturate(0.96) contrast(1.04);
}

.jl-portrait-caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	padding: 18px;
	border: 1px solid rgba(224, 189, 120, 0.26);
	border-radius: var(--jl-radius);
	background: rgba(5, 6, 5, 0.78);
	backdrop-filter: blur(14px);
}

.jl-portrait-caption strong,
.jl-portrait-caption span {
	display: block;
}

.jl-portrait-caption strong {
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.7rem;
	line-height: 1.05;
}

.jl-portrait-caption span {
	margin-top: 4px;
	color: var(--jl-gold-2);
	font-size: 0.84rem;
	font-weight: 900;
	text-transform: uppercase;
}

.jl-hero-lower {
	grid-column: 1 / -1;
}

.jl-attorney-card {
	overflow: hidden;
	border: 1px solid rgba(224, 189, 120, 0.24);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
		#12160f;
	box-shadow: var(--jl-shadow);
}

.jl-attorney-card > img {
	width: 100%;
	aspect-ratio: 4 / 4.6;
	object-fit: cover;
	object-position: center top;
}

.jl-attorney-card-body {
	padding: 28px 28px 8px;
}

.jl-attorney-card h3 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 2rem;
	line-height: 1;
}

.jl-attorney-card-body p:last-child {
	color: #b9ad99;
}

.jl-attorney-card .jl-values {
	padding: 0 28px 28px;
}

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

.jl-post-thumb {
	position: relative;
	display: grid;
	place-items: end start;
	aspect-ratio: 16 / 9;
	padding: 18px;
	overflow: hidden;
}

.jl-post-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(5, 6, 5, 0.72));
	pointer-events: none;
}

.jl-post-topic {
	position: relative;
	z-index: 1;
	display: inline-flex;
	max-width: 100%;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(5, 6, 5, 0.72);
	color: var(--jl-gold-2);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.jl-article-featured img {
	max-height: 460px;
	object-fit: cover;
}

.jl-intake {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 22px;
	background: rgba(5, 6, 5, 0.78);
	backdrop-filter: blur(8px);
}

.jl-intake[aria-hidden="false"] {
	display: flex;
}

.intake-open {
	overflow: hidden;
}

.jl-intake-panel {
	position: relative;
	width: min(760px, 100%);
	max-height: min(780px, calc(100vh - 44px));
	overflow: auto;
	padding: 34px;
	border: 1px solid rgba(224, 189, 120, 0.3);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(224, 189, 120, 0.08), transparent 38%),
		#111510;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.jl-intake-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(224, 189, 120, 0.28);
	border-radius: 50%;
	background: transparent;
	color: var(--jl-heading);
	font-size: 1.6rem;
	line-height: 1;
}

.jl-intake-panel h2 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.03;
}

.jl-intake-lead {
	color: #b9ad99;
}

.jl-intake-questions {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.jl-intake-form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.jl-intake-questions label {
	display: grid;
	gap: 8px;
	color: var(--jl-heading);
	font-weight: 800;
}

.jl-intake-questions textarea {
	width: 100%;
	border: 1px solid rgba(224, 189, 120, 0.24);
	border-radius: var(--jl-radius);
	background: #0b0d0a;
	color: var(--jl-heading);
	padding: 12px;
	resize: vertical;
}

.jl-intake-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

@media (max-width: 1060px) {
	.jl-hero-content {
		grid-template-columns: 1fr;
	}

	.jl-hero-portrait {
		min-height: 440px;
		max-width: 520px;
	}

	.jl-hero-portrait img {
		min-height: 440px;
	}

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

@media (max-width: 820px) {
	.jl-hero-portrait {
		min-height: 390px;
	}

	.jl-hero-portrait img {
		min-height: 390px;
	}
}

@media (max-width: 560px) {
	.jl-post-grid {
		grid-template-columns: 1fr;
	}

	.jl-intake-panel {
		padding: 26px;
	}
}

/* 1.5.0 production polish. */
.jl-brand {
	min-width: 222px;
	max-width: 250px;
	gap: 11px;
}

.jl-brand-logo {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
}

.jl-brand-text {
	display: block;
	min-width: 0;
}

.jl-brand-name {
	max-width: 155px;
	color: var(--jl-heading);
	font-size: 0.88rem;
	font-weight: 950;
	letter-spacing: 0.04em;
	line-height: 1.08;
	text-transform: uppercase;
}

.jl-hero h1 {
	font-size: 5.25rem;
	line-height: 0.98;
}

.jl-section-head h1,
.jl-section-head h2,
.jl-page-header h1,
.jl-article-header h1 {
	font-size: 3rem;
	line-height: 1.02;
}

.jl-intake-panel h2 {
	font-size: 2.65rem;
}

.jl-proof-item strong {
	font-size: 1.75rem;
	white-space: nowrap;
}

.jl-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.jl-faq-item {
	min-height: 210px;
	padding: 28px;
	border: 1px solid rgba(224, 189, 120, 0.22);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
		linear-gradient(145deg, #1a2017, #11150f);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.jl-faq-item h3 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.35rem;
	line-height: 1.12;
}

.jl-faq-item p {
	margin: 14px 0 0;
	color: #b9ad99;
}

.jl-testimonial {
	min-height: 245px;
}

.jl-testimonial blockquote {
	display: grid;
	gap: 16px;
	margin: 0;
}

.jl-testimonial cite {
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.jl-field-note {
	margin: 8px 0 0;
	color: #9f947f;
	font-size: 0.86rem;
	line-height: 1.45;
}

.jl-field input[type="file"] {
	padding: 12px;
}

.jl-consent {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: #b9ad99;
	font-size: 0.88rem;
	line-height: 1.45;
}

.jl-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--jl-gold);
}

.jl-sidebar-box .jl-card-link {
	display: inline-flex;
	margin-top: 18px;
}

@media (max-width: 1240px) {
	.jl-brand {
		min-width: 196px;
		max-width: 210px;
	}

	.jl-brand-name {
		max-width: 128px;
		font-size: 0.8rem;
	}
}

@media (max-width: 1060px) {
	.jl-hero h1 {
		font-size: 4.25rem;
	}

	.jl-section-head h1,
	.jl-section-head h2,
	.jl-page-header h1,
	.jl-article-header h1 {
		font-size: 2.55rem;
	}
}

@media (max-width: 820px) {
	.jl-brand {
		min-width: 212px;
	}

	.jl-hero h1 {
		font-size: 3.65rem;
	}

	.jl-section-head h1,
	.jl-section-head h2,
	.jl-page-header h1,
	.jl-article-header h1 {
		font-size: 2.25rem;
	}

	.jl-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.jl-brand {
		min-width: auto;
		max-width: 64px;
	}

	.jl-brand-text {
		display: none;
	}

	.jl-hero h1 {
		font-size: 3.1rem;
	}

	.jl-section-head h1,
	.jl-section-head h2,
	.jl-page-header h1,
	.jl-article-header h1,
	.jl-intake-panel h2 {
		font-size: 2rem;
	}
}

body * {
	letter-spacing: 0 !important;
}

/* 1.6.0 conversion content systems. */
.jl-section--selected,
.jl-section--service-briefs {
	background:
		linear-gradient(180deg, #0d100c, #070807);
	border-top: 1px solid rgba(224, 189, 120, 0.14);
	border-bottom: 1px solid rgba(224, 189, 120, 0.14);
}

.jl-selected-grid,
.jl-principle-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.jl-selected-card,
.jl-principle-grid article,
.jl-service-detail,
.jl-service-detail-panels > div,
.jl-service-faqs article {
	border: 1px solid rgba(224, 189, 120, 0.22);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 44%),
		linear-gradient(145deg, #1a2017, #11150f);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.jl-selected-card {
	min-height: 285px;
	padding: 28px;
}

.jl-selected-card h3 {
	margin: 14px 0 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.42rem;
	line-height: 1.18;
}

.jl-selected-card p:last-child {
	margin-bottom: 0;
	color: #b9ad99;
}

.jl-credential-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #b9ad99;
	font-size: 0.95rem;
	line-height: 1.5;
}

.jl-credential-list li {
	position: relative;
	padding-left: 20px;
}

.jl-credential-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--jl-gold);
}

.jl-attorney-card-body--compact {
	padding-top: 12px;
}

.jl-principle-grid article {
	min-height: 245px;
	padding: 28px;
}

.jl-principle-grid span {
	color: var(--jl-gold-2);
	font-family: var(--jl-serif);
	font-size: 2.35rem;
	line-height: 1;
}

.jl-principle-grid h3 {
	margin: 24px 0 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.55rem;
	line-height: 1.1;
}

.jl-principle-grid p {
	margin: 12px 0 0;
	color: #b9ad99;
}

.jl-service-detail-list {
	display: grid;
	gap: 22px;
}

.jl-service-detail {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
	gap: 22px;
	padding: 28px;
	scroll-margin-top: 110px;
}

.jl-service-detail-main h3 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 1;
}

.jl-service-detail-main p {
	color: #b9ad99;
}

.jl-service-detail-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.jl-service-detail-panels > div {
	padding: 24px;
}

.jl-service-detail-panels h2,
.jl-service-detail-panels h4,
.jl-service-faqs h2 {
	margin: 0 0 16px;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.35rem;
	line-height: 1.12;
}

.jl-service-detail-panels ul,
.jl-service-detail-panels ol {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 20px;
	color: #b9ad99;
}

.jl-service-landing {
	display: grid;
	gap: 24px;
	margin-top: 32px;
}

.jl-service-lead {
	padding: 24px;
	border-left: 2px solid var(--jl-gold);
	background: rgba(224, 189, 120, 0.08);
	color: var(--jl-heading);
	font-size: 1.08rem;
}

.jl-service-faqs {
	display: grid;
	gap: 14px;
}

.jl-service-faqs article {
	padding: 22px;
}

.jl-service-faqs h3 {
	margin: 0;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: 1.22rem;
	line-height: 1.14;
}

.jl-service-faqs p {
	margin: 10px 0 0;
	color: #b9ad99;
}

@media (max-width: 1060px) {
	.jl-selected-grid,
	.jl-principle-grid,
	.jl-service-detail,
	.jl-service-detail-panels {
		grid-template-columns: 1fr;
	}
}

/* 1.6.1 visual hierarchy refinements. */
.jl-hero-kicker {
	display: inline-flex;
	padding: 8px 12px;
	border-left: 2px solid var(--jl-gold);
	background: rgba(224, 189, 120, 0.08);
	color: var(--jl-gold-2);
	font-size: 1.05rem;
	font-weight: 950;
	line-height: 1;
}

.jl-hero h1 {
	max-width: 760px;
	font-size: 4.55rem;
	line-height: 1;
}

.jl-section-head {
	align-items: stretch;
}

.jl-section-head > p {
	display: flex;
	align-items: center;
	padding: 22px 24px;
	border: 1px solid rgba(224, 189, 120, 0.18);
	border-left: 2px solid var(--jl-gold);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(224, 189, 120, 0.075), transparent),
		rgba(255, 255, 255, 0.025);
	color: #c8bea9;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.jl-about-band {
	align-items: start;
}

.jl-about-intro {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(224, 189, 120, 0.22);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
		linear-gradient(145deg, #1a2017, #11150f);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.jl-about-intro::after {
	content: "";
	position: absolute;
	right: 28px;
	bottom: 28px;
	width: 86px;
	height: 86px;
	border-right: 1px solid rgba(224, 189, 120, 0.26);
	border-bottom: 1px solid rgba(224, 189, 120, 0.26);
	pointer-events: none;
}

.jl-about-intro h2 {
	max-width: 720px;
	margin: 0 0 20px;
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: clamp(2rem, 3.4vw, 3.2rem);
	line-height: 1.02;
}

.jl-about-intro p {
	max-width: 780px;
	color: #d8ccb8;
}

.jl-about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.jl-about-tags span {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	padding: 7px 11px;
	border: 1px solid rgba(224, 189, 120, 0.26);
	border-radius: 999px;
	color: var(--jl-gold-2);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

@media (max-width: 1060px) {
	.jl-hero h1 {
		font-size: 3.85rem;
	}
}

@media (max-width: 820px) {
	.jl-section-head > p {
		padding: 18px;
	}

	.jl-hero-kicker {
		font-size: 0.92rem;
	}

	.jl-hero h1 {
		font-size: 3.35rem;
	}
}

@media (max-width: 560px) {
	.jl-about-intro {
		padding: 26px;
	}

	.jl-hero h1 {
		font-size: 2.85rem;
	}
}

/* 1.6.2 simplification and page-header visual polish. */
.jl-hero h1 {
	max-width: 680px;
	font-size: 3.95rem;
	font-weight: 600;
	line-height: 1.04;
}

.jl-hero-kicker {
	font-size: 1.12rem;
}

.jl-page-header .jl-container > p {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	padding: 24px 26px;
	border: 1px solid rgba(224, 189, 120, 0.22);
	border-left: 2px solid var(--jl-gold);
	border-radius: var(--jl-radius);
	background:
		linear-gradient(135deg, rgba(224, 189, 120, 0.12), rgba(255, 255, 255, 0.025)),
		#111510;
	color: #d8ccb8;
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.jl-page-header .jl-container > p::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 46px;
	height: 46px;
	border-right: 1px solid rgba(224, 189, 120, 0.24);
	border-bottom: 1px solid rgba(224, 189, 120, 0.24);
	pointer-events: none;
}

.jl-consultation-inline-button {
	margin-top: 30px;
}

.jl-section--service-briefs {
	padding-top: 64px;
}

@media (max-width: 1060px) {
	.jl-hero h1 {
		font-size: 3.45rem;
	}
}

@media (max-width: 820px) {
	.jl-page-header .jl-container > p {
		padding: 20px;
	}

	.jl-hero h1 {
		font-size: 3rem;
	}
}

@media (max-width: 560px) {
	.jl-hero h1 {
		font-size: 2.5rem;
	}
}

/* Phase 1.1-1.3 polish: trust counters, motion, and persisted theme mode. */
.jl-trust-strip {
	position: relative;
	z-index: 3;
	padding: 18px 0;
	border-block: 1px solid rgba(224, 189, 120, 0.18);
	background:
		linear-gradient(90deg, rgba(224, 189, 120, 0.13), rgba(255, 255, 255, 0.025), rgba(224, 189, 120, 0.08)),
		var(--jl-black);
}

.jl-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	border: 1px solid rgba(224, 189, 120, 0.18);
	border-radius: var(--jl-radius);
	background: rgba(224, 189, 120, 0.18);
	overflow: hidden;
}

.jl-trust-item {
	display: grid;
	gap: 4px;
	min-height: 112px;
	align-content: center;
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
		#10140f;
}

.jl-trust-item strong {
	color: var(--jl-heading);
	font-family: var(--jl-serif);
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 0.95;
}

.jl-trust-item span:last-child {
	color: var(--jl-gold-2);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jl-theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 7px 10px;
	border: 1px solid rgba(224, 189, 120, 0.28);
	border-radius: var(--jl-radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--jl-gold-2);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.jl-theme-toggle:hover,
.jl-theme-toggle:focus {
	border-color: rgba(224, 189, 120, 0.6);
	background: rgba(224, 189, 120, 0.12);
	color: var(--jl-heading);
	transform: translateY(-1px);
}

.jl-theme-toggle-icon {
	position: relative;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.jl-theme-toggle-icon::after {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	width: 9px;
	height: 18px;
	border-radius: 0 18px 18px 0;
	background: currentColor;
}

[data-theme="light"] .jl-theme-toggle-icon::after {
	right: auto;
	left: -2px;
	border-radius: 18px 0 0 18px;
}

.jl-service-card,
.jl-post-card,
.jl-testimonial,
.jl-selected-card,
.jl-process-card,
.jl-faq-item,
.jl-contact-panel,
.jl-service-detail,
.jl-sidebar-box,
.jl-value,
.jl-trust-item {
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.jl-service-card:hover,
.jl-post-card:hover,
.jl-testimonial:hover,
.jl-selected-card:hover,
.jl-process-card:hover,
.jl-faq-item:hover,
.jl-service-detail:hover,
.jl-trust-item:hover {
	border-color: rgba(224, 189, 120, 0.44);
	transform: translateY(-4px);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.jl-hero-portrait {
	transform: translateY(var(--jl-parallax, 0));
	transition: transform 180ms ease-out;
	will-change: transform;
}

.jl-motion-ready .jl-reveal {
	opacity: 0;
	transform: translateY(18px);
}

.jl-motion-ready .jl-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 520ms ease, transform 520ms ease;
}

[data-theme="light"] body {
	background: var(--jl-paper);
	color: var(--jl-text);
}

[data-theme="light"] a {
	color: var(--jl-green);
}

[data-theme="light"] a:hover,
[data-theme="light"] a:focus {
	color: var(--jl-wine);
}

[data-theme="light"] .site-header {
	background: rgba(247, 244, 238, 0.94);
	border-bottom-color: rgba(22, 32, 29, 0.12);
	box-shadow: 0 16px 42px rgba(22, 32, 29, 0.1);
}

[data-theme="light"] .jl-section,
[data-theme="light"] .jl-section--paper,
[data-theme="light"] .jl-section--mist {
	background: var(--jl-paper);
}

[data-theme="light"] .jl-section--mist,
[data-theme="light"] .jl-section--selected {
	background: var(--jl-mist);
}

[data-theme="light"] .jl-brand,
[data-theme="light"] .jl-brand-name,
[data-theme="light"] .jl-primary-navigation a,
[data-theme="light"] .jl-section-head h1,
[data-theme="light"] .jl-section-head h2,
[data-theme="light"] .jl-page-header h1,
[data-theme="light"] .jl-article-header h1,
[data-theme="light"] .jl-about-copy h2,
[data-theme="light"] .jl-content h2,
[data-theme="light"] .jl-content h3,
[data-theme="light"] .jl-content h4,
[data-theme="light"] .jl-service-card h3,
[data-theme="light"] .jl-post-card h3,
[data-theme="light"] .jl-post-card h2,
[data-theme="light"] .jl-sidebar-box h2,
[data-theme="light"] .jl-sidebar-box h3,
[data-theme="light"] .jl-contact-list strong,
[data-theme="light"] .jl-field label,
[data-theme="light"] .jl-value strong {
	color: var(--jl-ink);
}

[data-theme="light"] .jl-eyebrow,
[data-theme="light"] .jl-card-link,
[data-theme="light"] .jl-testimonial cite,
[data-theme="light"] .jl-service-number,
[data-theme="light"] .jl-hero-kicker,
[data-theme="light"] .jl-theme-toggle {
	color: var(--jl-gold-text);
}

[data-theme="light"] .jl-section-head p,
[data-theme="light"] .jl-page-header p,
[data-theme="light"] .jl-article-header p,
[data-theme="light"] .jl-about-copy p,
[data-theme="light"] .jl-service-card p,
[data-theme="light"] .jl-post-card p,
[data-theme="light"] .jl-content,
[data-theme="light"] .jl-contact-list span,
[data-theme="light"] .jl-contact-list a,
[data-theme="light"] .jl-form-note,
[data-theme="light"] .jl-value span,
[data-theme="light"] .jl-service-faqs p {
	color: var(--jl-muted);
}

[data-theme="light"] .jl-hero {
	background:
		linear-gradient(115deg, rgba(247, 244, 238, 0.96), rgba(239, 232, 218, 0.92) 54%, rgba(207, 220, 212, 0.72)),
		var(--jl-paper);
}

[data-theme="light"] .jl-hero h1,
[data-theme="light"] .jl-portrait-caption strong {
	color: var(--jl-ink);
	text-shadow: none;
}

[data-theme="light"] .jl-hero p,
[data-theme="light"] .jl-portrait-caption span {
	color: var(--jl-text);
}

[data-theme="light"] .jl-hero-focus span {
	border-color: rgba(18, 63, 54, 0.18);
	background: rgba(18, 63, 54, 0.07);
	color: var(--jl-green);
}

[data-theme="light"] .jl-portrait-caption {
	border-color: rgba(138, 99, 34, 0.22);
	background: rgba(247, 244, 238, 0.82);
}

[data-theme="light"] .jl-hero-portrait,
[data-theme="light"] .jl-attorney-card,
[data-theme="light"] .jl-about-intro,
[data-theme="light"] .jl-service-card,
[data-theme="light"] .jl-post-card,
[data-theme="light"] .jl-testimonial,
[data-theme="light"] .jl-contact-panel,
[data-theme="light"] .jl-sidebar-box,
[data-theme="light"] .jl-value,
[data-theme="light"] .jl-selected-card,
[data-theme="light"] .jl-process-card,
[data-theme="light"] .jl-faq-item,
[data-theme="light"] .jl-service-detail,
[data-theme="light"] .jl-service-detail-panels > div {
	border-color: rgba(138, 99, 34, 0.24);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
		var(--jl-white);
	box-shadow: 0 18px 50px rgba(22, 32, 29, 0.1);
}

[data-theme="light"] .jl-page-header,
[data-theme="light"] .jl-article-header,
[data-theme="light"] .jl-signal-strip,
[data-theme="light"] .jl-trust-strip {
	background:
		linear-gradient(90deg, rgba(247, 244, 238, 0.96), rgba(238, 243, 240, 0.9)),
		var(--jl-paper);
	border-color: rgba(138, 99, 34, 0.18);
}

[data-theme="light"] .jl-signal {
	border-color: rgba(138, 99, 34, 0.14);
}

[data-theme="light"] .jl-signal strong {
	color: var(--jl-ink);
}

[data-theme="light"] .jl-signal span {
	color: var(--jl-muted);
}

[data-theme="light"] .jl-trust-grid {
	border-color: rgba(138, 99, 34, 0.18);
	background: rgba(138, 99, 34, 0.18);
}

[data-theme="light"] .jl-trust-item {
	background: var(--jl-white);
}

[data-theme="light"] .jl-trust-item strong {
	color: var(--jl-ink);
}

[data-theme="light"] .jl-trust-item span:last-child {
	color: var(--jl-gold-text);
}

[data-theme="light"] .jl-primary-navigation a:hover,
[data-theme="light"] .jl-primary-navigation a:focus,
[data-theme="light"] .jl-primary-navigation .current-menu-item > a {
	background: rgba(18, 63, 54, 0.08);
	color: var(--jl-green);
}

[data-theme="light"] .jl-theme-toggle {
	border-color: rgba(138, 99, 34, 0.28);
	background: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .jl-button--ghost {
	border-color: rgba(18, 63, 54, 0.35);
	background: rgba(18, 63, 54, 0.06);
	color: var(--jl-green);
}

[data-theme="light"] .jl-button--ghost:hover,
[data-theme="light"] .jl-button--ghost:focus {
	background: var(--jl-green);
	color: var(--jl-white);
}

[data-theme="light"] .jl-field input,
[data-theme="light"] .jl-field select,
[data-theme="light"] .jl-field textarea,
[data-theme="light"] .search-field {
	border-color: rgba(18, 63, 54, 0.18);
	background: var(--jl-white);
	color: var(--jl-ink);
}

@media (max-width: 900px) {
	.jl-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.jl-trust-grid {
		grid-template-columns: 1fr;
	}

	.jl-trust-item {
		min-height: 94px;
		padding: 18px;
	}

	.jl-theme-toggle-label {
		clip: rect(1px, 1px, 1px, 1px);
		clip-path: inset(50%);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		position: absolute;
		width: 1px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.jl-hero-portrait,
	.jl-motion-ready .jl-reveal,
	.jl-motion-ready .jl-reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}

/* 2.7.1 cosmetic polish. */

/* Breathing room between the primary menu and the header actions. */
.jl-header-inner {
	gap: 30px;
}

.jl-primary-navigation {
	padding-inline: 28px;
}

/* Clear separation between the last menu item (CONTACT) and the MK pill. */
.jl-language-switcher--header {
	margin-left: 14px;
	padding-left: 18px;
	border-left: 1px solid rgba(224, 189, 120, 0.22);
}

[data-theme="light"] .jl-language-switcher--header {
	border-left-color: rgba(22, 32, 29, 0.16);
}

/* Light theme: the white logo mark needs to turn dark on the light header. */
[data-theme="light"] .jl-brand-logo {
	filter: brightness(0);
}

/* Light theme: header language pills kept dark-theme cream text. */
[data-theme="light"] .jl-language-switcher--header a {
	border-color: rgba(22, 32, 29, 0.3);
	color: var(--jl-ink);
}

[data-theme="light"] .jl-language-switcher--header a:hover,
[data-theme="light"] .jl-language-switcher--header a:focus,
[data-theme="light"] .jl-language-switcher--header a.is-current {
	background: var(--jl-gold);
	border-color: var(--jl-gold);
	color: var(--jl-black);
}

/* Light theme: buttons. The global light link color outranks the button
   classes, so every button color must be restated at higher specificity. */
[data-theme="light"] .jl-button,
[data-theme="light"] .wp-block-button__link {
	background: var(--jl-gold);
	color: var(--jl-black);
}

[data-theme="light"] .jl-button:hover,
[data-theme="light"] .jl-button:focus,
[data-theme="light"] .wp-block-button__link:hover,
[data-theme="light"] .wp-block-button__link:focus {
	background: var(--jl-gold-2);
	color: var(--jl-black);
}

[data-theme="light"] .jl-button--dark {
	background: var(--jl-ink);
	color: var(--jl-gold-2);
}

[data-theme="light"] .jl-button--dark:hover,
[data-theme="light"] .jl-button--dark:focus {
	background: var(--jl-gold);
	color: var(--jl-black);
}

[data-theme="light"] .jl-button--ghost {
	border-color: rgba(18, 63, 54, 0.35);
	background: rgba(18, 63, 54, 0.06);
	color: var(--jl-green);
}

[data-theme="light"] .jl-button--ghost:hover,
[data-theme="light"] .jl-button--ghost:focus {
	background: var(--jl-green);
	color: var(--jl-white);
}

/* Light theme: card headings that kept dark-theme cream colors. */
[data-theme="light"] .jl-process-card h3,
[data-theme="light"] .jl-selected-card h3,
[data-theme="light"] .jl-faq-item h3,
[data-theme="light"] .jl-principle-grid h3,
[data-theme="light"] .jl-about-intro h2,
[data-theme="light"] .jl-attorney-card h3,
[data-theme="light"] .jl-contact-panel h2,
[data-theme="light"] .jl-service-detail-main h3,
[data-theme="light"] .jl-service-detail-panels h2,
[data-theme="light"] .jl-service-detail-panels h4,
[data-theme="light"] .jl-service-faqs h2,
[data-theme="light"] .jl-service-faqs h3 {
	color: var(--jl-ink);
}

/* Light theme: card body text that kept dark-theme cream colors. */
[data-theme="light"] .jl-process-card p,
[data-theme="light"] .jl-selected-card p,
[data-theme="light"] .jl-selected-card p:last-child,
[data-theme="light"] .jl-faq-item p,
[data-theme="light"] .jl-principle-grid p,
[data-theme="light"] .jl-about-intro p,
[data-theme="light"] .jl-testimonial p,
[data-theme="light"] .jl-attorney-card p,
[data-theme="light"] .jl-feature-list,
[data-theme="light"] .jl-credential-list,
[data-theme="light"] .jl-consent,
[data-theme="light"] .jl-field-note,
[data-theme="light"] .jl-service-detail-main p,
[data-theme="light"] .jl-service-detail-panels ul,
[data-theme="light"] .jl-service-detail-panels ol {
	color: var(--jl-text);
}

/* Light theme: gold accents need the darker gold for contrast on white. */
[data-theme="light"] .jl-process-card span,
[data-theme="light"] .jl-principle-grid span,
[data-theme="light"] .jl-about-tags span {
	color: var(--jl-gold-text);
}

[data-theme="light"] .jl-about-tags span {
	border-color: rgba(138, 99, 34, 0.4);
}

/* Light theme: intro panels next to section headings. */
[data-theme="light"] .jl-section-head > p {
	border-color: rgba(138, 99, 34, 0.24);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
		var(--jl-white);
	color: var(--jl-text);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .jl-page-header .jl-container > p {
	border-color: rgba(138, 99, 34, 0.26);
	background:
		linear-gradient(135deg, rgba(224, 189, 120, 0.2), rgba(255, 255, 255, 0.55)),
		var(--jl-white);
	color: var(--jl-text);
	box-shadow: 0 18px 50px rgba(22, 32, 29, 0.12);
}

/* Light theme: form alerts. */
[data-theme="light"] .jl-alert--success {
	background: rgba(42, 91, 54, 0.14);
	color: #1d5a2e;
}

[data-theme="light"] .jl-alert--error {
	background: rgba(123, 36, 52, 0.12);
	color: var(--jl-wine);
}

/* Light theme: pagination pills. */
[data-theme="light"] .page-numbers,
[data-theme="light"] .nav-links a,
[data-theme="light"] .nav-links span {
	border-color: rgba(138, 99, 34, 0.3);
	background: var(--jl-white);
	color: var(--jl-ink);
}

[data-theme="light"] .page-numbers.current,
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a:focus {
	background: var(--jl-gold);
	border-color: var(--jl-gold);
	color: var(--jl-black);
}

/* Light theme: intake dialog follows the light surface. */
[data-theme="light"] .jl-intake {
	background: rgba(22, 32, 29, 0.42);
}

[data-theme="light"] .jl-intake-panel {
	border-color: rgba(138, 99, 34, 0.3);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)),
		var(--jl-paper);
	box-shadow: 0 40px 100px rgba(22, 32, 29, 0.3);
}

[data-theme="light"] .jl-intake-panel h2,
[data-theme="light"] .jl-intake-questions label {
	color: var(--jl-ink);
}

[data-theme="light"] .jl-intake-lead {
	color: var(--jl-muted);
}

[data-theme="light"] .jl-intake-close {
	border-color: rgba(22, 32, 29, 0.25);
	color: var(--jl-ink);
}

[data-theme="light"] .jl-intake-questions textarea {
	border-color: rgba(18, 63, 54, 0.18);
	background: var(--jl-white);
	color: var(--jl-ink);
}

/* Light theme: mobile menu toggle and drawer. */
[data-theme="light"] .jl-menu-toggle {
	border-color: rgba(22, 32, 29, 0.25);
	background: rgba(255, 255, 255, 0.7);
	color: var(--jl-ink);
}

@media (max-width: 820px) {
	[data-theme="light"] .jl-primary-navigation {
		background: rgba(247, 244, 238, 0.98);
		border-bottom-color: rgba(138, 99, 34, 0.25);
	}
}

/* 2.7.2 — dark hero shell (light text, refined tags). Layout is set by the
   --split modifier below. */
.jl-hero--cover {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(760px, 86vh);
	background:
		radial-gradient(circle at 82% 26%, rgba(224, 189, 120, 0.12), transparent 42%),
		linear-gradient(120deg, #050705, #0c100c 55%, #161b14);
}

/* Keep the hero dark and dramatic even when light theme is active. */
[data-theme="light"] .jl-hero--cover {
	background:
		radial-gradient(circle at 82% 26%, rgba(224, 189, 120, 0.12), transparent 42%),
		linear-gradient(120deg, #050705, #0c100c 55%, #161b14);
}

.jl-hero--cover .jl-hero-content {
	display: block;
	width: min(760px, 100%);
	padding: 96px 0;
}

.jl-hero--cover h1,
[data-theme="light"] .jl-hero--cover h1 {
	max-width: 720px;
	color: var(--jl-heading);
	text-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
}

.jl-hero--cover p,
[data-theme="light"] .jl-hero--cover p {
	color: rgba(248, 240, 223, 0.86);
}

.jl-hero--cover .jl-hero-kicker,
[data-theme="light"] .jl-hero--cover .jl-hero-kicker {
	color: var(--jl-gold-2);
}

/* Redesigned practice-area tags: a separated, refined chip row. */
.jl-hero--cover .jl-hero-focus {
	gap: 10px;
	margin-top: 36px;
	padding-top: 28px;
	max-width: 680px;
	border-top: 1px solid rgba(224, 189, 120, 0.22);
}

.jl-hero--cover .jl-hero-focus span,
[data-theme="light"] .jl-hero--cover .jl-hero-focus span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 40px;
	padding: 9px 17px 9px 14px;
	border: 1px solid rgba(224, 189, 120, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: var(--jl-heading);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.jl-hero--cover .jl-hero-focus span::before {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--jl-gold);
	box-shadow: 0 0 0 4px rgba(200, 150, 70, 0.16);
}

.jl-hero--cover .jl-hero-focus span:hover {
	border-color: rgba(224, 189, 120, 0.6);
	background: rgba(224, 189, 120, 0.14);
	transform: translateY(-2px);
}

/* Footer legal links (Privacy Policy / Terms). */
.jl-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	justify-content: center;
}

.jl-footer-legal a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
}

.jl-footer-legal a:hover,
.jl-footer-legal a:focus {
	color: var(--jl-gold-2);
}

[data-theme="light"] .jl-footer-legal a {
	color: var(--jl-muted);
}

@media (max-width: 820px) {
	.jl-hero--cover {
		min-height: auto;
	}

	.jl-hero--cover .jl-hero-content {
		padding: 64px 0;
	}

	.jl-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		text-align: left;
	}

	.jl-footer-legal {
		justify-content: flex-start;
	}
}

/* 2.7.5 — the footer and the cover hero are dark in BOTH themes, so the global
   light-theme link color (green) made their links invisible. Restore light text
   on those dark surfaces. */

/* Footer navigation, contact links, and legal links. */
[data-theme="light"] .jl-footer-main a,
[data-theme="light"] .jl-footer-contact a {
	color: rgba(255, 255, 255, 0.86);
}

[data-theme="light"] .jl-footer-main a:hover,
[data-theme="light"] .jl-footer-main a:focus,
[data-theme="light"] .jl-footer-contact a:hover,
[data-theme="light"] .jl-footer-contact a:focus {
	color: var(--jl-gold-2);
}

[data-theme="light"] .jl-footer-legal a {
	color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .jl-footer-legal a:hover,
[data-theme="light"] .jl-footer-legal a:focus {
	color: var(--jl-gold-2);
}

/* Footer language pills. */
[data-theme="light"] .jl-language-switcher--footer a {
	border-color: rgba(224, 189, 120, 0.24);
	color: rgba(248, 240, 223, 0.78);
}

[data-theme="light"] .jl-language-switcher--footer a:hover,
[data-theme="light"] .jl-language-switcher--footer a:focus,
[data-theme="light"] .jl-language-switcher--footer a.is-current {
	background: var(--jl-gold);
	border-color: var(--jl-gold);
	color: var(--jl-black);
}

/* Footer social icons (FB / IG / IN). */
[data-theme="light"] .jl-social-links--footer a {
	border-color: rgba(224, 189, 120, 0.28);
	color: var(--jl-gold-2);
}

[data-theme="light"] .jl-social-links--footer a:hover,
[data-theme="light"] .jl-social-links--footer a:focus {
	background: var(--jl-gold);
	border-color: var(--jl-gold);
	color: var(--jl-black);
}

/* The cover hero is dark in both themes; keep its ghost button readable
   (the light-theme green ghost styling disappeared on the dark hero). */
.jl-hero--cover .jl-button--ghost,
[data-theme="light"] .jl-hero--cover .jl-button--ghost {
	border-color: rgba(212, 173, 104, 0.72);
	background: rgba(8, 10, 8, 0.38);
	color: var(--jl-white);
}

.jl-hero--cover .jl-button--ghost:hover,
.jl-hero--cover .jl-button--ghost:focus,
[data-theme="light"] .jl-hero--cover .jl-button--ghost:hover,
[data-theme="light"] .jl-hero--cover .jl-button--ghost:focus {
	background: var(--jl-white);
	color: var(--jl-black);
}

/* 2.7.7 — split hero: headline on the left, full building photo on the right.
   The photo (portrait) is shown complete in a framed panel, not cropped. */
.jl-hero--split .jl-hero-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
	gap: 48px;
	align-items: center;
	width: 100%;
	padding: 80px 0;
}

.jl-hero--split .jl-hero-figure {
	margin: 0;
	border: 1px solid rgba(224, 189, 120, 0.24);
	border-radius: var(--jl-radius);
	overflow: hidden;
	background: #0e120d;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.jl-hero--split .jl-hero-figure img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 980px) {
	.jl-hero--split .jl-hero-content {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 60px 0;
	}

	.jl-hero--split .jl-hero-figure {
		order: 2;
		max-width: 460px;
		margin: 0 auto;
	}
}
