/* ==========================================================================
   Project Kuzuri — theme styles
   Yellow #F9B711 on black. Condensed italic display type, claw-slash accents,
   cut-corner buttons. Everything is driven by the custom properties below so
   the Customiser colour pickers restyle the whole site.
   ========================================================================== */

:root {
	--pk-yellow: #F9B711;
	--pk-yellow-dark: #D99A05;
	--pk-black: #0D0D0D;
	--pk-asphalt: #1B1B1B;
	--pk-graphite: #2B2B2B;
	--pk-grey: #6E6E6E;
	--pk-line: #E3E3DE;
	--pk-smoke: #F4F4F1;
	--pk-contrast: #FFFFFF;

	--pk-font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
	--pk-font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--pk-max: 1240px;
	--pk-gutter: clamp(1rem, 4vw, 2.5rem);
	--pk-radius: 2px;
	--pk-cut: 14px;

	--pk-shadow: 0 18px 40px -24px rgba(0, 0, 0, .55);
	--pk-header-h: 78px;
}

/* --------------------------------------------------------------- Base ---- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
	margin: 0;
	background: var(--pk-contrast);
	color: var(--pk-graphite);
	font-family: var(--pk-font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

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

a { color: inherit; text-decoration-color: var(--pk-yellow); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .005em;
	line-height: 1.02;
	color: var(--pk-black);
	margin: 0 0 .45em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
h4 { font-size: 1.3rem; }
h5, h6 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }

hr {
	border: 0;
	height: 3px;
	background: var(--pk-black);
	margin: 2.5rem 0;
}

::selection { background: var(--pk-yellow); color: var(--pk-black); }

:focus-visible {
	outline: 3px solid var(--pk-yellow);
	outline-offset: 2px;
}

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

.skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 9999;
	width: auto; height: auto; clip: auto; clip-path: none;
	background: var(--pk-yellow); color: var(--pk-black);
	padding: .75rem 1.25rem; font-weight: 700;
}

/* ---------------------------------------------------------- Structure ---- */

.pk-site { display: flex; flex-direction: column; min-height: 100vh; }

.pk-container {
	width: 100%;
	max-width: var(--pk-max);
	margin-inline: auto;
	padding-inline: var(--pk-gutter);
}

.pk-layout { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.pk-layout--sidebar {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1000px) {
	.pk-layout--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

.pk-main { min-width: 0; }
.pk-main--elementor { padding: 0; }
.pk-elementor-page { width: 100%; }

/* ------------------------------------------------------------- Claw ------ */

.pk-claw {
	display: inline-flex;
	gap: 5px;
	align-items: flex-end;
	height: 26px;
	margin-bottom: 1rem;
}

.pk-claw i {
	display: block;
	width: 6px;
	background: var(--pk-yellow);
	transform: skewX(-18deg);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pk-claw i:nth-child(1) { height: 16px; }
.pk-claw i:nth-child(2) { height: 26px; }
.pk-claw i:nth-child(3) { height: 20px; }

.pk-claw--banner i { background: var(--pk-yellow); }
.pk-claw--dark i { background: var(--pk-black); }

/* ---------------------------------------------------------- Buttons ------ */

.pk-btn,
.pk-prose .wp-block-button__link,
button.pk-btn {
	--btn-bg: var(--pk-yellow);
	--btn-fg: var(--pk-black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem 1.75rem;
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	clip-path: polygon(var(--pk-cut) 0, 100% 0, 100% calc(100% - var(--pk-cut)), calc(100% - var(--pk-cut)) 100%, 0 100%, 0 var(--pk-cut));
	transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.pk-btn:hover { transform: translateY(-2px); background: var(--pk-black); color: var(--pk-yellow); }

.pk-btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--pk-black);
	box-shadow: inset 0 0 0 2px currentColor;
}

.pk-btn--ghost:hover { background: var(--pk-black); color: var(--pk-yellow); box-shadow: none; }

.pk-btn--dark { --btn-bg: var(--pk-black); --btn-fg: var(--pk-yellow); }
.pk-btn--dark:hover { background: var(--pk-yellow); color: var(--pk-black); }

/* --------------------------------------------------- Announcement bar ---- */

.pk-announce {
	background: var(--pk-yellow);
	color: var(--pk-black);
	font-family: var(--pk-font-display);
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: .95rem;
	text-align: center;
	padding: .5rem 0;
}

.pk-announce p { margin: 0; }
.pk-announce a { text-decoration: underline; }

/* ----------------------------------------------------------- Header ------ */

.pk-header {
	background: var(--pk-black);
	color: var(--pk-contrast);
	position: relative;
	z-index: 500;
	border-bottom: 3px solid var(--pk-yellow);
}

.pk-sticky-header .pk-header { position: sticky; top: 0; }
.admin-bar.pk-sticky-header .pk-header { top: 32px; }

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

.pk-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	min-height: var(--pk-header-h);
}

.pk-brand { flex: 0 0 auto; display: flex; align-items: center; }
.pk-brand .custom-logo-link { display: block; line-height: 0; }
.pk-brand img { max-height: 58px; width: auto; }

.pk-brand__text {
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	font-size: 1.6rem;
	text-transform: uppercase;
	color: var(--pk-yellow);
	text-decoration: none;
	letter-spacing: .01em;
}

.pk-footer .pk-brand img { max-height: 80px; }

/* Primary nav */

.pk-nav { margin-inline-start: auto; }

.pk-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: clamp(.75rem, 1.8vw, 1.6rem);
}

@media (min-width: 1100px) { .pk-menu { display: flex; } }

.pk-menu li { position: relative; }

.pk-menu a {
	display: block;
	padding: .45rem 0;
	font-family: var(--pk-font-display);
	font-weight: 700;
	font-style: italic;
	font-size: 1.02rem;
	text-transform: uppercase;
	letter-spacing: .045em;
	color: var(--pk-contrast);
	text-decoration: none;
	white-space: nowrap;
}

.pk-menu > li > a::after {
	content: "";
	display: block;
	height: 3px;
	margin-top: 4px;
	background: var(--pk-yellow);
	transform: scaleX(0) skewX(-18deg);
	transform-origin: left;
	transition: transform .2s ease;
}

.pk-menu > li:hover > a::after,
.pk-menu > li:focus-within > a::after,
.pk-menu > li.current-menu-item > a::after,
.pk-menu > li.current-menu-ancestor > a::after { transform: scaleX(1) skewX(-18deg); }

.pk-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -1rem;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: .5rem 0;
	background: var(--pk-asphalt);
	border-top: 3px solid var(--pk-yellow);
	box-shadow: var(--pk-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.pk-menu li:hover > .sub-menu,
.pk-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.pk-menu .sub-menu a { padding: .5rem 1rem; font-size: .98rem; }
.pk-menu .sub-menu a:hover { background: var(--pk-yellow); color: var(--pk-black); }

.pk-nav__empty a { color: var(--pk-yellow); font-weight: 700; }

/* Header actions */

.pk-header__actions {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-inline-start: auto;
}

@media (min-width: 1100px) { .pk-header__actions { margin-inline-start: 0; } }

.pk-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--pk-contrast);
	cursor: pointer;
	transition: color .16s ease;
}

.pk-iconbtn:hover { color: var(--pk-yellow); }

.pk-header__cta { display: none; padding: .6rem 1.15rem; font-size: .95rem; }
@media (min-width: 700px) { .pk-header__cta { display: inline-flex; } }

.pk-burger { display: inline-flex; }
@media (min-width: 1100px) { .pk-burger { display: none; } }

.pk-burger__bars { display: block; width: 24px; }
.pk-burger__bars i {
	display: block;
	height: 3px;
	background: currentColor;
	transform: skewX(-18deg);
	transition: transform .2s ease, opacity .2s ease;
}
.pk-burger__bars i + i { margin-top: 5px; }
.pk-burger[aria-expanded="true"] .pk-burger__bars i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.pk-burger[aria-expanded="true"] .pk-burger__bars i:nth-child(2) { opacity: 0; }
.pk-burger[aria-expanded="true"] .pk-burger__bars i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Basket */

.pk-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--pk-contrast); text-decoration: none; }
.pk-cart:hover { color: var(--pk-yellow); }

.pk-cart__count {
	position: absolute;
	top: 2px; right: 0;
	min-width: 19px; height: 19px;
	padding: 0 4px;
	display: grid; place-items: center;
	background: var(--pk-yellow);
	color: var(--pk-black);
	font-size: .72rem;
	font-weight: 700;
	border-radius: 10px;
}

.pk-cart__count.is-empty { display: none; }

/* Search bar */

.pk-searchbar { background: var(--pk-asphalt); padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.pk-searchbar[hidden] { display: none; }

.pk-searchform { display: flex; gap: .5rem; }

.pk-searchform__field {
	flex: 1 1 auto;
	min-width: 0;
	padding: .8rem 1rem;
	border: 2px solid var(--pk-line);
	background: #fff;
	color: var(--pk-graphite);
	font: inherit;
}

.pk-searchbar .pk-searchform__field { border-color: transparent; }
.pk-searchform__field:focus { outline: none; border-color: var(--pk-yellow); }

/* Mobile drawer */

.pk-drawer {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: var(--pk-black);
	color: var(--pk-contrast);
	overflow-y: auto;
	padding: 6rem var(--pk-gutter) 3rem;
}

.pk-drawer[hidden] { display: none; }

.pk-drawer__menu { list-style: none; margin: 0 0 2rem; padding: 0; }
.pk-drawer__menu li { border-bottom: 1px solid rgba(255,255,255,.1); }

.pk-drawer__menu a {
	display: block;
	padding: .85rem 0;
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: var(--pk-contrast);
	text-decoration: none;
}

.pk-drawer__menu a:hover { color: var(--pk-yellow); }
.pk-drawer__menu .sub-menu { list-style: none; margin: 0 0 .5rem; padding: 0 0 0 1rem; }
.pk-drawer__menu .sub-menu a { font-size: 1.1rem; font-weight: 700; }
.pk-drawer__menu .sub-menu[hidden] { display: none; }

.pk-drawer__menu li.menu-item-has-children { position: relative; }

.pk-subtoggle {
	position: absolute;
	top: 4px; right: 0;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	background: rgba(255,255,255,.08);
	color: var(--pk-yellow);
	border: 0;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.pk-subtoggle[aria-expanded="true"] { background: var(--pk-yellow); color: var(--pk-black); }

body.pk-drawer-open { overflow: hidden; }

/* ----------------------------------------------------------- Banner ------ */

.pk-banner {
	position: relative;
	background: var(--pk-black);
	color: var(--pk-contrast);
	padding-block: clamp(2.75rem, 7vw, 5rem);
	overflow: hidden;
}

.pk-banner::after {
	content: "";
	position: absolute;
	inset: auto -10% -60px auto;
	width: 46%;
	height: 200px;
	background: repeating-linear-gradient(115deg, var(--pk-yellow) 0 10px, transparent 10px 34px);
	opacity: .16;
	transform: skewX(-18deg);
	pointer-events: none;
}

.pk-banner__title { color: var(--pk-contrast); margin-bottom: .3em; position: relative; }

.pk-banner__sub {
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--pk-yellow);
	font-size: 1.05rem;
	margin: 0;
	position: relative;
}

.pk-crumbs,
.woocommerce-breadcrumb {
	margin-top: 1.25rem;
	font-size: .88rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: rgba(255,255,255,.62);
	position: relative;
}

.pk-crumbs a,
.woocommerce-breadcrumb a { color: var(--pk-yellow); text-decoration: none; }
.pk-crumbs span { margin: 0 .5rem; opacity: .5; }

.pk-motto {
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--pk-yellow);
	margin: 0 0 1rem;
}

/* ------------------------------------------------------------ Prose ------ */

.pk-prose { max-width: 74ch; }
.pk-prose > * + * { margin-top: 1.1em; }
.pk-prose h2 { margin-top: 2.2em; }
.pk-prose h3 { margin-top: 1.8em; }

.pk-prose h2::before {
	content: "";
	display: block;
	width: 46px;
	height: 4px;
	margin-bottom: .55rem;
	background: var(--pk-yellow);
	transform: skewX(-18deg);
}

.pk-prose ul, .pk-prose ol { padding-left: 1.25rem; }
.pk-prose li + li { margin-top: .35rem; }
.pk-prose li::marker { color: var(--pk-yellow); font-weight: 700; }

.pk-prose blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 5px solid var(--pk-yellow);
	background: var(--pk-smoke);
	font-size: 1.15rem;
	font-style: italic;
}

.pk-prose blockquote p:last-child { margin-bottom: 0; }

.pk-prose img { margin-block: 1.5rem; }

.pk-prose code,
.pk-prose kbd {
	background: var(--pk-smoke);
	padding: .15em .4em;
	font-size: .92em;
}

.pk-prose table,
.pk-support-table table,
.pk-prose .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	margin-block: 1.5rem;
	font-size: .95rem;
}

.pk-prose th,
.pk-support-table th {
	background: var(--pk-black);
	color: var(--pk-contrast);
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	text-align: left;
	padding: .7rem .9rem;
}

.pk-prose td,
.pk-support-table td {
	padding: .7rem .9rem;
	border-bottom: 1px solid var(--pk-line);
	vertical-align: top;
}

.pk-prose tbody tr:nth-child(even),
.pk-support-table tbody tr:nth-child(even) { background: var(--pk-smoke); }

.pk-support-table { overflow-x: auto; }
.pk-support-table table { min-width: 640px; }
.pk-support-table a { font-weight: 600; }

/* ------------------------------------------------------- Post cards ------ */

.pk-postgrid {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.pk-card { background: var(--pk-smoke); }
.pk-card__link { display: block; color: inherit; text-decoration: none; height: 100%; }
.pk-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--pk-black); }
.pk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pk-card__link:hover .pk-card__media img { transform: scale(1.05); }

.pk-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.pk-card__placeholder i {
	display: block;
	width: 10px;
	height: 60%;
	background: var(--pk-yellow);
	opacity: .85;
	transform: skewX(-18deg);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pk-card__placeholder i:nth-child(2) { height: 78%; }

.pk-card__body { padding: 1.35rem 1.4rem 1.6rem; }
.pk-card__title { font-size: 1.45rem; margin-bottom: .5rem; }
.pk-card__excerpt { font-size: .96rem; color: var(--pk-grey); }

.pk-card__more {
	display: inline-block;
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-bottom: 3px solid var(--pk-yellow);
	padding-bottom: 2px;
}

.pk-post-meta {
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: var(--pk-grey);
	margin-bottom: .6rem;
}

.pk-sep { margin: 0 .5rem; color: var(--pk-yellow); }

.pk-post__media { margin: 0 0 2rem; }
.pk-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 2rem 0 0; }
.pk-tags a {
	display: inline-block;
	padding: .3rem .7rem;
	background: var(--pk-smoke);
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	text-decoration: none;
}
.pk-tags a:hover { background: var(--pk-yellow); }

/* ------------------------------------------------------ Pagination ------- */

.pagination, .post-navigation { margin-top: 3rem; }

.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 .6rem;
	background: var(--pk-smoke);
	font-family: var(--pk-font-display);
	font-weight: 700;
	font-style: italic;
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--pk-yellow); color: var(--pk-black); }

.post-navigation .nav-links { display: grid; gap: 1rem; }
@media (min-width: 700px) { .post-navigation .nav-links { grid-template-columns: 1fr 1fr; } }

.post-navigation a { display: block; padding: 1.2rem; background: var(--pk-smoke); text-decoration: none; }
.post-navigation a:hover { background: var(--pk-yellow); }
.pk-navlabel { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pk-grey); }
.pk-navtitle { font-family: var(--pk-font-display); font-style: italic; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; }
.nav-next { text-align: right; }

/* --------------------------------------------------------- Widgets ------- */

.widget { margin-bottom: 2.25rem; }
.widget-title { font-size: 1.25rem; margin-bottom: .8rem; }
.widget-title::after { content: ""; display: block; width: 40px; height: 4px; margin-top: .4rem; background: var(--pk-yellow); transform: skewX(-18deg); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: .4rem 0; border-bottom: 1px solid var(--pk-line); }
.widget a { text-decoration: none; }
.widget a:hover { color: var(--pk-yellow-dark); }

/* ------------------------------------------------------ Empty / 404 ------ */

.pk-empty { max-width: 640px; padding-block: 2rem; }
.pk-404 { font-family: var(--pk-font-display); font-style: italic; font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: .85; color: var(--pk-yellow); margin: 0 0 .2em; }
.pk-empty__links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.pk-empty .pk-searchform { margin-block: 1.5rem; }

/* ---------------------------------------------------------- Footer ------- */

.pk-footer {
	margin-top: auto;
	background: var(--pk-black);
	color: rgba(255,255,255,.78);
	padding-block: clamp(2.75rem, 6vw, 4.5rem) 1.75rem;
	border-top: 4px solid var(--pk-yellow);
}

.pk-footer h2, .pk-footer h3 { color: var(--pk-contrast); }
.pk-footer a { color: var(--pk-contrast); text-decoration: none; }
.pk-footer a:hover { color: var(--pk-yellow); }

.pk-footer__top { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .pk-footer__top { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr); } }

.pk-footer__blurb { max-width: 46ch; }
.pk-footer__cols { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.pk-footer__heading {
	font-size: 1.15rem;
	margin-bottom: .9rem;
	color: var(--pk-yellow);
}

.pk-footer__menu, .pk-legal__menu { list-style: none; margin: 0; padding: 0; }
.pk-footer__menu li { padding: .25rem 0; }

.pk-footer .widget li { border-bottom-color: rgba(255,255,255,.12); }

.pk-pledge {
	margin-top: 1rem;
	padding: .85rem 1rem;
	border-left: 4px solid var(--pk-yellow);
	background: rgba(255,255,255,.05);
	font-size: .93rem;
}

.pk-crisis {
	margin: 2.5rem 0 0;
	padding: 1rem 1.25rem;
	background: var(--pk-yellow);
	color: var(--pk-black);
	font-size: .95rem;
	font-weight: 500;
}

.pk-crisis strong { text-transform: uppercase; letter-spacing: .06em; margin-right: .4rem; }

.pk-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	margin-top: 2.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: .88rem;
}

.pk-copy { margin: 0; }
.pk-legal__menu { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* --------------------------------------------------------- Socials ------- */

.pk-socials { list-style: none; display: flex; gap: .6rem; margin: 1.25rem 0 0; padding: 0; }
.pk-socials li { padding: 0; border: 0; }

.pk-social {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	background: rgba(255,255,255,.08);
	color: var(--pk-contrast);
	transition: background-color .16s ease, color .16s ease, transform .16s ease;
	clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.pk-social:hover { background: var(--pk-yellow); color: var(--pk-black); transform: translateY(-2px); }

/* -------------------------------------------------------- Comments ------- */

.comments-area { margin-top: 3.5rem; }
.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.comment-list ul.children { list-style: none; padding-left: 1.5rem; }
.comment-body { padding: 1.25rem 0; border-bottom: 1px solid var(--pk-line); }
.comment-form label { display: block; font-weight: 600; margin-bottom: .3rem; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: .75rem .9rem;
	border: 2px solid var(--pk-line);
	font: inherit;
}

.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--pk-yellow); }

.comment-form .submit {
	padding: .85rem 1.75rem;
	background: var(--pk-yellow);
	color: var(--pk-black);
	border: 0;
	font-family: var(--pk-font-display);
	font-style: italic;
	font-weight: 800;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	clip-path: polygon(var(--pk-cut) 0, 100% 0, 100% calc(100% - var(--pk-cut)), calc(100% - var(--pk-cut)) 100%, 0 100%, 0 var(--pk-cut));
}

/* --------------------------------------------------------- To top -------- */

.pk-totop {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 700;
	width: 46px; height: 46px;
	display: grid;
	place-items: center;
	background: var(--pk-black);
	color: var(--pk-yellow);
	border: 0;
	cursor: pointer;
	clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.pk-totop[hidden] { display: none; }
.pk-totop:hover { background: var(--pk-yellow); color: var(--pk-black); }

/* ============================================================================
   Classes used by the Elementor content installer.
   These give the imported page content its brand styling while keeping every
   widget fully editable in Elementor.
   ========================================================================== */

/* Dark section shell */
.pk-section-dark { color: var(--pk-contrast); }
.pk-section-dark h1, .pk-section-dark h2, .pk-section-dark h3, .pk-section-dark h4 { color: var(--pk-contrast); }

/* Eyebrow label above headings */
.pk-eyebrow .elementor-heading-title,
.pk-eyebrow {
	font-family: var(--pk-font-display) !important;
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--pk-yellow);
	font-size: .95rem;
}

/* Hero */
.pk-hero { position: relative; overflow: hidden; }

.pk-hero::before {
	content: "";
	position: absolute;
	inset: -20% -30% auto auto;
	width: 70%;
	height: 160%;
	background: repeating-linear-gradient(115deg, var(--pk-yellow) 0 12px, transparent 12px 40px);
	opacity: .12;
	transform: skewX(-18deg);
	pointer-events: none;
}

.pk-hero > .e-con-inner, .pk-hero > .elementor-container { position: relative; z-index: 1; }

.pk-hero-title .elementor-heading-title {
	font-size: clamp(2.8rem, 8vw, 6rem) !important;
	line-height: .95;
}

/* Quick-link tiles on the home page */
.pk-tile {
	background: var(--pk-smoke);
	transition: transform .2s ease, background-color .2s ease;
	border-left: 5px solid var(--pk-yellow);
}

.pk-tile:hover { transform: translateY(-4px); background: var(--pk-yellow); }
.pk-tile .elementor-icon-box-title { font-family: var(--pk-font-display); font-style: italic; text-transform: uppercase; }
.pk-tile .elementor-icon-box-description { color: var(--pk-grey); }
.pk-tile:hover .elementor-icon-box-description { color: var(--pk-black); }

/* Partner / behind-the-scenes cards */
.pk-partner {
	background: #fff;
	box-shadow: var(--pk-shadow);
	border-top: 4px solid var(--pk-yellow);
}

/* Stat / pledge strip */
.pk-stat .elementor-heading-title {
	font-size: clamp(2.4rem, 6vw, 4rem);
	color: var(--pk-yellow);
}

/* Accordion (FAQ + support links) */
.pk-accordion .elementor-accordion-item,
.pk-accordion .elementor-toggle-item {
	border: 0 !important;
	margin-bottom: .6rem;
	background: var(--pk-smoke);
}

.pk-accordion .elementor-tab-title,
.pk-accordion .elementor-toggle-title {
	font-family: var(--pk-font-display) !important;
	font-style: italic;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: .02em;
	border: 0 !important;
}

.pk-accordion .elementor-active .elementor-tab-title { background: var(--pk-yellow); }
.pk-accordion .elementor-tab-content { border: 0 !important; }

/* Crisis / safety callout used on the support page */
.pk-callout {
	background: var(--pk-yellow);
	color: var(--pk-black);
	border-left: 8px solid var(--pk-black);
}

.pk-callout h1, .pk-callout h2, .pk-callout h3, .pk-callout h4 { color: var(--pk-black); }

/* Divider styled as a claw slash */
.pk-divider .elementor-divider-separator {
	border-top-style: solid !important;
	border-top-color: var(--pk-yellow) !important;
	transform: skewX(-18deg);
}

/* Build list (Wolverine page) */
.pk-buildlist .elementor-icon-list-item { border-bottom: 1px solid var(--pk-line); padding-block: .5rem; }
.pk-buildlist .elementor-icon-list-icon { color: var(--pk-yellow); }
.pk-buildlist .elementor-icon-list-text { font-weight: 600; }

/* Contact / affiliate form shipped by the companion plugin */
.pk-form { display: grid; gap: 1rem; max-width: 720px; }
.pk-form__row { display: grid; gap: .35rem; }
@media (min-width: 640px) { .pk-form__grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; } }

.pk-form label { font-family: var(--pk-font-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; }

.pk-form input[type="text"],
.pk-form input[type="email"],
.pk-form input[type="url"],
.pk-form input[type="tel"],
.pk-form select,
.pk-form textarea {
	width: 100%;
	padding: .8rem .95rem;
	border: 2px solid var(--pk-line);
	background: #fff;
	font: inherit;
	color: var(--pk-graphite);
}

.pk-form input:focus, .pk-form select:focus, .pk-form textarea:focus { outline: none; border-color: var(--pk-yellow); }
.pk-form textarea { min-height: 170px; resize: vertical; }
.pk-form__hp { position: absolute; left: -9999px; }

.pk-form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.pk-form__consent label { font-family: var(--pk-font-body); font-style: normal; text-transform: none; letter-spacing: 0; font-weight: 400; }

.pk-notice { padding: 1rem 1.25rem; border-left: 5px solid var(--pk-yellow); background: var(--pk-smoke); margin-bottom: 1.25rem; }
.pk-notice--error { border-left-color: #C0392B; }
.pk-notice--success { border-left-color: #1E8449; }

/* Elementor global container width safety net */
.elementor-section.pk-hero, .e-con.pk-hero { background-color: var(--pk-black); }
