/*
Theme Name: Webkraft
Template: twentytwentyfive
Description: Webkraft – profesjonelle nettsider for bedrifter i Rogaland
Version: 1.1
Author: Webkraft
*/

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

:root {
	--black: #0a0a0a;
	--white: #f5f3ee;
	--cream: #f0ede6;
	--accent: #d4522a;
	--accent-light: #e8724a;
	--mid: #2a2a2a;
	--subtle: #6b6b6b;
	--border: rgba(10,10,10,0.1);
	--font-head: 'Syne', sans-serif;
	--font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body.wp-singular,
body {
	background: var(--white);
	color: var(--black);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Hide default WP block-theme header/footer wrappers on front page */
body.home > header,
body.home > footer {
	display: none;
}

/* Reset list styles inside our custom markup */
.wk ul { list-style: none; padding: 0; margin: 0; }
.wk a { text-decoration: none; }

/* ─── NAV ─── */
.wk-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 5vw;
	background: rgba(245,243,238,0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow 0.3s;
}
.wk-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.wk-logo {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -0.03em;
	color: var(--black);
	text-decoration: none;
}
.wk-logo span { color: var(--accent); }

.wk-nav-links {
	display: flex;
	gap: 2.2rem;
	list-style: none;
}
.wk-nav-links a {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--mid);
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 0.2s;
}
.wk-nav-links a:hover { color: var(--accent); }

.wk-nav-cta {
	background: var(--black);
	color: var(--white) !important;
	padding: 0.55rem 1.3rem;
	border-radius: 4px;
	font-weight: 500 !important;
	transition: background 0.2s !important;
}
.wk-nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

.wk-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.wk-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--black);
	transition: all 0.3s;
}

/* ─── HERO ─── */
.wk-hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 8rem 5vw 4rem;
	gap: 4rem;
	position: relative;
	overflow: hidden;
}

.wk-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -5%;
	width: 55%;
	height: 120%;
	background: radial-gradient(ellipse at 70% 40%, #e8d5c4 0%, transparent 65%),
				radial-gradient(ellipse at 30% 80%, #d4c4b0 0%, transparent 55%);
	opacity: 0.45;
	z-index: 0;
}

.wk-hero-content {
	position: relative;
	z-index: 1;
	animation: fadeUp 0.9s ease both;
}

.wk-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 0.35rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--subtle);
	margin-bottom: 1.8rem;
	animation: fadeUp 0.7s 0.1s ease both;
}
.wk-hero-badge::before {
	content: '';
	width: 6px; height: 6px;
	background: var(--accent);
	border-radius: 50%;
}

.wk-hero h1 {
	font-family: var(--font-head);
	font-size: clamp(2.8rem, 5.5vw, 5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--black);
	margin-bottom: 1.5rem;
	animation: fadeUp 0.8s 0.2s ease both;
}
.wk-hero h1 em {
	font-style: normal;
	color: var(--accent);
}

.wk-hero p {
	font-size: 1.1rem;
	color: var(--subtle);
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	animation: fadeUp 0.8s 0.35s ease both;
	font-weight: 300;
}

.wk-hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeUp 0.8s 0.5s ease both;
}

.wk-btn-primary {
	background: var(--black);
	color: var(--white);
	padding: 0.85rem 2rem;
	border-radius: 4px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: background 0.2s, transform 0.2s;
	border: none;
	cursor: pointer;
}
.wk-btn-primary:hover { background: var(--accent); transform: translateY(-1px); color: var(--white); }
.wk-btn-primary svg { transition: transform 0.2s; }
.wk-btn-primary:hover svg { transform: translateX(3px); }

.wk-btn-outline {
	border: 1.5px solid var(--black);
	color: var(--black);
	padding: 0.85rem 2rem;
	border-radius: 4px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
	background: transparent;
	cursor: pointer;
}
.wk-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.wk-hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	animation: fadeUp 0.8s 0.65s ease both;
}
.wk-hero-stats .wk-stat-num {
	font-family: var(--font-head);
	font-size: 2rem;
	font-weight: 800;
	color: var(--black);
	letter-spacing: -0.04em;
}
.wk-hero-stats .wk-stat-num span { color: var(--accent); }
.wk-hero-stats .wk-stat-label {
	font-size: 0.82rem;
	color: var(--subtle);
	font-weight: 400;
}

.wk-hero-visual {
	position: relative;
	z-index: 1;
	animation: fadeIn 1s 0.4s ease both;
}

.wk-mockup-wrap {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
	background: var(--white);
	border: 1px solid var(--border);
}

.wk-mockup-bar {
	background: #e8e5df;
	padding: 0.7rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.wk-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.wk-mockup-dot:nth-child(1) { background: #ff5f57; }
.wk-mockup-dot:nth-child(2) { background: #febc2e; }
.wk-mockup-dot:nth-child(3) { background: #28c840; }
.wk-mockup-url {
	margin-left: 0.5rem;
	background: var(--white);
	border-radius: 4px;
	padding: 0.25rem 0.8rem;
	font-size: 0.75rem;
	color: var(--subtle);
	flex: 1;
}

.wk-mockup-content {
	background: #1a1a1a;
	padding: 1.8rem;
}
.wk-mockup-nav-fake {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.8rem;
}
.wk-mockup-logo-fake {
	width: 80px; height: 12px;
	background: var(--accent);
	border-radius: 2px;
}
.wk-mockup-links-fake {
	display: flex;
	gap: 0.7rem;
}
.wk-mockup-links-fake span {
	width: 40px; height: 8px;
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
}
.wk-mockup-hero-fake {
	text-align: center;
	padding: 2rem 1rem;
}
.wk-mockup-h1-fake {
	height: 24px;
	background: var(--white);
	border-radius: 3px;
	margin: 0 auto 0.8rem;
	width: 70%;
}
.wk-mockup-h2-fake {
	height: 14px;
	background: rgba(255,255,255,0.25);
	border-radius: 3px;
	margin: 0 auto 1.5rem;
	width: 50%;
}
.wk-mockup-btn-fake {
	display: inline-block;
	background: var(--accent);
	color: var(--white);
	padding: 0.5rem 1.4rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-family: var(--font-body);
}
.wk-mockup-cards-fake {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.7rem;
	margin-top: 1.5rem;
}
.wk-mockup-card-fake {
	background: rgba(255,255,255,0.07);
	border-radius: 6px;
	padding: 0.8rem;
	border: 1px solid rgba(255,255,255,0.1);
}
.wk-mockup-card-icon {
	width: 20px; height: 20px;
	background: var(--accent);
	border-radius: 4px;
	margin-bottom: 0.5rem;
	opacity: 0.8;
}
.wk-mockup-card-line {
	height: 6px;
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
	margin-bottom: 0.3rem;
}
.wk-mockup-card-line.short { width: 60%; }

.wk-floating-badge {
	position: absolute;
	bottom: -1rem;
	left: -1.5rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 0.8rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	animation: float 3s ease-in-out infinite;
}
.wk-badge-icon {
	width: 36px; height: 36px;
	background: #eef7ed;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}
.wk-badge-text { font-size: 0.78rem; }
.wk-badge-text strong { display: block; font-weight: 600; font-size: 0.82rem; }
.wk-badge-text span { color: var(--subtle); }

/* ─── STRIP ─── */
.wk-trust-strip {
	background: var(--black);
	padding: 1.2rem 5vw;
	display: flex;
	align-items: center;
	gap: 3rem;
	overflow: hidden;
}
.wk-trust-label {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	white-space: nowrap;
	font-weight: 500;
}
.wk-trust-items {
	display: flex;
	gap: 3rem;
	align-items: center;
	flex: 1;
	flex-wrap: wrap;
}
.wk-trust-item {
	font-family: var(--font-head);
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255,255,255,0.55);
	white-space: nowrap;
	letter-spacing: 0.02em;
}

/* ─── SECTIONS ─── */
.wk-section { padding: 6rem 5vw; }

.wk-section-label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1rem;
}

.wk-section-title {
	font-family: var(--font-head);
	font-size: clamp(2rem, 3.5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--black);
	max-width: 600px;
}
.wk-section-title em { font-style: normal; color: var(--accent); }

.wk-section-intro {
	font-size: 1.05rem;
	color: var(--subtle);
	max-width: 520px;
	margin-top: 1rem;
	line-height: 1.7;
	font-weight: 300;
}

/* ─── SERVICES ─── */
.wk-services { background: var(--cream); }

.wk-services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
	gap: 2rem;
	flex-wrap: wrap;
}

.wk-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
}

.wk-service-card {
	background: var(--cream);
	padding: 2.5rem 2rem;
	transition: background 0.25s;
	position: relative;
}
.wk-service-card:hover { background: var(--white); }
.wk-service-card:hover .wk-service-arrow { opacity: 1; transform: translate(0,0); }

.wk-service-icon {
	width: 48px; height: 48px;
	border-radius: 10px;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.wk-service-card h3 {
	font-family: var(--font-head);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	letter-spacing: -0.02em;
}

.wk-service-card p {
	font-size: 0.9rem;
	color: var(--subtle);
	line-height: 1.65;
	font-weight: 300;
}

.wk-service-arrow {
	position: absolute;
	top: 2rem; right: 2rem;
	color: var(--accent);
	opacity: 0;
	transform: translate(-4px, 4px);
	transition: opacity 0.25s, transform 0.25s;
	font-size: 1.2rem;
}

/* ─── HOW IT WORKS ─── */
.wk-how { background: var(--white); }

.wk-how-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.wk-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wk-step {
	display: flex;
	gap: 1.5rem;
	padding: 1.8rem 0;
	border-bottom: 1px solid var(--border);
	cursor: default;
	transition: padding-left 0.25s;
}
.wk-step:last-child { border-bottom: none; }
.wk-step:hover { padding-left: 0.5rem; }

.wk-step-num {
	font-family: var(--font-head);
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--accent);
	letter-spacing: 0.06em;
	min-width: 28px;
	padding-top: 3px;
}

.wk-step-body h4 {
	font-family: var(--font-head);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	letter-spacing: -0.01em;
}
.wk-step-body p {
	font-size: 0.88rem;
	color: var(--subtle);
	line-height: 1.6;
	font-weight: 300;
}

.wk-how-visual {
	background: var(--black);
	border-radius: 12px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}
.wk-how-visual::before {
	content: '';
	position: absolute;
	bottom: -40%;
	right: -20%;
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, rgba(212,82,42,0.25) 0%, transparent 70%);
	pointer-events: none;
}

.wk-process-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wk-process-item:last-child { border-bottom: none; }

.wk-process-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	flex-shrink: 0;
}
.wk-process-dot.active { background: var(--accent); box-shadow: 0 0 0 3px rgba(212,82,42,0.25); }

.wk-process-text {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.5);
	flex: 1;
	font-weight: 300;
}
.wk-process-text.active { color: var(--white); font-weight: 500; }

.wk-process-badge {
	font-size: 0.72rem;
	padding: 0.2rem 0.6rem;
	border-radius: 100px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.4);
}
.wk-process-badge.done { background: rgba(212,82,42,0.2); color: var(--accent-light); }

/* ─── PRICING ─── */
.wk-pricing { background: var(--cream); }

.wk-pricing-header {
	text-align: center;
	margin-bottom: 3.5rem;
}
.wk-pricing-header .wk-section-title { margin: 0 auto; }
.wk-pricing-header .wk-section-intro { margin: 1rem auto 0; text-align: center; }

.wk-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.wk-price-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 2rem;
	position: relative;
	transition: box-shadow 0.25s, transform 0.25s;
}
.wk-price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.wk-price-card.featured {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.wk-price-card.featured .wk-price-desc { color: rgba(255,255,255,0.5); }
.wk-price-card.featured .wk-price-feature { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.wk-price-card.featured .wk-price-feature .wk-check { color: var(--accent-light); }

.wk-price-tag {
	display: inline-block;
	background: var(--accent);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2rem 0.7rem;
	border-radius: 100px;
	position: absolute;
	top: -0.7rem;
	left: 1.5rem;
}

.wk-price-plan {
	font-family: var(--font-head);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--subtle);
	margin-bottom: 0.5rem;
}
.wk-price-card.featured .wk-price-plan { color: rgba(255,255,255,0.45); }

.wk-price-amount {
	font-family: var(--font-head);
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 0.3rem;
}
.wk-price-amount sub {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	vertical-align: baseline;
}
.wk-price-from {
	font-size: 0.8rem;
	color: var(--subtle);
	margin-bottom: 1.2rem;
}
.wk-price-card.featured .wk-price-from { color: rgba(255,255,255,0.4); }
.wk-price-desc {
	font-size: 0.88rem;
	color: var(--subtle);
	line-height: 1.55;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
	font-weight: 300;
}
.wk-price-features { list-style: none; margin-bottom: 2rem; padding: 0; }
.wk-price-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: var(--mid);
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--border);
	font-weight: 300;
}
.wk-price-feature:last-child { border-bottom: none; }
.wk-check { color: var(--accent); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

.wk-btn-price {
	display: block;
	text-align: center;
	padding: 0.8rem;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s;
	font-family: var(--font-body);
}
.wk-btn-price-dark {
	background: var(--black);
	color: var(--white);
}
.wk-btn-price-dark:hover { background: var(--accent); color: var(--white); }
.wk-btn-price-light {
	background: var(--accent);
	color: var(--white);
}
.wk-btn-price-light:hover { background: var(--accent-light); color: var(--white); }

/* ─── TESTIMONIALS ─── */
.wk-testimonials { background: var(--white); }

.wk-testimonials-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 2rem;
}

.wk-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.wk-testimonial-card {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1.8rem;
	transition: box-shadow 0.25s;
}
.wk-testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.wk-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 1rem;
	color: var(--accent);
	font-size: 0.9rem;
}

.wk-testimonial-card blockquote {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--mid);
	margin-bottom: 1.5rem;
	font-style: italic;
	font-weight: 300;
}

.wk-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.wk-author-avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--white);
	flex-shrink: 0;
}
.wk-author-name {
	font-weight: 600;
	font-size: 0.88rem;
}
.wk-author-company {
	font-size: 0.78rem;
	color: var(--subtle);
}

/* ─── CTA ─── */
.wk-cta-section {
	background: var(--black);
	padding: 7rem 5vw;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.wk-cta-section::before {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(212,82,42,0.18) 0%, transparent 70%);
	pointer-events: none;
}

.wk-cta-section .wk-section-label { color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }

.wk-cta-section h2 {
	font-family: var(--font-head);
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--white);
	margin-bottom: 1rem;
	position: relative;
}
.wk-cta-section h2 em { font-style: normal; color: var(--accent-light); }

.wk-cta-section p {
	color: rgba(255,255,255,0.5);
	font-size: 1.05rem;
	max-width: 480px;
	margin: 0 auto 2.5rem;
	font-weight: 300;
}

.wk-cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.wk-btn-cta-primary {
	background: var(--accent);
	color: var(--white);
	padding: 1rem 2.2rem;
	border-radius: 4px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.98rem;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}
.wk-btn-cta-primary:hover { background: var(--accent-light); transform: translateY(-1px); color: var(--white); }

.wk-btn-cta-ghost {
	border: 1.5px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.75);
	padding: 1rem 2.2rem;
	border-radius: 4px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 0.98rem;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}
.wk-btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ─── FOOTER ─── */
.wk-footer {
	background: var(--black);
	border-top: 1px solid rgba(255,255,255,0.07);
	padding: 4rem 5vw 2rem;
	color: rgba(255,255,255,0.5);
}

.wk-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.wk-footer-brand .wk-logo { color: var(--white); font-size: 1.2rem; }
.wk-footer-brand p {
	font-size: 0.88rem;
	line-height: 1.65;
	margin-top: 1rem;
	font-weight: 300;
	max-width: 300px;
}

.wk-footer-col h4 {
	font-family: var(--font-head);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--white);
	margin-bottom: 1.2rem;
}

.wk-footer-col ul { list-style: none; padding: 0; margin: 0; }
.wk-footer-col li { margin-bottom: 0.6rem; }
.wk-footer-col a {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 300;
}
.wk-footer-col a:hover { color: var(--white); }

.wk-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.wk-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.wk-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
	.wk-hero { grid-template-columns: 1fr; padding-top: 6rem; }
	.wk-hero-visual { display: none; }
	.wk-services-grid { grid-template-columns: 1fr 1fr; }
	.wk-how-inner { grid-template-columns: 1fr; gap: 3rem; }
	.wk-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
	.wk-testimonials-grid { grid-template-columns: 1fr; }
	.wk-footer-grid { grid-template-columns: 1fr 1fr; }
	.wk-nav-links { display: none; }
	.wk-hamburger { display: flex; }
}
@media (max-width: 600px) {
	.wk-services-grid { grid-template-columns: 1fr; }
	.wk-footer-grid { grid-template-columns: 1fr; }
	.wk-trust-items { gap: 1.5rem; }
}

/* Mobile menu */
.wk-mobile-menu {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: var(--white);
	z-index: 99;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}
.wk-mobile-menu.open { display: flex; }
.wk-mobile-menu a {
	font-family: var(--font-head);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--black);
	text-decoration: none;
	letter-spacing: -0.03em;
}
.wk-mobile-menu a:hover { color: var(--accent); }
.wk-mobile-close {
	position: absolute;
	top: 1.5rem; right: 5vw;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: var(--black);
}

/* Hide WP admin bar offset push for our fixed nav */
html.wp-toolbar { padding-top: 0 !important; }
