:root {
	--bg: #fff4ec;
	--bg-soft: #ffe8d8;
	--bg-warm: #ffd4ba;
	--surface: rgba(255, 246, 239, 0.9);
	--surface-strong: #fff8f4;
	--surface-tint: rgba(255, 226, 205, 0.58);
	--surface-orange: linear-gradient(180deg, rgba(255, 203, 170, 0.68) 0%, rgba(255, 233, 219, 0.94) 100%);
	--surface-deep: #a05b38;
	--line: rgba(182, 115, 73, 0.18);
	--line-strong: rgba(182, 115, 73, 0.32);
	--text: #412c20;
	--text-soft: #fff7f2;
	--muted: #7b5f50;
	--accent: #ee9662;
	--accent-strong: #de7e45;
	--accent-deep: #8e5234;
	--accent-pale: #ffd9c2;
	--accent-veil: rgba(238, 150, 98, 0.18);
	--shadow: 0 24px 90px rgba(160, 91, 56, 0.12);
	--radius-xl: 34px;
	--radius-lg: 28px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--shell: min(1220px, calc(100vw - 40px));
	--font-body: "Manrope", "Segoe UI", sans-serif;
	--font-title: "Fraunces", Georgia, serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background:
		radial-gradient(circle at 8% 6%, rgba(255, 212, 186, 0.95), transparent 22%),
		radial-gradient(circle at 88% 12%, rgba(255, 185, 141, 0.34), transparent 18%),
		linear-gradient(180deg, #fff8f4 0%, #fff1e7 42%, #fff6f1 100%);
	line-height: 1.6;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 38%),
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 24%),
		radial-gradient(circle at 82% 72%, rgba(255, 208, 179, 0.22), transparent 28%);
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(238, 150, 98, 0.42);
	outline-offset: 4px;
}

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

.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 16px;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--text);
	z-index: 1000;
}

.site-shell {
	width: var(--shell);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 18px 0;
	background: rgba(255, 243, 233, 0.74);
	backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid rgba(182, 115, 73, 0.1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	line-height: 1;
}

.site-brand__person,
.site-brand__company {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}

.site-brand__client {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--ink);
}

.site-brand__client--accent {
	color: var(--accent-strong);
}

.site-brand__divider {
	width: 4px;
	height: 72px;
	border-radius: 999px;
	background: var(--ink);
	transform: rotate(14deg);
}

.site-brand__eyebrow {
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--accent-strong);
}

.site-brand__name {
	font-size: 1.1rem;
	font-weight: 800;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	font-size: 0.96rem;
	color: rgba(65, 44, 32, 0.74);
}

.site-nav a {
	position: relative;
	padding-bottom: 4px;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent) 0%, #f4b38d 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
	transform: scaleX(1);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.92rem 1.3rem;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 14px 34px rgba(222, 126, 69, 0.22);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-position 0.25s ease,
		border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(222, 126, 69, 0.28);
}

.button--secondary {
	background: rgba(255, 249, 245, 0.68);
	color: var(--text);
	border-color: rgba(182, 115, 73, 0.18);
	box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 32px rgba(182, 115, 73, 0.08);
}

.button--ghost {
	background: rgba(255, 249, 245, 0.3);
	border-color: rgba(182, 115, 73, 0.18);
	color: var(--text);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.72);
}

.section {
	padding: 104px 0;
}

.section--sand {
	background:
		radial-gradient(circle at 10% 0%, rgba(255, 214, 188, 0.55), transparent 20%),
		linear-gradient(180deg, rgba(255, 237, 223, 0.84) 0%, rgba(255, 246, 240, 0.92) 100%);
}

.section--deep {
	position: relative;
	overflow: clip;
	color: var(--text-soft);
	background:
		radial-gradient(circle at 85% 16%, rgba(255, 210, 183, 0.24), transparent 18%),
		linear-gradient(135deg, #9f5b38 0%, #c77646 54%, #e09362 100%);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.eyebrow--filled {
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 252, 249, 0.72);
	border: 1px solid rgba(182, 115, 73, 0.14);
}

.eyebrow--filled::before,
.eyebrow--light::before {
	display: none;
}

.eyebrow--light {
	color: rgba(255, 248, 243, 0.82);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.section-heading--left {
	margin-left: 0;
	text-align: left;
}

.section-heading h2,
.hero__title,
.approach-card h3,
.contact-panel h2,
.entry-card__header h1,
.entry-card__header h2,
.hero-card__title {
	margin: 0;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.03em;
}

.section-heading h2,
.contact-panel h2 {
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.section-heading p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.hero {
	position: relative;
	padding-top: 78px;
	overflow: clip;
}

.hero::before,
.hero::after,
.hero-shell::before {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.hero::before {
	top: 3%;
	left: -4%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 200, 170, 0.76) 0%, rgba(255, 200, 170, 0) 68%);
	filter: blur(8px);
}

.hero::after {
	right: -5%;
	bottom: 8%;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(238, 150, 98, 0.22) 0%, rgba(238, 150, 98, 0) 70%);
	filter: blur(12px);
}

.hero-shell {
	position: relative;
}

.hero-shell::before {
	inset: 42px auto auto 26%;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(10px);
}

.hero__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.55fr 0.9fr 0.9fr;
	gap: 24px;
	align-items: stretch;
}

.hero-panel,
.service-card,
.approach-card,
.entry-card {
	position: relative;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.hero-panel::before,
.service-card::before,
.approach-card::before,
.entry-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.48), transparent 46%);
}

.hero-panel {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hero-panel--intro {
	background:
		linear-gradient(135deg, rgba(255, 236, 223, 0.96) 0%, rgba(255, 248, 242, 0.88) 42%, rgba(255, 222, 201, 0.78) 100%);
	border-color: rgba(182, 115, 73, 0.2);
}

.hero-panel--intro::after {
	content: "";
	position: absolute;
	right: -28px;
	top: -26px;
	width: 220px;
	height: 220px;
	border-radius: 36px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
		linear-gradient(135deg, rgba(238, 150, 98, 0.34) 0%, rgba(255, 231, 217, 0.1) 100%);
	transform: rotate(18deg);
}

.hero-panel--detail {
	justify-content: space-between;
	background: linear-gradient(180deg, rgba(255, 248, 243, 0.94) 0%, rgba(255, 232, 217, 0.86) 100%);
}

.hero-panel--focus {
	color: var(--text-soft);
	background:
		radial-gradient(circle at top right, rgba(255, 216, 191, 0.16), transparent 26%),
		linear-gradient(180deg, #b6653d 0%, #cf7d4d 100%);
	border-color: rgba(255, 230, 214, 0.14);
}

.hero-panel--focus .info-card__label,
.hero-panel--focus .hero-inline-link {
	color: #fff2e9;
}

.hero-panel--focus .info-list,
.hero-panel--focus .hero-card__title {
	color: #fff8f4;
}

.hero-panel--focus .hero-highlights {
	padding-left: 1rem;
}

.hero__overline {
	margin: 0 0 18px;
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.64);
}

.hero__title {
	max-width: 11ch;
	font-size: clamp(3.5rem, 6vw, 6.15rem);
}

.hero__title-accent {
	display: inline-block;
	color: var(--accent-deep);
	text-shadow: 0 12px 24px rgba(255, 255, 255, 0.28);
}

.hero__lead {
	max-width: 58ch;
	margin: 24px 0 0;
	font-size: 1.08rem;
	color: var(--muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.hero-band__item {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 252, 249, 0.62);
	border: 1px solid rgba(182, 115, 73, 0.12);
	backdrop-filter: blur(8px);
}

.hero-band__value {
	font-family: var(--font-title);
	font-size: 2rem;
	font-weight: 600;
	line-height: 0.9;
}

.hero-band__label {
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.68);
}

.hero-panel__top {
	position: relative;
	z-index: 1;
}

.info-card__label,
.approach-card__eyebrow,
.contact-link__label,
.hero-note__title {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.info-card__label,
.approach-card__eyebrow,
.hero-note__title {
	color: var(--accent-deep);
}

.info-card__value {
	margin: 14px 0 10px;
	font-family: var(--font-title);
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 0.92;
}

.info-card__text,
.info-list,
.service-card p,
.about__content p,
.contact-panel p,
.entry-card__content {
	color: var(--muted);
}

.hero-chip-list,
.info-list,
.approach-list {
	margin: 18px 0 0;
	padding-left: 1.2rem;
}

.hero-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	list-style: none;
}

.hero-chip-list li {
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(182, 115, 73, 0.12);
	font-weight: 800;
	font-size: 0.9rem;
}

.hero-note {
	margin-top: 28px;
	padding: 20px;
	border-radius: 24px;
	background: var(--surface-orange);
	border: 1px solid rgba(182, 115, 73, 0.12);
}

.hero-note p {
	margin: 10px 0 0;
	color: rgba(65, 44, 32, 0.72);
}

.hero-card__title {
	margin-top: 12px;
	font-size: clamp(2.15rem, 2.2vw, 3rem);
}

.hero-highlights {
	margin-top: 22px;
}

.hero-highlights li + li {
	margin-top: 12px;
}

.hero-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 28px;
	font-weight: 800;
}

.hero-inline-link::after {
	content: "↗";
	font-size: 1rem;
}

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

.service-card {
	min-height: 250px;
	background: var(--surface);
}

.service-card:nth-child(3n + 1) {
	background: linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 240, 230, 0.92) 100%);
}

.service-card:nth-child(3n + 2) {
	background: linear-gradient(180deg, rgba(255, 232, 217, 0.9) 0%, rgba(255, 246, 239, 0.9) 100%);
}

.service-card:nth-child(3n + 3) {
	background: linear-gradient(180deg, rgba(255, 243, 235, 0.96) 0%, rgba(255, 224, 205, 0.82) 100%);
}

.service-card h3,
.entry-card__header h2 {
	margin: 0 0 14px;
	font-size: 1.48rem;
	line-height: 1.12;
}

.about__layout,
.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
	gap: 34px;
	align-items: center;
}

.about__content {
	max-width: 660px;
}

.about__content p {
	margin: 0 0 18px;
	font-size: 1.08rem;
}

.approach-card {
	background:
		radial-gradient(circle at top right, rgba(255, 212, 186, 0.42), transparent 26%),
		linear-gradient(180deg, rgba(255, 246, 240, 0.96) 0%, rgba(255, 229, 214, 0.9) 100%);
}

.approach-card h3 {
	margin-top: 12px;
	font-size: 2.5rem;
}

.approach-list {
	margin-top: 20px;
}

.approach-list li + li {
	margin-top: 10px;
}

.contact-panel {
	align-items: stretch;
}

.contact-panel__content p {
	max-width: 52ch;
	font-size: 1.08rem;
	color: rgba(255, 248, 243, 0.86);
}

.contact-panel__actions {
	display: grid;
	gap: 16px;
}

.contact-link {
	display: block;
	padding: 24px;
	border: 1px solid rgba(255, 247, 240, 0.16);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	transition:
		transform 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 248, 243, 0.3);
	box-shadow: 0 22px 44px rgba(122, 67, 39, 0.16);
}

.contact-link__label {
	display: block;
	color: rgba(255, 248, 243, 0.78);
}

.contact-link__value {
	display: block;
	margin-top: 8px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}

.content-page {
	min-height: calc(100vh - 200px);
}

.entry-card {
	max-width: 860px;
	margin: 0 auto;
	background: var(--surface-strong);
}

.entry-card__header h1,
.entry-card__header h2 {
	font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.entry-card__content > *:first-child {
	margin-top: 0;
}

.site-footer {
	padding: 30px 0 44px;
	border-top: 1px solid rgba(182, 115, 73, 0.1);
	background: linear-gradient(180deg, rgba(255, 242, 232, 0.9) 0%, rgba(255, 247, 241, 0.94) 100%);
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 24px;
	color: rgba(65, 44, 32, 0.74);
	font-size: 0.95rem;
}

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

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

	.hero-panel--intro {
		grid-column: 1 / -1;
	}

	.hero__title {
		max-width: 12ch;
	}

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

	.about__layout,
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.site-header__cta {
		display: none;
	}
}

@media (max-width: 760px) {
	.site-header {
		padding: 14px 0;
	}

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

	.site-nav {
		justify-content: flex-start;
		gap: 14px;
	}

	.section {
		padding: 76px 0;
	}

	.hero {
		padding-top: 56px;
	}

	.hero__layout,
	.hero-band,
	.service-grid {
		grid-template-columns: 1fr;
	}

	.hero-panel--intro {
		grid-column: auto;
	}

	.hero__title {
		max-width: none;
		font-size: clamp(3rem, 12vw, 4.35rem);
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero-panel,
	.service-card,
	.approach-card,
	.entry-card,
	.contact-link {
		padding: 24px;
	}

	.contact-link__value {
		font-size: 1.25rem;
	}
}

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

	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero::before {
		animation: hero-drift 20s ease-in-out infinite;
	}

	.hero::after {
		animation: hero-drift 26s ease-in-out infinite reverse;
	}

	.hero-shell::before {
		animation: hero-pulse 10s ease-in-out infinite;
	}

	.hero-panel,
	.service-card,
	.approach-card,
	.contact-link {
		transition:
			transform 0.25s ease,
			box-shadow 0.25s ease,
			border-color 0.25s ease,
			background-color 0.25s ease;
	}

	.hero-panel:hover,
	.service-card:hover,
	.approach-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 30px 98px rgba(160, 91, 56, 0.14);
	}
}

@keyframes hero-drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(14px, -10px, 0) scale(1.05);
	}
}

@keyframes hero-pulse {
	0%,
	100% {
		opacity: 0.4;
		transform: scale(1);
	}

	50% {
		opacity: 0.75;
		transform: scale(1.08);
	}
}

.jr-home {
	overflow: clip;
}

.jr-home .elementor-element {
	--widgets-spacing: 0px;
}

.jr-home .elementor-widget-text-editor p:last-child,
.jr-home .elementor-widget-text-editor ul:last-child,
.jr-home .elementor-widget-text-editor ol:last-child {
	margin-bottom: 0;
}

.jr-home .elementor-widget-heading,
.jr-home .elementor-widget-text-editor,
.jr-home .elementor-widget-button {
	width: 100%;
}

.jr-section {
	position: relative;
	display: block;
	padding: 104px 0;
}

.jr-section .e-con-inner,
.jr-section .elementor-widget-container {
	max-width: none;
}

.jr-hero {
	padding-top: 86px;
}

.jr-hero-grid,
.jr-service-grid,
.jr-about-grid,
.jr-contact-grid,
.jr-hero-band,
.jr-hero-actions,
.jr-chip-row {
	width: 100%;
	max-width: none;
}

.jr-hero-grid {
	display: block;
}

.jr-card,
.jr-service-card,
.jr-approach-card,
.jr-contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.jr-card::before,
.jr-service-card::before,
.jr-approach-card::before,
.jr-contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.48), transparent 46%);
}

.jr-card--intro {
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 236, 223, 0.96) 0%, rgba(255, 248, 242, 0.88) 42%, rgba(255, 222, 201, 0.78) 100%);
	border-color: rgba(182, 115, 73, 0.2);
}

.jr-card--intro::after {
	content: "";
	position: absolute;
	right: -28px;
	top: -26px;
	width: 220px;
	height: 220px;
	border-radius: 36px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
		linear-gradient(135deg, rgba(238, 150, 98, 0.34) 0%, rgba(255, 231, 217, 0.1) 100%);
	transform: rotate(18deg);
}

.jr-card--detail {
	background: linear-gradient(180deg, rgba(255, 248, 243, 0.94) 0%, rgba(255, 232, 217, 0.86) 100%);
}

.jr-card--focus {
	background:
		radial-gradient(circle at top right, rgba(255, 216, 191, 0.16), transparent 26%),
		linear-gradient(180deg, #b6653d 0%, #cf7d4d 100%);
	border-color: rgba(255, 230, 214, 0.14);
	color: var(--text-soft);
}

.jr-card--focus .jr-card-label .elementor-heading-title,
.jr-card--focus .jr-card-title .elementor-heading-title,
.jr-card--focus .jr-list .elementor-widget-container,
.jr-card--focus .jr-inline-link .elementor-button-text {
	color: #fff8f4;
}

.jr-eyebrow .elementor-heading-title,
.jr-section-eyebrow .elementor-heading-title,
.jr-about-eyebrow .elementor-heading-title,
.jr-contact-eyebrow .elementor-heading-title,
.jr-approach-label .elementor-heading-title,
.jr-card-label .elementor-heading-title,
.jr-note-label .elementor-heading-title,
.jr-contact-label .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.jr-eyebrow .elementor-heading-title {
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 252, 249, 0.72);
	border: 1px solid rgba(182, 115, 73, 0.14);
}

.jr-section-eyebrow .elementor-heading-title::before,
.jr-about-eyebrow .elementor-heading-title::before,
.jr-contact-eyebrow .elementor-heading-title::before {
	content: "";
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.jr-contact-eyebrow .elementor-heading-title,
.jr-contact-label .elementor-heading-title {
	color: rgba(255, 248, 243, 0.82);
}

.jr-overline .elementor-widget-container {
	margin-top: 18px;
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.64);
}

.jr-title .elementor-heading-title {
	margin-top: 18px;
	font-family: var(--font-title);
	font-size: clamp(3.5rem, 6vw, 6.15rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
	color: var(--text);
}

.jr-title .jr-accent {
	color: var(--accent-deep);
	text-shadow: 0 12px 24px rgba(255, 255, 255, 0.28);
}

.jr-lead .elementor-widget-container,
.jr-section-copy .elementor-widget-container,
.jr-about-copy .elementor-widget-container,
.jr-approach-text .elementor-widget-container {
	font-size: 1.08rem;
	color: var(--muted);
}

.jr-lead .elementor-widget-container {
	margin-top: 24px;
	max-width: 58ch;
}

.jr-hero-actions {
	display: block;
	margin-top: 30px;
}

.jr-hero-actions > .elementor-element {
	width: auto;
}

.jr-button .elementor-button {
	min-height: 50px;
	padding: 0.92rem 1.3rem;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.jr-button--secondary .elementor-button {
	background: rgba(255, 249, 245, 0.68);
	color: var(--text);
	border: 1px solid rgba(182, 115, 73, 0.18);
	box-shadow: none;
}

.jr-hero-band {
	display: block;
	margin-top: 34px;
}

.jr-stat-card {
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 252, 249, 0.62);
	border: 1px solid rgba(182, 115, 73, 0.12);
	backdrop-filter: blur(8px);
}

.jr-stat-value .elementor-heading-title {
	font-family: var(--font-title);
	font-size: 2rem;
	font-weight: 600;
	line-height: 0.9;
}

.jr-stat-label .elementor-widget-container {
	margin-top: 8px;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.68);
}

.jr-card--detail .jr-card-label .elementor-heading-title,
.jr-card--focus .jr-card-label .elementor-heading-title {
	margin-bottom: 10px;
}

.jr-location .elementor-heading-title {
	font-family: var(--font-title);
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 0.92;
}

.jr-body-copy .elementor-widget-container {
	color: var(--muted);
}

.jr-chip-row {
	display: block;
	margin-top: 24px;
}

.jr-chip {
	width: auto;
}

.jr-chip .elementor-heading-title {
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(182, 115, 73, 0.12);
	font-size: 0.9rem;
	font-weight: 800;
}

.jr-note {
	margin-top: 28px;
	padding: 20px;
	border-radius: 24px;
	background: var(--surface-orange);
	border: 1px solid rgba(182, 115, 73, 0.12);
}

.jr-note-copy .elementor-widget-container {
	margin-top: 10px;
	color: rgba(65, 44, 32, 0.72);
}

.jr-card-title .elementor-heading-title,
.jr-section-title .elementor-heading-title,
.jr-about-title .elementor-heading-title,
.jr-contact-title .elementor-heading-title,
.jr-approach-title .elementor-heading-title {
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.03em;
}

.jr-card-title .elementor-heading-title {
	margin-top: 12px;
	font-size: clamp(2.15rem, 2.2vw, 3rem);
}

.jr-list .elementor-widget-container {
	margin-top: 22px;
	color: inherit;
}

.jr-inline-link {
	margin-top: auto;
	padding-top: 28px;
	width: auto;
}

.jr-inline-link .elementor-button {
	padding: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
}

.jr-inline-link .elementor-button-text::after {
	content: " ↗";
}

.jr-section--sand {
	background:
		radial-gradient(circle at 10% 0%, rgba(255, 214, 188, 0.55), transparent 20%),
		linear-gradient(180deg, rgba(255, 237, 223, 0.84) 0%, rgba(255, 246, 240, 0.92) 100%);
}

.jr-section-heading {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.jr-section-title .elementor-heading-title,
.jr-contact-title .elementor-heading-title {
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.jr-section-copy .elementor-widget-container {
	max-width: 60ch;
	margin: 18px auto 0;
}

.jr-service-grid {
	display: block;
}

.jr-service-card {
	min-height: 250px;
	background: var(--surface);
}

.jr-service-card:nth-child(3n + 1) {
	background: linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 240, 230, 0.92) 100%);
}

.jr-service-card:nth-child(3n + 2) {
	background: linear-gradient(180deg, rgba(255, 232, 217, 0.9) 0%, rgba(255, 246, 239, 0.9) 100%);
}

.jr-service-card:nth-child(3n + 3) {
	background: linear-gradient(180deg, rgba(255, 243, 235, 0.96) 0%, rgba(255, 224, 205, 0.82) 100%);
}

.jr-service-title .elementor-heading-title {
	font-size: 1.48rem;
	line-height: 1.12;
	font-family: var(--font-title);
}

.jr-service-text .elementor-widget-container {
	margin-top: 14px;
	color: var(--muted);
}

.jr-about-grid,
.jr-contact-grid {
	display: block;
}

.jr-about-copy,
.jr-approach-card,
.jr-contact-copy,
.jr-contact-actions {
	width: 100%;
}

.jr-about-title .elementor-heading-title,
.jr-contact-title .elementor-heading-title {
	margin-top: 12px;
}

.jr-about-copy-text .elementor-widget-container {
	margin-top: 14px;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
}

.jr-approach-card {
	background:
		radial-gradient(circle at top right, rgba(255, 212, 186, 0.42), transparent 26%),
		linear-gradient(180deg, rgba(255, 246, 240, 0.96) 0%, rgba(255, 229, 214, 0.9) 100%);
}

.jr-approach-title .elementor-heading-title {
	margin-top: 12px;
	font-size: 2.5rem;
}

.jr-approach-text .elementor-widget-container {
	margin-top: 18px;
}

.jr-section--deep {
	position: relative;
	overflow: clip;
	color: var(--text-soft);
	background:
		radial-gradient(circle at 85% 16%, rgba(255, 210, 183, 0.24), transparent 18%),
		linear-gradient(135deg, #9f5b38 0%, #c77646 54%, #e09362 100%);
}

.jr-contact-copy-text .elementor-widget-container {
	margin-top: 18px;
	max-width: 52ch;
	font-size: 1.08rem;
	color: rgba(255, 248, 243, 0.86);
}

.jr-contact-actions {
	display: block;
}

.jr-contact-card {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 247, 240, 0.16);
	backdrop-filter: blur(12px);
}

.jr-contact-card .elementor-widget-container {
	color: inherit;
}

.jr-contact-value .elementor-widget-container {
	margin-top: 10px;
}

.jr-contact-value p,
.jr-contact-value a {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}

.jr-reveal {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.jr-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
	.jr-hero-grid,
	.jr-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jr-card--intro {
		grid-column: 1 / -1;
	}

	.jr-about-grid,
	.jr-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.jr-section {
		padding: 76px 0;
	}

	.jr-hero {
		padding-top: 56px;
	}

	.jr-hero-grid,
	.jr-hero-band,
	.jr-service-grid {
		grid-template-columns: 1fr;
	}

	.jr-card--intro {
		grid-column: auto;
	}

	.jr-title .elementor-heading-title {
		max-width: none;
		font-size: clamp(3rem, 12vw, 4.35rem);
	}

	.jr-hero-actions > .elementor-element,
	.jr-inline-link {
		width: 100%;
	}

	.jr-inline-link .elementor-button {
		justify-content: flex-start;
	}

	.jr-card,
	.jr-service-card,
	.jr-approach-card,
	.jr-contact-card {
		padding: 24px;
	}

	.jr-contact-value p,
	.jr-contact-value a {
		font-size: 1.25rem;
	}
}

/* Elementor compatibility and layout repair */

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

html.jr-motion-enabled .jr-reveal {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.jr-motion-enabled .jr-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

body.elementor-editor-active .jr-reveal,
body.elementor-editor-preview .jr-reveal {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.jr-section > .e-con-inner {
	width: var(--shell);
	margin: 0 auto;
}

.jr-home > .e-con-inner,
.elementor-7 .elementor-element.elementor-element-f658827e > .e-con-inner {
	padding: 0 !important;
	margin: 0 !important;
}

.jr-hero-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: 1.55fr 0.9fr 0.9fr !important;
	gap: 24px;
	align-items: stretch;
}

.jr-service-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 22px;
}

.jr-about-grid > .e-con-inner,
.jr-contact-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr) !important;
	gap: 34px;
	align-items: center;
}

.jr-section-heading > .e-con-inner,
.jr-card > .e-con-inner,
.jr-service-card > .e-con-inner,
.jr-about-copy > .e-con-inner,
.jr-approach-card > .e-con-inner,
.jr-contact-copy > .e-con-inner,
.jr-contact-card > .e-con-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.jr-section-heading > .e-con-inner {
	gap: 0;
}

.jr-contact-actions > .e-con-inner {
	display: grid;
	gap: 16px;
}

.jr-hero-actions > .e-con-inner {
	display: flex !important;
	flex-wrap: wrap;
	gap: 14px;
}

.jr-hero-band > .e-con-inner {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px;
}

.jr-chip-row > .e-con-inner {
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px;
}

.jr-hero-grid > .e-con-inner > .e-con,
.jr-service-grid > .e-con-inner > .e-con,
.jr-about-grid > .e-con-inner > .e-con,
.jr-contact-grid > .e-con-inner > .e-con,
.jr-hero-band > .e-con-inner > .e-con {
	width: auto !important;
	min-width: 0;
	max-width: none !important;
}

.jr-stat-card > .e-con-inner {
	display: grid;
	gap: 8px;
}

.jr-note > .e-con-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.jr-home .elementor-widget,
.jr-home .elementor-widget-text-editor,
.jr-home .elementor-widget-heading {
	width: 100%;
}

.jr-home .elementor-heading-title,
.jr-home .elementor-widget-text-editor,
.jr-home .elementor-widget-text-editor p,
.jr-home .elementor-widget-text-editor li {
	color: var(--text);
}

.jr-home .elementor-heading-title {
	margin: 0;
}

.jr-home .elementor-widget-text-editor ul,
.jr-home .elementor-widget-text-editor ol {
	margin: 0;
	padding-left: 1.2rem;
}

.jr-home .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.92rem 1.3rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 800;
	letter-spacing: -0.01em;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.jr-card--intro > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-card--detail > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-card--focus > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-section-heading > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-about-copy > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-approach-card > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-contact-copy > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-contact-card > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-note > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.jr-card--intro > .e-con-inner > :nth-child(1) .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 252, 249, 0.72);
	border: 1px solid rgba(182, 115, 73, 0.14);
	color: var(--accent-deep);
}

.jr-card--intro > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 18px;
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.64);
}

.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
	margin-top: 18px;
	font-family: var(--font-title);
	font-size: clamp(3.5rem, 6vw, 6.15rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
	color: var(--text);
}

.jr-card--intro > .e-con-inner > :nth-child(4) .elementor-widget-container {
	max-width: 58ch;
	margin-top: 24px;
	font-size: 1.08rem;
	color: var(--muted);
}

.jr-card--intro .jr-accent {
	color: var(--accent-deep);
	text-shadow: 0 12px 24px rgba(255, 255, 255, 0.28);
}

.jr-hero-actions > .e-con-inner > * {
	width: auto;
}

.jr-hero-actions .elementor-button:hover,
.jr-hero-actions .elementor-button:focus-visible {
	transform: translateY(-2px);
}

.jr-hero-actions > .e-con-inner > :nth-child(1) .elementor-button {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: #fff;
	box-shadow: 0 14px 34px rgba(222, 126, 69, 0.22);
}

.jr-hero-actions > .e-con-inner > :nth-child(2) .elementor-button {
	background: rgba(255, 249, 245, 0.68);
	color: var(--text);
	border-color: rgba(182, 115, 73, 0.18);
	box-shadow: none;
}

.jr-hero-band .jr-stat-card {
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 252, 249, 0.62);
	border: 1px solid rgba(182, 115, 73, 0.12);
	backdrop-filter: blur(8px);
}

.jr-stat-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-family: var(--font-title);
	font-size: 2rem;
	font-weight: 600;
	line-height: 0.9;
}

.jr-stat-card > .e-con-inner > :nth-child(2) .elementor-widget-container {
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(65, 44, 32, 0.68);
}

.jr-card--detail > .e-con-inner,
.jr-card--focus > .e-con-inner {
	gap: 0;
}

.jr-card--detail > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-card--focus > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-approach-card > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-note > .e-con-inner > :nth-child(1) .elementor-heading-title {
	color: var(--accent-deep);
}

.jr-card--detail > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 14px;
	font-family: var(--font-title);
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 0.92;
	color: var(--text);
}

.jr-card--detail > .e-con-inner > :nth-child(3) .elementor-widget-container {
	margin-top: 10px;
	color: var(--muted);
}

.jr-chip-row {
	margin-top: 24px;
}

.jr-chip-row > .e-con-inner > * {
	width: auto;
}

.jr-chip-row .elementor-heading-title {
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(182, 115, 73, 0.12);
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--text);
}

.jr-note {
	margin-top: 28px;
	padding: 20px;
	border-radius: 24px;
	background: var(--surface-orange);
	border: 1px solid rgba(182, 115, 73, 0.12);
}

.jr-note > .e-con-inner > :nth-child(2) .elementor-widget-container {
	color: rgba(65, 44, 32, 0.72);
}

.jr-card--focus > .e-con-inner > :nth-child(1) .elementor-heading-title {
	color: rgba(255, 248, 243, 0.82);
}

.jr-card--focus > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 12px;
	font-family: var(--font-title);
	font-size: clamp(2.15rem, 2.2vw, 3rem);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.03em;
	color: #fff8f4;
}

.jr-card--focus > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) li {
	margin-top: 22px;
	color: #fff8f4;
}

.jr-card--focus > .e-con-inner > :nth-child(4) {
	width: auto;
	margin-top: auto;
	padding-top: 28px;
}

.jr-card--focus > .e-con-inner > :nth-child(4) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(4) p {
	margin: 0;
}

.jr-card--focus > .e-con-inner > :nth-child(4) a {
	color: #fff2e9;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.jr-section-heading > .e-con-inner {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.jr-section-heading > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-about-copy > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-contact-copy > .e-con-inner > :nth-child(1) .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-deep);
}

.jr-section-heading > .e-con-inner > :nth-child(1) .elementor-heading-title::before,
.jr-about-copy > .e-con-inner > :nth-child(1) .elementor-heading-title::before,
.jr-contact-copy > .e-con-inner > :nth-child(1) .elementor-heading-title::before {
	content: "";
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.jr-section-heading > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-about-copy > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-contact-copy > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-approach-card > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 12px;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.03em;
	color: var(--text);
}

.jr-section-heading > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-contact-copy > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.jr-about-copy > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(2.4rem, 3vw, 3.5rem);
}

.jr-approach-card > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: 2.5rem;
}

.jr-section-heading > .e-con-inner > :nth-child(3) .elementor-widget-container {
	max-width: 60ch;
	margin: 18px auto 0;
	font-size: 1.08rem;
	color: var(--muted);
}

.jr-service-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-family: var(--font-title);
	font-size: 1.48rem;
	line-height: 1.12;
	color: var(--text);
}

.jr-service-card > .e-con-inner > :nth-child(2) .elementor-widget-container {
	margin-top: 14px;
	color: var(--muted);
}

.jr-about-copy > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-about-copy > .e-con-inner > :nth-child(4) .elementor-widget-container,
.jr-approach-card > .e-con-inner > :nth-child(3) .elementor-widget-container {
	margin-top: 18px;
	font-size: 1.08rem;
	color: var(--muted);
}

.jr-section--deep .jr-contact-copy > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-section--deep .jr-contact-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	color: rgba(255, 248, 243, 0.82);
}

.jr-section--deep .jr-contact-copy > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-section--deep .jr-contact-copy > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-section--deep .jr-contact-copy > .e-con-inner > :nth-child(3) p,
.jr-section--deep .jr-contact-card > .e-con-inner > :nth-child(2) .elementor-widget-container,
.jr-section--deep .jr-contact-card > .e-con-inner > :nth-child(2) a,
.jr-section--deep .jr-contact-card > .e-con-inner > :nth-child(2) p {
	color: #fff;
}

.jr-section--deep .jr-contact-copy > .e-con-inner > :nth-child(3) .elementor-widget-container {
	margin-top: 18px;
	max-width: 52ch;
	font-size: 1.08rem;
	color: rgba(255, 248, 243, 0.86);
}

.jr-contact-card > .e-con-inner > :nth-child(2) .elementor-widget-container {
	margin-top: 10px;
}

.jr-contact-card > .e-con-inner > :nth-child(2) a,
.jr-contact-card > .e-con-inner > :nth-child(2) p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
}

@media (max-width: 1180px) {
	.jr-hero-grid > .e-con-inner,
	.jr-service-grid > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.jr-card--intro {
		grid-column: 1 / -1;
	}

	.jr-about-grid > .e-con-inner,
	.jr-contact-grid > .e-con-inner {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 760px) {
	.jr-section > .e-con-inner {
		width: min(100vw - 28px, var(--shell));
	}

	.jr-hero-grid > .e-con-inner,
	.jr-hero-band > .e-con-inner,
	.jr-service-grid > .e-con-inner {
		grid-template-columns: 1fr !important;
	}

	.jr-card--intro {
		grid-column: auto;
	}

	.jr-hero-actions > .e-con-inner {
		flex-direction: column;
	}

	.jr-hero-actions > .e-con-inner > * {
		width: 100%;
	}

	.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
		max-width: none;
		font-size: clamp(3rem, 12vw, 4.35rem);
	}
}

/* Hero redesign v2 */

:root {
	--radius-xl: 48px;
	--radius-lg: 38px;
	--radius-md: 30px;
	--radius-sm: 22px;
	--shadow: 0 28px 72px rgba(160, 91, 56, 0.12);
}

.jr-service-card,
.jr-approach-card,
.jr-contact-card,
.jr-note,
.jr-stat-card {
	border-radius: calc(var(--radius-xl) - 10px);
}

.jr-hero {
	padding-top: 12px;
	padding-bottom: 12px;
}

.jr-hero > .e-con-inner {
	min-height: 0;
	display: block;
}

.jr-hero-grid,
.jr-hero-grid > .e-con-inner {
	flex: initial;
}

.jr-hero-grid > .e-con-inner {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	grid-template-areas:
		"intro intro intro"
		"detail focus metrics";
	gap: 12px;
	align-content: start;
}

.jr-card--intro {
	grid-area: intro;
	justify-content: center;
	min-height: 0;
	padding: 18px 20px 16px;
	border-radius: 56px;
	border-color: rgba(182, 115, 73, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 246, 239, 0.98) 0%, rgba(255, 239, 230, 0.96) 38%, rgba(255, 228, 208, 0.88) 100%);
	box-shadow: 0 28px 80px rgba(193, 123, 82, 0.12);
}

.jr-card--intro::before {
	background:
		linear-gradient(132deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.14) 42%, transparent 78%);
}

.jr-card--intro::after {
	right: 5%;
	top: 50%;
	width: 212px;
	height: 212px;
	border-radius: 82px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent),
		linear-gradient(135deg, rgba(243, 168, 126, 0.34) 0%, rgba(255, 233, 219, 0.08) 100%);
	transform: translateY(-50%) rotate(14deg);
}

.jr-card--intro > .e-con-inner {
	max-width: none;
	justify-content: center;
}

.jr-card--intro > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 10px;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
}

.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
	margin-top: 14px;
	max-width: none;
	font-size: clamp(2.85rem, 3.65vw, 4rem);
	line-height: 0.9;
	white-space: nowrap;
}

.jr-card--intro > .e-con-inner > :nth-child(4) .elementor-widget-container {
	max-width: 52ch;
	margin-top: 14px;
	font-size: 0.96rem;
}

.jr-card--detail,
.jr-card--focus,
.jr-card--metrics {
	min-height: 0;
	padding: 22px;
	border-radius: 40px;
}

.jr-card--detail {
	grid-area: detail;
}

.jr-card--focus {
	grid-area: focus;
	background:
		radial-gradient(circle at top right, rgba(255, 216, 191, 0.18), transparent 28%),
		linear-gradient(180deg, #bb7448 0%, #cd8151 100%);
}

.jr-card--metrics {
	grid-area: metrics;
	color: var(--text-soft);
	border-color: rgba(255, 239, 229, 0.18);
	background:
		radial-gradient(circle at 78% 20%, rgba(255, 206, 175, 0.18), transparent 24%),
		linear-gradient(180deg, #cd7d4b 0%, #b76537 100%);
}

.jr-card--detail > .e-con-inner,
.jr-card--focus > .e-con-inner,
.jr-card--metrics > .e-con-inner {
	height: 100%;
}

.jr-card--detail > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.92rem, 2.1vw, 2.35rem);
}

.jr-card--focus > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-card--metrics > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.5rem, 1.72vw, 1.92rem);
	line-height: 0.94;
}

.jr-card--metrics > .e-con-inner > :nth-child(1) .elementor-heading-title {
	color: rgba(255, 247, 241, 0.82);
}

.jr-card--metrics > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--metrics > .e-con-inner > :nth-child(3) p {
	color: #fff8f4;
}

.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container {
	margin-top: 14px;
	color: rgba(255, 247, 241, 0.88);
}

.jr-metric-stack {
	margin-top: auto;
}

.jr-metric-stack > .e-con-inner {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: 14px;
}

.jr-card--metrics .jr-stat-card {
	padding: 12px 14px 11px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 247, 241, 0.14);
	box-shadow: none;
	backdrop-filter: blur(8px);
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	color: #fff;
	font-size: 1.28rem;
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) .elementor-widget-container,
.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) p {
	color: rgba(255, 247, 241, 0.88);
	font-size: 0.92rem;
}

.jr-card--detail .jr-chip-row .elementor-heading-title {
	background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1180px) {
	.jr-hero > .e-con-inner {
		min-height: auto;
	}

	.jr-hero-grid > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-areas:
			"intro intro"
			"detail focus"
			"metrics metrics";
	}

	.jr-card--intro > .e-con-inner {
		max-width: none;
	}

	.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
		font-size: clamp(2.55rem, 4.8vw, 3.45rem);
		white-space: normal;
	}
}

@media (max-width: 760px) {
	.jr-hero {
		padding-top: 18px;
		padding-bottom: 16px;
	}

	.jr-hero-grid > .e-con-inner {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"intro"
			"detail"
			"focus"
			"metrics";
		gap: 18px;
	}

	.jr-card--intro {
		min-height: 0;
		padding: 32px 26px 28px;
		border-radius: 38px;
	}

	.jr-card--intro::after {
		top: 18%;
		right: -18px;
		width: 180px;
		height: 180px;
		border-radius: 60px;
		transform: rotate(14deg);
	}

	.jr-card--intro > .e-con-inner {
		max-width: none;
	}

	.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
		max-width: none;
		font-size: clamp(2.65rem, 10vw, 3.6rem);
		white-space: normal;
	}

	.jr-card--detail,
	.jr-card--focus,
	.jr-card--metrics {
		min-height: 0;
		padding: 26px;
		border-radius: 32px;
	}

	.jr-metric-stack > .e-con-inner {
		gap: 10px;
	}
}

/* Hero fit overrides */

.jr-card--intro {
	justify-content: flex-start;
}

.jr-card--intro > .e-con-inner > :nth-child(3) .elementor-heading-title {
	font-size: clamp(2rem, 2.4vw, 2.55rem);
	white-space: normal;
}

.jr-card--intro .jr-title-line {
	display: block;
	white-space: nowrap;
}

.jr-card--intro > .e-con-inner > :nth-child(4) .elementor-widget-container {
	margin-top: 12px;
	font-size: 0.88rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.jr-hero-actions {
	margin-top: 8px;
}

.jr-hero-actions > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.jr-hero-actions > .e-con-inner > * {
	width: auto !important;
	flex: 0 0 auto !important;
}

.jr-hero-actions .elementor-button {
	min-height: 36px;
	padding: 0.58rem 0.88rem;
}

@media (max-width: 1180px) {
	.jr-card--intro .jr-title-line {
		white-space: normal;
	}
}

.jr-card--detail,
.jr-card--focus,
.jr-card--metrics {
	padding: 14px;
	border-radius: 34px;
}

.jr-card--detail > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.54rem, 1.6vw, 1.8rem);
}

.jr-card--focus > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-card--metrics > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.08rem, 1.2vw, 1.34rem);
}

.jr-card--detail > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) li {
	font-size: 0.82rem;
	line-height: 1.28;
}

.jr-card--focus > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) li {
	margin-top: 10px;
}

.jr-card--detail > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.jr-chip-row {
	margin-top: 10px;
}

.jr-chip-row .elementor-heading-title {
	padding: 0.4rem 0.62rem;
	font-size: 0.72rem;
}

.jr-note {
	margin-top: 14px;
	padding: 14px;
	border-radius: 18px;
}

.jr-note > .e-con-inner > :nth-child(1) .elementor-heading-title,
.jr-note > .e-con-inner > :nth-child(2) .elementor-widget-container {
	font-size: 0.76rem;
	line-height: 1.35;
}

.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container {
	margin-top: 10px;
	font-size: 0.78rem;
}

.jr-metric-stack > .e-con-inner {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 10px;
}

.jr-card--metrics .jr-stat-card {
	padding: 8px 9px;
	border-radius: 16px;
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-size: 0.98rem;
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) .elementor-widget-container,
.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) p {
	font-size: 0.68rem;
	line-height: 1.3;
}

@media (min-width: 761px) {
	.jr-card--detail > .e-con-inner > :nth-child(3) .elementor-widget-container {
		-webkit-line-clamp: 2;
	}

	.jr-card--focus > .e-con-inner > :nth-child(3) li:nth-child(3) {
		display: none;
	}

	.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) .elementor-widget-container,
	.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) p {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

/* Header + hero width + contact form refresh */

:root {
	--shell: min(1360px, calc(100vw - 40px));
}

.site-header {
	padding: 12px 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 16px 28px;
}

.site-nav {
	justify-content: flex-end;
	gap: 14px;
	font-size: 0.88rem;
}

.site-nav a {
	padding-bottom: 2px;
}

.jr-hero > .e-con-inner {
	width: min(1480px, calc(100vw - 26px));
}

.jr-hero-grid > .e-con-inner {
	gap: 14px;
}

.jr-card--intro {
	padding-inline: 28px;
}

.jr-card--intro::after {
	right: 3%;
}

.jr-card--intro > .e-con-inner {
	max-width: min(1100px, 100%);
}

.jr-card--intro > .e-con-inner > :nth-child(4) .elementor-widget-container {
	max-width: 62ch;
}

.jr-contact-grid > .e-con-inner {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
	align-items: start;
	gap: 22px;
}

.jr-contact-actions > .e-con-inner {
	display: grid;
	gap: 18px;
}

.jr-contact-form-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(255, 247, 240, 0.16);
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	box-shadow: 0 28px 64px rgba(41, 19, 11, 0.16);
}

.jr-contact-form-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 42%);
}

.jr-contact-form-card > .e-con-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.jr-contact-form-title .elementor-heading-title {
	margin-top: 10px;
	font-family: var(--font-title);
	font-size: clamp(1.45rem, 1.8vw, 1.9rem);
	line-height: 0.98;
	color: #fff;
}

.jr-contact-form-shortcode .elementor-widget-container {
	margin-top: 18px;
}

.jr-contact-direct > .e-con-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jr-contact-form-wrap {
	width: 100%;
}

.jr-contact-form {
	display: grid;
	gap: 16px;
}

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

.jr-contact-form__field {
	display: grid;
	gap: 8px;
}

.jr-contact-form__label {
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 248, 243, 0.76);
}

.jr-contact-form__input,
.jr-contact-form__textarea {
	width: 100%;
	border: 1px solid rgba(255, 247, 240, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font: inherit;
	padding: 0.92rem 1rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.jr-contact-form__textarea {
	min-height: 152px;
	resize: vertical;
}

.jr-contact-form__input::placeholder,
.jr-contact-form__textarea::placeholder {
	color: rgba(255, 248, 243, 0.5);
}

.jr-contact-form__input:focus,
.jr-contact-form__textarea:focus {
	outline: none;
	border-color: rgba(255, 236, 223, 0.54);
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.jr-contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.88rem 1.2rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #fff6f0 0%, #ffd7bd 100%);
	color: #7a4527;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 18px 34px rgba(32, 13, 7, 0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jr-contact-form__submit:hover,
.jr-contact-form__submit:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 40px rgba(32, 13, 7, 0.18);
	outline: none;
}

.jr-contact-form__notice {
	margin-bottom: 14px;
	padding: 0.88rem 1rem;
	border-radius: 18px;
	font-size: 0.92rem;
	line-height: 1.45;
}

.jr-contact-form__notice--success {
	background: rgba(228, 255, 236, 0.16);
	border: 1px solid rgba(188, 255, 207, 0.2);
	color: #f5fff7;
}

.jr-contact-form__notice--invalid,
.jr-contact-form__notice--error {
	background: rgba(255, 240, 233, 0.14);
	border: 1px solid rgba(255, 213, 196, 0.2);
	color: #fff4ef;
}

.jr-contact-form__trap {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1180px) {
	:root {
		--shell: min(1280px, calc(100vw - 32px));
	}

	.site-header__inner {
		gap: 14px 20px;
	}

	.jr-hero > .e-con-inner {
		width: min(100vw - 24px, 1400px);
	}

	.jr-contact-grid > .e-con-inner {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 760px) {
	:root {
		--shell: calc(100vw - 24px);
	}

	.site-header {
		padding: 10px 0;
	}

	.site-header__inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.site-nav {
		justify-content: flex-start;
		gap: 12px;
		font-size: 0.82rem;
	}

	.jr-hero > .e-con-inner {
		width: calc(100vw - 18px);
	}

	.jr-card--intro {
		padding-inline: 24px;
	}

	.jr-contact-form-card {
		padding: 24px;
		border-radius: 30px;
	}

	.jr-contact-form__grid,
	.jr-contact-direct > .e-con-inner {
		grid-template-columns: 1fr;
	}
}

.jr-contact-form-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 248, 243, 0.78);
}

.jr-contact-form-card > .e-con-inner > :nth-child(2) .elementor-heading-title {
	margin-top: 10px;
	font-family: var(--font-title);
	font-size: clamp(1.45rem, 1.8vw, 1.9rem);
	line-height: 0.98;
	color: #fff;
}

.jr-contact-form-card > .e-con-inner > :nth-child(3) {
	margin-top: 18px;
}

.jr-hero-grid,
.jr-service-grid,
.jr-about-grid,
.jr-contact-grid,
.jr-hero-band,
.jr-hero-actions,
.jr-chip-row,
.jr-contact-actions,
.jr-contact-direct {
	display: block !important;
}

.jr-contact-direct > .e-con-inner {
	display: grid !important;
}

/* Final layout pass */

:root {
	--edge-gap: 25px;
}

.jr-home.e-con-boxed {
	--e-con-container-max-width: 100%;
	width: 100% !important;
	max-width: none !important;
}

.jr-home.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
}

.jr-hero.e-con-boxed,
.jr-section--deep.e-con-boxed {
	--e-con-container-max-width: calc(100vw - (var(--edge-gap) * 2));
}

.jr-section--deep.e-con-boxed {
	--e-con-container-max-width: 100vw;
	width: 100vw !important;
	max-width: 100vw !important;
	margin: 72px 0 0 !important;
	border-radius: 0 !important;
	--border-radius: 0;
}

.jr-hero.e-con-boxed > .e-con-inner,
.jr-section--deep.e-con-boxed > .e-con-inner {
	width: calc(100vw - (var(--edge-gap) * 2)) !important;
	max-width: calc(100vw - (var(--edge-gap) * 2)) !important;
	margin: 0 auto !important;
}

.jr-section--deep.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
}

.jr-hero-grid.e-con-boxed,
.jr-contact-grid.e-con-boxed {
	--e-con-container-max-width: 100%;
}

.jr-hero-grid.e-con-boxed > .e-con-inner,
.jr-contact-grid.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.jr-hero-grid > .e-con-inner {
	gap: 12px;
	padding-inline: 0;
}

.jr-card--intro {
	padding-inline: 20px;
	border-radius: 46px !important;
	--border-radius: 46px;
}

.jr-card--intro::after {
	right: 2.5%;
}

.jr-card--detail,
.jr-card--focus,
.jr-card--metrics {
	padding: 18px;
	border-radius: 34px !important;
	--border-radius: 34px;
	overflow: hidden;
}

.jr-card--detail > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.76rem, 1.85vw, 2.1rem);
}

.jr-card--focus > .e-con-inner > :nth-child(2) .elementor-heading-title,
.jr-card--metrics > .e-con-inner > :nth-child(2) .elementor-heading-title {
	font-size: clamp(1.22rem, 1.34vw, 1.56rem);
}

.jr-card--detail > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--metrics > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) .elementor-widget-container,
.jr-card--focus > .e-con-inner > :nth-child(3) li {
	font-size: 0.9rem;
	line-height: 1.34;
}

.jr-card--metrics .jr-stat-card {
	padding: 10px 11px;
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(1) .elementor-heading-title {
	font-size: 1.08rem;
}

.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) .elementor-widget-container,
.jr-card--metrics .jr-stat-card > .e-con-inner > :nth-child(2) p {
	font-size: 0.74rem;
}

.jr-section--deep {
	margin-top: 72px;
	margin-bottom: 0 !important;
	padding: 0;
	border-radius: 0 !important;
	--border-radius: 0;
	overflow: hidden;
}

.jr-section--deep > .e-con-inner {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	overflow: hidden;
}

.jr-contact-grid > .e-con-inner {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
	gap: 26px;
	padding: 64px max(25px, calc((100vw - var(--shell)) / 2)) 0;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.jr-contact-grid,
.jr-contact-actions,
.jr-contact-actions > .e-con-inner,
.jr-contact-direct,
.jr-contact-direct > .e-con-inner {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.jr-contact-card > .e-con-inner {
	gap: 0 !important;
}

.jr-contact-card > .e-con-inner > * {
	margin-bottom: 0 !important;
}

.jr-legal-row > .e-con-inner {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 12px 24px;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 14px max(25px, calc((100vw - var(--shell)) / 2)) 24px;
	color: rgba(255, 248, 243, 0.82);
	font-size: 0.92rem;
	border-top: 0 !important;
	background: transparent;
}

.jr-legal-copy .elementor-widget-container,
.jr-legal-copy .elementor-widget-container p {
	margin: 0;
	color: inherit;
	white-space: nowrap;
}

.site-footer {
	width: 100%;
	max-width: none !important;
	margin: -14px 0 0;
	padding: 0 0 26px;
	border-top: 0;
	border-radius: 0;
	position: relative;
	z-index: 2;
	background:
		radial-gradient(circle at 85% 16%, rgba(255, 210, 183, 0.24), transparent 18%),
		linear-gradient(135deg, #9f5b38 0%, #c77646 54%, #e09362 100%);
}

.site-footer .site-shell {
	width: var(--shell);
	max-width: none;
	margin: 0 auto;
	padding: 0 0;
}

.site-footer__inner {
	align-items: center;
	color: rgba(255, 248, 243, 0.82);
	font-size: 0.92rem;
}

.site-footer__inner p {
	margin: 0;
}

@media (max-width: 1180px) {
	.jr-contact-grid > .e-con-inner {
		padding: 56px 24px 26px;
	}
}

@media (max-width: 980px) {
	.jr-contact-grid > .e-con-inner {
		grid-template-columns: 1fr !important;
	}

	.jr-contact-form__grid,
	.jr-contact-direct > .e-con-inner {
		grid-template-columns: 1fr !important;
	}

	.jr-legal-row > .e-con-inner {
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
		gap: 10px;
		padding: 14px 12px 18px;
		font-size: 0.68rem;
		letter-spacing: -0.01em;
		overflow: hidden;
	}

	.jr-legal-copy .elementor-widget-container,
	.jr-legal-copy .elementor-widget-container p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: clip;
	}
}

@media (max-width: 760px) {
	:root {
		--edge-gap: 14px;
	}

	.jr-card--intro {
		padding-inline: 18px;
		border-radius: 34px !important;
		--border-radius: 34px;
	}

	.jr-card--detail,
	.jr-card--focus,
	.jr-card--metrics {
		padding: 20px;
		border-radius: 28px !important;
		--border-radius: 28px;
	}

	.jr-section--deep {
		border-radius: 0 !important;
		--border-radius: 0;
	}

	.jr-contact-grid > .e-con-inner {
		padding: 42px 14px 0;
	}

	.jr-legal-row > .e-con-inner {
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
		gap: 10px;
		padding: 14px 8px 18px;
		font-size: 0.58rem;
		letter-spacing: -0.01em;
		overflow: hidden;
	}

	.jr-legal-copy .elementor-widget-container,
	.jr-legal-copy .elementor-widget-container p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: clip;
	}

	.site-footer {
		padding-bottom: 24px;
		border-radius: 0;
	}

	.site-footer .site-shell {
		width: calc(100vw - 28px);
	}

	.site-footer__inner {
		gap: 6px 16px;
		font-size: 0.82rem;
	}
}

.elementor-7 .jr-home.jr-home.e-con-boxed,
.elementor-7 .jr-home.jr-home.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
}

.elementor-7 .jr-hero.jr-hero.e-con-boxed,
.elementor-7 .jr-section--deep.jr-section--deep.e-con-boxed {
	width: calc(100vw - (var(--edge-gap) * 2)) !important;
	max-width: calc(100vw - (var(--edge-gap) * 2)) !important;
	margin: 0 auto !important;
}

.elementor-7 .jr-section--deep.jr-section--deep.e-con-boxed {
	width: 100vw !important;
	max-width: 100vw !important;
	margin: 72px 0 0 !important;
}

.elementor-7 .jr-hero.jr-hero.e-con-boxed > .e-con-inner,
.elementor-7 .jr-section--deep.jr-section--deep.e-con-boxed > .e-con-inner,
.elementor-7 .jr-hero-grid.jr-hero-grid.e-con-boxed > .e-con-inner,
.elementor-7 .jr-contact-grid.jr-contact-grid.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.elementor-7 .elementor-element.elementor-element-66a7c9f2 > .e-con-inner,
.elementor-7 .elementor-element.elementor-element-2aebae19 > .e-con-inner,
.elementor-7 .elementor-element.elementor-element-d11c1e18 > .e-con-inner,
.elementor-7 .elementor-element.elementor-element-ad44777f > .e-con-inner,
.elementor-7 .elementor-element.elementor-element-ce42012e > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.elementor-7 .elementor-element.elementor-element-2aebae19,
.elementor-7 .elementor-element.elementor-element-d11c1e18 {
	width: calc(100vw - (var(--edge-gap) * 2)) !important;
	max-width: calc(100vw - (var(--edge-gap) * 2)) !important;
	margin: 0 auto !important;
}

/* Final footer seam fix */

.jr-section--deep.e-con-boxed,
.elementor-7 .jr-section--deep.jr-section--deep.e-con-boxed {
	width: 100vw !important;
	max-width: 100vw !important;
	margin: 72px 0 0 !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	left: auto !important;
	right: auto !important;
}

.jr-section--deep.e-con-boxed > .e-con-inner,
.elementor-7 .jr-section--deep.jr-section--deep.e-con-boxed > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding-bottom: 0 !important;
}

.jr-contact-grid,
.jr-contact-grid > .e-con-inner,
.jr-contact-actions,
.jr-contact-actions > .e-con-inner,
.jr-contact-direct,
.jr-contact-direct > .e-con-inner {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.site-footer {
	margin-top: 0 !important;
	padding-top: 0 !important;
	position: relative;
	z-index: 4;
	background:
		radial-gradient(circle at 85% 16%, rgba(255, 210, 183, 0.24), transparent 18%),
		linear-gradient(135deg, #9f5b38 0%, #c77646 54%, #e09362 100%) !important;
}

.site-footer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -22px;
	height: 24px;
	background: inherit;
	pointer-events: none;
}

.site-footer,
.site-footer .site-shell,
.site-footer__inner {
	border-top: 0 !important;
	box-shadow: none !important;
}

/* Final contact responsive repair */

.elementor-7 .elementor-element.elementor-element-f658827e > .e-con-inner,
.jr-home > .e-con-inner {
	padding: 0 !important;
	margin: 0 !important;
}

.jr-legal-row > .e-con-inner > .elementor-element {
	width: auto !important;
	max-width: none !important;
	flex: 0 1 auto !important;
	min-width: 0;
}

@media (max-width: 980px) {
	.jr-contact-grid > .e-con-inner,
	.elementor-7 .jr-contact-grid.jr-contact-grid.e-con-boxed > .e-con-inner {
		grid-template-columns: 1fr !important;
	}

	.jr-contact-direct > .e-con-inner,
	.jr-contact-form__grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 820px) {
	.jr-legal-row > .e-con-inner {
		display: block !important;
		padding: 14px 10px 18px !important;
		font-size: 0.6rem !important;
		line-height: 1.2;
		white-space: nowrap;
		overflow: hidden;
	}

	.jr-legal-copy .elementor-widget-container,
	.jr-legal-copy .elementor-widget-container p {
		white-space: nowrap !important;
		overflow: hidden;
		text-overflow: clip;
	}
}
