/* Wert Magier — landing layout */

:root {
	/* Lovable tokens (Poppins + warm cream palette) */
	--bg: #f7f5f2;
	--fg: hsl(25 15% 15%);
	--card: hsl(30 20% 97%);
	--muted-fg: hsl(25 8% 45%);
	--border: hsl(30 15% 90%);
	/* Refined gold — matches WERT-MAGIER / premium comps (~#B69B7D) */
	--primary: #b59669;
	--primary-fg: hsl(40 30% 98%);
	--success: hsl(142 70% 40%);
	--error: hsl(0 84% 60%);

	--font-sans: "Poppins", sans-serif;
	/* Lovable-style tokens (HSL components for hsl(var(--foreground))) */
	--foreground: 25 15% 15%;
	--font-body: var(--font-sans);

	/* Tailwind "gold" tokens used by your span gradient style */
	--gold-shadow: 25 15% 30%;
	--gold: 33 28% 58%;
	--gold-highlight: 38 40% 72%;
	--radius: 8px; /* Tailwind --radius: 0.5rem */
	--radius-md: 6px;
	--radius-xl: 12px; /* rounded-xl in form card */

	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
	--shadow-soft: 0 10px 40px rgba(15, 23, 42, 0.06);

	--container: 1280px;
	--header-h: 96px; /* md:h-24 */
	/* Lovable FAQ accordion icon wells */
	--secondary: hsl(33 22% 92%);

	/* Legacy aliases (older section styles) */
	--color-bg: #f7f5f2;
	--color-surface: #ffffff;
	--color-ink: var(--fg);
	--color-ink-muted: var(--muted-fg);
	--color-border: var(--border);
	--color-accent: var(--primary);
	--color-gold: var(--primary);
	--color-success: var(--success);
	--color-error: var(--error);
}

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

html {
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	color: hsl(var(--foreground));
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
	background-color: #f7f5f2;
}

/* Compatibility: make Tailwind token classes use our theme variables */
.text-primary {
	color: var(--primary);
}

.bg-primary {
	background-color: var(--primary);
}

.text-muted-foreground {
	color: var(--muted-fg);
}

a {
	color: var(--primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	filter: brightness(0.95);
}

/* Gold gradient for any span used inside h2 titles */
h2 span {
	background: linear-gradient(
		135deg,
		hsl(var(--gold-shadow)),
		hsl(var(--gold)),
		hsl(var(--gold-highlight)),
		hsl(var(--gold)),
		hsl(var(--gold-shadow))
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: .15em .05em;
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	font-style: italic;
}

.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;
}

.container {
	--container-pad: 1.25rem;
	width: min(100% - (var(--container-pad) * 2), var(--container));
	margin-inline: auto;
}

@media (min-width: 768px) {
	.container {
		--container-pad: 2rem;
	}
}

@media (min-width: 1024px) {
	.container {
		--container-pad: 3rem;
	}
}

.container--narrow {
	max-width: 720px;
}

/* Header — nav + CTA (WERT-MAGIER) + mobile drawer */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--bg);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #e9e6e24d;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 64px; /* h-16 */
	gap: 0.75rem;
	flex-wrap: wrap;
}

@media (min-width: 1024px) {
	.site-header__inner {
		flex-wrap: nowrap;
	}
}

@media (min-width: 768px) {
	.site-header__inner {
		min-height: var(--header-h); /* md:h-24 */
	}
}

.site-brand,
.site-brand--logo {
	order: 0;
}

.site-header__right {
	order: 1;
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.site-header__region-row {
	display: none;
	align-items: center;
	gap: 0.65rem;
}

@media (min-width: 1024px) {
	.site-header__region-row {
		display: inline-flex;
	}
}

@media (max-width: 1023px) {
	.site-header__sep {
		display: none;
	}
}

.site-header__stars-row {
	display: none;
	align-items: center;
	gap: 0.12rem;
}

@media (min-width: 768px) {
	.site-header__stars-row {
		display: inline-flex;
	}
}

.site-header__drawer {
	order: 3;
	flex: 1 1 100%;
}

.site-header__toggle {
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: var(--radius-md);
	background: transparent;
	color: var(--fg);
	cursor: pointer;
}

.site-header__toggle-bar {
	display: block;
	height: 2px;
	width: 1.35rem;
	margin-inline: auto;
	background: currentColor;
	border-radius: 1px;
	transition: transform 200ms ease, opacity 200ms ease;
}

@media (min-width: 1024px) {
	.site-header__toggle {
		display: none;
	}

	.site-header__drawer {
		order: initial;
		flex: 1 1 auto;
		margin-left: auto;
	}
}

/* Desktop bar menu (non-landing pages) */
.site-header__nav--bar {
	display: none;
	margin-left: auto;
}

@media (min-width: 1024px) {
	.site-header__nav--bar {
		display: block;
	}

	.site-header__menu--bar {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.25rem 1.15rem;
		justify-content: flex-end;
	}
}

.site-header.is-open .site-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .site-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-header__drawer {
	display: none;
	flex-direction: column;
	align-items: stretch;
	gap: 1.25rem;
	padding: 1rem 0 1.25rem;
	border-top: 1px solid hsl(30 15% 92%);
	margin-top: 0.5rem;
}

.site-header.is-open .site-header__drawer {
	display: flex;
}

@media (min-width: 1024px) {
	.site-header__inner {
		flex-wrap: nowrap;
		align-items: center;
	}

	.site-header__drawer {
		display: flex !important;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		flex: 1;
		gap: clamp(0.75rem, 2vw, 1.75rem);
		margin-top: 0;
		padding: 0;
		border-top: 0;
	}

	.site-header.is-open .site-header__drawer {
		display: flex !important;
	}
}

.site-header__nav {
	width: 100%;
}

@media (min-width: 1024px) {
	.site-header__nav {
		width: auto;
	}
}

.site-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

@media (min-width: 1024px) {
	.site-header__menu {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.25rem 1.15rem;
		justify-content: flex-end;
	}
}

.site-header__menu a {
	text-decoration: none;
	color: hsl(25 10% 32%);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 150ms ease;
}

.site-header__menu a:hover {
	color: var(--primary);
}

.site-header__extras {
	display: none;
	align-items: center;
	gap: 0.65rem;
}

@media (min-width: 1024px) {
	.site-header__extras {
		display: flex;
	}
}

.site-header__region {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted-fg);
	white-space: nowrap;
}

.site-header__sep {
	width: 1px;
	height: 1.25rem;
	background: var(--border);
	flex-shrink: 0;
}

.site-header__stars {
	display: inline-flex;
	align-items: center;
	gap: 0.12rem;
	color: var(--primary);
	line-height: 1;
}

.site-header__star {
	display: block;
	width: 14px;
	height: 14px;
	color: #b29776;
}

/* Tablet tuning (match Lovable spacing) */
@media (min-width: 768px) and (max-width: 1023px) {
	.site-header__right {
		gap: 1.25rem;
	}

	.btn.btn--header-tel {
		padding: 0 0.85rem;
	}
}

.site-header__actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	width: 100%;
}

@media (min-width: 1024px) {
	.site-header__actions {
		flex-direction: row;
		align-items: center;
		width: auto;
		gap: 0.5rem;
	}
}

/* Header CTA button: size-only override, colour from .btn-main */
.btn--header-cta {
	height: 2.25rem;
	padding: 0 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.site-header__cta {
	display: flex;
	align-items: center;
}

/* Header tel button: size-only override, colour from .btn-outline */
.btn--header-tel {
	height: 2.25rem;
	padding: 0 0.9rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.btn--header-tel {
		padding: 0 0.75rem;
	}
}

@media (max-width: 639px) {
	.site-header__tel-num {
		display: none;
	}
}

@media (max-width: 1023px) {
	body.site-header-menu-open {
		overflow: hidden;
	}

	.site-header.is-open .site-header__drawer {
		position: fixed;
		top: calc(64px + 1px);
		left: 0;
		right: 0;
		bottom: 0;
		margin-top: 0;
		padding: 1.25rem var(--container-pad, 1.25rem) 2rem;
		background: rgba(255, 255, 255, 0.99);
		border-top: 1px solid hsl(30 15% 92%);
		overflow-y: auto;
		z-index: 49;
	}

	@media (min-width: 768px) {
		.site-header.is-open .site-header__drawer {
			top: calc(var(--header-h) + 1px);
		}
	}
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.site-brand--logo {
	display: flex;
	align-items: center;
}

.site-brand__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.custom-logo {
	max-width: 110px;
	width: auto;
	display: block;
	object-fit: contain;
	padding: 0.1rem 0;
}

.site-brand__fallback-logo {
	/* height: 3.1rem; */
	width: auto;
	display: block;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-brand__mark {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--color-accent), #2d5a87);
	box-shadow: 0 4px 14px rgba(30, 58, 95, 0.35);
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.site-brand__title {
	font-weight: 700;
	font-size: 1.05rem;
}

.site-brand__tagline {
	font-size: 0.8rem;
	color: var(--color-ink-muted);
	font-weight: 500;
}

.site-header__cta .btn {
	white-space: nowrap;
}

/* main offset for fixed header */
.site-main {
	padding-top: 0;
}

@media (min-width: 768px) {
	.site-main {
		padding-top: 0;
	}
}

@media (min-width: 1024px) {
	.site-main {
		padding-top: 0;
	}
}

/* Sections */
.section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.wm-hero {
	position: relative;
	min-height: 100vh;
	padding: 0;
}

.wm-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wm-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 30% center;
	display: block;
}

.wm-hero__bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.wm-hero__bg-gradient {
	position: absolute;
	inset: 0;
	display: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

@media (min-width: 1024px) {
	.wm-hero__bg-overlay {
		background: transparent;
	}
	.wm-hero__bg-gradient {
		display: block;
	}
}

.wm-hero__grid {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 3.75rem);
	padding: 1.5rem 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.wm-hero__grid {
		min-height: calc(100vh - 4.5rem);
	}
}

@media (min-width: 1024px) {
	.wm-hero__grid {
		min-height: calc(100vh - 5.25rem);
		padding: 3rem 0;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

.wm-hero__marker {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.wm-hero__marker-num {
	color: var(--primary);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
}

.wm-hero__marker-line {
	width: 48px;
	height: 1px;
	background: var(--primary);
	opacity: 0.9;
}

.wm-hero__marker-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.wm-hero__title {
	color: #fff;
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 1rem + 2vw, 2.25rem);
}

@media (min-width: 768px) {
	.wm-hero__title {
		font-size: clamp(1.75rem, 1.25rem + 2.2vw, 3rem);
	}
}

.wm-hero__title-accent {
	background: linear-gradient(135deg, hsl(38 40% 72%), var(--primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.wm-hero__sub {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	max-width: 32rem;
	margin-bottom: 1.5rem;
}

.wm-hero__sub-bar {
	width: 2px;
	height: 40px;
	background: var(--primary);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.wm-hero__sub-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(0.9rem, 0.8rem + 0.6vw, 1.5rem);
	line-height: 1.45;
}

.wm-hero__trust {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.6rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
}

.wm-hero__trust-item {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.wm-hero__trust-item::before {
	content: "✓";
	color: var(--primary);
	font-weight: 700;
}

.wm-hero__rating-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.wm-hero__g-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.wm-hero__stars {
	color: var(--primary);
	letter-spacing: 0.15em;
	font-size: 0.85rem;
	line-height: 1;
}

.wm-hero__rating-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	font-weight: 500;
}

.wm-hero__right {
	display: flex;
	justify-content: flex-end;
}

/* Lovable-style form card */
.wm-form.card {
	padding: 0;
	overflow: hidden;
	width: 100%;
	border-radius: var(--radius-xl);
}

.wm-form__head {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid hsl(30 15% 90%);
	background: hsl(30 16% 94% / 0.5);
}

.wm-form__head-inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.wm-form__head-num {
	font-size: 10px;
	color: var(--primary);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
}

.wm-form__head-line {
	width: 1.5rem;
	height: 1px;
	background: hsl(30 15% 90%);
}

.wm-form__head-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--fg);
}

.wm-form__body {
	padding: 1.5rem;
}

.lead-form--lov {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lead-form__grid2 {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.lead-form__grid2 {
		grid-template-columns: 1fr 1fr;
	}
}

.lead-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.lead-form--lov .lead-form__label {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-fg);
	margin: 0;
}

.lead-form--lov .lead-form__input,
.lead-form--lov .lead-form__select {
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid hsl(30 15% 90% / 0.6);
	border-radius: 0;
	background: transparent;
	font-size: 0.875rem;
	color: var(--fg);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form--lov .lead-form__input::placeholder {
	color: hsl(25 8% 55%);
}

.lead-form--lov .lead-form__input:focus,
.lead-form--lov .lead-form__select:focus {
	outline: none;
	border-color: var(--fg);
	box-shadow: none;
}

.lead-form--lov .lead-form__input.lead-form__input--invalid,
.lead-form--lov .lead-form__select.lead-form__input--invalid {
	border-color: var(--error);
}

.lead-form__phone-lov {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.lead-form__select-cc {
	width: 5rem;
	flex-shrink: 0;
	height: 2.5rem;
	padding: 0 0.25rem 0 0.35rem;
	border: 1px solid hsl(30 15% 90% / 0.6);
	border-right: 0;
	border-radius: 0;
	background: hsl(30 16% 94% / 0.35);
	font-size: 0.75rem;
	text-overflow: ellipsis;
	cursor: pointer;
}

.lead-form__input--phone {
	flex: 1;
	border-left: 0 !important;
}

.lead-form__error {
	margin: 0;
	font-size: 11px;
	color: var(--error);
	min-height: 0;
}

.lead-form__error[hidden] {
	display: none !important;
}

.lead-form__cal-block {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 0.25rem;
}

.lead-form__cal-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-fg);
}

.lead-form__cal-icon {
	color: var(--primary);
	flex-shrink: 0;
}

.lead-form__cal-slot {
	border: 1px solid hsl(30 15% 90% / 0.6);
	background: hsl(30 16% 94% / 0.25);
	min-height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calendly-iframe--compact {
	min-height: 10rem;
	height: 10rem;
}

.calendly-placeholder--compact {
	margin: 1rem;
	text-align: center;
	font-size: 0.75rem;
	color: var(--muted-fg);
	line-height: 1.5;
}

.calendly-placeholder__sub {
	font-size: 10px;
}

.lead-form__privacy {
	margin-top: 0.25rem;
}

.lead-form__check {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	font-size: 11px;
	line-height: 1.6;
	color: var(--muted-fg);
	margin: 0;
}

.lead-form__check input {
	margin-top: 0.2rem;
	flex-shrink: 0;
	accent-color: var(--primary);
}

.lead-form__privacy-link {
	color: var(--fg);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lead-form__privacy-link:hover {
	color: var(--primary);
}

.lead-form__submit-wrap {
	padding-top: 0.5rem;
}

.lead-form__divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0.25rem 0;
}

.lead-form__divider-line {
	flex: 1;
	height: 1px;
	background: hsl(30 15% 90%);
}

.lead-form__divider-text {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--muted-fg);
}

.lead-form__trust-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	padding-top: 0.25rem;
	font-size: 10px;
	color: var(--muted-fg);
}

.lead-form__trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* legacy alias kept for header — color from .btn-outline below */

/* .btn--submit-lov and .btn--call-lov merged into .btn base */

/* Scroll reveal (Framer-like easing) */
.wm-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.wm-reveal.wm-reveal--delay {
	transition-delay: 150ms;
}

.wm-reveal.wm-reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.wm-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.section__title {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: clamp(2rem, 1.5rem + 3vw, 4.5rem);
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	color: var(--fg);
}

.section__lead {
	font-size: clamp(0.9rem, 0.75rem + 1vw, 1.5rem);
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 1.5rem;
	max-width: 52ch;
}

.section__lead--center {
	text-align: center;
	margin-inline: auto;
	max-width: 62ch;
}

.section__subtitle {
	text-align: center;
	color: var(--color-ink-muted);
	margin: -0.5rem 0 2rem;
}

.section__quote-attribution {
	font-style: italic;
	color: var(--color-ink-muted);
	margin: 0 0 2rem;
}

/* Card */
.card {
	background: #fff;
	border-radius: var(--radius-xl);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.notice {
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.notice--success {
	background: #ecfdf5;
	color: var(--color-success);
	border: 1px solid #99f6e4;
}

.notice--error {
	background: #fef2f2;
	color: var(--color-error);
	border: 1px solid #fecaca;
}

/* Lead form */
.lead-form__label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.lead-form__input {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font: inherit;
	background: #fff;
}

.lead-form__input:focus {
	outline: 2px solid rgba(30, 58, 95, 0.35);
	outline-offset: 1px;
}

.lead-form__consent {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: 0.85rem;
	color: var(--color-ink-muted);
	margin: 0.5rem 0 1rem;
	cursor: pointer;
}

.lead-form__consent input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.calendly-iframe {
	width: 100%;
	min-height: 420px;
	border: 0;
	border-radius: var(--radius-sm);
	background: #fff;
}

.calendly-placeholder {
	text-align: center;
	color: var(--color-ink-muted);
	font-size: 0.95rem;
	margin: 2rem 1rem;
}

/* =====================================================
   BUTTONS — unified system
   .btn          shared base (size, radius, font)
   .btn-main     primary filled (gold bg)
   .btn-outline  secondary outline (transparent + gold border)
   .btn__icon    icon/arrow wrapper inside any button
   ===================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.75rem;
	min-height: 2.75rem;
	padding: 0 1.5rem;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn-main {
	background: var(--primary);
	color: var(--primary-fg);
	border-color: var(--primary);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-main:hover,
.btn-main:focus-visible {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: hsl(36 34% 56% / 0.4);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	background: transparent;
	color: hsl(var(--foreground));
	border-color: hsl(var(--foreground));
}

.btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 200ms ease;
}

.btn-main:hover .btn__icon,
.btn-main:focus-visible .btn__icon {
	transform: translateX(0.25rem);
}

.btn__icon svg {
	stroke: currentColor;
	color: inherit;
}

/* Process section context: buttons sit on a dark image */
.wm-process__actions .btn-outline {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.wm-process__actions .btn-outline:hover,
.wm-process__actions .btn-outline:focus-visible {
	background: #ffffff;
	color: hsl(var(--foreground));
	border-color: #ffffff;
}

.wm-process__actions .btn-main:hover,
.wm-process__actions .btn-main:focus-visible {
	background: #ffffff;
	color: hsl(var(--foreground));
	border-color: #ffffff;
}

/* Trust section */
.section--trust {
	background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.section__title--trust {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 22ch;
}

.section--trust .section__subtitle,
.section--trust .section__quote-attribution {
	text-align: center;
}

/* Image stat tiles */
.trust-tiles {
	display: grid;
	gap: 1rem;
	margin: 2.25rem 0 0;
	list-style: none;
	padding: 0;
}

@media (min-width: 640px) {
	.trust-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.trust-tiles {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.15rem;
	}
}

.trust-tile__media {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid hsl(30 15% 90% / 0.7);
}

.trust-tile__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.trust-tile:hover .trust-tile__img {
	transform: scale(1.04);
}

.trust-tile--pos-1 .trust-tile__img {
	object-position: 22% center;
}

.trust-tile--pos-2 .trust-tile__img {
	object-position: 55% center;
}

.trust-tile--pos-3 .trust-tile__img {
	object-position: 78% 35%;
}

.trust-tile--pos-4 .trust-tile__img {
	object-position: 40% 28%;
}

.trust-tile__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
	pointer-events: none;
}

.trust-tile__top {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	right: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	z-index: 2;
}

.trust-tile__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	font-size: 0.7rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	white-space: nowrap;
}

.trust-tile__plus {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1;
	cursor: default;
}

.trust-tile__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem 1.1rem 1.15rem;
	color: #fff;
}

.trust-tile__value {
	margin: 0 0 0.2rem;
	font-size: 1.65rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
	color: #fff;
}

.trust-tile__suffix {
	margin-left: 0.05em;
	opacity: 0.95;
}

.trust-tile__num {
	color: #fff;
}

.trust-tile__label {
	margin: 0 0 0.15rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.96);
}

.trust-tile__hint {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.75);
}

.section-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
}

.section-cta-row--single {
	justify-content: center;
}

/* Process */
.section--process {
	background: var(--color-bg);
}

.process-steps {
	display: grid;
	gap: 1.25rem;
	margin: 2.5rem 0;
}

@media (min-width: 768px) {
	.process-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.process-step {
	background: var(--color-surface);
	border-radius: var(--radius);
	padding: 1.5rem 1.25rem;
	border: 1px solid var(--color-border);
	position: relative;
}

.process-step__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.5rem;
	border-radius: 999px;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.process-step__title {
	font-size: 1.15rem;
	margin: 0 0 0.35rem;
}

.process-step__subtitle {
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.process-step__text {
	font-size: 0.95rem;
	color: var(--color-ink-muted);
	margin: 0;
}

/* Personal */
.section--personal {
	background: #fff;
}

/* Comparison card (section 04) */
.comparison-card {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

@media (min-width: 900px) {
	.comparison-card {
		grid-template-columns: 1fr 1fr;
	}
}

.comparison-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--color-bg);
}

@media (min-width: 768px) {
	.comparison-card__media {
		min-height: 560px;
	}
}

.comparison-card__media-img {
	position: absolute;
	inset: -10%;
	width: 120%;
	height: 120%;
	object-fit: cover;
	object-position: 35% center;
	transition: transform 700ms ease;
}

.comparison-card__media:hover .comparison-card__media-img {
	transform: scale(1.04);
}

.comparison-card__media-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.comparison-card__quote {
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	padding: 1rem 1.15rem;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
}

.comparison-card__quote-text {
	margin: 0 0 0.4rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.35;
}

.comparison-card__quote-byline {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.comparison-card__content {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 900px) {
	.comparison-card__content {
		padding: 2.25rem 2rem;
	}
}

.comparison-card__lead {
	margin: 0 0 1.25rem;
	color: var(--color-ink-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.comparison-card__features {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
}

.comparison-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.comparison-feature__num {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: hsl(33 28% 58% / 0.12);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.comparison-feature__title {
	margin: 0 0 0.25rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--fg);
}

.comparison-feature__desc {
	margin: 0;
	color: var(--color-ink-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.comparison-card__text {
	margin: 0 0 1.25rem;
	color: var(--color-ink-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.pullquote {
	margin: 2rem 0;
	padding: 1.5rem 1.25rem;
	border-left: 4px solid var(--color-gold);
	background: #fffbeb;
	border-radius: 0 var(--radius) var(--radius) 0;
}

.pullquote p {
	font-family: var(--font-display);
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

.pullquote footer {
	font-size: 0.95rem;
	color: var(--color-ink-muted);
	font-style: normal;
}

.numbered-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	counter-reset: step;
}

.numbered-list li {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-border);
	counter-increment: step;
	position: relative;
	padding-left: 3rem;
}

.numbered-list li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 1rem;
	font-weight: 700;
	color: var(--color-accent);
	font-variant-numeric: tabular-nums;
}

.numbered-list strong {
	font-size: 1.05rem;
}

.numbered-list span {
	color: var(--color-ink-muted);
	font-size: 0.95rem;
}

/* FAQ */
.section--faq {
	background: var(--color-bg);
}

.faq-split-grid {
	display: grid;
	gap: 2.25rem;
}

@media (min-width: 1024px) {
	.faq-split-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

.faq-split-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
	min-height: 22rem;
	background: var(--color-bg);
}

.faq-split-image__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 40% center;
}

.faq-split-image__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.1) 100%);
}

.faq-split-image__caption {
	position: absolute;
	left: 1.4rem;
	right: 1.4rem;
	bottom: 1.4rem;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.1rem;
	line-height: 1.25;
	font-weight: 300;
}

.faq-split-image__caption em {
	font-style: italic;
	background: linear-gradient(135deg, hsl(38 40% 72%), var(--primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.faq-cta-row {
	justify-content: flex-start;
}

@media (min-width: 768px) {
	.faq-cta-row {
		margin-top: 1.75rem;
	}
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.faq-item {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.faq-item__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.1rem;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.faq-item__q::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-accent);
	flex-shrink: 0;
}

.faq-item__a {
	padding: 0 1.1rem 1rem;
	color: var(--color-ink-muted);
	font-size: 0.95rem;
}

.faq-item__a p {
	margin: 0;
}

/* Testimonials */
.section--testimonials {
	background: #fff;
}

.google-reviews-link {
	text-align: center;
	margin: 0 0 2rem;
}

.testimonial-grid {
	display: grid;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.testimonial-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	margin: 0;
	padding: 1.25rem;
	background: var(--color-bg);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	font-size: 0.92rem;
}

.testimonial-card p {
	margin: 0 0 1rem;
}

.testimonial-card footer {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: 0.85rem;
	color: var(--color-ink-muted);
}

.mini-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(30, 58, 95, 0.06), rgba(201, 162, 39, 0.08));
	border-radius: var(--radius);
}

.mini-stats__item {
	text-align: center;
}

.mini-stats__value {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-accent);
	font-variant-numeric: tabular-nums;
}

.mini-stats__label {
	font-size: 0.85rem;
	color: var(--color-ink-muted);
}

/* CTA card (glossy sweep) */
.glossy-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 40%,
		hsl(35 30% 98% / 0.2) 45%,
		hsl(35 30% 98% / 0.05) 50%,
		transparent 55%
	);
	pointer-events: none;
	z-index: 2;
	transform: translateX(-100%);
}

.glossy-card:hover::before {
	animation: glossy-sweep 0.8s ease-out;
}

@keyframes glossy-sweep {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.glossy-card:hover::before {
		animation: none;
	}
}


/* .main-btn, .outline-btn removed — use .btn.btn-main / .btn.btn-outline */

/* Footer */
.site-footer {
	padding-top: clamp(4rem, 8vw, 6rem);
	background: #fff;
	color: var(--muted-fg);
}

.site-footer__main {
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.site-footer__title {
	margin: 0 0 clamp(2rem, 5vw, 4rem);
	font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--fg);
	max-width: 18ch;
}

.site-footer__grid {
	display: grid;
	gap: 2.25rem;
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
		gap: 2rem;
	}
}

.site-footer__about {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.site-footer__image-wrap {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius-xl);
}

.site-footer__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.site-footer__image-wrap:hover img {
	transform: scale(1.05);
}

.site-footer__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.85rem;
}

@media (min-width: 640px) {
	.site-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.site-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}
}

.site-footer__col-title {
	margin: 0 0 1rem;
	color: var(--fg);
	font-size: 0.84rem;
	font-weight: 500;
}

.site-footer__list,
.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.8rem;
}

.site-footer__list li,
.site-footer__menu li {
	font-size: 0.89rem;
	line-height: 1.45;
	color: hsl(25 8% 42%);
}

.site-footer__menu {
	display: grid;
}

.site-footer__list a,
.site-footer__menu a {
	text-decoration: none;
	color: inherit;
}

.site-footer__list a:hover,
.site-footer__menu a:hover {
	color: var(--fg);
}

.site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.site-footer__contact-icon {
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 0.2rem;
	width: 14px;
	height: 14px;
}

.site-footer__bottom {
	border-top: 1px solid hsl(30 15% 92%);
	padding: 1.25rem 0 1.75rem;
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}

@media (min-width: 768px) {
	.site-footer__bottom-inner {
		flex-direction: row;
	}
}

.site-footer__copy,
.site-footer__region {
	margin: 0;
	font-size: 0.75rem;
	color: hsl(25 8% 68%);
}

/* Inner pages */
.site-main--narrow,
.site-main--legal {
	padding: clamp(2rem, 5vw, 4rem) 0;
}

.entry__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0 0 1.5rem;
}

.prose {
	max-width: 68ch;
	color: var(--color-ink-muted);
}

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

.prose h2,
.prose h3 {
	color: var(--color-ink);
	font-family: var(--font-display);
	margin-top: 1.75rem;
}



/* Lovable-style Tailwind token shims (WP theme build) */
.text-foreground {
	color: hsl(var(--foreground));
}

.bg-card {
	background-color: var(--card);
}

.bg-border {
	background-color: var(--border);
}

.border-border\/40 {
	border-color: hsl(30 15% 90% / 0.4);
}

/* Lovable personal feature list: primary/10 default, primary/20 on row hover (named group feat) */
.bg-primary\/10 {
	background-color: color-mix(in srgb, var(--primary) 10%, transparent);
}

.group\/feat:hover .group-hover\/feat\:bg-primary\/20 {
	background-color: #b5966933;
}

/* FAQ section (Lovable) */
.section-padding {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.section-padding {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.bg-card\/60 {
	background-color: color-mix(in srgb, var(--card) 60%, transparent);
}

.border-border\/50 {
	border-color: hsl(30 15% 90% / 0.5);
}

.border-border {
	border-color: var(--border);
}

.bg-secondary {
	background-color: var(--secondary);
}

.shadow-md {
	box-shadow:
		0 4px 6px -1px rgb(0 0 0 / 0.08),
		0 2px 4px -2px rgb(0 0 0 / 0.06);
}

.wm-faq-hero__scrim {
	background: linear-gradient(to top, hsl(var(--foreground) / 0.5), transparent, transparent);
}

.wm-faq-item {
	border-width: 1px;
	border-style: solid;
	border-color: hsl(30 15% 90% / 0.5);
	background-color: color-mix(in srgb, var(--card) 60%, transparent);
	transition:
		background-color 300ms ease,
		border-color 300ms ease,
		box-shadow 300ms ease;
}

.wm-faq-item:not(.is-open):hover {
	background-color: var(--card);
	border-color: var(--border);
}

.wm-faq-item.is-open {
	background-color: var(--card);
	border-color: var(--border);
	box-shadow:
		0 4px 6px -1px rgb(0 0 0 / 0.08),
		0 2px 4px -2px rgb(0 0 0 / 0.06);
}

.wm-faq-item__icon-wrap {
	transform: rotate(0deg);
	transform-origin: center;
}

.border-foreground\/10 {
	border-color: hsl(var(--foreground) / 0.1);
}

.hover\:border-primary\/40:hover {
	border-color: rgba(181, 150, 105, 0.4);
}

/* Extra Lovable utility shims used in PHP templates */
.bg-background {
	background-color: var(--bg);
}

.container-custom {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.container-custom {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

.text-gold-gradient {
	background: linear-gradient(
		135deg,
		hsl(var(--gold-shadow)),
		hsl(var(--gold)),
		hsl(var(--gold-highlight)),
		hsl(var(--gold)),
		hsl(var(--gold-shadow))
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.text-foreground-soft {
	color: #3b322b;
}

.bg-foreground\/20 {
	background-color: hsl(var(--foreground) / 0.2);
}

.bg-foreground\/80 {
	background-color: hsl(var(--foreground) / 0.8);
}

.text-muted-foreground\/80 {
	color: hsl(25 8% 45% / 0.8);
}

/* Process section height — edit here, no Tailwind rebuild needed */
.wm-process-wrap {
	min-height: 750px;
}


/* *********************************** */
/*           Responsive CSS            */ 
/* *********************************** */

@media (max-width: 768px) {
	.btn {
		white-space: wrap;
		text-align: center;
		font-size: 12px;
	}
}