/* ==========================================================================
   Header: announcement bar, sticky navy nav, mega menus, mobile drawer.
   Classes are namespaced .wf-header* / .wf-announce* / .wf-mm* / .wf-drawer*.
   Tokens come from assets/css/tokens.css. There is no site search here
   (removed 2026-09-12).

   Every selector is scoped under .wf-header-wrap: Elementor's kit stylesheet
   (.elementor-kit-6 a / button / img, specificity 0-1-1) outranks plain
   single-class rules, so an unscoped .wf-mm-row would lose its colour.

   Values mirror the design reference
   (wolfpack-website/frontend/src/components/Header.astro + styles/global.css).
   Three reference colours have no equivalent in tokens.css, so they are
   declared as header-scoped custom properties rather than new global tokens.
   ========================================================================== */

/* ---------- Sticky wrapper ---------- */
.wf-header-wrap {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--wf-navy);

	/* Reference --color-line / --color-ink-dim / --color-blue-hover. */
	--wf-mm-line: #D8D3C6;
	--wf-mm-ink-dim: #3A3F47;
	--wf-mm-blue-hover: #0E5FC4;
}

/* Shared 1440px / 40px-gutter container for the announce bar, the nav row and
   the mega-menu grids (reference .container-wf). Implemented here rather than
   in base.css so .wf-container keeps its 24px gutter for every other block. */
.wf-header-wrap .wf-header__container {
	padding-inline: 40px;
}

/* ---------- Announcement bar ---------- */
/* The --wf-announce-* vars are injected inline by wf_announce_theme() from the
   ACF "Background Color" field; absent → the navy defaults below. */
.wf-header-wrap .wf-announce {
	background: var(--wf-announce-bg, var(--wf-navy-2));
	border-bottom: 1px solid rgba(247, 248, 250, .08);
	overflow: hidden;
	max-height: 80px;
	transition: max-height .35s ease, opacity .25s ease;
}

.wf-header-wrap.is-compact .wf-announce {
	max-height: 0;
	opacity: 0;
	border-bottom-color: transparent;
}

.wf-header-wrap .wf-announce__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 12px;
	min-height: 36px;
	padding-block: 8px;
	text-align: center;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
}

.wf-header-wrap .wf-announce__text {
	color: var(--wf-announce-fg, rgba(247, 248, 250, .85));
}

.wf-header-wrap .wf-announce__link {
	color: var(--wf-announce-link, var(--wf-cyan));
	white-space: nowrap;
	border-bottom: 1px solid var(--wf-announce-link-border, rgba(0, 180, 216, .45));
	padding-bottom: 1px;
	text-decoration: none;
	transition: color .2s, border-color .2s;
}

.wf-header-wrap .wf-announce__link:hover,
.wf-header-wrap .wf-announce__link:focus-visible {
	color: var(--wf-announce-link-hover, var(--wf-bg));
	border-color: var(--wf-announce-link-hover, var(--wf-bg));
}

/* ---------- Nav bar ---------- */
.wf-header-wrap .wf-header {
	position: relative;
	background: var(--wf-navy);
	border-bottom: 1px solid rgba(247, 248, 250, .08);
}

.wf-header-wrap .wf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	height: 76px;
}

/* Keep the three groups rigid: the caret is a flex item and collapses to 0-4px
   in the space-starved 1000-1080px band if anything here is allowed to shrink. */
.wf-header-wrap .wf-header__brand,
.wf-header-wrap .wf-header__nav,
.wf-header-wrap .wf-header__actions {
	flex-shrink: 0;
}

.wf-header-wrap .wf-header__brand {
	display: inline-flex;
	align-items: center;
}

.wf-header-wrap .wf-header__brand img {
	display: block;
	width: 160px;
	height: auto;
	max-width: 100%;
}

.wf-header-wrap .wf-header__brand:focus-visible {
	outline: 2px solid var(--wf-blue);
	outline-offset: 4px;
}

.wf-header-wrap .wf-header__nav {
	display: flex;
	align-items: center;
	gap: 2px;
}

.wf-header-wrap .wf-nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: none;
	white-space: nowrap;
	padding: 10px 14px;
	margin: 0;
	border: 0;
	background: transparent;
	color: rgba(247, 248, 250, .75);
	font-family: var(--wf-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s;
}

.wf-header-wrap .wf-nav-trigger:hover,
.wf-header-wrap .wf-nav-trigger.is-open {
	color: var(--wf-cyan);
}

.wf-header-wrap .wf-nav-trigger:focus-visible {
	outline: 2px solid var(--wf-cyan);
	outline-offset: 2px;
}

.wf-header-wrap .wf-nav-trigger__caret {
	display: inline-flex;
	width: 9px;
	height: 6px;
	flex: none;
	opacity: .55;
	transition: transform .22s ease, opacity .2s ease;
}

.wf-header-wrap .wf-nav-trigger:hover .wf-nav-trigger__caret {
	opacity: 1;
}

.wf-header-wrap .wf-nav-trigger.is-open .wf-nav-trigger__caret {
	opacity: 1;
	transform: rotate(180deg);
}

/* ---------- Right cluster: phone, Login, CTA ---------- */
.wf-header-wrap .wf-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wf-header-wrap .wf-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	color: rgba(247, 248, 250, .7);
	font-family: var(--wf-font-mono);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .06em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s;
}

.wf-header-wrap .wf-header__phone:hover {
	color: var(--wf-bg);
}

.wf-header-wrap .wf-header__phone .wf-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	color: var(--wf-cyan);
}

.wf-header-wrap .wf-header__phone:hover .wf-icon {
	animation: wf-phone-ring .45s ease;
}

@keyframes wf-phone-ring {
	0%, 100% { transform: rotate(0); }
	30% { transform: rotate(-13deg); }
	65% { transform: rotate(10deg); }
}

/* Ghost Login button on navy (reference .nav .nav-cta .btn). */
.wf-header-wrap .wf-header__actions .wf-btn {
	color: var(--wf-bg);
	box-shadow: inset 0 0 0 1px rgba(247, 248, 250, .3);
}

.wf-header-wrap .wf-header__actions .wf-btn:hover {
	box-shadow: inset 0 0 0 1px var(--wf-bg);
	color: var(--wf-bg);
}

/* Primary CTA (reference .nav .nav-cta .btn-primary). Listed after the ghost
   rule at equal specificity so the gradient wins. */
.wf-header-wrap .wf-header__actions .wf-header__cta {
	background: linear-gradient(90deg, var(--wf-blue) 0%, var(--wf-cyan) 100%);
	color: var(--wf-white);
	box-shadow: 0 8px 24px rgba(0, 180, 216, .25);
}

.wf-header-wrap .wf-header__actions .wf-header__cta:hover,
.wf-header-wrap .wf-header__actions .wf-header__cta:focus-visible {
	background: var(--wf-gold);
	color: var(--wf-navy);
	/* Re-assert the glow: the ghost hairline above is an inset box-shadow at
	   higher hover specificity and would otherwise ring the gold button. */
	box-shadow: 0 8px 24px rgba(0, 180, 216, .25);
}

.wf-header-wrap .wf-header__phone:focus-visible,
.wf-header-wrap .wf-header__burger:focus-visible {
	outline: 2px solid var(--wf-cyan);
	outline-offset: 2px;
}

/* Hamburger */
.wf-header-wrap .wf-header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0;
	margin-left: auto;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.wf-header-wrap .wf-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: var(--wf-bg);
	transition: transform .25s ease, opacity .2s ease;
}

.wf-header-wrap .wf-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wf-header-wrap .wf-header__burger.is-open span:nth-child(2) { opacity: 0; }
.wf-header-wrap .wf-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mega menu chrome ---------- */
.wf-header-wrap .wf-mm-backdrop {
	position: fixed;
	inset: var(--wf-nav-h, 76px) 0 0;
	background: rgba(10, 22, 40, .35);
	backdrop-filter: blur(2px);
	z-index: 1;
	animation: wf-mm-fade .2s ease;
}

.wf-header-wrap .wf-mm {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 2;
	background: var(--wf-bg);
	color: var(--wf-text-dark);
	border-top: 1px solid var(--wf-mm-line);
	border-bottom: 1px solid var(--wf-mm-line);
	border-radius: 0;
	box-shadow: var(--wf-shadow-lg);
	animation: wf-mm-in .22s ease;
	max-height: calc(100vh - var(--wf-nav-h, 76px));
	overflow-y: auto;
}

@keyframes wf-mm-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes wf-mm-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.wf-header-wrap .wf-mm__inner {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 56px;
	align-items: start;
	padding: 48px 40px;
}

.wf-header-wrap .wf-mm__inner--resources {
	grid-template-columns: 280px 1fr 320px;
}

/* ---------- Side column (plain text on paper) ---------- */
.wf-header-wrap .wf-mm__eyebrow {
	margin: 0 0 14px;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wf-text-mute);
}

.wf-header-wrap .wf-mm__title {
	margin: 0;
	font-family: var(--wf-font-heading);
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	letter-spacing: -.02em;
	color: var(--wf-text-dark);
}

.wf-header-wrap .wf-mm__lede {
	margin: 16px 0 0;
	max-width: 280px;
	font-family: var(--wf-font-body);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--wf-mm-ink-dim);
}

.wf-header-wrap .wf-mm__cta {
	display: inline-block;
	margin-top: 20px;
	padding-bottom: 4px;
	border-bottom: 2px solid var(--wf-blue);
	color: var(--wf-blue);
	font-family: var(--wf-font-mono);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color .2s, border-color .2s;
}

.wf-header-wrap .wf-mm__cta:hover {
	color: var(--wf-mm-blue-hover);
	border-color: var(--wf-mm-blue-hover);
}

.wf-header-wrap .wf-mm__also {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm__also-heading {
	margin: 0 0 8px;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wf-text-mute);
}

.wf-header-wrap .wf-mm__also-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 4px;
}

.wf-header-wrap .wf-mm__also-list a {
	color: var(--wf-text-dark);
	font: 500 .875rem/1.4 var(--wf-font-body);
	text-decoration: none;
	transition: color .2s;
}

.wf-header-wrap .wf-mm__also-list a:hover {
	color: var(--wf-blue);
}

/* ---------- Column scaffolding ---------- */
.wf-header-wrap .wf-mm__cols {
	display: grid;
	gap: 28px 32px;
}

.wf-header-wrap .wf-mm__cols--1 { grid-template-columns: 1fr; }
.wf-header-wrap .wf-mm__cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wf-header-wrap .wf-mm__cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wf-header-wrap .wf-mm__cols--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Group headings render as the reference eyebrow. */
.wf-header-wrap .wf-mm-col__heading {
	display: block;
	margin: 0 0 14px;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wf-text-mute);
	text-decoration: none;
	transition: color .2s;
}

.wf-header-wrap a.wf-mm-col__heading:hover {
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-col__items,
.wf-header-wrap .wf-mm-col__links,
.wf-header-wrap .wf-mm-col__rows,
.wf-header-wrap .wf-mm-sub {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Plain link list (generic panels). */
.wf-header-wrap .wf-mm-col__links a {
	display: block;
	padding: 7px 0;
	color: var(--wf-text-dark);
	font: 500 .9rem/1.35 var(--wf-font-body);
	text-decoration: none;
	transition: color .2s;
}

.wf-header-wrap .wf-mm-col__links a:hover {
	color: var(--wf-blue);
}

/* ---------- Services: card items (reference .mm-item) ---------- */
.wf-header-wrap .wf-mm-col__items {
	border-top: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm-svc__link {
	position: relative;
	display: block;
	padding: 22px 22px 24px;
	border-bottom: 1px solid var(--wf-mm-line);
	color: var(--wf-text-dark);
	text-decoration: none;
	transition: background .2s;
}

.wf-header-wrap .wf-mm-svc__link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, var(--wf-blue), var(--wf-cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.wf-header-wrap .wf-mm-svc__link:hover {
	background: var(--wf-bg-blue);
}

.wf-header-wrap .wf-mm-svc__link:hover::after {
	transform: scaleX(1);
}

.wf-header-wrap .wf-mm-svc__icon {
	display: flex;
	width: 26px;
	height: 26px;
	margin-bottom: 16px;
	color: var(--wf-blue);
	transition: color .2s, transform .2s;
}

.wf-header-wrap .wf-mm-svc__link:hover .wf-mm-svc__icon {
	color: var(--wf-cyan);
	transform: translateY(-2px) scale(1.06);
}

.wf-header-wrap .wf-mm-svc__text {
	display: block;
	min-width: 0;
}

.wf-header-wrap .wf-mm-svc__label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--wf-font-heading);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: var(--wf-text-dark);
	transition: color .2s;
}

.wf-header-wrap .wf-mm-svc__link:hover .wf-mm-svc__label {
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-svc__desc {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font: 500 13px/1.45 var(--wf-font-body);
	color: var(--wf-slate);
}

/* Depth-3 sub-services live under the card, inside the same cell. */
.wf-header-wrap .wf-mm-sub {
	display: grid;
	gap: 2px;
	padding: 10px 22px 16px;
	border-bottom: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm-sub a {
	display: block;
	padding: 3px 0;
	color: var(--wf-slate);
	font: 400 13px/1.4 var(--wf-font-body);
	text-decoration: none;
	transition: color .2s;
}

.wf-header-wrap .wf-mm-sub a:hover {
	color: var(--wf-blue);
}

/* ---------- Who We Help: rows (reference .mm-row) ---------- */
.wf-header-wrap .wf-mm-col__rows {
	border-top: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 22px;
	border-bottom: 1px solid var(--wf-mm-line);
	color: var(--wf-text-dark);
	text-decoration: none;
	transition: background .2s;
}

.wf-header-wrap .wf-mm-row::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, var(--wf-blue), var(--wf-cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.wf-header-wrap .wf-mm-row:hover {
	background: var(--wf-bg-blue);
}

.wf-header-wrap .wf-mm-row:hover::after {
	transform: scaleX(1);
}

.wf-header-wrap .wf-mm-row__left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.wf-header-wrap .wf-mm-row__icon {
	display: inline-flex;
	width: 21px;
	height: 21px;
	color: var(--wf-blue);
	transition: color .2s, transform .2s;
}

.wf-header-wrap .wf-mm-row:hover .wf-mm-row__icon {
	color: var(--wf-cyan);
	transform: translateY(-1px) scale(1.06);
}

.wf-header-wrap .wf-mm-row__label {
	font-family: var(--wf-font-heading);
	font-size: 16px;
	font-weight: 500;
	color: var(--wf-text-dark);
	transition: color .2s;
}

.wf-header-wrap .wf-mm-row:hover .wf-mm-row__label {
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-row__arrow {
	flex: none;
	color: var(--wf-blue);
	font-family: var(--wf-font-mono);
	font-size: 14px;
	transition: transform .2s, color .2s;
}

.wf-header-wrap .wf-mm-row:hover .wf-mm-row__arrow {
	transform: translate(2px, -2px);
	color: var(--wf-cyan);
}

/* ---------- About: 2-col cards (reference .mm-grid-2 of .mm-item) ---------- */
.wf-header-wrap .wf-mm__cols--about {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--wf-mm-line);
	border-left: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm-card {
	position: relative;
	display: block;
	padding: 22px 22px 24px;
	border-right: 1px solid var(--wf-mm-line);
	border-bottom: 1px solid var(--wf-mm-line);
	border-radius: 0;
	color: var(--wf-text-dark);
	text-decoration: none;
	transition: background .2s;
}

.wf-header-wrap .wf-mm-card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, var(--wf-blue), var(--wf-cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.wf-header-wrap a.wf-mm-card:hover {
	background: var(--wf-bg-blue);
}

.wf-header-wrap a.wf-mm-card:hover::after {
	transform: scaleX(1);
}

.wf-header-wrap .wf-mm-card__icon {
	display: flex;
	width: 26px;
	height: 26px;
	margin-bottom: 16px;
	color: var(--wf-blue);
	transition: color .2s, transform .2s;
}

.wf-header-wrap a.wf-mm-card:hover .wf-mm-card__icon {
	color: var(--wf-cyan);
	transform: translateY(-2px) scale(1.06);
}

.wf-header-wrap .wf-mm-card__label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--wf-font-heading);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: var(--wf-text-dark);
	transition: color .2s;
}

.wf-header-wrap a.wf-mm-card:hover .wf-mm-card__label {
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-card__desc {
	display: block;
	font: 500 13.5px/1.45 var(--wf-font-body);
	color: var(--wf-mm-ink-dim);
}

/* ---------- Resources: article rows (reference .mm-article) ---------- */
.wf-header-wrap .wf-mm__posts {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-top: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm__res-label {
	margin: 0;
	padding: 14px 0 12px;
	border-bottom: 1px solid var(--wf-mm-line);
	font-family: var(--wf-font-mono);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wf-text-mute);
}

.wf-header-wrap .wf-mm-article {
	position: relative;
	display: grid;
	grid-template-columns: 70px 1fr 24px;
	gap: 16px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--wf-mm-line);
	color: var(--wf-text-dark);
	text-decoration: none;
	transition: padding .2s;
}

.wf-header-wrap .wf-mm-article--link {
	grid-template-columns: 1fr 24px;
}

.wf-header-wrap .wf-mm-article::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, var(--wf-blue), var(--wf-cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.wf-header-wrap .wf-mm-article:hover {
	padding-left: 8px;
	background: linear-gradient(90deg, var(--wf-bg-blue), transparent 70%);
}

.wf-header-wrap .wf-mm-article:hover::after {
	transform: scaleX(1);
}

.wf-header-wrap .wf-mm-article__date {
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--wf-text-mute);
}

.wf-header-wrap .wf-mm-article__title {
	font-family: var(--wf-font-heading);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--wf-text-dark);
	transition: color .2s;
}

.wf-header-wrap .wf-mm-article:hover .wf-mm-article__title {
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-article__arrow {
	color: var(--wf-cyan);
	transition: transform .2s;
}

.wf-header-wrap .wf-mm-article:hover .wf-mm-article__arrow {
	transform: translateX(4px);
}

.wf-header-wrap .wf-mm__empty {
	margin: 0;
	padding: 18px 0;
	font: 400 .875rem/1.5 var(--wf-font-body);
	color: var(--wf-text-mute);
}

/* ---------- Resources: Howler + Tool cards (reference .mm-res-card) ---------- */
.wf-header-wrap .wf-mm__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wf-header-wrap .wf-mm-card2 {
	display: block;
	padding: 22px;
	border: 1px solid var(--wf-mm-line);
	border-radius: 0;
	background: var(--wf-bg);
	color: var(--wf-text-dark);
	text-decoration: none;
	transition: border-color .2s, background .2s, box-shadow .2s;
}

.wf-header-wrap .wf-mm-card2:hover {
	border-color: var(--wf-text-dark);
}

.wf-header-wrap .wf-mm-card2__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid var(--wf-mm-line);
}

.wf-header-wrap .wf-mm-card2__head .wf-mm__res-label {
	flex: 1;
	border-bottom: 0;
}

.wf-header-wrap .wf-mm-card2__badge {
	flex: 1;
	margin: 0;
	padding: 14px 0 12px;
	font-family: var(--wf-font-mono);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wf-gold);
}

.wf-header-wrap .wf-mm-card2__icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: var(--wf-cyan);
}

.wf-header-wrap .wf-mm-card2__icon--tool {
	color: var(--wf-gold);
}

.wf-header-wrap .wf-mm-card2__title {
	margin: 14px 0 6px;
	font-family: var(--wf-font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--wf-text-dark);
}

.wf-header-wrap .wf-mm-card2__body {
	margin: 0 0 14px;
	font: 500 13px/1.5 var(--wf-font-body);
	color: var(--wf-mm-ink-dim);
}

/* Howler */
.wf-header-wrap .wf-mm-card2--howler {
	background: var(--wf-navy);
	border-color: var(--wf-navy);
	color: var(--wf-bg);
}

.wf-header-wrap .wf-mm-card2--howler:hover {
	border-color: var(--wf-cyan);
}

.wf-header-wrap .wf-mm-card2--howler .wf-mm__res-label {
	color: var(--wf-cyan);
}

.wf-header-wrap .wf-mm-card2--howler .wf-mm-card2__head {
	border-bottom-color: rgba(244, 242, 236, .2);
}

.wf-header-wrap .wf-mm-card2--howler .wf-mm-card2__title {
	margin: 14px 0 8px;
	font-size: 22px;
	line-height: 1.1;
	color: var(--wf-bg);
}

.wf-header-wrap .wf-mm-card2--howler .wf-mm-card2__body {
	color: rgba(244, 242, 236, .7);
}

.wf-header-wrap .wf-mm-card2__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: var(--wf-cyan);
	color: var(--wf-navy);
	border: 0;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .2s, color .2s;
}

.wf-header-wrap .wf-mm-card2__btn:hover {
	background: var(--wf-bg);
	color: var(--wf-navy);
}

/* Tool */
.wf-header-wrap .wf-mm-card2--tool {
	background: linear-gradient(135deg, rgba(19, 114, 227, .06), rgba(0, 180, 216, .12));
	border-color: rgba(19, 114, 227, .4);
}

.wf-header-wrap .wf-mm-card2--tool:hover {
	border-color: var(--wf-blue);
	box-shadow: 0 10px 28px -14px rgba(19, 114, 227, .45);
}

.wf-header-wrap .wf-mm-card2--tool .wf-mm-card2__head {
	border-bottom-color: rgba(19, 114, 227, .2);
}

.wf-header-wrap .wf-mm-card2__arrow {
	display: block;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wf-blue);
}

.wf-header-wrap .wf-mm-card2__arrow-glyph {
	display: inline-block;
	transition: transform .2s;
}

.wf-header-wrap .wf-mm-card2--tool:hover .wf-mm-card2__arrow-glyph {
	transform: translate(2px, -2px);
}

/* ---------- Mobile drawer ---------- */
.wf-header-wrap .wf-drawer {
	position: fixed;
	inset: var(--wf-nav-h, 76px) 0 0;
	z-index: 3;
	background: var(--wf-navy);
	color: var(--wf-white);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	animation: wf-mm-fade .2s ease;
}

.wf-header-wrap .wf-drawer__scroll {
	padding: 8px 20px 48px;
}

.wf-header-wrap .wf-drawer__top-link,
.wf-header-wrap .wf-drawer__sec > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 4px;
	border-bottom: 1px solid rgba(247, 248, 250, .1);
	color: var(--wf-bg);
	font: 600 1.05rem/1.2 var(--wf-font-heading);
	text-decoration: none;
	cursor: pointer;
	list-style: none;
}

.wf-header-wrap .wf-drawer__sec > summary::-webkit-details-marker {
	display: none;
}

.wf-header-wrap .wf-drawer__chevron {
	color: var(--wf-cyan);
	display: inline-flex;
	transition: transform .2s var(--wf-ease);
}

.wf-header-wrap .wf-drawer__sec[open] .wf-drawer__chevron {
	transform: rotate(180deg);
}

.wf-header-wrap .wf-drawer__body {
	padding: 8px 4px 20px;
}

.wf-header-wrap .wf-drawer__heading {
	display: block;
	margin: 14px 0 6px;
	font-family: var(--wf-font-mono);
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--wf-cyan);
	text-decoration: none;
}

.wf-header-wrap .wf-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wf-header-wrap .wf-drawer__list a {
	display: block;
	padding: 10px 6px;
	color: rgba(247, 248, 250, .85);
	font: 500 .95rem/1.35 var(--wf-font-body);
	text-decoration: none;
}

.wf-header-wrap .wf-drawer__list a:hover {
	color: var(--wf-cyan);
}

.wf-header-wrap .wf-drawer__all {
	display: inline-block;
	margin-top: 12px;
	color: var(--wf-cyan);
	font-family: var(--wf-font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
}

.wf-header-wrap .wf-drawer__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 28px;
}

.wf-header-wrap .wf-drawer__actions .wf-btn {
	justify-content: center;
	width: 100%;
}

/* Drawer primary CTA mirrors the desktop gradient (reference .m-actions .btn-primary). */
.wf-header-wrap .wf-drawer__actions .wf-btn--primary {
	background: linear-gradient(90deg, var(--wf-blue) 0%, var(--wf-cyan) 100%);
	color: var(--wf-white);
	box-shadow: 0 8px 24px rgba(0, 180, 216, .25);
}

.wf-header-wrap .wf-drawer__actions .wf-btn--primary:hover,
.wf-header-wrap .wf-drawer__actions .wf-btn--primary:focus-visible {
	background: var(--wf-gold);
	color: var(--wf-navy);
}

.wf-header-wrap .wf-drawer__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
	color: var(--wf-bg);
	font-family: var(--wf-font-mono);
	font-size: 14px;
	letter-spacing: .06em;
	text-decoration: none;
}

.wf-header-wrap .wf-drawer__phone .wf-icon {
	width: 16px;
	height: 16px;
	color: var(--wf-cyan);
}

body.wf-nav-open {
	overflow: hidden;
}

/* The [hidden] attribute must win over these display declarations. */
.wf-header-wrap .wf-drawer[hidden],
.wf-header-wrap .wf-mm[hidden],
.wf-header-wrap .wf-mm-backdrop[hidden] {
	display: none !important;
}

/* ---------- Breakpoints ---------- */

@media (max-width: 690px) {
	.wf-header-wrap .wf-header__container { padding-inline: 20px; }
}

/* Condensed desktop band: the phone number text is dropped so the row fits. */
@media (min-width: 1000px) and (max-width: 1119px) {
	.wf-header-wrap .wf-header__inner { gap: 16px; }
	.wf-header-wrap .wf-nav-trigger { padding: 10px 8px; }
	.wf-header-wrap .wf-header__actions { gap: 6px; }
	.wf-header-wrap .wf-header__phone { padding: 8px; gap: 0; }
	.wf-header-wrap .wf-header__phone-num { display: none; }
	.wf-header-wrap .wf-mm__inner { grid-template-columns: 260px 1fr; gap: 32px; }
	.wf-header-wrap .wf-mm__inner--resources { grid-template-columns: 240px 1fr 280px; }
	.wf-header-wrap .wf-mm__title { font-size: 32px; }
}

@media (min-width: 1000px) {
	.wf-header-wrap .wf-drawer { display: none !important; }
}

@media (max-width: 999px) {
	.wf-header-wrap .wf-header__inner { height: 64px; gap: 16px; }
	.wf-header-wrap .wf-header__nav,
	.wf-header-wrap .wf-header__actions { display: none; }
	.wf-header-wrap .wf-header__burger { display: flex; }
	.wf-header-wrap .wf-mm { display: none !important; }
	.wf-header-wrap .wf-mm-backdrop { display: none !important; }
}

@media (max-width: 1199px) and (min-width: 1000px) {
	.wf-header-wrap .wf-mm__cols--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
	.wf-header-wrap .wf-announce,
	.wf-header-wrap .wf-announce__link,
	.wf-header-wrap .wf-nav-trigger,
	.wf-header-wrap .wf-nav-trigger__caret,
	.wf-header-wrap .wf-header__burger span,
	.wf-header-wrap .wf-header__phone,
	.wf-header-wrap .wf-header__phone .wf-icon,
	.wf-header-wrap .wf-mm,
	.wf-header-wrap .wf-mm-backdrop,
	.wf-header-wrap .wf-mm__cta,
	.wf-header-wrap .wf-mm-svc__link,
	.wf-header-wrap .wf-mm-svc__link::after,
	.wf-header-wrap .wf-mm-svc__icon,
	.wf-header-wrap .wf-mm-col__links a,
	.wf-header-wrap .wf-mm-row,
	.wf-header-wrap .wf-mm-row::after,
	.wf-header-wrap .wf-mm-row__icon,
	.wf-header-wrap .wf-mm-row__arrow,
	.wf-header-wrap .wf-mm-card,
	.wf-header-wrap .wf-mm-card::after,
	.wf-header-wrap .wf-mm-card__icon,
	.wf-header-wrap .wf-mm-article,
	.wf-header-wrap .wf-mm-article::after,
	.wf-header-wrap .wf-mm-article__arrow,
	.wf-header-wrap .wf-mm-card2,
	.wf-header-wrap .wf-mm-card2__arrow-glyph,
	.wf-header-wrap .wf-drawer,
	.wf-header-wrap .wf-drawer__chevron {
		transition: none !important;
		animation: none !important;
	}
}

/* --------------------------------------------------------------------------
   Elementor's kit stylesheet (.elementor-kit-6 a / button / img, specificity
   0-1-1) outranks plain single-class rules, which is why every selector above
   is scoped under .wf-header-wrap. These two reset kit declarations that have
   no equivalent above.
   -------------------------------------------------------------------------- */
.wf-header-wrap img {
	border-radius: 0;
}

.wf-header-wrap button {
	text-transform: none;
}

/* .wf-btn* colours live in base.css at single-class specificity, so the kit's
   `.elementor-kit-6 a` rule wins over them for the header's anchor buttons.
   Re-assert them scoped to the header. */
.wf-header-wrap .wf-btn--primary,
.wf-header-wrap .wf-btn--ghost-light {
	color: var(--wf-white);
}

.wf-header-wrap .wf-btn--light {
	color: var(--wf-navy);
}

.wf-header-wrap .wf-btn--primary:hover,
.wf-header-wrap .wf-btn--primary:focus-visible {
	background: var(--wf-gold);
	color: var(--wf-navy);
}

.wf-header-wrap .wf-btn--ghost-light:hover {
	box-shadow: inset 0 0 0 1px var(--wf-white);
	color: var(--wf-white);
}

.wf-header-wrap .wf-btn--light:hover {
	background: var(--wf-bg-blue);
	color: var(--wf-navy);
}
