/*
Theme Name: Exposure Framework
Theme URI: https://exposureframework.com/
Author: Respirare Labs
Author URI: https://respirarelabs.com/
Description: Homeowner-first environmental testing, report review, education, and decision-support theme for The Exposure Framework.
Version: 1.5.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: exposure-framework
*/

:root {
	--ef-ink: #17352f;
	--ef-ink-deep: #0d2924;
	--ef-green: #176f65;
	--ef-green-bright: #21867a;
	--ef-mint: #d9eee8;
	--ef-mint-soft: #eef7f4;
	--ef-cream: #f7f4ec;
	--ef-paper: #fffefa;
	--ef-sand: #e7dfd1;
	--ef-amber: #d99545;
	--ef-amber-soft: #f5e3ca;
	--ef-slate: #5e6d68;
	--ef-line: #d8dfda;
	--ef-white: #fff;
	--ef-shadow: 0 24px 70px rgba(16, 50, 43, .13);
	--ef-serif: ui-serif, Georgia, Cambria, "Times New Roman", serif;
	--ef-sans: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.ef-site {
	margin: 0;
	background: var(--ef-paper);
	color: var(--ef-ink);
	font-family: var(--ef-sans);
	-webkit-font-smoothing: antialiased;
}

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

body.ef-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.ef-site button,
body.ef-site input,
body.ef-site select,
body.ef-site textarea {
	font: inherit;
}

.ef-shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.ef-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 11px 15px;
	transform: translateY(-160%);
	background: var(--ef-ink-deep);
	color: #fff !important;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 800;
}

.ef-skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid rgba(217, 149, 69, .68);
	outline-offset: 3px;
}

.ef-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: 82px;
	background: rgba(255, 254, 250, .95);
	border-bottom: 1px solid rgba(23, 53, 47, .1);
	backdrop-filter: blur(18px);
}

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

.ef-header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 34px;
}

.ef-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 205px;
}

.ef-brand-mark {
	display: grid;
	place-items: center;
	width: 37px;
	height: 37px;
	flex: 0 0 auto;
	border: 1.5px solid var(--ef-green);
	border-radius: 50%;
	background: var(--ef-mint-soft);
}

.ef-brand-mark span {
	color: var(--ef-green);
	font-family: var(--ef-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -.04em;
}

.ef-brand-words {
	display: flex;
	flex-direction: column;
	line-height: 1.02;
	font-size: 15px;
	letter-spacing: -.02em;
}

.ef-brand-words strong {
	font-weight: 760;
}

.ef-brand-words em {
	color: var(--ef-green);
	font-family: var(--ef-serif);
	font-size: 17px;
	font-style: normal;
}

.ef-desktop-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}

.ef-desktop-nav a {
	color: #3d5751;
	font-size: 13px;
	font-weight: 680;
	transition: color .2s ease;
}

.ef-desktop-nav a:hover {
	color: var(--ef-green);
}

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


.ef-professional-link {
	padding-left: 16px;
	border-left: 1px solid var(--ef-line);
}

.ef-case-link {
	padding: 8px 4px;
	color: var(--ef-green);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.ef-case-link:hover {
	color: var(--ef-ink-deep);
}

.ef-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 10px;
	color: var(--ef-green);
	font-size: 12px;
	font-weight: 800;
}

.ef-cart-count {
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding-inline: 5px;
	border-radius: 100px;
	background: var(--ef-mint);
	font-size: 10px;
}

.ef-header-cta,
.ef-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 21px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.2;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ef-header-cta {
	min-height: 44px;
	padding: 0 17px;
	border-radius: 100px;
	background: var(--ef-ink);
	color: #fff !important;
}

.ef-header-cta:hover,
.ef-button:hover {
	transform: translateY(-2px);
}

.ef-header-cta:hover {
	background: var(--ef-green);
}

.ef-button-primary {
	background: var(--ef-green);
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(23, 111, 101, .2);
}

.ef-button-primary:hover {
	background: var(--ef-ink);
	box-shadow: 0 14px 30px rgba(13, 41, 36, .2);
}

.ef-button-secondary {
	border-color: #cbd8d3;
	background: rgba(255, 255, 255, .72);
	color: var(--ef-ink) !important;
}

.ef-button-secondary:hover {
	border-color: var(--ef-green);
	background: #fff;
}

.ef-button-cream {
	background: var(--ef-cream);
	color: var(--ef-ink) !important;
}

.ef-button-cream:hover {
	background: #fff;
}

.ef-mobile-menu {
	position: relative;
	display: none;
	margin-left: auto;
}

.ef-mobile-menu summary {
	padding: 10px 12px;
	list-style: none;
	cursor: pointer;
	color: var(--ef-green);
	font-size: 12px;
	font-weight: 850;
}

.ef-mobile-menu summary::-webkit-details-marker {
	display: none;
}

.ef-mobile-menu nav {
	position: absolute;
	top: 44px;
	right: 0;
	width: 230px;
	display: grid;
	padding: 9px;
	background: #fff;
	border: 1px solid var(--ef-line);
	border-radius: 9px;
	box-shadow: 0 18px 40px rgba(13, 41, 36, .16);
}

.ef-mobile-menu nav a {
	padding: 12px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 720;
}

.ef-mobile-menu nav a:hover {
	background: var(--ef-mint-soft);
	color: var(--ef-green);
}

.ef-eyebrow {
	margin: 0;
	color: var(--ef-green);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ef-eyebrow > span {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 7px;
	border-radius: 50%;
	background: var(--ef-amber);
}

.ef-eyebrow-light {
	color: #a9d8cd;
}

.ef-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 102px;
	background: var(--ef-cream);
}

.ef-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: .32;
	background-image: radial-gradient(rgba(23, 111, 101, .22) .7px, transparent .7px);
	background-size: 22px 22px;
	mask-image: linear-gradient(to right, transparent 0%, #000 52%, #000 100%);
}

.ef-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	align-items: center;
	gap: 74px;
}

.ef-hero h1 {
	max-width: 680px;
	margin: 22px 0 24px;
	color: var(--ef-ink-deep);
	font-family: var(--ef-serif);
	font-size: clamp(49px, 5.4vw, 75px);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: .98;
}

.ef-hero-lede {
	max-width: 650px;
	margin: 0;
	color: #50645f;
	font-size: 18px;
	line-height: 1.68;
}

.ef-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ef-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 27px 0 0;
	padding: 0;
	list-style: none;
	color: #5a6c67;
	font-size: 11px;
	font-weight: 680;
}

.ef-hero-card {
	position: relative;
	padding: 31px;
	border: 1px solid #d7e1dc;
	border-radius: 18px;
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--ef-shadow);
	transform: rotate(1deg);
}

.ef-hero-card::before,
.ef-hero-card::after {
	position: absolute;
	z-index: -1;
	content: "";
	border: 1px solid rgba(23, 111, 101, .16);
	border-radius: 50%;
}

.ef-hero-card::before {
	width: 480px;
	height: 480px;
	top: -76px;
	left: -34px;
}

.ef-hero-card::after {
	width: 390px;
	height: 390px;
	top: -30px;
	left: 10px;
	border-style: dashed;
}

.ef-hero-card-label {
	color: var(--ef-green);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .14em;
}

.ef-hero-card h2 {
	margin: 15px 0 25px;
	font-family: var(--ef-serif);
	font-size: 27px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.22;
}

.ef-path-step {
	display: flex;
	gap: 13px;
	padding: 15px 0;
	border-top: 1px solid var(--ef-line);
}

.ef-path-step > span {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--ef-mint-soft);
	color: var(--ef-green);
	font-size: 10px;
	font-weight: 850;
}

.ef-path-step > div,
.ef-path-result {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ef-path-step strong {
	font-size: 13px;
}

.ef-path-step small {
	color: var(--ef-slate);
	font-size: 10px;
	line-height: 1.5;
}

.ef-path-result {
	margin-top: 8px;
	padding: 18px;
	border-radius: 10px;
	background: var(--ef-ink);
	color: #fff;
}

.ef-path-result small {
	color: #f5d5ab;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .12em;
}

.ef-path-result strong {
	font-family: var(--ef-serif);
	font-size: 19px;
	font-weight: 500;
}

.ef-guide-band {
	padding: 55px 0;
	background: var(--ef-ink-deep);
	color: #fff;
}

.ef-guide-band-grid {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	align-items: center;
	gap: 78px;
}

.ef-guide-band h2 {
	margin: 12px 0 14px;
	font-family: var(--ef-serif);
	font-size: clamp(34px, 4vw, 47px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.06;
}

.ef-guide-band p:not(.ef-eyebrow) {
	margin: 0;
	color: #bed0cb;
	font-size: 14px;
	line-height: 1.7;
}

.ef-guide-prompt {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 12px;
	background: rgba(255, 255, 255, .07);
}

.ef-guide-prompt form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.ef-guide-prompt label {
	grid-column: 1 / -1;
	color: #fff;
	font-size: 11px;
	font-weight: 760;
}

.ef-guide-prompt textarea {
	width: 100%;
	min-height: 86px;
	padding: 13px 14px;
	resize: vertical;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 7px;
	background: #fff;
	color: var(--ef-ink);
	font-size: 13px;
	line-height: 1.5;
}

.ef-guide-prompt .ef-button {
	align-self: stretch;
}

.ef-guide-prompt > small {
	display: block;
	margin-top: 10px;
	color: #8eaaa3;
	font-size: 9px;
}

.ef-section {
	padding: 106px 0;
}

.ef-section-heading {
	margin-bottom: 49px;
}

.ef-section-heading h2,
.ef-order-grid h2,
.ef-product-technical h2 {
	margin: 14px 0 0;
	color: var(--ef-ink-deep);
	font-family: var(--ef-serif);
	font-size: clamp(36px, 4.4vw, 53px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.ef-heading-split {
	display: grid;
	grid-template-columns: 1.18fr .82fr;
	align-items: end;
	gap: 82px;
}

.ef-heading-split > p,
.ef-section-heading > p {
	margin: 0 0 3px;
	color: var(--ef-slate);
	font-size: 15px;
	line-height: 1.75;
}

.ef-concern-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ef-concern-grid > a {
	position: relative;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	padding: 27px 24px;
	border: 1px solid var(--ef-line);
	background: #fff;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ef-concern-grid > a:hover {
	transform: translateY(-5px);
	border-color: #a5c3ba;
	box-shadow: 0 18px 40px rgba(17, 61, 52, .08);
}

.ef-concern-grid > a > span {
	color: var(--ef-amber);
	font-family: var(--ef-serif);
	font-size: 15px;
}

.ef-concern-grid h3 {
	margin: 43px 0 12px;
	font-family: var(--ef-serif);
	font-size: 23px;
	font-weight: 600;
	line-height: 1.15;
}

.ef-concern-grid p {
	margin: 0;
	color: var(--ef-slate);
	font-size: 12px;
	line-height: 1.68;
}

.ef-concern-grid em {
	margin-top: auto;
	padding-top: 22px;
	color: var(--ef-green);
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
}

.ef-framework-section {
	background: var(--ef-cream);
}

.ef-framework-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #dcd7cb;
	background: #fff;
}

.ef-framework-steps li {
	min-height: 205px;
	display: flex;
	flex-direction: column;
	padding: 25px;
	border-right: 1px solid var(--ef-line);
}

.ef-framework-steps li:last-child {
	border-right: 0;
}

.ef-framework-steps span {
	color: var(--ef-amber);
	font-family: var(--ef-serif);
	font-size: 14px;
}

.ef-framework-steps strong {
	margin-top: auto;
	font-family: var(--ef-serif);
	font-size: 21px;
	font-weight: 600;
}

.ef-framework-steps small {
	margin-top: 7px;
	color: var(--ef-slate);
	font-size: 10px;
	line-height: 1.5;
}

.ef-featured-tests {
	background: #fff;
}

.ef-text-link {
	display: inline-flex;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	color: var(--ef-green) !important;
	font-size: 12px;
	font-weight: 800;
}

.ef-order-path {
	background: var(--ef-mint-soft);
}

.ef-order-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: start;
	gap: 90px;
}

.ef-order-grid ol {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--ef-line);
}

.ef-order-grid li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	padding: 21px;
	border-bottom: 1px solid var(--ef-line);
}

.ef-order-grid li:last-child {
	border-bottom: 0;
}

.ef-order-grid li > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--ef-mint);
	color: var(--ef-green);
	font-size: 11px;
	font-weight: 850;
}

.ef-order-grid li > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ef-order-grid li strong {
	font-size: 13px;
}

.ef-order-grid li small {
	color: var(--ef-slate);
	font-size: 11px;
	line-height: 1.5;
}

.ef-closing {
	padding: 98px 0;
	background: var(--ef-green);
	color: #fff;
	text-align: center;
}

.ef-closing .ef-shell {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ef-closing h2 {
	max-width: 870px;
	margin: 15px 0 17px;
	font-family: var(--ef-serif);
	font-size: clamp(39px, 5vw, 58px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.04;
}

.ef-closing p:not(.ef-eyebrow) {
	margin: 0 0 28px;
	color: #d1e5e0;
	font-size: 14px;
}

.ef-page-main {
	min-height: 55vh;
	padding: 76px 0 100px;
}

.ef-page-content {
	max-width: 860px;
}

.ef-page-content > h1 {
	margin: 0 0 28px;
	font-family: var(--ef-serif);
	font-size: clamp(43px, 5vw, 65px);
	font-weight: 500;
	letter-spacing: -.04em;
}

.ef-page-content h2,
.ef-page-content h3 {
	font-family: var(--ef-serif);
	font-weight: 600;
}

.ef-page-content p,
.ef-page-content li {
	color: var(--ef-slate);
	font-size: 15px;
	line-height: 1.75;
}

.ef-footer {
	padding: 67px 0 22px;
	background: var(--ef-ink-deep);
	color: #fff;
}

.ef-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr .8fr .9fr 1.25fr;
	gap: 56px;
	padding-bottom: 50px;
}

.ef-brand-footer {
	color: #fff !important;
}

.ef-brand-footer .ef-brand-mark {
	border-color: #85b9ad;
	background: rgba(255, 255, 255, .06);
}

.ef-brand-footer .ef-brand-mark span,
.ef-brand-footer .ef-brand-words em {
	color: #a7d6cb;
}

.ef-footer-brand p {
	margin: 21px 0 15px;
	color: #a8c0ba;
	font-family: var(--ef-serif);
	font-size: 15px;
}

.ef-footer-brand > span {
	color: #73968d;
	font-size: 9px;
	font-weight: 760;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ef-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ef-footer-links strong,
.ef-footer-note strong {
	margin-bottom: 6px;
	color: #8cb0a7;
	font-size: 9px;
	font-weight: 820;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ef-footer-links a {
	color: #c5d6d2 !important;
	font-size: 11px;
}

.ef-footer-links a:hover {
	color: #fff !important;
}

.ef-footer-note p {
	margin: 12px 0 0;
	color: #8faca5;
	font-size: 10px;
	line-height: 1.7;
}

.ef-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #76968e;
	font-size: 9px;
}

/* Product detail */
.ef-product-guide-top {
	padding: 18px 0;
	background: var(--ef-mint-soft);
	border-bottom: 1px solid #cde1da;
}

.ef-product-guide-top .ef-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ef-product-guide-top .ef-shell > div {
	display: flex;
	align-items: center;
	gap: 13px;
}

.ef-guide-badge {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--ef-green);
	color: #fff;
	font-family: var(--ef-serif);
	font-size: 13px;
	font-weight: 700;
}

.ef-product-guide-top p {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 0;
}

.ef-product-guide-top small {
	color: var(--ef-green);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .13em;
}

.ef-product-guide-top strong {
	font-family: var(--ef-serif);
	font-size: 19px;
	font-weight: 600;
}

.ef-product-hero {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 76px;
	padding-top: 74px;
	padding-bottom: 86px;
}

.ef-product-image-panel {
	position: relative;
	min-height: 500px;
	display: grid;
	place-items: center;
	padding: 48px;
	background: var(--ef-cream);
	border: 1px solid #e0dbcf;
}

.ef-product-image-panel img {
	max-height: 395px;
	object-fit: contain;
	filter: drop-shadow(0 25px 25px rgba(13, 41, 36, .12));
}

.ef-product-image-panel > span {
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding: 7px 10px;
	border: 1px solid #d4ddd9;
	border-radius: 100px;
	background: rgba(255, 255, 255, .9);
	color: var(--ef-slate);
	font-size: 9px;
	font-weight: 750;
}

.ef-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
	color: #78908a;
	font-size: 10px;
}

.ef-breadcrumb a {
	color: var(--ef-green) !important;
	font-weight: 750;
}

.ef-product-summary h1 {
	margin: 14px 0 16px;
	font-family: var(--ef-serif);
	font-size: clamp(44px, 5vw, 63px);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: 1.02;
}

.ef-product-purpose {
	margin: 0;
	color: var(--ef-slate);
	font-size: 17px;
	line-height: 1.66;
}

.ef-product-question {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 27px;
	padding: 20px;
	border-left: 4px solid var(--ef-green);
	background: var(--ef-mint-soft);
}

.ef-product-question small {
	color: var(--ef-green);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .12em;
}

.ef-product-question strong {
	font-family: var(--ef-serif);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.ef-product-price {
	margin: 27px 0 16px;
}

.ef-product-price .price {
	color: var(--ef-ink) !important;
	font-family: var(--ef-serif);
	font-size: 33px !important;
	font-weight: 600 !important;
}

.ef-availability-note {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 25px 0;
	padding: 16px 18px;
	border: 1px solid #e3d3b9;
	background: #fff8ee;
}

.ef-availability-note strong {
	font-size: 12px;
}

.ef-availability-note span {
	color: #76644d;
	font-size: 10px;
	line-height: 1.5;
}

.ef-product-summary form.cart {
	display: flex !important;
	align-items: stretch;
	gap: 10px;
	margin: 18px 0 !important;
}

.ef-product-summary form.cart .quantity .qty {
	width: 72px;
	height: 50px;
	border: 1px solid var(--ef-line);
	border-radius: 7px;
}

.ef-product-summary form.cart .single_add_to_cart_button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
	min-height: 48px;
	padding: 0 20px !important;
	border-radius: 7px !important;
	background: var(--ef-green) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 780 !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--ef-ink) !important;
}

.ef-order-assurances {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 16px;
	margin-top: 17px;
	color: #5d746e;
	font-size: 9px;
	font-weight: 700;
}

.ef-product-details-section {
	padding: 96px 0;
	background: var(--ef-cream);
}

.ef-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid #d8d2c7;
	border-left: 1px solid #d8d2c7;
}

.ef-detail-grid > section {
	min-height: 240px;
	padding: 29px;
	border-right: 1px solid #d8d2c7;
	border-bottom: 1px solid #d8d2c7;
	background: #fff;
}

.ef-detail-grid > section > span {
	color: var(--ef-amber);
	font-family: var(--ef-serif);
	font-size: 14px;
}

.ef-detail-grid h3 {
	margin: 35px 0 11px;
	font-family: var(--ef-serif);
	font-size: 23px;
	font-weight: 600;
}

.ef-detail-grid p {
	margin: 0;
	color: var(--ef-slate);
	font-size: 13px;
	line-height: 1.72;
}

.ef-detail-grid .ef-limit-card {
	background: #fff8ee;
}

.ef-product-technical {
	padding: 92px 0;
}

.ef-product-technical-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 86px;
}

.ef-product-technical dl {
	margin: 0;
	border-top: 1px solid var(--ef-line);
}

.ef-product-technical dl > div {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ef-line);
}

.ef-product-technical dt {
	color: var(--ef-green);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.ef-product-technical dd {
	margin: 0;
	color: var(--ef-slate);
	font-size: 13px;
	line-height: 1.5;
}

.ef-alternatives-section {
	padding: 92px 0;
	background: var(--ef-mint-soft);
}

.ef-have-report-strip {
	padding: 65px 0;
	background: var(--ef-ink-deep);
	color: #fff;
}

.ef-have-report-strip .ef-shell {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 55px;
}

.ef-have-report-strip h2 {
	margin: 11px 0;
	font-family: var(--ef-serif);
	font-size: 37px;
	font-weight: 500;
}

.ef-have-report-strip p:not(.ef-eyebrow) {
	max-width: 740px;
	margin: 0;
	color: #abc3bd;
	font-size: 13px;
	line-height: 1.65;
}

/* WooCommerce system pages */
.woocommerce .woocommerce-breadcrumb {
	color: var(--ef-slate);
}

.woocommerce form.checkout,
.woocommerce-cart .woocommerce,
.woocommerce-account .woocommerce {
	margin: 55px auto 90px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--ef-line);
	border-radius: 6px;
	background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 25px;
}

.woocommerce table.shop_table {
	border-color: var(--ef-line);
	border-radius: 8px;
}

.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--ef-green);
	background: var(--ef-mint-soft);
}

.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--ef-green);
}

@media (max-width: 1080px) {
	.ef-desktop-nav { gap: 16px; }
	.ef-hero-grid { gap: 40px; }
	.ef-concern-grid { grid-template-columns: repeat(2, 1fr); }
	.ef-footer-grid { gap: 32px; }
}

@media (max-width: 900px) {
	.ef-header { height: 72px; }
	.admin-bar .ef-header { top: 46px; }
	.ef-desktop-nav { display: none; }
	.ef-mobile-menu { display: block; }
	.ef-header-actions { margin-left: auto; }
	.ef-case-link { display: none; }
	.ef-hero { padding: 72px 0 78px; }
	.ef-hero-grid,
	.ef-guide-band-grid,
	.ef-order-grid,
	.ef-product-hero,
	.ef-product-technical-grid { grid-template-columns: 1fr; }
	.ef-hero-card { max-width: 580px; margin-inline: auto; }
	.ef-heading-split { grid-template-columns: 1fr; gap: 24px; }
	.ef-framework-steps { grid-template-columns: repeat(2, 1fr); }
	.ef-framework-steps li { border-bottom: 1px solid var(--ef-line); }
	.ef-product-hero { gap: 43px; }
	.ef-product-image-panel { min-height: 430px; }
	.ef-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.ef-footer-note { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
	.admin-bar .ef-header { top: 46px; }
}

@media (max-width: 640px) {
	.ef-shell { width: min(100% - 30px, 1180px); }
	.ef-header-inner { gap: 8px; }
	.ef-brand { min-width: 0; }
	.ef-brand-words { font-size: 12px; }
	.ef-brand-words em { font-size: 13px; }
	.ef-brand-mark { width: 31px; height: 31px; }
	.ef-cart-link > span:first-child { display: none; }
	.ef-header-cta { min-height: 39px; padding: 0 12px; font-size: 11px; }
	.ef-hero h1 { font-size: 45px; }
	.ef-hero-lede { font-size: 16px; }
	.ef-button-row { flex-direction: column; align-items: stretch; }
	.ef-trust-row { flex-direction: column; gap: 8px; }
	.ef-hero-card { padding: 23px; }
	.ef-hero-card::before,
	.ef-hero-card::after { display: none; }
	.ef-guide-prompt form { grid-template-columns: 1fr; }
	.ef-guide-prompt label { grid-column: auto; }
	.ef-section { padding: 78px 0; }
	.ef-section-heading { margin-bottom: 35px; }
	.ef-concern-grid,
	.ef-framework-steps,
	.ef-detail-grid { grid-template-columns: 1fr; }
	.ef-concern-grid > a { min-height: 250px; }
	.ef-framework-steps li { min-height: 170px; border-right: 0; }
	.ef-product-guide-top .ef-shell,
	.ef-have-report-strip .ef-shell { grid-template-columns: 1fr; display: grid; }
	.ef-product-image-panel { min-height: 340px; padding: 31px; }
	.ef-product-summary form.cart { flex-wrap: wrap; }
	.ef-detail-grid { border-top: 1px solid #d8d2c7; }
	.ef-detail-grid > section { min-height: 215px; }
	.ef-product-technical dl > div { grid-template-columns: 1fr; gap: 7px; }
	.ef-footer-grid { grid-template-columns: 1fr 1fr; }
	.ef-footer-brand,
	.ef-footer-note { grid-column: 1 / -1; }
	.ef-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* EF Guide v1.1 integration */
.ef-guide-prompt-live {
	padding: 0;
	border: 0;
	background: transparent;
}

.ef-guide-prompt-live .efc-guide-form {
	display: block;
}

.ef-guide-prompt-live .efc-guide-form label {
	grid-column: auto;
	color: var(--ef-ink-deep);
}

.ef-guide-prompt-live .efc-guide-form textarea {
	min-height: 112px;
	border-color: #cbd9d4;
}

.ef-guide-prompt-live .efc-guide-page p,
.ef-guide-prompt-live .efc-guide-message p {
	color: #445d57 !important;
}

.ef-guide-prompt-live .efc-guide-workspace {
	box-shadow: 0 24px 65px rgba(0, 0, 0, .24);
}

.ef-guide-prompt-live .efc-guide-message.is-user > div {
	background: #eef7f4;
}

.ef-product-guide-inline {
	scroll-margin-top: 90px;
	padding: 48px 0 56px;
	border-bottom: 1px solid #d8e4df;
	background: linear-gradient(180deg, #f5faf8 0%, #fffefa 100%);
}

.ef-product-guide-inline .efc-guide-compact-heading {
	max-width: none;
}

.ef-product-guide-inline .efc-guide-workspace {
	box-shadow: 0 25px 70px rgba(16, 50, 43, .1);
}

.ef-product-guide-fallback {
	padding: 30px;
	border: 1px solid var(--ef-line);
	background: #fff;
}

.ef-product-guide-fallback h2 {
	margin: 0 0 10px;
	font-family: var(--ef-serif);
	font-size: 34px;
	font-weight: 550;
}

@media (max-width: 720px) {
	.ef-product-guide-inline {
		padding: 34px 0 42px;
	}
	.ef-product-guide-top .ef-shell {
		align-items: flex-start;
		flex-direction: column;
	}
	.ef-product-guide-top .ef-button {
		width: 100%;
	}
}

/* Homepage conversion and report-review merchandising — v1.2.0 */
.ef-hero-sales {
	padding-top: 82px;
	padding-bottom: 88px;
}

.ef-hero-sales .ef-hero-grid {
	grid-template-columns: minmax(0, 1.04fr) minmax(390px, .82fr);
	gap: 64px;
}

.ef-hero-sales h1 {
	max-width: 760px;
	font-size: clamp(48px, 5.1vw, 72px);
}

.ef-hero-bridge {
	max-width: 690px;
	margin: -4px 0 13px;
	color: var(--ef-green);
	font-family: var(--ef-serif);
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 560;
	line-height: 1.25;
}

.ef-hero-tertiary {
	margin: 20px 0 0;
	font-size: 12px;
	font-weight: 760;
}

.ef-hero-tertiary a {
	color: var(--ef-green) !important;
	border-bottom: 1px solid rgba(23, 111, 101, .35);
}

.ef-hero-report {
	position: relative;
	z-index: 1;
	padding: 18px;
	border: 1px solid #cbd9d4;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 30px 78px rgba(16, 50, 43, .17);
	transform: rotate(1deg);
}

.ef-report-preview-top,
.ef-report-preview-points,
.ef-report-preview-points span {
	display: flex;
}

.ef-report-preview-top {
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 2px 3px 13px;
	color: var(--ef-green);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .12em;
}

.ef-report-preview-top strong {
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--ef-mint-soft);
	font-size: 8px;
	letter-spacing: .04em;
}

.ef-report-preview-image {
	display: block;
	overflow: hidden;
	max-height: 440px;
	border: 1px solid #d9e0dc;
	background: #f7f7f5;
}

.ef-report-preview-image img {
	width: 100%;
}

.ef-report-preview-points {
	flex-direction: column;
	margin: 14px 0 12px;
	border-top: 1px solid var(--ef-line);
}

.ef-report-preview-points span {
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 1px;
	border-bottom: 1px solid var(--ef-line);
	color: var(--ef-slate);
	font-size: 9px;
}

.ef-report-preview-points strong {
	color: var(--ef-ink-deep);
	font-size: 10px;
}

.ef-proof-strip {
	border-top: 1px solid #1c4941;
	border-bottom: 1px solid #1c4941;
	background: var(--ef-ink-deep);
	color: #fff;
}

.ef-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ef-proof-grid > div {
	min-height: 108px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	padding: 23px 27px;
	border-right: 1px solid rgba(255, 255, 255, .12);
}

.ef-proof-grid > div:last-child {
	border-right: 0;
}

.ef-proof-grid strong {
	font-family: var(--ef-serif);
	font-size: 24px;
	font-weight: 550;
}

.ef-proof-grid span {
	color: #a9c1bb;
	font-size: 9px;
	font-weight: 650;
	line-height: 1.5;
}

.ef-review-offer {
	background: #fff;
}

.ef-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 1030px;
	margin-inline: auto;
}

.ef-price-card {
	position: relative;
	display: flex;
	min-height: 560px;
	flex-direction: column;
	padding: 38px;
	border: 1px solid var(--ef-line);
	background: var(--ef-paper);
	box-shadow: 0 20px 55px rgba(16, 50, 43, .06);
}

.ef-price-card.is-primary {
	border: 2px solid var(--ef-green);
	background: linear-gradient(180deg, #f2faf7 0%, #fff 46%);
}

.ef-price-kicker {
	margin: 0;
	color: var(--ef-green);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ef-price-card h3 {
	margin: 16px 0 20px;
	font-family: var(--ef-serif);
	font-size: 34px;
	font-weight: 560;
	letter-spacing: -.03em;
	line-height: 1.08;
}

.ef-price {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--ef-line);
	border-bottom: 1px solid var(--ef-line);
}

.ef-price strong {
	font-family: var(--ef-serif);
	font-size: 46px;
	font-weight: 560;
}

.ef-price span {
	max-width: 175px;
	color: var(--ef-slate);
	font-size: 9px;
	line-height: 1.45;
}

.ef-price-card ul,
.ef-check-list {
	margin: 24px 0 30px;
	padding: 0;
	list-style: none;
}

.ef-price-card li,
.ef-check-list li {
	position: relative;
	padding: 8px 0 8px 24px;
	color: #405853;
	font-size: 12px;
	line-height: 1.55;
}

.ef-price-card li::before,
.ef-check-list li::before {
	position: absolute;
	top: 9px;
	left: 0;
	content: "✓";
	color: var(--ef-green);
	font-weight: 900;
}

.ef-price-card .ef-button {
	width: 100%;
	margin-top: auto;
}

.ef-sample-section {
	background: var(--ef-cream);
}

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

.ef-sample-grid figure {
	margin: 0;
	padding: 13px;
	border: 1px solid #d7d3c8;
	background: #fff;
	box-shadow: 0 18px 45px rgba(25, 55, 48, .08);
}

.ef-sample-grid figure a {
	display: block;
	overflow: hidden;
	max-height: 410px;
	border: 1px solid var(--ef-line);
	background: #f5f5f3;
}

.ef-sample-grid figure img {
	width: 100%;
}

.ef-sample-grid figcaption {
	display: flex;
	min-height: 86px;
	flex-direction: column;
	gap: 6px;
	padding: 16px 8px 6px;
}

.ef-sample-grid figcaption strong {
	font-family: var(--ef-serif);
	font-size: 19px;
	font-weight: 600;
}

.ef-sample-grid figcaption span {
	color: var(--ef-slate);
	font-size: 10px;
	line-height: 1.55;
}

.ef-center-actions {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.ef-audience-benefits {
	background: #fff;
}

.ef-two-column-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
}

.ef-two-column-cards article {
	padding: 40px;
	border: 1px solid var(--ef-line);
	background: var(--ef-paper);
}

.ef-two-column-cards h2 {
	margin: 13px 0 0;
	font-family: var(--ef-serif);
	font-size: clamp(31px, 3.4vw, 43px);
	font-weight: 540;
	letter-spacing: -.03em;
	line-height: 1.1;
}

.ef-guide-scope {
	margin-top: 14px !important;
	color: #f2cb98 !important;
	font-size: 11px !important;
	font-weight: 720;
}

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

.ef-pathway-grid article {
	display: flex;
	min-height: 440px;
	flex-direction: column;
	padding: 37px;
	border: 1px solid #bad2ca;
	background: #fff;
}

.ef-pathway-grid article > span {
	color: var(--ef-green);
	font-family: var(--ef-serif);
	font-size: 30px;
	font-weight: 560;
}

.ef-pathway-grid ol {
	display: grid;
	gap: 0;
	margin: 27px 0 30px;
	padding: 0;
	counter-reset: ef-path;
	list-style: none;
}

.ef-pathway-grid li {
	position: relative;
	padding: 13px 0 13px 38px;
	border-top: 1px solid var(--ef-line);
	color: #4d625d;
	font-size: 12px;
	line-height: 1.5;
	counter-increment: ef-path;
}

.ef-pathway-grid li::before {
	position: absolute;
	left: 0;
	content: counter(ef-path, decimal-leading-zero);
	color: var(--ef-amber);
	font-family: var(--ef-serif);
}

.ef-pathway-grid .ef-text-link {
	margin-top: auto;
	align-self: flex-start;
}

.ef-credibility {
	background: var(--ef-ink-deep);
	color: #fff;
}

.ef-credibility-grid {
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 80px;
}

.ef-credibility h2 {
	margin: 14px 0 18px;
	font-family: var(--ef-serif);
	font-size: clamp(40px, 5vw, 58px);
	font-weight: 520;
	letter-spacing: -.04em;
	line-height: 1.03;
}

.ef-credibility p:not(.ef-eyebrow) {
	margin: 0;
	color: #afc4bf;
	font-size: 14px;
	line-height: 1.8;
}

.ef-review-process {
	display: flex;
	flex-direction: column;
	padding: 36px;
	border: 1px solid rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .05);
}

.ef-review-process strong {
	padding: 17px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	font-family: var(--ef-serif);
	font-size: 22px;
	font-weight: 550;
}

.ef-review-process small {
	padding-top: 19px;
	color: #91aaa4;
	font-size: 9px;
	line-height: 1.65;
}

.ef-home-faq {
	background: #fff;
}

.ef-faq-layout {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	align-items: start;
	gap: 80px;
}

.ef-faq-layout h2 {
	margin: 14px 0 0;
	font-family: var(--ef-serif);
	font-size: clamp(36px, 4vw, 49px);
	font-weight: 540;
	letter-spacing: -.035em;
	line-height: 1.07;
}

.ef-faq-list {
	border-top: 1px solid var(--ef-line);
}

.ef-faq-list details {
	border-bottom: 1px solid var(--ef-line);
}

.ef-faq-list summary {
	position: relative;
	padding: 22px 40px 22px 0;
	cursor: pointer;
	font-family: var(--ef-serif);
	font-size: 20px;
	font-weight: 600;
	list-style: none;
}

.ef-faq-list summary::-webkit-details-marker {
	display: none;
}

.ef-faq-list summary::after {
	position: absolute;
	right: 4px;
	content: "+";
	color: var(--ef-green);
	font-family: var(--ef-sans);
}

.ef-faq-list details[open] summary::after {
	content: "−";
}

.ef-faq-list p {
	margin: -3px 0 22px;
	padding-right: 30px;
	color: var(--ef-slate);
	font-size: 12px;
	line-height: 1.75;
}

.ef-button-outline-light {
	border-color: rgba(255, 255, 255, .48);
	background: transparent;
	color: #fff !important;
}

.ef-button-outline-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.ef-button-row-center {
	justify-content: center;
}

.ef-mobile-actions {
	display: none;
}

@media (max-width: 1080px) {
	.ef-hero-sales .ef-hero-grid {
		grid-template-columns: 1fr .78fr;
		gap: 40px;
	}
	.ef-proof-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ef-proof-grid > div:nth-child(2) {
		border-right: 0;
	}
	.ef-proof-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}
}

@media (max-width: 900px) {
	.ef-hero-sales .ef-hero-grid,
	.ef-credibility-grid,
	.ef-faq-layout {
		grid-template-columns: 1fr;
	}
	.ef-hero-report {
		max-width: 540px;
		margin-inline: auto;
		transform: none;
	}
	.ef-pricing-grid,
	.ef-two-column-cards,
	.ef-pathway-grid {
		grid-template-columns: 1fr;
	}
	.ef-price-card,
	.ef-pathway-grid article {
		min-height: 0;
	}
	.ef-sample-grid {
		gap: 14px;
	}
	.ef-credibility-grid,
	.ef-faq-layout {
		gap: 42px;
	}
}

@media (max-width: 640px) {
	.ef-hero-sales {
		padding-top: 58px;
		padding-bottom: 65px;
	}
	.ef-hero-sales h1 {
		font-size: 43px;
	}
	.ef-hero-bridge {
		font-size: 21px;
	}
	.ef-hero-report {
		padding: 11px;
	}
	.ef-report-preview-image {
		max-height: 330px;
	}
	.ef-proof-grid {
		grid-template-columns: 1fr;
	}
	.ef-proof-grid > div {
		min-height: 86px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}
	.ef-proof-grid > div:last-child {
		border-bottom: 0;
	}
	.ef-price-card,
	.ef-two-column-cards article,
	.ef-pathway-grid article,
	.ef-review-process {
		padding: 27px 23px;
	}
	.ef-price-card h3 {
		font-size: 29px;
	}
	.ef-price strong {
		font-size: 40px;
	}
	.ef-sample-grid {
		grid-template-columns: 1fr;
	}
	.ef-sample-grid figure a {
		max-height: 455px;
	}
	.ef-faq-list summary {
		font-size: 18px;
	}
	.ef-mobile-actions {
		position: fixed;
		z-index: 9997;
		right: 8px;
		bottom: 8px;
		left: 8px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		overflow: hidden;
		border: 1px solid rgba(255, 255, 255, .16);
		border-radius: 10px;
		background: var(--ef-ink-deep);
		box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
	}
	.ef-mobile-actions a {
		min-height: 52px;
		display: grid;
		place-items: center;
		padding: 8px 10px;
		color: #fff !important;
		font-size: 10px;
		font-weight: 820;
		text-align: center;
	}
	.ef-mobile-actions a:first-child {
		background: var(--ef-green);
	}
	.ef-mobile-actions a + a {
		border-left: 1px solid rgba(255, 255, 255, .15);
	}
	.efc-guide-launcher {
		bottom: 72px !important;
	}
	.ef-footer {
		padding-bottom: 72px;
	}
}

/* --------------------------------------------------------------------------
 * Version 1.3.0 — balanced testing pathways and expanded EVA experience
 * -------------------------------------------------------------------------- */
.ef-hero-primary-actions {
	align-items: stretch;
}

.ef-hero-primary-actions .ef-button {
	justify-content: center;
	min-width: 235px;
}

.ef-start-paths {
	padding-top: 88px;
	padding-bottom: 88px;
	background: var(--ef-cream);
}

.ef-start-path-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ef-start-path-grid article {
	display: flex;
	min-height: 405px;
	flex-direction: column;
	padding: 34px 31px;
	border: 1px solid var(--ef-line);
	border-top: 5px solid var(--ef-green);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(16, 50, 43, .07);
}

.ef-start-path-grid article.is-testing {
	border-top-color: var(--ef-amber);
}

.ef-start-path-grid article.is-verification {
	border-top-color: #587c92;
}

.ef-start-path-grid article > span {
	color: var(--ef-green);
	font-family: var(--ef-serif);
	font-size: 28px;
	font-weight: 580;
}

.ef-start-path-grid .is-testing > span {
	color: #aa681d;
}

.ef-start-path-grid .is-verification > span {
	color: #486f86;
}

.ef-path-kicker {
	margin: 18px 0 8px;
	color: var(--ef-slate);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.ef-start-path-grid h3 {
	margin: 0 0 15px;
	font-family: var(--ef-serif);
	font-size: 29px;
	font-weight: 560;
	letter-spacing: -.025em;
	line-height: 1.13;
}

.ef-start-path-grid p:not(.ef-path-kicker) {
	margin: 0 0 26px;
	color: var(--ef-slate);
	font-size: 13px;
	line-height: 1.72;
}

.ef-start-path-grid .ef-button {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

.ef-testing-spotlight {
	padding-top: 94px;
	padding-bottom: 94px;
	border-top: 1px solid var(--ef-line);
	border-bottom: 1px solid var(--ef-line);
	background: var(--ef-mint-soft);
}

.ef-testing-domain-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: -8px 0 34px;
	border: 1px solid #bfd7d0;
	border-radius: 12px;
	background: rgba(255, 255, 255, .76);
}

.ef-testing-domain-row > span {
	display: flex;
	min-height: 98px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 18px 23px;
	color: var(--ef-slate);
	font-size: 12px;
	line-height: 1.5;
}

.ef-testing-domain-row > span + span {
	border-left: 1px solid #bfd7d0;
}

.ef-testing-domain-row strong {
	color: var(--ef-ink);
	font-family: var(--ef-serif);
	font-size: 22px;
	font-weight: 580;
}

.ef-testing-spotlight .efc-featured-grid {
	margin-top: 0;
}

.ef-testing-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.ef-testing-boundary {
	max-width: 870px;
	margin: 24px auto 0;
	padding: 15px 18px;
	border-left: 4px solid var(--ef-amber);
	background: rgba(255, 255, 255, .72);
	color: var(--ef-slate);
	font-size: 12px;
	line-height: 1.65;
}

.ef-guide-band {
	padding: 78px 0;
}

.ef-guide-band-grid {
	grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
	align-items: start;
	gap: 46px;
}

.ef-guide-band h2 {
	font-size: clamp(38px, 4.2vw, 55px);
}

.ef-guide-band p:not(.ef-eyebrow) {
	font-size: 15px;
	line-height: 1.75;
}

.ef-guide-scope,
.ef-guide-example {
	margin-top: 20px !important;
	padding: 15px 17px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 9px;
	background: rgba(255, 255, 255, .055);
}

.ef-guide-example {
	color: #f2d5ac !important;
	font-style: italic;
}

.ef-guide-prompt-live {
	padding: 0;
	border: 0;
	background: transparent;
}

.ef-guide-prompt-live .efc-guide-workspace {
	max-width: none;
	margin: 0;
	border-color: rgba(255, 255, 255, .18);
	box-shadow: 0 30px 85px rgba(0, 0, 0, .25);
}

.ef-guide-prompt-live .efc-guide-conversation {
	min-height: 330px;
	max-height: 560px;
}

.ef-guide-prompt-live .efc-guide-form textarea,
.ef-guide-prompt-live .efc-guide-mode-home .efc-guide-input-shell textarea {
	min-height: 150px;
	font-size: 16px;
	line-height: 1.55;
}

.ef-guide-prompt-live .efc-guide-message p,
.ef-guide-prompt-live .efc-guide-message li {
	color: #334f48 !important;
}

.ef-guide-prompt-live .efc-guide-summary {
	color: #173f37 !important;
}

#choose-path,
#environmental-testing,
#report-review,
#sample-report,
#pricing {
	scroll-margin-top: 96px;
}

@media (max-width: 1050px) {
	.ef-start-path-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ef-start-path-grid article:last-child {
		grid-column: 1 / -1;
		min-height: 0;
	}
	.ef-guide-band-grid {
		grid-template-columns: 1fr;
	}
	.ef-guide-band-grid > div:first-child {
		max-width: 760px;
	}
}

@media (max-width: 700px) {
	.ef-hero-primary-actions,
	.ef-testing-actions {
		align-items: stretch;
		flex-direction: column;
	}
	.ef-hero-primary-actions .ef-button,
	.ef-testing-actions .ef-button {
		width: 100%;
		min-width: 0;
		justify-content: center;
	}
	.ef-start-paths,
	.ef-testing-spotlight,
	.ef-guide-band {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.ef-start-path-grid,
	.ef-testing-domain-row {
		grid-template-columns: 1fr;
	}
	.ef-start-path-grid article,
	.ef-start-path-grid article:last-child {
		grid-column: auto;
		min-height: 0;
		padding: 28px 23px;
	}
	.ef-testing-domain-row > span + span {
		border-top: 1px solid #bfd7d0;
		border-left: 0;
	}
	.ef-guide-band-grid {
		gap: 31px;
	}
	.ef-guide-prompt-live .efc-guide-conversation {
		min-height: 280px;
		max-height: 510px;
	}
}

/* ========================================================================== 
   Exposure Framework Theme 1.5.0
   Testing-first homepage, equal commercial paths, and expanded product detail.
   ========================================================================== */
.ef-hero-commerce { padding: 92px 0 72px; background: linear-gradient(135deg,#f7f4ec 0%,#fff 62%,#eaf5f1 100%); }
.ef-hero-commerce-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.75fr); gap: 70px; align-items: center; }
.ef-hero-commerce .ef-hero-copy h1 { max-width: 800px; margin-bottom: 18px; }
.ef-commerce-hero-actions { margin-top: 28px; }
.ef-hero-eva-route { margin: 16px 0 0; color: var(--ef-slate); font-size: 14px; }
.ef-hero-eva-route a { color: var(--ef-green); font-weight: 800; }
.ef-hero-shop-panel { padding: 25px; border: 1px solid #bad0c8; background: rgba(255,255,255,.92); box-shadow: var(--ef-shadow); }
.ef-hero-shop-choice { padding: 22px 0; border-top: 1px solid var(--ef-line); }
.ef-hero-shop-choice:first-of-type { margin-top: 12px; }
.ef-hero-shop-choice > span { color: var(--ef-green); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.ef-hero-shop-choice h2 { margin: 7px 0 7px; font-family: var(--ef-serif); font-size: 29px; font-weight: 500; line-height: 1.08; }
.ef-hero-shop-choice p { margin: 0 0 12px; color: var(--ef-slate); font-size: 14px; line-height: 1.55; }
.ef-hero-shop-choice > div { display: flex; flex-wrap: wrap; gap: 13px; }
.ef-hero-shop-choice a { color: var(--ef-green); font-size: 13px; font-weight: 850; }

.ef-start-paths { background: #fff; }
.ef-three-path-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.ef-three-path-grid article { display: flex; flex-direction: column; min-height: 345px; padding: 28px; border: 1px solid var(--ef-line); background: var(--ef-paper); }
.ef-three-path-grid article.is-testing { border-top: 5px solid var(--ef-green); }
.ef-three-path-grid article.is-reports { border-top: 5px solid var(--ef-amber); }
.ef-three-path-grid article.is-verification { border-top: 5px solid var(--ef-ink-deep); }
.ef-three-path-grid article > span { color: var(--ef-green); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.ef-three-path-grid h3 { margin: 25px 0 12px; font-family: var(--ef-serif); font-size: 34px; font-weight: 500; line-height: 1.05; }
.ef-three-path-grid p { color: var(--ef-slate); font-size: 15px; line-height: 1.65; }
.ef-three-path-grid article > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; margin-top: auto; }

.ef-testing-commerce { background: var(--ef-cream); }
.ef-domain-choice-row { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin: 32px 0; border: 1px solid var(--ef-line); background: var(--ef-line); }
.ef-domain-choice-row > div { min-height: 130px; padding: 20px; background: #fff; }
.ef-domain-choice-row strong { display: block; margin-bottom: 8px; font-family: var(--ef-serif); font-size: 21px; font-weight: 500; }
.ef-domain-choice-row span { color: var(--ef-slate); font-size: 13px; line-height: 1.5; }
.ef-section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }

.ef-eva-showcase { background: #fff; }
.ef-eva-showcase .efc-guide { margin-top: 30px; }

.ef-report-review-compact { background: var(--ef-mint-soft); }
.ef-report-review-compact-grid { display: grid; grid-template-columns: 1.1fr .65fr; gap: 70px; align-items: center; }
.ef-report-review-compact h2 { max-width: 730px; margin: 10px 0 18px; font-family: var(--ef-serif); font-size: clamp(42px,5vw,64px); font-weight: 500; line-height: 1.02; }
.ef-report-review-compact p { max-width: 760px; color: var(--ef-slate); font-size: 17px; line-height: 1.65; }
.ef-report-review-compact ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 27px; padding: 0; list-style: none; }
.ef-report-review-compact li { padding: 8px 11px; border: 1px solid #b7cec6; background: #fff; font-size: 12px; font-weight: 750; }
.ef-current-sample-card { display: block; padding: 15px; border: 1px solid #aec7bf; background: #fff; color: var(--ef-ink); text-decoration: none; box-shadow: var(--ef-shadow); }
.ef-current-sample-card > span { display: block; margin-bottom: 9px; color: var(--ef-green); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.ef-current-sample-card img { width: 100%; max-height: 510px; object-fit: cover; object-position: top; border: 1px solid #e1e7e4; }
.ef-current-sample-card strong { display: block; margin-top: 12px; color: var(--ef-green); font-size: 13px; }

.ef-how-it-works-v14 { background: #fff; }
.ef-process-v14 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: 35px; border: 1px solid var(--ef-line); background: var(--ef-line); }
.ef-process-v14 article { min-height: 245px; padding: 24px; background: var(--ef-paper); }
.ef-process-v14 article > span { color: var(--ef-green); font-size: 11px; font-weight: 900; }
.ef-process-v14 h3 { margin: 35px 0 8px; font-family: var(--ef-serif); font-size: 27px; font-weight: 500; line-height: 1.08; }
.ef-process-v14 p { color: var(--ef-slate); font-size: 14px; line-height: 1.55; }

.ef-professional-home-strip { padding: 76px 0; background: var(--ef-ink-deep); color: #fff; }
.ef-professional-home-strip .ef-shell { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: center; }
.ef-professional-home-strip h2 { max-width: 820px; margin: 9px 0 11px; color: #fff; font-family: var(--ef-serif); font-size: clamp(38px,4.5vw,58px); font-weight: 500; line-height: 1.05; }
.ef-professional-home-strip p { max-width: 760px; margin: 0; color: #d6e6e1; font-size: 16px; line-height: 1.6; }

.ef-home-faq-v14 { background: var(--ef-cream); }
.ef-final-cta-v14 { padding-bottom: 96px; }
.ef-mobile-commerce-bar { display: none; }

/* Product 1.4 fulfillment and order presentation. */
.ef-product-order-heading { display: flex; flex-direction: column; gap: 3px; margin: 20px 0 9px; padding: 13px 14px; border-left: 3px solid var(--ef-green); background: var(--ef-mint-soft); }
.ef-product-order-heading strong { font-size: 15px; }
.ef-product-order-heading span { color: var(--ef-slate); font-size: 12px; }
.ef-product-fulfillment-v14 { padding: 90px 0; background: var(--ef-cream); }
.ef-product-fulfillment-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: 32px; border: 1px solid var(--ef-line); background: var(--ef-line); }
.ef-product-fulfillment-grid article { min-height: 260px; padding: 23px; background: #fff; }
.ef-product-fulfillment-grid article > span { color: var(--ef-green); font-size: 11px; font-weight: 900; }
.ef-product-fulfillment-grid h3 { margin: 28px 0 9px; font-family: var(--ef-serif); font-size: 25px; font-weight: 500; line-height: 1.1; }
.ef-product-fulfillment-grid p { color: var(--ef-slate); font-size: 13px; line-height: 1.55; }
.ef-product-detail-v14 .ef-product-guide-inline { padding: 90px 0; background: #fff; }
.ef-product-detail-v14 .ef-product-guide-inline .efc-guide { margin-top: 28px; }

@media (max-width: 1000px) {
	.ef-hero-commerce-grid, .ef-report-review-compact-grid { grid-template-columns: 1fr; gap: 42px; }
	.ef-three-path-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.ef-three-path-grid .is-verification { grid-column: 1 / -1; min-height: 250px; }
	.ef-domain-choice-row, .ef-process-v14, .ef-product-fulfillment-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.ef-professional-home-strip .ef-shell { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.ef-hero-commerce { padding: 65px 0 50px; }
	.ef-commerce-hero-actions .ef-button { width: 100%; }
	.ef-three-path-grid, .ef-domain-choice-row, .ef-process-v14, .ef-product-fulfillment-grid { grid-template-columns: 1fr; }
	.ef-three-path-grid .is-verification { grid-column: auto; }
	.ef-section-actions .ef-button, .ef-report-review-compact .ef-button-row .ef-button { width: 100%; }
	.ef-mobile-commerce-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 800; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #9db7ae; background: #fff; box-shadow: 0 -8px 25px rgba(13,41,36,.13); }
	.ef-mobile-commerce-bar a { min-height: 55px; display: grid; place-items: center; padding: 8px; border-right: 1px solid var(--ef-line); color: var(--ef-green); font-size: 12px; font-weight: 850; text-decoration: none; text-align: center; }
	.ef-mobile-commerce-bar a:first-child { background: var(--ef-green); color: #fff; }
	body { padding-bottom: 55px; }
}

/* ========================================================================== 
   Exposure Framework Theme 1.5.0
   Kitchen-table EVA, clearer purchasing paths, compact page starts, and
   reliable hero interactions.
   ========================================================================== */
.ef-header { height: 70px; }
.ef-header-inner { gap: 22px; }
.ef-brand { min-width: 188px; }
.ef-brand-mark { width: 34px; height: 34px; }
.ef-brand-words { font-size: 14px; }
.ef-brand-words em { font-size: 16px; }
.ef-desktop-nav { gap: 19px; }
.ef-desktop-nav a { font-size: 12.5px; }
.ef-header-actions { gap: 8px; }

.ef-hero::before { pointer-events: none; }
.ef-hero-commerce { padding: 54px 0 58px; }
.ef-hero-commerce-grid { position: relative; z-index: 1; gap: 54px; }
.ef-hero-shop-panel { position: relative; z-index: 2; padding: 22px; }
.ef-hero-shop-choice { padding: 21px 0; }
.ef-hero-shop-choice h2 { font-size: 27px; }
.ef-hero-shop-choice p { font-size: 15px; }
.ef-hero-shop-choice small { display: block; margin-top: 12px; color: var(--ef-slate); font-size: 12px; line-height: 1.45; }
.ef-hero-choice-actions { display: flex; flex-wrap: wrap; gap: 9px !important; }
.ef-hero-choice-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 43px; padding: 10px 14px; border: 1px solid var(--ef-green); border-radius: 4px; text-decoration: none; }
.ef-hero-choice-actions .ef-choice-primary { background: var(--ef-green); color: #fff; }
.ef-hero-choice-actions .ef-choice-secondary { background: #fff; color: var(--ef-green); }
.ef-hero-shop-choice.is-reports .ef-choice-primary { border-color: var(--ef-amber); background: var(--ef-amber); color: var(--ef-ink-deep); }
.ef-hero-shop-choice.is-reports .ef-choice-secondary { border-color: #caa874; color: #725020; }

.ef-page-main { padding: 36px 0 80px; }
.ef-section { scroll-margin-top: 82px; }

.ef-after-order-v15 { background: #fff; }
.ef-after-order-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 32px; }
.ef-after-order-grid article { display: flex; flex-direction: column; min-height: 390px; padding: 30px; border: 1px solid var(--ef-line); background: var(--ef-paper); }
.ef-after-order-grid article:first-child { border-top: 5px solid var(--ef-green); }
.ef-after-order-grid article:last-child { border-top: 5px solid var(--ef-amber); }
.ef-after-order-grid article > span { color: var(--ef-green); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.ef-after-order-grid h3 { margin: 22px 0 20px; font-family: var(--ef-serif); font-size: 29px; font-weight: 500; line-height: 1.13; }
.ef-after-order-grid ol { margin: 0 0 24px; padding-left: 22px; color: var(--ef-slate); }
.ef-after-order-grid li { margin: 0 0 9px; font-size: 14px; line-height: 1.5; }
.ef-after-order-grid a { margin-top: auto; color: var(--ef-green); font-size: 14px; font-weight: 850; }

@media (max-width: 1000px) {
  .ef-header { height: 68px; }
  .ef-after-order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ef-hero-commerce { padding: 38px 0 44px; }
  .ef-hero-shop-panel { padding: 18px; }
  .ef-hero-choice-actions a { width: 100%; }
  .ef-page-main { padding: 24px 0 65px; }
  .ef-after-order-grid article { min-height: 0; padding: 24px; }
}
