/* =============================================================
   710 GVNG — header.css
   The floating pill (VISUAL-REFERENCE §2): fixed full-width
   flex-centered wrapper, auto-width black pill, 60px tall.
   Markup: header.php.
   ============================================================= */

.sg-site .sg-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: var(--sg-header-offset);
	z-index: var(--sg-z-header);
	pointer-events: none;
	will-change: transform;
}

.sg-site .sg-header.is-menu-open {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s var(--sg-ease);
}

.sg-site .sg-header__pill {
	pointer-events: auto;
	width: fit-content;
	height: var(--sg-header-height);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	background: var(--sg-black);
	color: var(--sg-white);
	border-radius: 999px;
	padding: 0 22px;
}

/* Brand — wordmark text, or the custom logo image overflowing the pill
   like the reference's mark. */
.sg-header__brand {
	display: inline-flex;
	align-items: center;
	font-family: var(--sg-font);
	font-size: 19px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--sg-white);
	text-decoration: none;
	margin: 0 10px 0 0;
	white-space: nowrap;
}

.sg-header__brand img,
.sg-header__logo {
	display: block;
	height: 76px;
	width: auto;
	margin: -8px 6px -8px 0;
}

/* Nav links */
a.sg-header__link {
	display: inline-block;
	font-family: var(--sg-font);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: var(--sg-header-height);
	color: var(--sg-white);
	text-decoration: none;
	padding: 0 10px;
	transition: opacity 0.2s var(--sg-ease);
}

a.sg-header__link:hover {
	opacity: 0.55;
	color: var(--sg-white);
}

/* MENU trigger — same voice as the links. */
.sg-menu-trigger {
	appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	font-family: var(--sg-font);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: var(--sg-header-height);
	color: var(--sg-white);
	padding: 0 0 0 10px;
	transition: opacity 0.2s var(--sg-ease);
}

.sg-menu-trigger:hover {
	opacity: 0.55;
}
