:root {
	--webto-color-1: #1a4dff;
	--webto-color-2: #111827;
	--webto-color-3: #f59e0b;
	--webto-color-4: #ffffff;
	--webto-color-5: #f5f7fa;
	--webto-color-6: #111827;
	--webto-color-7: #6b7280;
	--webto-color-8: #d1d5db;
	--webto-color-9: #15803d;
	--webto-color-10: #b91c1c;
	--webto-color-primary: var(--webto-color-1);
	--webto-color-secondary: var(--webto-color-2);
	--webto-color-accent: var(--webto-color-3);
	--webto-color-background: var(--webto-color-4);
	--webto-color-surface: var(--webto-color-5);
	--webto-color-text: var(--webto-color-6);
	--webto-color-muted: var(--webto-color-7);
	--webto-color-border: var(--webto-color-8);
	--webto-color-success: var(--webto-color-9);
	--webto-color-danger: var(--webto-color-10);
	--webto-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--webto-container-width: 1180px;
	--webto-content-width: 760px;
	--webto-space-xs: 0.5rem;
	--webto-space-sm: 1rem;
	--webto-space-md: 1.5rem;
	--webto-space-lg: 2rem;
	--webto-space-xl: 4rem;
	--webto-radius: 6px;
}

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--webto-color-background);
	color: var(--webto-color-text);
	font-family: var(--webto-font-family);
	font-size: 1rem;
	line-height: 1.6;
}

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

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

a {
	color: var(--webto-color-primary);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--webto-color-secondary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--webto-color-accent);
	outline-offset: 3px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--webto-color-secondary);
	color: #fff;
	text-decoration: none;
}

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

.content-area {
	padding-block: var(--webto-space-xl);
}

.site-header {
	border-bottom: 1px solid var(--webto-color-border);
	background: var(--webto-color-background);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--webto-space-md);
	min-height: 76px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--webto-color-text);
	font-weight: 700;
	text-decoration: none;
}

.site-logo__image {
	max-width: min(220px, 52vw);
	max-height: 64px;
}

.site-logo__text {
	font-size: 1.25rem;
}

.primary-navigation {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid var(--webto-color-border);
	border-radius: var(--webto-radius);
	background: var(--webto-color-background);
	color: var(--webto-color-text);
	cursor: pointer;
	padding: 0.55rem 0.75rem;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
	content: "";
}

.menu-toggle__icon {
	position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
	position: absolute;
	left: 0;
}

.menu-toggle__icon::before {
	top: -6px;
}

.menu-toggle__icon::after {
	top: 6px;
}

.primary-menu,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a,
.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--webto-color-text);
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: var(--webto-color-primary);
}

.primary-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry {
	max-width: var(--webto-content-width);
	margin-inline: auto;
}

.entry + .entry,
.post-navigation,
.comments-area,
.contact-details {
	margin-top: var(--webto-space-xl);
}

.entry-title,
.archive-title,
.page-title {
	margin: 0 0 var(--webto-space-md);
	color: var(--webto-color-text);
	font-size: 2.75rem;
	line-height: 1.1;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-meta,
.archive-description {
	color: var(--webto-color-muted);
}

.entry-thumbnail {
	margin-block: var(--webto-space-lg);
}

.entry-content > * {
	margin-block: 0 var(--webto-space-md);
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content .alignwide {
	width: min(100vw - 2rem, var(--webto-container-width));
	max-width: var(--webto-container-width);
	margin-inline: calc((var(--webto-content-width) - min(100vw - 2rem, var(--webto-container-width))) / 2);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}

.wp-block-image img {
	border-radius: var(--webto-radius);
}

.page-links,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--webto-space-sm);
	margin-top: var(--webto-space-lg);
}

.nav-links a,
.page-numbers {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}

.contact-details {
	max-width: var(--webto-content-width);
	margin-inline: auto;
	padding-top: var(--webto-space-lg);
	border-top: 1px solid var(--webto-color-border);
}

.contact-details address,
.site-footer__address,
.site-footer__contact {
	display: grid;
	gap: 0.35rem;
	font-style: normal;
}

.site-footer {
	border-top: 1px solid var(--webto-color-border);
	background: var(--webto-color-surface);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: var(--webto-space-lg);
	padding-block: var(--webto-space-lg);
}

.site-footer__title {
	margin: 0 0 0.35rem;
	font-weight: 700;
}

.site-footer__contact {
	justify-items: end;
}

.woocommerce-content {
	padding-block: var(--webto-space-xl);
}

@media (max-width: 760px) {
	.site-header__inner {
		align-items: flex-start;
		padding-block: var(--webto-space-sm);
	}

	.primary-navigation {
		flex-direction: column;
		align-items: flex-end;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-menu {
		display: none;
		width: min(calc(100vw - 2rem), 320px);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin-top: var(--webto-space-sm);
		padding: var(--webto-space-sm);
		border: 1px solid var(--webto-color-border);
		border-radius: var(--webto-radius);
		background: var(--webto-color-background);
	}

	.primary-navigation.is-open .primary-menu {
		display: flex;
	}

	.primary-menu a {
		width: 100%;
	}

	.entry-title,
	.archive-title,
	.page-title {
		font-size: 2rem;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__contact {
		justify-items: start;
	}
}


/* ─────────────────────────────────────────────────────────────
   WEBTO REDESIGN (frontpage)
   Maps the AI-design's tokens onto the theme's CSS custom
   properties so colours and the body font are still driven by
   Theme Settings. Only loads visually when the page uses
   page-templates/template-frontpage.php (body.webto-frontpage-redesign).
   ───────────────────────────────────────────────────────────── */
.webto-frontpage-redesign {
	--wfp-bg:         var(--webto-color-background, #F6F2EA);
	--wfp-paper:      var(--webto-color-surface, #FBF8F1);
	--wfp-bg-soft:    #EFEAE0;
	--wfp-ink:        var(--webto-color-text, #1A1A1A);
	--wfp-ink-2:      #2E2C29;
	--wfp-ink-3:      var(--webto-color-muted, #6B6A66);
	--wfp-ink-4:      #A3A09A;
	--wfp-line:       color-mix(in srgb, var(--webto-color-text, #1A1A1A) 10%, transparent);
	--wfp-line-2:     color-mix(in srgb, var(--webto-color-text, #1A1A1A) 6%, transparent);
	--wfp-accent:     var(--webto-color-primary, #DC4A3D);
	--wfp-accent-deep:var(--webto-color-accent, #B83A2D);
	--wfp-dark:       var(--webto-color-secondary, #14110D);
	--wfp-light:      #F1ECE3;
	--wfp-serif:      "Instrument Serif", Georgia, serif;
	--wfp-max:        1280px;
	--wfp-gutter:     32px;
	background: var(--wfp-bg);
	color: var(--wfp-ink);
	line-height: 1.5;
}
.webto-frontpage-redesign .site-header,
.webto-frontpage-redesign .site-footer { display: none; }
.webto-frontpage-redesign .site-main { padding: 0; }
.webto-frontpage-redesign img, .webto-frontpage-redesign svg { display: block; max-width: 100%; }

.wfp-container { max-width: var(--wfp-max); margin: 0 auto; padding: 0 var(--wfp-gutter); }

.wfp-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wfp-ink-3); display: inline-flex; align-items: center; gap: 10px; }
.wfp-eyebrow__dot { width: 6px; height: 6px; background: var(--wfp-accent); border-radius: 50%; display: inline-block; }
.wfp-eyebrow--center { justify-content: center; }

.wfp-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; font-size: 15px; font-weight: 500; border-radius: 999px; border: 1px solid transparent; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; text-decoration: none; }
.wfp-btn--primary { background: var(--wfp-dark); color: var(--wfp-light); }
.wfp-btn--primary:hover { background: var(--wfp-accent); color: #fff; }
.wfp-btn--ghost { background: transparent; border-color: var(--wfp-line); color: var(--wfp-ink); }
.wfp-btn--ghost:hover { background: color-mix(in srgb, var(--wfp-ink) 4%, transparent); border-color: color-mix(in srgb, var(--wfp-ink) 18%, transparent); }
.wfp-btn--dark { color: var(--wfp-light); border-color: rgba(255,255,255,0.2); }
.wfp-btn--dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); color: #fff; }
.wfp-btn--sm { padding: 10px 18px; font-size: 14px; }

/* NAV */
.wfp-nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--wfp-bg) 85%, transparent); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--wfp-line-2); }
.wfp-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.wfp-nav__logo { display: inline-flex; align-items: center; color: var(--wfp-accent); }
.wfp-nav__logo-img { max-height: 28px; width: auto; }
.wfp-nav__logo-text { font-weight: 700; font-size: 1.1rem; color: var(--wfp-ink); }
.wfp-nav__links { display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; list-style: none; }
.wfp-nav__links a { font-size: 14px; font-weight: 500; color: var(--wfp-ink-2); text-decoration: none; padding: 4px 0; transition: color .2s ease; }
.wfp-nav__links a:hover, .wfp-nav__links a:focus-visible { color: var(--wfp-accent); }
.wfp-nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 14px; font-weight: 500; background: var(--wfp-dark); color: var(--wfp-light); border-radius: 999px; text-decoration: none; transition: background .2s ease; }
.wfp-nav__cta:hover { background: var(--wfp-accent); color: #fff; }
.wfp-nav__toggle { display: none; background: transparent; border: 1px solid var(--wfp-line); border-radius: 999px; width: 44px; height: 40px; cursor: pointer; position: relative; }
.wfp-nav__toggle-icon, .wfp-nav__toggle-icon::before, .wfp-nav__toggle-icon::after { content: ''; display: block; position: absolute; left: 50%; width: 18px; height: 2px; background: var(--wfp-ink); transform: translateX(-50%); transition: transform .2s ease; }
.wfp-nav__toggle-icon { top: 50%; transform: translate(-50%, -50%); }
.wfp-nav__toggle-icon::before { top: -6px; }
.wfp-nav__toggle-icon::after  { top: 6px; }
.wfp-nav[data-open="true"] .wfp-nav__toggle-icon { background: transparent; }
.wfp-nav[data-open="true"] .wfp-nav__toggle-icon::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.wfp-nav[data-open="true"] .wfp-nav__toggle-icon::after  { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* HERO */
.wfp-hero { padding: 96px 0 64px; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.wfp-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: 0.85; filter: blur(40px); background: radial-gradient(circle at 15% 10%, rgba(220,74,61,0.10), transparent 42%), radial-gradient(circle at 88% 8%, rgba(216,168,122,0.18), transparent 45%), radial-gradient(circle at 50% 95%, rgba(168,178,216,0.10), transparent 50%); }
.wfp-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; background: color-mix(in srgb, var(--wfp-ink) 4%, transparent); border: 1px solid var(--wfp-line); border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--wfp-ink-2); margin-bottom: 28px; }
.wfp-hero__pulse { width: 8px; height: 8px; background: var(--wfp-accent); border-radius: 50%; box-shadow: 0 0 0 0 rgba(220,74,61,.6); animation: wfp-pulse 2s infinite; }
@keyframes wfp-pulse { 0% { box-shadow: 0 0 0 0 rgba(220,74,61,.5); } 70% { box-shadow: 0 0 0 8px rgba(220,74,61,0); } 100% { box-shadow: 0 0 0 0 rgba(220,74,61,0); } }
.wfp-hero__title { font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 500; margin: 0 auto; max-width: 14ch; color: var(--wfp-ink); }
.wfp-hero__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.wfp-hero__lede { margin: 28px auto 0; max-width: 56ch; font-size: 19px; line-height: 1.5; color: var(--wfp-ink-3); }
.wfp-hero__ctas { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.wfp-hero__trust { margin: 56px auto 0; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.wfp-hero__stack { display: flex; padding-left: 14px; }
.wfp-hero__stack-img { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--wfp-bg); margin-left: -14px; object-fit: cover; background: var(--wfp-bg-soft); box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.wfp-hero__trust-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.wfp-hero__trust-stars { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.wfp-hero__stars { color: #F2B541; letter-spacing: 1px; }
.wfp-hero__trust-stars span { color: var(--wfp-ink-3); font-weight: 400; }
.wfp-hero__trust-sub { font-size: 13px; color: var(--wfp-ink-3); }
/* CALCULATOR */
.wfp-calc { padding: 24px 0 80px; position: relative; isolation: isolate; }
.wfp-calc::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .8; filter: blur(45px); background: radial-gradient(circle at 90% 25%, rgba(220,74,61,0.10), transparent 38%), radial-gradient(circle at 5% 80%, rgba(184,205,185,0.18), transparent 45%); }
.wfp-calc__frame { position: relative; background: var(--wfp-bg-soft); border: 1px solid var(--wfp-line); border-radius: 28px; padding: 56px 48px 36px; max-width: 1180px; margin: 0 auto; }
.wfp-calc__pill { position: absolute; top: -22px; left: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 11px 20px; background: var(--wfp-accent); color: #fff; font-size: 14px; font-weight: 500; border-radius: 999px; box-shadow: 0 6px 20px rgba(220,74,61,0.30); }
.wfp-calc__progress { position: absolute; top: 36px; right: 48px; width: 200px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.wfp-calc__progress-label { font-size: 13px; color: var(--wfp-ink-2); font-weight: 500; }
.wfp-calc__progress-bar { width: 100%; height: 3px; background: rgba(26,26,26,0.10); border-radius: 2px; overflow: hidden; }
.wfp-calc__progress-fill { height: 100%; background: var(--wfp-accent); border-radius: 2px; transition: width .35s ease; }
.wfp-calc__progress-count { font-size: 11px; color: var(--wfp-ink-4); letter-spacing: .06em; }
.wfp-calc__body { margin-top: 12px; }
.wfp-calc__step { display: none; }
.wfp-calc__step[data-wfp-active] { display: block; }
.wfp-calc__h { font-size: clamp(26px, 3.4vw, 38px); font-weight: 500; letter-spacing: -.025em; line-height: 1.1; margin: 0 0 8px; max-width: 26ch; }
.wfp-calc__sub { font-size: 15px; color: var(--wfp-ink-3); margin: 0 0 32px; }
.wfp-calc__grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.wfp-calc__card { position: relative; background: #1F3742; color: #F1ECE3; border-radius: 14px; padding: 28px 24px 22px; min-height: 200px; text-align: left; border: 2px solid transparent; cursor: pointer; font-family: inherit; display: flex; flex-direction: column; gap: 8px; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.wfp-calc__card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,55,66,0.25); }
.wfp-calc__card[aria-pressed="true"] { border-color: var(--wfp-accent); background: #25404C; }
.wfp-calc__card-title { font-size: 19px; font-weight: 500; letter-spacing: -.01em; color: #fff; }
.wfp-calc__card-sub { font-size: 13px; color: rgba(241,236,227,.65); line-height: 1.4; flex: 1; }
.wfp-calc__checkbox { width: 22px; height: 22px; border: 1.5px solid rgba(241,236,227,.45); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 8px; }
.wfp-calc__card[aria-pressed="true"] .wfp-calc__checkbox { background: var(--wfp-accent); border-color: var(--wfp-accent); }
.wfp-calc__grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wfp-calc__row { background: var(--wfp-bg); border: 1.5px solid var(--wfp-line); border-radius: 14px; padding: 22px 24px; cursor: pointer; font-family: inherit; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: border-color .15s, background .15s; }
.wfp-calc__row:hover { border-color: var(--wfp-ink-2); }
.wfp-calc__row[aria-checked="true"] { border-color: var(--wfp-accent); background: rgba(220,74,61,0.05); }
.wfp-calc__row-label { font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--wfp-ink); }
.wfp-calc__row-sub { font-size: 13px; color: var(--wfp-ink-3); margin-top: 4px; }
.wfp-calc__radio { width: 22px; height: 22px; border: 1.5px solid var(--wfp-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wfp-calc__row[aria-checked="true"] .wfp-calc__radio { border-color: var(--wfp-accent); }
.wfp-calc__radio-dot { width: 10px; height: 10px; background: var(--wfp-accent); border-radius: 50%; opacity: 0; transition: opacity .15s; }
.wfp-calc__row[aria-checked="true"] .wfp-calc__radio-dot { opacity: 1; }
.wfp-calc__form { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.wfp-calc__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wfp-calc__field { display: flex; flex-direction: column; gap: 6px; }
.wfp-calc__field span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--wfp-ink-3); font-weight: 500; }
.wfp-calc__field input, .wfp-calc__field textarea { background: var(--wfp-bg); border: 1.5px solid var(--wfp-line); border-radius: 10px; padding: 13px 16px; font-family: inherit; font-size: 15px; color: var(--wfp-ink); outline: none; transition: border-color .15s; resize: vertical; }
.wfp-calc__field input:focus, .wfp-calc__field textarea:focus { border-color: var(--wfp-accent); }
.wfp-calc__done { background: var(--wfp-bg); border: 1.5px solid var(--wfp-line); border-radius: 18px; padding: 36px 36px 32px; max-width: 720px; }
.wfp-calc__done-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(60,140,80,.12); color: #3C8C50; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.wfp-calc__done-note { margin-top: 8px; font-size: 14px; color: var(--wfp-ink-3); line-height: 1.5; }
.wfp-calc__foot { margin-top: 36px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.wfp-calc__back { background: transparent; border: 1.5px solid var(--wfp-line); border-radius: 999px; padding: 12px 20px; font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; color: var(--wfp-ink-2); display: inline-flex; align-items: center; gap: 8px; transition: border-color .15s, color .15s; }
.wfp-calc__back:hover { border-color: var(--wfp-ink); color: var(--wfp-ink); }
.wfp-calc__next { background: #B8CDB9; color: #1F3F2A; border: 0; font-family: inherit; font-size: 15px; font-weight: 500; padding: 14px 24px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: background .15s, transform .15s; margin-left: auto; }
.wfp-calc__next:hover:not([aria-disabled="true"]) { background: #A0BFA1; transform: translateX(1px); }
.wfp-calc__next[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.wfp-calc__next--submit { background: var(--wfp-accent); color: #fff; }
.wfp-calc__next--submit:hover:not([aria-disabled="true"]) { background: var(--wfp-accent-deep); }

/* TRUSTED */
.wfp-trusted { padding: 80px 0 56px; position: relative; isolation: isolate; }
.wfp-trusted::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .8; filter: blur(50px); background: radial-gradient(circle at 85% 12%, rgba(220,74,61,0.08), transparent 42%), radial-gradient(circle at 10% 80%, rgba(216,168,122,0.14), transparent 48%); }
.wfp-trusted__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; gap: 24px; flex-wrap: wrap; }
.wfp-trusted__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; letter-spacing: -.025em; line-height: 1.05; margin: 14px 0 0; max-width: 20ch; }
.wfp-trusted__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-trusted__intro { font-size: 14px; color: var(--wfp-ink-3); max-width: 36ch; text-align: right; margin: 0; }
.wfp-trusted__row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.wfp-client { position: relative; aspect-ratio: 3 / 4; border-radius: 18px; overflow: hidden; background: var(--wfp-ink); }
.wfp-client__img { width: 100%; height: 100%; object-fit: cover; }
.wfp-client__img--placeholder { background: linear-gradient(135deg, #2B201A, #14110D); }
.wfp-client__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78) 100%); }
.wfp-client__name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: -.01em; line-height: 1.1; margin: 6px 0; }
.wfp-client__meta { position: absolute; bottom: 22px; left: 22px; right: 22px; color: #fff; }
.wfp-client__role { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.wfp-client__desc { font-size: 15px; line-height: 1.35; font-weight: 500; }
.wfp-client__arrow { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: rgba(255,255,255,.18); backdrop-filter: blur(10px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255,255,255,.3); transition: all .25s ease; }
.wfp-client:hover .wfp-client__arrow { background: #fff; color: var(--wfp-ink); transform: rotate(-45deg); }
.wfp-logo-strip { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--wfp-line); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.wfp-logo-strip__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--wfp-ink-4); }
.wfp-logo-strip__item { font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--wfp-ink-3); opacity: .7; }
.wfp-logo-strip__item--serif { font-family: var(--wfp-serif); font-weight: 400; font-size: 22px; }
/* SERVICES */
.wfp-services { padding: 96px 0; background: var(--wfp-paper); border-top: 1px solid var(--wfp-line-2); border-bottom: 1px solid var(--wfp-line-2); position: relative; isolation: isolate; }
.wfp-services::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .85; filter: blur(50px); background: radial-gradient(circle at 50% 0%, rgba(220,74,61,0.07), transparent 45%), radial-gradient(circle at 5% 90%, rgba(216,168,122,0.12), transparent 50%), radial-gradient(circle at 95% 95%, rgba(168,178,216,0.10), transparent 50%); }
.wfp-services__head { text-align: center; margin-bottom: 56px; }
.wfp-services__title { font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 16px auto 0; max-width: 18ch; }
.wfp-services__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-services__lede { margin: 22px auto 0; max-width: 52ch; color: var(--wfp-ink-3); font-size: 17px; }
.wfp-tabs-wrap { text-align: center; margin-bottom: 48px; }
.wfp-tabs { display: inline-flex; margin: 0 auto; padding: 6px; background: color-mix(in srgb, var(--wfp-ink) 4%, transparent); border-radius: 999px; gap: 4px; }
.wfp-tab { padding: 10px 20px; font-size: 14px; font-weight: 500; border-radius: 999px; cursor: pointer; border: 0; background: transparent; color: var(--wfp-ink-3); font-family: inherit; transition: all .2s; }
.wfp-tab.is-active { background: var(--wfp-ink); color: var(--wfp-bg); }
.wfp-tab:not(.is-active):hover { color: var(--wfp-ink); }
.wfp-service-card { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: var(--wfp-bg); border-radius: 24px; padding: 48px; border: 1px solid var(--wfp-line-2); }
.wfp-service-card[hidden] { display: none; }
.wfp-service-card__kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--wfp-accent); font-weight: 500; margin-bottom: 18px; }
.wfp-service-card__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wfp-accent); display: inline-block; }
.wfp-service-card__title { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -.025em; line-height: 1.05; margin: 0; }
.wfp-service-card__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-service-card__desc { margin-top: 20px; font-size: 17px; color: var(--wfp-ink-3); line-height: 1.55; max-width: 42ch; }
.wfp-feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.wfp-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--wfp-ink-2); }
.wfp-feature-list__tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(220,74,61,0.10); color: var(--wfp-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wfp-service-card__cta { margin-top: 36px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--wfp-ink); border-bottom: 1px solid var(--wfp-ink); padding-bottom: 4px; text-decoration: none; }
.wfp-service-card__cta:hover { color: var(--wfp-accent); border-color: var(--wfp-accent); }
.wfp-service-card__visual { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #1F1B16 0%, #14110D 100%); position: relative; }
.wfp-service-card__visual::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 14px); }

/* TEAM */
.wfp-team { padding: 120px 0; position: relative; isolation: isolate; }
.wfp-team::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .85; filter: blur(55px); background: radial-gradient(circle at 12% 8%, rgba(220,74,61,0.09), transparent 40%), radial-gradient(circle at 88% 92%, rgba(216,168,122,0.15), transparent 45%); }
.wfp-team__head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.wfp-team__title { font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 16px 0 0; }
.wfp-team__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-team__body { font-size: 17px; color: var(--wfp-ink-3); line-height: 1.55; max-width: 52ch; margin: 0 0 28px; }
.wfp-stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; margin-top: 24px; padding-top: 28px; border-top: 1px solid var(--wfp-line); }
.wfp-stat__num { font-family: var(--wfp-serif); font-size: 64px; letter-spacing: -.02em; line-height: .95; color: var(--wfp-ink); font-weight: 400; }
.wfp-stat__accent { color: var(--wfp-accent); font-style: italic; }
.wfp-stat__lbl { margin-top: 10px; font-size: 14px; color: var(--wfp-ink-3); }
.wfp-team__portraits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wfp-portrait { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.wfp-portrait__photo { aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; background: var(--wfp-bg-soft); transition: transform .25s ease; }
.wfp-portrait:hover .wfp-portrait__photo { transform: translateY(-4px); }
.wfp-portrait__img { width: 100%; height: 100%; object-fit: cover; }
.wfp-portrait__name { margin-top: 16px; font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--wfp-ink); }
.wfp-portrait__role { margin-top: 4px; font-size: 13px; color: var(--wfp-ink-3); }
.wfp-portrait--cta .wfp-portrait__cta-inner { aspect-ratio: 4/5; border-radius: 16px; background: var(--wfp-ink); color: var(--wfp-bg); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: background .25s ease; }
.wfp-portrait--cta:hover .wfp-portrait__cta-inner { background: var(--wfp-accent); }
.wfp-portrait__cta-arrow { width: 52px; height: 52px; border-radius: 50%; background: var(--wfp-bg); color: var(--wfp-ink); display: flex; align-items: center; justify-content: center; transition: transform .25s ease; }
.wfp-portrait--cta:hover .wfp-portrait__cta-arrow { transform: rotate(-45deg); }
.wfp-portrait__cta-text { font-family: var(--wfp-serif); font-size: 26px; line-height: 1.15; letter-spacing: -.01em; }

/* TESTIMONIAL */
.wfp-testimonial { padding: 100px 0 120px; background: var(--wfp-dark); color: var(--wfp-light); position: relative; overflow: hidden; }
.wfp-testimonial::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(220,74,61,0.18) 0%, transparent 70%); top: -200px; right: -200px; border-radius: 50%; }
.wfp-testimonial__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; position: relative; }
.wfp-testimonial .wfp-eyebrow { color: rgba(241,236,227,.7); }
.wfp-testimonial__quote { font-size: clamp(28px, 3vw, 40px); line-height: 1.18; letter-spacing: -.02em; font-weight: 400; margin: 24px 0 0; font-family: var(--wfp-serif); }
.wfp-testimonial__quote .accent { color: var(--wfp-accent); }
.wfp-testimonial__attr { margin-top: 40px; display: flex; align-items: center; gap: 18px; }
.wfp-testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, #6B6A66, #2E2C29); }
.wfp-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wfp-testimonial__name { font-size: 16px; font-weight: 500; }
.wfp-testimonial__role { font-size: 13px; color: rgba(241,236,227,.6); margin-top: 2px; }
.wfp-tstats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; }
.wfp-tstats .wfp-stat__num { color: var(--wfp-light); font-size: 56px; }
.wfp-tstats .wfp-stat__num .accent { color: var(--wfp-accent); }
.wfp-tstats .wfp-stat__lbl { color: rgba(241,236,227,.6); }
/* VALUES */
.wfp-values { padding: 120px 0; position: relative; isolation: isolate; }
.wfp-values::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .85; filter: blur(50px); background: radial-gradient(circle at 92% 18%, rgba(220,74,61,0.07), transparent 40%), radial-gradient(circle at 8% 82%, rgba(184,205,185,0.12), transparent 50%); }
.wfp-values__head { display: grid; grid-template-columns: 0.9fr 1fr; gap: 56px; margin-bottom: 56px; align-items: end; }
.wfp-values__title { font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 16px 0 0; }
.wfp-values__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-values__intro { font-size: 17px; color: var(--wfp-ink-3); max-width: 48ch; margin: 0; }
.wfp-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--wfp-line); border: 1px solid var(--wfp-line); border-radius: 24px; overflow: hidden; }
.wfp-value { background: var(--wfp-bg); padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; min-height: 320px; }
.wfp-value__num { font-family: var(--wfp-serif); font-style: italic; font-size: 28px; color: var(--wfp-accent); letter-spacing: -.01em; }
.wfp-value__title { font-size: 24px; font-weight: 500; letter-spacing: -.02em; margin: 0; line-height: 1.15; }
.wfp-value__body { font-size: 15px; color: var(--wfp-ink-3); line-height: 1.55; margin: 0; }
.wfp-value__spacer { flex: 1; }
.wfp-value__tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--wfp-ink-4); }

/* PROJECTS */
.wfp-projects { padding: 100px 0 120px; background: var(--wfp-paper); border-top: 1px solid var(--wfp-line-2); border-bottom: 1px solid var(--wfp-line-2); position: relative; isolation: isolate; }
.wfp-projects::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .85; filter: blur(55px); background: radial-gradient(circle at 100% 0%, rgba(220,74,61,0.08), transparent 40%), radial-gradient(circle at 0% 100%, rgba(216,168,122,0.13), transparent 50%); }
.wfp-projects__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.wfp-projects__title { font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 16px 0 0; max-width: 14ch; }
.wfp-projects__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-projects__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.wfp-filter { padding: 8px 16px; background: var(--wfp-bg); border: 1px solid var(--wfp-line); border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; color: var(--wfp-ink-2); transition: all .2s; }
.wfp-filter.is-active { background: var(--wfp-ink); color: var(--wfp-bg); border-color: var(--wfp-ink); }
.wfp-filter:hover:not(.is-active) { border-color: var(--wfp-ink); }
.wfp-projects__grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; gap: 20px; align-items: stretch; }
.wfp-proj { position: relative; border-radius: 20px; overflow: hidden; background: var(--wfp-ink); cursor: pointer; min-height: 100%; }
.wfp-proj--tall { grid-row: span 2; }
.wfp-proj--wide { aspect-ratio: 16 / 10; }
.wfp-proj--tall .wfp-proj__img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.wfp-proj__img { width: 100%; height: 100%; object-fit: cover; }
.wfp-proj__info { position: absolute; left: 24px; bottom: 22px; right: 24px; color: #fff; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.wfp-proj__title { font-size: 22px; font-weight: 500; letter-spacing: -.01em; }
.wfp-proj__sub { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 4px; letter-spacing: .06em; text-transform: uppercase; }
.wfp-proj__arrow { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--wfp-ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s; }
.wfp-proj:hover .wfp-proj__arrow { transform: rotate(-45deg); }
.wfp-proj__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%); }

/* BLOG */
.wfp-blog { padding: 120px 0; position: relative; isolation: isolate; }
.wfp-blog::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .85; filter: blur(50px); background: radial-gradient(circle at 50% 100%, rgba(220,74,61,0.07), transparent 45%), radial-gradient(circle at 5% 10%, rgba(216,168,122,0.12), transparent 50%); }
.wfp-blog__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.wfp-blog__title { font-size: clamp(36px, 4.4vw, 56px); font-weight: 500; letter-spacing: -.03em; line-height: 1.05; margin: 16px 0 0; max-width: 16ch; }
.wfp-blog__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-blog__right { display: flex; flex-direction: column; gap: 16px; align-items: end; max-width: 36ch; text-align: right; }
.wfp-blog__right p { font-size: 14px; color: var(--wfp-ink-3); margin: 0; }
.wfp-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wfp-blog-card { background: transparent; border-radius: 18px; overflow: hidden; transition: transform .25s ease; }
.wfp-blog-card:hover { transform: translateY(-4px); }
.wfp-blog-card__link { color: inherit; text-decoration: none; display: block; }
.wfp-blog-card__thumb { aspect-ratio: 4/3; background: var(--wfp-ink); position: relative; overflow: hidden; border-radius: 18px; }
.wfp-blog-card__img { width: 100%; height: 100%; object-fit: cover; }
.wfp-blog-card__body { padding: 22px 4px 8px; }
.wfp-blog-card__tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--wfp-accent); font-weight: 500; }
.wfp-blog-card__title { margin-top: 12px; font-size: 20px; font-weight: 500; letter-spacing: -.015em; line-height: 1.25; color: var(--wfp-ink); }
.wfp-blog-card__meta { margin-top: 14px; font-size: 13px; color: var(--wfp-ink-4); display: flex; gap: 14px; }

/* CONTACT (dark) */
.wfp-contact { padding: 100px 0 120px; background: var(--wfp-dark); color: var(--wfp-light); }
.wfp-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.wfp-contact__title { font-size: clamp(48px, 6vw, 80px); font-weight: 500; letter-spacing: -.03em; line-height: 1; margin: 24px 0 0; }
.wfp-contact__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-contact .wfp-eyebrow { color: rgba(241,236,227,.7); }
.wfp-contact__body { margin-top: 32px; font-size: 17px; color: rgba(241,236,227,.7); max-width: 40ch; line-height: 1.55; }
.wfp-contact__person { margin-top: 56px; display: flex; align-items: center; gap: 18px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.wfp-contact__avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, #6B6A66, #2E2C29); }
.wfp-contact__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wfp-contact__name { font-size: 17px; font-weight: 500; }
.wfp-contact__role { font-size: 13px; color: rgba(241,236,227,.6); margin-top: 4px; }
.wfp-contact__mail { color: var(--wfp-accent); font-size: 14px; margin-top: 4px; display: block; }
.wfp-contact__mail a { color: inherit; text-decoration: none; }
.wfp-contact__mail a:hover { text-decoration: underline; }
.wfp-contact__ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.wfp-contact__form, .wfp-contact__form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 36px; }
.wfp-contact__form-head { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.wfp-contact__form-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(241,236,227,.55); font-weight: 500; margin-bottom: 10px; }
.wfp-contact__form-title { font-family: var(--wfp-serif); font-style: italic; font-size: 32px; font-weight: 400; letter-spacing: -.01em; margin: 0; color: var(--wfp-light); }
.wfp-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.wfp-field > span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(241,236,227,.6); }
.wfp-field input, .wfp-field textarea, .wfp-field select { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--wfp-light); padding: 10px 0; font-size: 16px; font-family: inherit; outline: none; transition: border-color .2s; }
.wfp-field input:focus, .wfp-field textarea:focus, .wfp-field select:focus { border-color: var(--wfp-accent); }
.wfp-field textarea { resize: vertical; min-height: 80px; }
.wfp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wfp-contact__submit { margin-top: 24px; width: 100%; padding: 16px; background: var(--wfp-accent); color: #fff; border: 0; border-radius: 999px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: background .2s; }
.wfp-contact__submit:hover { background: var(--wfp-accent-deep); }
.wfp-contact__small { margin-top: 14px; font-size: 12px; color: rgba(241,236,227,.5); text-align: center; }

/* FOOTER */
.wfp-footer { background: var(--wfp-dark); color: var(--wfp-light); padding: 64px 0 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.wfp-footer__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.wfp-footer__cell-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(241,236,227,.5); margin-bottom: 12px; }
.wfp-footer__cell-value { font-size: 16px; color: var(--wfp-light); line-height: 1.45; }
.wfp-footer__cell-value a { color: inherit; border-bottom: 1px solid rgba(241,236,227,.25); padding-bottom: 1px; text-decoration: none; }
.wfp-footer__cell-value a:hover { color: var(--wfp-accent); border-color: var(--wfp-accent); }
.wfp-footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.wfp-footer__brand .wfp-footer__logo { height: 22px; width: auto; max-width: 180px; }
.wfp-footer__brand-name { color: var(--wfp-light); font-size: 20px; }
.wfp-footer__brand p { margin-top: 20px; font-size: 14px; line-height: 1.55; color: rgba(241,236,227,.6); max-width: 36ch; }
.wfp-footer__address { margin-top: 18px; display: grid; gap: 4px; font-style: normal; font-size: 13px; color: rgba(241,236,227,.7); }
.wfp-footer__address a { color: var(--wfp-accent); text-decoration: none; }
.wfp-footer__col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(241,236,227,.5); font-weight: 500; margin: 0 0 16px; }
.wfp-footer__col a { display: block; font-size: 14px; color: var(--wfp-light); padding: 5px 0; opacity: .85; text-decoration: none; transition: opacity .2s, color .2s; }
.wfp-footer__col a:hover { opacity: 1; color: var(--wfp-accent); }
.wfp-footer__bottom { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(241,236,227,.5); gap: 16px; flex-wrap: wrap; }
.wfp-footer__legal { display: flex; gap: 24px; }
.wfp-footer__legal a { color: inherit; text-decoration: none; }
.wfp-footer__legal a:hover { color: var(--wfp-accent); }

/* RESPONSIVE */
@media (max-width: 980px) {
	.wfp-trusted__row { grid-template-columns: repeat(2, 1fr); }
	.wfp-service-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
	.wfp-team__head { grid-template-columns: 1fr; gap: 32px; }
	.wfp-team__portraits { grid-template-columns: repeat(2, 1fr); }
	.wfp-testimonial__grid { grid-template-columns: 1fr; gap: 40px; }
	.wfp-values__grid { grid-template-columns: 1fr; }
	.wfp-values__head { grid-template-columns: 1fr; }
	.wfp-projects__grid { grid-template-columns: 1fr; }
	.wfp-proj--tall, .wfp-proj--wide { grid-column: 1 / -1; }
	.wfp-blog__grid { grid-template-columns: 1fr; }
	.wfp-contact__grid { grid-template-columns: 1fr; }
	.wfp-footer__top { grid-template-columns: 1fr 1fr; }
	.wfp-footer__strip { grid-template-columns: 1fr 1fr; }
	.wfp-calc__frame { padding: 56px 24px 28px; border-radius: 22px; }
	.wfp-calc__pill { left: 24px; }
	.wfp-calc__progress { position: static; width: 100%; align-items: flex-start; margin-bottom: 24px; }
	.wfp-calc__grid-4 { grid-template-columns: 1fr 1fr; }
	.wfp-calc__grid-2 { grid-template-columns: 1fr; }
	.wfp-calc__field-row { grid-template-columns: 1fr; }
	.wfp-nav__links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 16px var(--wfp-gutter); background: var(--wfp-bg); border-bottom: 1px solid var(--wfp-line-2); }
	.wfp-nav[data-open="true"] .wfp-nav__links { display: flex; }
	.wfp-nav__links li a { padding: 12px 0; }
	.wfp-nav__toggle { display: inline-block; }
}
@media (max-width: 640px) {
	.wfp-hero { padding: 64px 0 48px; }
	.wfp-trusted__row { grid-template-columns: 1fr; }
	.wfp-trusted__intro { text-align: left; }
	.wfp-feature-list { grid-template-columns: 1fr; }
	.wfp-team__portraits { grid-template-columns: 1fr; }
	.wfp-stats-row { grid-template-columns: 1fr 1fr; }
	.wfp-footer__top { grid-template-columns: 1fr; }
	.wfp-footer__strip { grid-template-columns: 1fr; }
	.wfp-blog__right { text-align: left; align-items: flex-start; }
}
/* Service visuals (editorial SVG illustrations) -- override the gradient placeholder */
.wfp-service-card__visual { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; position: relative; background: #F0E8D8; }
.wfp-service-card__visual::after { display: none; }
.wfp-visual-svg { width: 100%; height: 100%; display: block; }
/* TEAM SPLIT (override) -- replaces the portraits-grid with photo+copy split */
.wfp-team__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: stretch; }
.wfp-team__photo-big { aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; position: relative; background: var(--wfp-ink); }
.wfp-team__photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wfp-team__copy { display: flex; flex-direction: column; justify-content: space-between; padding: 16px 0; gap: 32px; }
.wfp-team__copy-top { display: flex; flex-direction: column; gap: 22px; }
.wfp-team__copy .wfp-team__title { font-size: clamp(36px, 4.6vw, 60px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 6px 0 0; }
.wfp-team__copy .wfp-team__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-team__copy .wfp-team__body { font-size: 17px; color: var(--wfp-ink-3); line-height: 1.55; max-width: 48ch; margin: 0; }
.wfp-team__faces { margin-top: 6px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 28px; max-width: 520px; }
.wfp-team__face { display: flex; align-items: center; gap: 12px; }
.wfp-team__face-photo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--wfp-bg-soft); flex-shrink: 0; }
.wfp-team__face-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wfp-team__face-name { font-size: 14px; font-weight: 500; color: var(--wfp-ink); line-height: 1.1; }
.wfp-team__face-role { font-size: 12px; color: var(--wfp-ink-3); margin-top: 2px; }
.wfp-team__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; padding-top: 28px; border-top: 1px solid var(--wfp-line); }

@media (max-width: 980px) {
	.wfp-team__grid { grid-template-columns: 1fr; gap: 32px; }
	.wfp-team__copy { padding: 0; }
	.wfp-team__faces { max-width: none; }
}
@media (max-width: 640px) {
	.wfp-team__faces { grid-template-columns: 1fr; }
}
/* Logo SVG inline -- uses brand accent via currentColor */
.wfp-nav__logo { color: var(--wfp-accent); flex-shrink: 0; }
.wfp-nav__logo-svg { display: block; height: 22px; width: auto; color: inherit; fill: currentColor; }
.wfp-nav__logo-svg .cls-1 { fill: currentColor; }
.wfp-footer__brand { color: var(--wfp-accent); }
svg.wfp-footer__logo { display: block; width: auto; height: 22px; color: var(--wfp-accent); }
/* Logo strip -- image variant */
.wfp-logo-strip { row-gap: 16px; }
.wfp-logo-strip__item--img { display: inline-flex; align-items: center; flex: 0 0 auto; }
.wfp-logo-strip__img { max-height: 72px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .65; transition: opacity .2s ease, filter .2s ease; }
.wfp-logo-strip__item--img:hover .wfp-logo-strip__img { filter: grayscale(0%); opacity: 1; }
@media (max-width: 640px) {
	.wfp-logo-strip__img { max-height: 54px; }
}
/* Project cards -- logo overlay + tagline */
.wfp-proj__logo { position: absolute; top: 24px; left: 24px; right: 24px; max-width: 160px; z-index: 2; }
.wfp-proj__logo-img { max-height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.95; }
.wfp-proj__tagline { margin-top: 8px; font-size: 14px; line-height: 1.4; color: rgba(255,255,255,0.78); max-width: 36ch; font-weight: 400; }
.wfp-proj--tall .wfp-proj__logo-img { max-height: 64px; }
@media (max-width: 640px) {
	.wfp-proj__logo { top: 18px; left: 18px; right: 18px; max-width: 140px; }
	.wfp-proj__logo-img { max-height: 44px; }
	.wfp-proj__tagline { font-size: 13px; }
}
/* SHOWCASE -- marquee with two counter-scrolling rows */
.wfp-showcase { padding: 100px 0 120px; overflow: hidden; position: relative; isolation: isolate; background: var(--wfp-dark); color: var(--wfp-light); }
.wfp-showcase::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(220,74,61,0.18) 0%, transparent 70%); top: -200px; right: -200px; border-radius: 50%; pointer-events: none; z-index: 0; }
.wfp-showcase .wfp-container, .wfp-showcase .wfp-showcase__rows { position: relative; z-index: 1; }
.wfp-showcase .wfp-eyebrow { color: rgba(241,236,227,0.7); }
.wfp-showcase__title { color: var(--wfp-light); }
.wfp-showcase__cta p { color: rgba(241,236,227,0.6); }
.wfp-showcase__cta .wfp-btn--ghost { border-color: rgba(255,255,255,0.2); color: var(--wfp-light); }
.wfp-showcase__cta .wfp-btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); color: #fff; }
.wfp-showcase__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.wfp-showcase__title { font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; margin: 16px 0 0; max-width: 14ch; }
.wfp-showcase__title em { font-family: var(--wfp-serif); font-style: italic; font-weight: 400; }
.wfp-showcase__cta { max-width: 36ch; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.wfp-showcase__cta p { margin: 0; font-size: 14px; color: var(--wfp-ink-3); }

.wfp-showcase__rows { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.wfp-showcase__row { overflow: hidden; width: 100%; padding: 10px 0 16px; }
.wfp-showcase__track { display: flex; gap: 28px; width: fit-content; will-change: transform; }
.wfp-showcase__track--left  { animation: wfp-show-left 56s linear infinite; }
.wfp-showcase__track--right { animation: wfp-show-right 64s linear infinite; }
.wfp-showcase__rows:hover .wfp-showcase__track { animation-play-state: paused; }
@keyframes wfp-show-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes wfp-show-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.wfp-show-card { position: relative; flex-shrink: 0; width: 420px; display: block; color: inherit; text-decoration: none; }
.wfp-show-card { --card-color: #9b8a73; }
.wfp-show-card__img { position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--card-color) 60%, var(--wfp-paper)) 0%, color-mix(in srgb, var(--card-color) 30%, var(--wfp-paper)) 45%, color-mix(in srgb, var(--card-color) 12%, var(--wfp-dark)) 100%); box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 12px 32px -8px rgba(0,0,0,.45), 0 4px 14px -4px rgba(0,0,0,.30); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.wfp-show-card__img-el { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.wfp-show-card:hover .wfp-show-card__img { transform: translateY(-6px); box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 20px 44px -10px rgba(20,17,13,.25), 0 6px 20px -4px rgba(20,17,13,.14); }
.wfp-show-card__meta { margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; }
.wfp-show-card__name { font-size: 16px; font-weight: 500; letter-spacing: -.01em; color: var(--wfp-light); }
.wfp-show-card__tag { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(241,236,227,0.5); }

@media (prefers-reduced-motion: reduce) {
	.wfp-showcase__track { animation: none !important; flex-wrap: wrap; }
	.wfp-showcase__rows { -webkit-mask-image: none; mask-image: none; }
	.wfp-showcase__row { overflow: visible; }
}
@media (max-width: 980px) {
	.wfp-showcase__head { flex-direction: column; align-items: flex-start; gap: 24px; }
	.wfp-show-card { width: 320px; }
	.wfp-showcase__cta { max-width: none; text-align: left; align-items: flex-start; }
}
/* Team CTA -- between faces and stats */
.wfp-team__cta { margin-top: 32px; }
/* Team collage (alternative to single photo) */
.wfp-team__photo-big--collage { overflow: visible; background: transparent; border-radius: 0; aspect-ratio: auto; align-self: start; }
.wfp-collage { background: var(--wfp-bg-soft); border-radius: 24px; display: grid; grid-template-rows: 1.85fr 1fr; gap: 10px; padding: 10px; width: 100%; aspect-ratio: 4 / 5.6; }
.wfp-collage__featured { position: relative; overflow: hidden; border-radius: 16px; background: var(--wfp-ink); }
.wfp-collage__featured .wfp-collage__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.wfp-collage:hover .wfp-collage__featured .wfp-collage__img { transform: scale(1.03); }
.wfp-collage__row { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 10px; }
.wfp-collage__tile { position: relative; overflow: hidden; border-radius: 14px; background: var(--wfp-ink); }
.wfp-collage__tile .wfp-collage__img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.wfp-collage__tile:hover .wfp-collage__img { transform: scale(1.05); }

/* Award badge -- rotated accent ribbon */
.wfp-team__badge { position: absolute; right: -14px; bottom: -14px; background: var(--wfp-accent); color: #fff; padding: 14px 20px 16px; border-radius: 16px; box-shadow: 0 12px 28px rgba(220,74,61,0.32), 0 4px 12px rgba(20,17,13,0.18); max-width: 220px; transform: rotate(-3deg); transition: transform .35s cubic-bezier(.2,.7,.2,1); z-index: 2; }
.wfp-team__photo-big--collage:hover .wfp-team__badge { transform: rotate(-1deg) translateY(-2px); }
.wfp-team__badge-tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; line-height: 1.3; opacity: .95; }
.wfp-team__badge-year { font-family: var(--wfp-serif); font-style: italic; font-size: 36px; line-height: 1; margin-top: 4px; letter-spacing: -.01em; }

@media (max-width: 640px) {
	.wfp-team__badge { right: 0; bottom: -10px; max-width: 180px; padding: 12px 16px; }
	.wfp-team__badge-year { font-size: 28px; }
}
.wfp-team__stats .wfp-stat__num .accent { color: var(--wfp-accent); }


/* ──────────────────────────────────────────────────────────────
   DARK MODE
   Activated by setting <html data-theme="dark">.
   Overrides --wfp-* and --vis-* tokens so all sections adapt
   automatically. Brand accent stays untouched.
   ────────────────────────────────────────────────────────────── */

.webto-frontpage-redesign {
	/* Editorial-illustration tokens used inside service-visual SVGs */
	--vis-bg-1:        #FBF6EC;
	--vis-bg-2:        #F0E8D8;
	--vis-card:        #FFFFFF;
	--vis-card-dark:   #1A1A1A;
	--vis-card-bright: #F1ECE3;
	--vis-ink:         #1A1A1A;
	--vis-ink-muted:   #6B6A66;
	--vis-ink-faint:   #A3A09A;
	--vis-line:        #E0D9C8;
	--vis-skeleton:    #E8E2D3;
	--vis-accent:      #DC4A3D;
	--vis-accent-soft: #A8C18A;
	--vis-accent-ring: #D4E4BD;
	--vis-shadow:      rgba(20,17,13,0.18);
}

[data-theme="dark"] .webto-frontpage-redesign {
	/* Page tokens */
	--wfp-bg:         #1A1612;
	--wfp-paper:      #1F1B16;
	--wfp-bg-soft:    #14110D;
	--wfp-ink:        #F1ECE3;
	--wfp-ink-2:      #D8D2C5;
	--wfp-ink-3:      rgba(241,236,227,0.65);
	--wfp-ink-4:      rgba(241,236,227,0.45);
	--wfp-line:       rgba(255,255,255,0.10);
	--wfp-line-2:     rgba(255,255,255,0.06);
	--wfp-dark:       #0A0907;

	/* Visual tokens for SVG illustrations */
	--vis-bg-1:        #1F1B16;
	--vis-bg-2:        #14110D;
	--vis-card:        #2A241D;
	--vis-card-dark:   #0A0907;
	--vis-card-bright: #3A3429;
	--vis-ink:         #F1ECE3;
	--vis-ink-muted:   rgba(241,236,227,0.65);
	--vis-ink-faint:   rgba(241,236,227,0.45);
	--vis-line:        rgba(255,255,255,0.15);
	--vis-skeleton:    rgba(255,255,255,0.12);
	--vis-shadow:      rgba(0,0,0,0.55);
}

/* Subtle border-top on the page background where it meets a darker emphasis section,
   so testimonial/showcase/contact still look distinct in dark mode. */
[data-theme="dark"] .webto-frontpage-redesign .wfp-testimonial,
[data-theme="dark"] .webto-frontpage-redesign .wfp-showcase,
[data-theme="dark"] .webto-frontpage-redesign .wfp-contact,
[data-theme="dark"] .webto-frontpage-redesign .wfp-footer {
	border-top: 1px solid rgba(255,255,255,0.06);
}

/* Theme toggle button -- minimal sun/moon icon */
.wfp-nav__theme {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	border: 1px solid var(--wfp-line);
	border-radius: 50%;
	background: transparent;
	color: var(--wfp-ink-2);
	cursor: pointer;
	padding: 0;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
	flex-shrink: 0;
}
.wfp-nav__theme:hover { border-color: var(--wfp-ink-2); color: var(--wfp-accent); }
.wfp-nav__theme:focus-visible { outline: 2px solid var(--wfp-accent); outline-offset: 2px; }
.wfp-nav__theme-icon { display: block; width: 16px; height: 16px; }
/* Light mode: show moon (click to go dark). Dark mode: show sun (click to go light). */
.wfp-nav__theme-icon--sun { display: none; }
[data-theme="dark"] .wfp-nav__theme-icon--moon { display: none; }
[data-theme="dark"] .wfp-nav__theme-icon--sun { display: block; }
.wfp-nav__right { display: inline-flex; align-items: center; gap: 10px; }
