/**
 * JH FAQ — white bg, olive/wheat, Raleway
 * Breakpoints: mobile (<768), tablet (768–1023), desktop (1024+)
 */

.jh-faq {
	--jh-ink: #333418;
	--jh-wheat: #f5deb3;
	--jh-wheat-soft: rgba(245, 222, 179, 0.35);
	--jh-bg: #ffffff;
	--jh-line: rgba(51, 52, 24, 0.12);
	--jh-muted: rgba(51, 52, 24, 0.78);
	--jh-radius: 2px;
	--jh-max: 1120px;
	--jh-font: "Raleway", system-ui, -apple-system, sans-serif;
	--jh-font-display: "ambroise-francois-std", "Ambroise Francois Std", Georgia, serif;
	--jh-pad-x: max(1rem, env(safe-area-inset-left, 0px));
	--jh-pad-r: max(1rem, env(safe-area-inset-right, 0px));
	--jh-nav-h: 3.75rem;
	--jh-sticky-offset: calc(var(--jh-nav-h) + 0.5rem);

	color: var(--jh-ink);
	font-family: var(--jh-font);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	background: var(--jh-bg);
	width: 100%;
	max-width: 100%;
	/* Do not set overflow here — it breaks position:sticky for the left nav */
}

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

/* ========== HERO (dark olive theme image + light text) ========== */
.jh-faq__hero {
	--jh-hero-image: url("https://jenahunt.com/wp-content/uploads/2025/08/Group-88.png");
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #ffffff;
	padding: 2.25rem max(1rem, env(safe-area-inset-left, 0px)) 2rem max(1rem, env(safe-area-inset-right, 0px));
	border-bottom: 0;
	background-color: #333418;
	background-image: var(--jh-hero-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.jh-faq__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		105deg,
		rgba(51, 52, 24, 0.72) 0%,
		rgba(51, 52, 24, 0.45) 55%,
		rgba(51, 52, 24, 0.28) 100%
	);
	pointer-events: none;
}

.jh-faq__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 44rem;
	margin: 0 auto;
	width: 100%;
}

.jh-faq__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f5deb3;
}

.jh-faq__eyebrow::after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 2px;
	margin-top: 0.55rem;
	background: #f5deb3;
}

.jh-faq__title {
	margin: 0 0 0.85rem;
	font-family: var(--jh-font-display);
	font-size: clamp(1.15rem, 4.8vw, 1.45rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.jh-faq__intro {
	margin: 0 0 1.35rem;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

/* CTAs: full-width stack on small phones */
.jh-faq__cta-row {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	width: 100%;
}

.jh-faq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 0.85rem 1.15rem;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-align: center;
	border: 1px solid transparent;
	border-radius: var(--jh-radius);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

/* Default (content area) buttons */
.jh-faq__btn--primary {
	background: var(--jh-ink);
	color: var(--jh-wheat);
	border-color: var(--jh-ink);
}

.jh-faq__btn--primary:hover,
.jh-faq__btn--primary:focus-visible {
	background: #2a2b14;
	color: #fff4d8;
}

.jh-faq__btn--secondary {
	background: #ffffff;
	color: var(--jh-ink);
	border-color: rgba(51, 52, 24, 0.35);
}

.jh-faq__btn--secondary:hover,
.jh-faq__btn--secondary:focus-visible {
	border-color: var(--jh-ink);
	background: rgba(245, 222, 179, 0.25);
}

/* Hero CTAs on dark olive */
.jh-faq__hero .jh-faq__btn--primary {
	background: #f5deb3;
	color: #333418;
	border-color: #f5deb3;
}

.jh-faq__hero .jh-faq__btn--primary:hover,
.jh-faq__hero .jh-faq__btn--primary:focus-visible {
	background: #fff4d8;
	color: #333418;
}

.jh-faq__hero .jh-faq__btn--secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.55);
}

.jh-faq__hero .jh-faq__btn--secondary:hover,
.jh-faq__hero .jh-faq__btn--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
}

/* ========== LAYOUT ========== */
.jh-faq__layout {
	max-width: var(--jh-max);
	margin: 0 auto;
	padding: 1.25rem max(1rem, env(safe-area-inset-right, 0px)) 2.75rem max(1rem, env(safe-area-inset-left, 0px));
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.15rem;
	background: #ffffff;
	width: 100%;
}

.jh-faq__main {
	min-width: 0;
	width: 100%;
	position: relative;
	z-index: 1;
}

/* ========== NAV (mobile drawer + desktop sticky) ========== */
.jh-faq__nav-wrap {
	position: relative;
	z-index: 40;
}

.jh-faq__nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 48px;
	margin: 0 0 0.35rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--jh-ink);
	background: var(--jh-ink);
	color: var(--jh-wheat);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.jh-faq__nav-toggle:hover,
.jh-faq__nav-toggle:focus-visible {
	background: #2a2b14;
}

.jh-faq__nav-toggle:focus-visible {
	outline: 2px solid var(--jh-ink);
	outline-offset: 3px;
}

.jh-faq__nav-toggle-icon {
	position: relative;
	width: 1.05rem;
	height: 0.85rem;
	flex: 0 0 auto;
}

.jh-faq__nav-toggle-icon::before,
.jh-faq__nav-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 1.5px;
	background: currentColor;
	transition: transform 0.28s ease, top 0.28s ease, opacity 0.2s ease;
}

.jh-faq__nav-toggle-icon::before {
	top: 0.15rem;
	box-shadow: 0 0.35rem 0 currentColor;
}

.jh-faq__nav-toggle-icon::after {
	bottom: 0.15rem;
	top: auto;
}

.jh-faq.is-nav-open .jh-faq__nav-toggle-icon::before {
	top: 50%;
	box-shadow: none;
	transform: translateY(-50%) rotate(45deg);
}

.jh-faq.is-nav-open .jh-faq__nav-toggle-icon::after {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}

.jh-faq__nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 10080;
	background: rgba(51, 52, 24, 0.42);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.jh-faq.is-nav-open .jh-faq__nav-backdrop,
.jh-faq__nav-backdrop.is-open,
.jh-faq__nav-backdrop--drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.jh-faq__nav {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 10090;
	width: min(19.5rem, 88vw);
	margin: 0;
	padding: 1.1rem 0.85rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	background: #ffffff;
	border-right: 1px solid var(--jh-line);
	box-shadow: 8px 0 28px rgba(51, 52, 24, 0.12);
	transform: translateX(-105%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.jh-faq.is-nav-open .jh-faq__nav,
.jh-faq__nav.is-open,
.jh-faq__nav--drawer.is-open {
	transform: translateX(0);
}

.jh-faq__nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.15rem 0.35rem 0.55rem;
	border-bottom: 1px solid var(--jh-line);
	flex: 0 0 auto;
}

.jh-faq__nav-label {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jh-muted);
}

.jh-faq__nav-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--jh-ink);
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.jh-faq__nav-close:hover,
.jh-faq__nav-close:focus-visible {
	background: var(--jh-wheat-soft);
}

.jh-faq__nav-close:focus-visible {
	outline: 2px solid var(--jh-ink);
	outline-offset: 2px;
}

.jh-faq__nav-scroll {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.1rem;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0.25rem 0 0.5rem;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(51, 52, 24, 0.35) transparent;
}

.jh-faq__nav-link {
	display: block;
	padding: 0.7rem 0.65rem;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--jh-ink);
	text-decoration: none;
	border: 0;
	border-left: 2px solid transparent;
	background: transparent;
	text-align: left;
	white-space: normal;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.jh-faq__nav-link:hover,
.jh-faq__nav-link:focus-visible {
	border-left-color: var(--jh-ink);
	background: var(--jh-wheat-soft);
	color: var(--jh-ink);
}

.jh-faq__nav-link.is-active {
	border-left-color: var(--jh-ink);
	background: var(--jh-wheat-soft);
	color: var(--jh-ink);
}

.jh-faq__nav-link:focus-visible {
	outline: 2px solid var(--jh-ink);
	outline-offset: 2px;
}

body.jh-faq-nav-lock {
	overflow: hidden;
}

/* ========== COMMUNITY PAGE BREAK ========== */
.jh-faq__break {
	--jh-break-image: url("https://jenahunt.com/wp-content/uploads/2026/05/utah-home-cover-jena-hunt3-scaled.png");
	position: relative;
	isolation: isolate;
	margin: 2rem 0 2.75rem;
	padding: 3rem 1.15rem 3.15rem;
	text-align: center;
	overflow: hidden;
	border: 0;
	box-shadow: none;
	background-color: #f7f4ec;
	background-image: var(--jh-break-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.jh-faq__break::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.88) 0%,
			rgba(255, 255, 255, 0.82) 45%,
			rgba(255, 255, 255, 0.9) 100%
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.55) 0%,
			rgba(255, 255, 255, 0.2) 50%,
			rgba(255, 255, 255, 0.55) 100%
		);
}

.jh-faq__break::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	width: min(7.5rem, 36%);
	height: 3px;
	transform: translateX(-50%);
	background: var(--jh-ink);
	opacity: 0.7;
}

.jh-faq__break-inner {
	position: relative;
	z-index: 2;
	max-width: 52rem;
	margin: 0 auto;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.jh-faq__break-eyebrow {
	margin: 0 0 0.85rem;
	font-family: var(--jh-font);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(51, 52, 24, 0.62);
	line-height: 1.4;
}

.jh-faq__break-title {
	margin: 0 0 1.55rem;
	font-family: var(--jh-font-display);
	font-size: clamp(1.65rem, 6.5vw, 3rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--jh-ink);
	overflow-wrap: anywhere;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.jh-faq__break-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.jh-faq__break-tab {
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	min-width: 0;
	max-width: none;
	border: 0;
	background: transparent;
}

.jh-faq__break-link {
	display: inline-block;
	width: auto;
	min-height: 0;
	padding: 0.35rem 0.1rem;
	margin: 0;
	font-family: var(--jh-font);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #b8921f;
	border: 0;
	background: transparent;
	box-shadow: none;
	position: relative;
	transition: color 0.25s ease, transform 0.25s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.jh-faq__break-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: currentColor;
	transform: scaleX(0.35);
	transform-origin: center;
	opacity: 0.55;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.jh-faq__break-link:hover,
.jh-faq__break-link:focus-visible {
	color: #8f7010;
	opacity: 1;
	transform: translateY(-1px);
}

.jh-faq__break-link:hover::after,
.jh-faq__break-link:focus-visible::after {
	transform: scaleX(1);
	opacity: 1;
}

.jh-faq__break-link:focus-visible {
	outline: 2px solid var(--jh-ink);
	outline-offset: 4px;
}

/* ========== SECTIONS / ACCORDION ========== */
.jh-faq__section {
	margin: 0 0 1.75rem;
	scroll-margin-top: calc(var(--jh-mobile-header-offset, 0px) + 0.85rem);
	background: #ffffff;
}

.jh-faq__section-title {
	margin: 0 0 0.75rem;
	padding-bottom: 0.65rem;
	font-family: var(--jh-font-display);
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-transform: uppercase;
	border-bottom: 1px solid var(--jh-line);
	color: var(--jh-ink);
	overflow-wrap: anywhere;
}

.jh-faq__accordion {
	border-top: 1px solid var(--jh-line);
	background: #ffffff;
}

.jh-faq__item {
	border-bottom: 1px solid var(--jh-line);
	background: #ffffff;
}

.jh-faq__item > summary {
	list-style: none;
}

.jh-faq__item > summary::-webkit-details-marker {
	display: none;
}

.jh-faq__question {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 1rem 0.1rem 1rem 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-family: var(--jh-font);
	font-size: 0.96rem;
	font-weight: 600;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	cursor: pointer;
	min-height: 52px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	position: relative;
	z-index: 1;
	pointer-events: auto;
	user-select: none;
}

.jh-faq__question:focus-visible {
	outline: 2px solid var(--jh-ink);
	outline-offset: 3px;
}

.jh-faq__question-text {
	flex: 1;
	min-width: 0;
	font-family: var(--jh-font);
	font-weight: 600;
	letter-spacing: normal;
	text-transform: none;
	line-height: 1.4;
	color: var(--jh-ink);
	overflow-wrap: anywhere;
}

.jh-faq__icon {
	flex: 0 0 auto;
	width: 1.4rem;
	height: 1.4rem;
	margin-top: 0.12rem;
	position: relative;
}

.jh-faq__icon::before,
.jh-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--jh-ink);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.jh-faq__icon::before {
	top: 50%;
	left: 15%;
	right: 15%;
	height: 1.5px;
	transform: translateY(-50%);
}

.jh-faq__icon::after {
	left: 50%;
	top: 15%;
	bottom: 15%;
	width: 1.5px;
	transform: translateX(-50%) scaleY(1);
	transform-origin: center;
}

.jh-faq__item[open] > .jh-faq__question .jh-faq__icon::after {
	transform: translateX(-50%) scaleY(0);
	opacity: 0;
}

.jh-faq__answer {
	overflow: hidden;
	background: #ffffff;
	will-change: height, opacity;
}

.jh-faq__answer-inner {
	padding: 0 0.25rem 1.1rem 0;
	max-width: 46rem;
}

.jh-faq__answer-inner p {
	margin: 0;
	font-size: 0.94rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--jh-muted);
	overflow-wrap: anywhere;
}

/* ========== CLOSING CTA (olive statement, no photo) ========== */
.jh-faq__closing {
	position: relative;
	isolation: isolate;
	margin-top: 2.5rem;
	padding: 2.5rem 1.25rem 2.65rem;
	overflow: hidden;
	text-align: center;
	color: var(--jh-wheat);
	border: 0;
	background:
		radial-gradient(120% 90% at 50% -10%, rgba(245, 222, 179, 0.18) 0%, transparent 55%),
		linear-gradient(145deg, #3a3b1c 0%, #333418 42%, #2a2b14 100%);
}

.jh-faq__closing::before {
	content: "";
	position: absolute;
	inset: 0.7rem;
	z-index: 0;
	pointer-events: none;
	border: 1px solid rgba(245, 222, 179, 0.28);
}

.jh-faq__closing::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	width: min(5.5rem, 30%);
	height: 3px;
	transform: translateX(-50%);
	background: var(--jh-wheat);
	opacity: 0.9;
}

.jh-faq__closing-inner {
	position: relative;
	z-index: 2;
	max-width: 36rem;
	margin: 0 auto;
}

.jh-faq__closing-eyebrow {
	margin: 0 0 0.85rem;
	font-family: var(--jh-font);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 222, 179, 0.72);
}

.jh-faq__closing-title {
	margin: 0 0 0.95rem;
	font-family: var(--jh-font-display);
	font-size: clamp(1.55rem, 5.5vw, 2.35rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.12;
	color: var(--jh-wheat);
	overflow-wrap: anywhere;
	text-shadow: none;
}

.jh-faq__closing-text {
	margin: 0 auto 1.65rem;
	max-width: 32rem;
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(245, 222, 179, 0.82);
}

.jh-faq__btn--closing,
.jh-faq__closing .jh-faq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: auto;
	min-width: min(100%, 15.5rem);
	min-height: 56px;
	padding: 1rem 1.6rem 1rem 1.85rem;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--jh-wheat);
	color: var(--jh-ink);
	border: 1px solid var(--jh-wheat);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.jh-faq__btn--closing:hover,
.jh-faq__btn--closing:focus-visible,
.jh-faq__closing .jh-faq__btn:hover,
.jh-faq__closing .jh-faq__btn:focus-visible {
	background: #fff4d8;
	color: #2a2b14;
	border-color: #fff4d8;
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.jh-faq__btn-arrow {
	display: inline-block;
	width: 0.85rem;
	height: 0.85rem;
	position: relative;
	flex: 0 0 auto;
}

.jh-faq__btn-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	transform: translateY(-50%);
}

.jh-faq__btn-arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.jh-faq__btn--closing:hover .jh-faq__btn-arrow,
.jh-faq__btn--closing:focus-visible .jh-faq__btn-arrow {
	transform: translateX(3px);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== TABLET (768–1023) ========== */
@media (min-width: 768px) and (max-width: 1023px) {
	.jh-faq {
		--jh-nav-h: 4.25rem;
		--jh-sticky-offset: calc(var(--jh-nav-h) + 0.75rem);
	}

	.jh-faq__hero {
		padding: 3rem 1.75rem 2.35rem;
	}

	.jh-faq__hero-inner {
		max-width: 40rem;
		margin: 0;
	}

	.jh-faq__eyebrow {
		font-size: 0.72rem;
		letter-spacing: 0.16em;
	}

	.jh-faq__title {
		font-size: clamp(1.75rem, 3.2vw, 2.15rem);
		margin-bottom: 1rem;
	}

	.jh-faq__intro {
		font-size: 1.02rem;
		max-width: 38rem;
		margin-bottom: 1.5rem;
	}

	.jh-faq__cta-row {
		flex-direction: row;
		flex-wrap: wrap;
		width: auto;
	}

	.jh-faq__btn {
		width: auto;
		min-width: 11.5rem;
		padding: 0.85rem 1.35rem;
	}

	.jh-faq__layout {
		padding: 1.75rem 1.75rem 3.25rem;
		gap: 1.5rem;
	}

	.jh-faq__nav {
		margin: 0;
		padding: 1.1rem 0.85rem 1.5rem;
	}

	.jh-faq__nav-scroll {
		padding: 0.25rem 0 0.5rem;
		gap: 0.1rem;
	}

	.jh-faq__nav-link {
		font-size: 0.94rem;
		padding: 0.75rem 0.7rem;
	}

	.jh-faq__section {
		margin-bottom: 2.15rem;
		scroll-margin-top: calc(var(--jh-mobile-header-offset, 0px) + 1rem);
	}

	.jh-faq__section-title {
		font-size: 2rem;
		margin-bottom: 0.9rem;
	}

	.jh-faq__question {
		font-size: 1.02rem;
		padding: 1.15rem 0.25rem 1.15rem 0;
		gap: 1rem;
		min-height: 56px;
	}

	.jh-faq__answer-inner {
		padding: 0 2rem 1.25rem 0;
	}

	.jh-faq__answer-inner p {
		font-size: 0.98rem;
	}

	.jh-faq__closing {
		padding: 3.15rem 2.25rem 3.35rem;
		margin-top: 2.75rem;
	}

	.jh-faq__closing::before {
		inset: 0.9rem;
	}

	.jh-faq__closing-title {
		font-size: clamp(1.85rem, 3vw, 2.35rem);
	}

	.jh-faq__closing .jh-faq__btn,
	.jh-faq__btn--closing {
		width: auto;
		min-width: 15rem;
	}

	.jh-faq__break {
		margin: 2.25rem 0 3rem;
		padding: 3rem 1rem 3.25rem;
	}

	.jh-faq__break-eyebrow {
		font-size: 1.05rem;
		margin-bottom: 1rem;
	}

	.jh-faq__break-title {
		margin-bottom: 1.75rem;
		font-size: clamp(2.1rem, 3.8vw, 3.1rem);
		letter-spacing: 0.05em;
	}

	.jh-faq__break-tabs {
		gap: 1rem 3rem;
	}

	.jh-faq__break-link {
		font-size: 0.88rem;
		letter-spacing: 0.16em;
	}
}

/* Larger phones / small tablets in landscape-ish widths */
@media (min-width: 480px) and (max-width: 767px) {
	.jh-faq__cta-row {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.jh-faq__btn {
		width: auto;
		flex: 1 1 calc(50% - 0.35rem);
		min-width: 9.5rem;
	}

	.jh-faq__title {
		font-size: clamp(1.55rem, 5vw, 1.9rem);
	}
}

/* ========== DESKTOP (1024+) ========== */
@media (min-width: 1024px) {
	.jh-faq {
		--jh-sticky-offset: 7rem;
	}

	.jh-faq__hero {
		padding: clamp(2.75rem, 5vw, 4.25rem) 2rem clamp(2rem, 4vw, 2.75rem);
	}

	.jh-faq__title {
		font-size: 60px;
		line-height: 1.1;
		max-width: none;
	}

	.jh-faq__intro {
		font-size: 1.08rem;
		max-width: 40rem;
	}

	.jh-faq__cta-row {
		flex-direction: row;
		width: auto;
	}

	.jh-faq__btn {
		width: auto;
		min-width: 0;
	}

	.jh-faq__layout {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 2.5rem;
		align-items: start;
		padding: clamp(2rem, 4vw, 3rem) 2rem clamp(3.5rem, 6vw, 5rem);
	}

	/* Sticky left nav on desktop */
	.jh-faq__nav-wrap {
		position: sticky;
		top: calc(var(--jh-mobile-header-offset, 0px) + 1.25rem);
		align-self: start;
		z-index: 5;
		max-height: calc(100vh - var(--jh-mobile-header-offset, 0px) - 2rem);
	}

	.jh-faq__nav-toggle,
	.jh-faq__nav-backdrop,
	.jh-faq__nav-close {
		display: none !important;
	}

	.jh-faq__nav {
		position: relative;
		top: auto;
		left: auto;
		bottom: auto;
		width: auto;
		max-height: calc(100vh - var(--jh-mobile-header-offset, 0px) - 2rem);
		margin: 0;
		padding: 0.85rem 0.75rem 0.85rem 0;
		transform: none;
		transition: none;
		box-shadow: none;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		scrollbar-width: thin;
		scrollbar-color: rgba(51, 52, 24, 0.35) transparent;
		background: #ffffff;
		border-right: 1px solid var(--jh-line);
		z-index: 5;
	}

	.jh-faq.is-nav-open .jh-faq__nav {
		transform: none;
	}

	.jh-faq__nav::-webkit-scrollbar {
		width: 4px;
	}

	.jh-faq__nav::-webkit-scrollbar-thumb {
		background: rgba(51, 52, 24, 0.3);
		border-radius: 4px;
	}

	.jh-faq__nav-header {
		display: block;
		padding: 0.15rem 0 0.5rem;
		border-bottom: 0;
		position: sticky;
		top: 0;
		z-index: 1;
		background: #ffffff;
	}

	.jh-faq__nav-label {
		display: block;
		margin: 0 0 0.75rem;
		padding: 0;
		font-size: 0.72rem;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--jh-muted);
		background: #ffffff;
	}

	.jh-faq__nav-scroll {
		flex-direction: column;
		flex-wrap: nowrap;
		overflow: visible;
		padding: 0;
		gap: 0.15rem;
	}

	.jh-faq__nav-link {
		display: block;
		white-space: normal;
		max-width: none;
		border: 0;
		border-radius: 0;
		border-left: 2px solid transparent;
		background: transparent;
		padding: 0.5rem 0.5rem 0.5rem 0.85rem;
		min-height: 0;
		text-align: left;
		line-height: 1.35;
		font-size: 0.88rem;
	}

	.jh-faq__nav-link:hover,
	.jh-faq__nav-link:focus-visible,
	.jh-faq__nav-link.is-active {
		border-left-color: var(--jh-ink);
		background: transparent;
		color: var(--jh-ink);
	}

	.jh-faq__nav-link.is-active {
		font-weight: 700;
		background: rgba(245, 222, 179, 0.28);
		color: var(--jh-ink);
		border-color: transparent;
		border-left-color: var(--jh-ink);
	}

	.jh-faq__section {
		margin-bottom: 3rem;
		scroll-margin-top: 7rem;
	}

	.jh-faq__break {
		margin: 2.5rem 0 3.5rem;
		padding: 3.5rem 1rem 3.75rem;
	}

	.jh-faq__break-title {
		font-size: 3.15rem;
		margin-bottom: 1.85rem;
		letter-spacing: 0.055em;
	}

	.jh-faq__break-tabs {
		gap: 1.15rem 3.5rem;
	}

	.jh-faq__break-tab {
		min-width: 0;
	}

	.jh-faq__break-link {
		font-size: 0.92rem;
	}

	.jh-faq__section-title {
		font-size: 2rem;
	}

	.jh-faq__question {
		font-size: 1.05rem;
	}

	.jh-faq__answer-inner p {
		font-size: 1.02rem;
	}

	.jh-faq__closing {
		padding: clamp(3.5rem, 6vw, 4.25rem) clamp(2rem, 4vw, 3.25rem);
		margin-top: 3.25rem;
	}

	.jh-faq__closing::before {
		inset: 1rem;
	}

	.jh-faq__closing .jh-faq__btn,
	.jh-faq__btn--closing {
		width: auto;
		min-width: 16.5rem;
		min-height: 58px;
	}
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
	.jh-faq__btn,
	.jh-faq__nav-link,
	.jh-faq__nav,
	.jh-faq__nav-backdrop,
	.jh-faq__nav-toggle-icon::before,
	.jh-faq__nav-toggle-icon::after,
	.jh-faq__icon::before,
	.jh-faq__icon::after,
	.jh-faq__answer,
	.jh-faq__break-link,
	.jh-faq__break-link::after,
	.jh-faq__closing .jh-faq__btn {
		transition: none !important;
		animation: none !important;
	}
}

.elementor-editor-active .jh-faq__nav-toggle {
	display: inline-flex;
}

.elementor-editor-active .jh-faq__nav {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	width: auto;
	box-shadow: none;
}

/* Avoid Elementor column squeeze issues */
.elementor-widget-jh-faq-page,
.elementor-widget-jh-faq-page > .elementor-widget-container {
	max-width: 100%;
}
