/* PW Custom Theme - Main Stylesheet */

.site-main {
	position: relative;
	overflow: hidden;
	z-index: 0; /* establish stacking context */
}

.comet-bg-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;

	z-index: 0;
	pointer-events: none;
}

/* All actual page content */
.site-main > *:not(.comet-bg-canvas) {
	position: relative;
	z-index: 1; /* content sits above canvas */
}

/* ==============================
   Headings — Satoshi + Scale
============================== */

/* Apply Satoshi to headings */
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6 {
	font-family: 'Satoshi', Arial, sans-serif;
}

/* H1 */
.site-main h1 {
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* H2 */
.site-main h2 {
	font-size: clamp(34px, 3.4vw, 46px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* H3 */
.site-main h3 {
	font-size: clamp(24px, 2.2vw, 30px);
	line-height: 1.22;
	font-weight: 600;
	letter-spacing: -0.005em;
}

/* ==============================
   Active Nav Item (Red Underline)
============================== */

/* Highlight current menu item with underline */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	position: relative;
	line-height: 1.2;
	padding-bottom: 1px;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -2px;
	width: 80%;
	height: 2px;
	background-color: #dc1919; /* Brand red */
}

/* ==============================
   Header Spacing
============================== */

.site-header-row {
	min-height: auto !important;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* ==============================
   Eyebrow
============================== */

.eyebrow {
	font-size: 14px;
	font-weight: 700;
	opacity: 0.8;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 !important;
}

