:root {
	--color-bg: #090a09;
	--color-bg-alt: #10110f;
	--color-surface: #171915;
	--color-surface-strong: #20231e;
	--color-ink: #e5e0d4;
	--color-muted: #9ca191;
	--color-accent: #8d9b6b;
	--color-accent-strong: #c5a15d;
	--color-border: rgba(229, 224, 212, 0.12);
	--shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.35);
	--wrap: min(1120px, calc(100vw - 2rem));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top, rgba(197, 161, 93, 0.08), transparent 25%),
		linear-gradient(180deg, #0f110f 0%, #090a09 40%, #040504 100%);
	color: var(--color-ink);
	font-family: Inter, sans-serif;
	line-height: 1.6;
}

body.age-gate-is-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--color-accent-strong);
}

img {
	max-width: 100%;
}

.wrap {
	width: var(--wrap);
	margin: 0 auto;
}

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

.unstyled-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.age-gate {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	background: rgba(3, 4, 3, 0.88);
	backdrop-filter: blur(10px);
}

.age-gate[hidden] {
	display: none;
}

.age-gate__dialog {
	width: min(100%, 440px);
	padding: clamp(1.5rem, 4vw, 2.25rem);
	border: 1px solid rgba(197, 161, 93, 0.42);
	border-radius: 8px;
	background: linear-gradient(180deg, var(--color-surface-strong), var(--color-surface));
	box-shadow: var(--shadow-soft);
	text-align: center;
}

.age-gate__eyebrow {
	margin: 0 0 0.5rem;
	color: var(--color-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.age-gate__title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1;
}

.age-gate__copy {
	margin: 1rem 0 0;
	color: var(--color-muted);
}

.age-gate__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.age-gate__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.75rem 1rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	line-height: 1.1;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.age-gate__button:hover,
.age-gate__button:focus-visible {
	transform: translateY(-1px);
}

.age-gate__button--primary {
	border-color: var(--color-accent-strong);
	background: var(--color-accent-strong);
	color: #11130f;
}

.age-gate__button--secondary {
	border-color: var(--color-border);
	background: rgba(7, 8, 7, 0.5);
	color: var(--color-ink);
}

.site-announcement {
	position: relative;
	z-index: 41;
	border-top: 1px solid rgba(255, 255, 190, 0.72);
	border-bottom: 1px solid rgba(0, 0, 0, 0.48);
	background: #fcff71;
	color: #10110d;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.42),
		inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.site-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0.7rem 0;
	text-align: center;
}

.site-announcement__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-width: 0;
}

.site-announcement__title {
	flex: 0 0 auto;
	margin: 0;
	color: #10110d;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-announcement__copy {
	min-width: 0;
	color: #15170f;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.4;
}

.site-announcement__copy p {
	margin: 0;
}

.site-announcement__copy a {
	color: #10110d;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.site-announcement__link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(16, 17, 13, 0.42);
	background: rgba(16, 17, 13, 0.13);
	color: #10110d;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-announcement__link:hover,
.site-announcement__link:focus-visible {
	border-color: rgba(16, 17, 13, 0.72);
	background: rgba(16, 17, 13, 0.22);
	color: #000000;
}

.site-header {
	/* position: sticky; */
	position: relative;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(12px);
	background: rgba(3, 4, 3, 0.94);
	border-bottom: 1px solid var(--color-border);
	overflow: visible;
}

.site-header__inner,
.site-footer__inner,
.home-banner__inner,
.hero__inner,
.audience-section__inner,
.audience-grid,
.feature-grid {
	display: grid;
	gap: 1.5rem;
}

.site-header__inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 1.25rem;
	padding: 1rem 0;
	overflow: visible;
	position: relative;
}

.site-branding__eyebrow,
.hero__eyebrow,
.hero__panel-label {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.site-branding__name {
	display: inline-flex;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 3;
}

.site-branding__logo {
	display: block;
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 0 18px rgba(197, 161, 93, 0.12));
}

.site-branding__text {
	line-height: 1;
}

@media (min-width: 1025px) {
	.site-header__inner {
		padding-left: clamp(18.5rem, calc(11rem + 9vw), 27rem);
	}

	.site-branding {
		position: absolute;
		left: clamp(-13rem, calc(-5rem - 5vw), -9rem);
		top: 0.9rem;
		margin-bottom: 0;
	}

	.site-branding__name {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		transform: rotate(-8deg) translateY(1.95rem);
		transform-origin: left top;
		backdrop-filter: none;
	}

	.site-branding__logo {
		width: 28rem;
		height: 16rem;
		filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
	}

	body.home .site-header__inner {
		padding-left: clamp(21rem, calc(13rem + 10vw), 31rem);
	}

	body.home .site-branding__logo {
		width: 34rem;
		height: 19.5rem;
	}

	.site-header__menu {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 1rem;
	}

	.site-branding__links {
		justify-content: flex-end;
	}
}

.site-branding__links,
.site-nav__menu,
.site-footer__menu,
.hero__checklist,
.site-nav-dropdown__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-branding__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	justify-content: flex-end;
}

.site-branding__links a,
.site-branding__coming-soon,
.site-nav-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0.32rem 0.5rem;
	border: 1px solid var(--color-border);
	background: rgba(7, 8, 7, 0.78);
	color: var(--color-ink);
	font-size: 0.80rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.site-branding__coming-soon {
	color: var(--color-accent-strong);
	cursor: default;
}

.site-nav-dropdown {
	position: relative;
}

.site-nav-dropdown__toggle {
	gap: 0.4rem;
	cursor: pointer;
	font-family: inherit;
}

.site-nav-dropdown__chevron {
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-0.1rem) rotate(45deg);
	transition: transform 180ms ease;
}

.site-nav-dropdown.is-open .site-nav-dropdown__chevron {
	transform: translateY(0.1rem) rotate(225deg);
}

.site-nav-dropdown__menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 20;
	display: grid;
	min-width: 15rem;
	height: auto;
	padding: 0.45rem;
	border: 1px solid rgba(229, 224, 212, 0.18);
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.98), rgba(6, 7, 6, 0.99));
	box-shadow: 0 1.25rem 2.75rem rgba(0, 0, 0, 0.32);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-0.35rem);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav-dropdown__menu::before {
	content: "";
	position: absolute;
	top: -0.45rem;
	right: 1.4rem;
	width: 0.9rem;
	height: 0.9rem;
	background: rgba(18, 20, 18, 0.98);
	transform: rotate(45deg);
}

.site-nav-dropdown.is-open .site-nav-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav-dropdown__menu a {
	display: flex;
	min-height: 2.85rem;
	padding: 0.75rem 0.95rem;
	border: 0;
	background: transparent;
	color: var(--color-ink);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}

.site-nav-dropdown__menu a:hover,
.site-nav-dropdown__menu a:focus-visible {
	background: rgba(197, 161, 93, 0.13);
	color: #ffffff;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-header__partner-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 3rem;
	height: 3rem;
	transition: opacity 180ms ease, transform 180ms ease;
}

.site-header__partner-link:hover,
.site-header__partner-link:focus-visible {
	opacity: 0.9;
	transform: translateY(-1px);
}

.site-header__partner-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header__menu {
	display: contents;
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.26rem;
	width: 2.8rem;
	height: 2.8rem;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(7, 8, 7, 0.84);
	color: var(--color-ink);
}

.site-header__toggle-line {
	display: block;
	width: 1rem;
	height: 2px;
	background: currentColor;
	transform-origin: center;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(3) {
	opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-search {
	position: relative;
	display: flex;
	align-items: center;
	width: min(100%, 280px);
}

.site-search__icon {
	position: absolute;
	left: 0.75rem;
	width: 0.95rem;
	height: 0.95rem;
	fill: none;
	stroke: var(--color-muted);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
	pointer-events: none;
}

.site-search__input {
	width: 100%;
	padding: 0.7rem 0.9rem 0.7rem 2.35rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(7, 8, 7, 0.84);
	color: var(--color-ink);
	font: inherit;
}

.site-search__input::placeholder {
	color: var(--color-muted);
}

.site-search__input:focus {
	outline: none;
	border-color: rgba(197, 161, 93, 0.55);
	box-shadow: 0 0 0 3px rgba(197, 161, 93, 0.12);
}

.site-account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(197, 161, 93, 0.5);
	border-radius: 999px;
	background: rgba(197, 161, 93, 0.12);
	color: var(--color-ink);
	box-shadow: 0 0 0 1px rgba(229, 224, 212, 0.06), 0 8px 22px rgba(0, 0, 0, 0.22);
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-account:hover,
.site-account:focus-visible {
	border-color: var(--color-accent-strong);
	background: rgba(197, 161, 93, 0.22);
	color: #ffffff;
	transform: translateY(-1px);
}

.site-account__icon {
	width: 1.35rem;
	height: 1.35rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.35;
}

.home-banner {
	position: relative;
	left: 50%;
	width: 100vw;
	min-height: clamp(360px, 56vw, 760px);
	margin-left: -50vw;
	overflow: hidden;
	background-color: #090a09;
	border-bottom: 1px solid var(--color-border);
	--hero-parallax-y: 0px;
	--hero-content-y: 0px;
}

.home-banner::before,
.home-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home-banner::before {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(10, 12, 10, 0.78) 0%, rgba(10, 12, 10, 0.52) 42%, rgba(10, 12, 10, 0.18) 100%);
}

.home-banner::after {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(10, 12, 10, 0.08), rgba(10, 12, 10, 0.42) 70%, rgba(10, 12, 10, 0.64) 100%);
}

.home-banner__slides,
.home-banner__slide {
	position: absolute;
	inset: 0;
}

.home-banner__slides {
	inset: -120px;
	transform: translate3d(0, var(--hero-parallax-y), 0);
	will-change: transform;
}

.home-banner__slide {
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 1100ms ease, transform 5800ms ease;
}

.home-banner__slide-image,
.home-banner__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-banner__video {
	position: absolute;
	inset: 0;
}

.home-banner__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.home-banner__inner {
	position: relative;
	z-index: 2;
	align-items: end;
	min-height: inherit;
	padding: clamp(3rem, 7vw, 6rem) 0;
	transform: translate3d(0, var(--hero-content-y), 0);
	will-change: transform;
}

.home-banner__content {
	max-width: 38rem;
	padding: 1.5rem;
	border-radius: 0.3rem;
	backdrop-filter: blur(10px);
	background: linear-gradient(180deg, rgba(8, 10, 8, 0.36), rgba(8, 10, 8, 0.18));
}

.home-banner__eyebrow {
	margin: 0 0 0.6rem;
	color: var(--color-accent-strong);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.home-banner__title {
	margin: 0;
	font-size: clamp(2.2rem, 4.6vw, 4.75rem);
	line-height: 0.94;
	letter-spacing: -0.04em;
	overflow: hidden;
	text-overflow: clip;
	white-space: nowrap;
}

.home-banner__copy {
	margin: 1rem 0 0;
	max-width: 34rem;
	color: #d4d0c6;
	font-size: 1.05rem;
}

.home-banner__button {
	margin-top: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
	.home-banner__slides,
	.home-banner__inner {
		transform: none;
		will-change: auto;
	}
}

.hero {
	padding: 5.5rem 0 3rem;
}

.hero__inner {
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	align-items: start;
	gap: 2rem;
}

.hero__title {
	margin: 0;
	font-size: clamp(2.5rem, 5vw, 5rem);
	font-weight: 800;
	line-height: 0.94;
	letter-spacing: -0.03em;
	/* max-width: 4ch; */
}

.hero__copy {
	max-width: 62ch;
	font-size: 1.125rem;
	color: var(--color-muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.2rem;
	border-radius: 0.35rem;
	border: 1px solid var(--color-border);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--primary {
	background: #11130f;
	border-color: rgba(197, 161, 93, 0.5);
	color: var(--color-accent-strong);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: #050605;
	border-color: rgba(244, 213, 138, 0.72);
	color: #f4d58a;
	transform: translateY(-1px);
}

.button--secondary {
	background: rgba(5, 6, 5, 0.72);
}

.hero__panel,
.feature-card,
.entry-card,
.prose {
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}

.feature-card,
.entry-card,
.prose {
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.97), rgba(8, 9, 8, 0.98));
}

.hero__panel,
.feature-card,
.entry-card {
	border-radius: 0.3rem;
	padding: 1.5rem;
}

.hero__panel {
	position: relative;
	overflow: hidden;
	background: transparent;
}

/* .hero__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(141, 155, 107, 0.08), transparent 45%),
		repeating-linear-gradient(
			135deg,
			rgba(229, 224, 212, 0.025),
			rgba(229, 224, 212, 0.025) 2px,
			transparent 2px,
			transparent 12px
		);
	pointer-events: none;
} */

.hero__badge {
	display: block;
	/* width: min(100%, 260px); */
	margin: 0 auto 1rem;
}

.hero__checklist {
	display: grid;
	gap: 0.75rem;
	position: relative;
	z-index: 1;
}

.hero__feed {
	display: grid;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.hero__feed-item {
	border-bottom: 1px solid var(--color-border);
}

.hero__feed-item:last-child {
	border-bottom: 0;
}

.hero__feed-card {
	display: block;
	padding-bottom: 0.95rem;
}

.hero__feed-item:last-child .hero__feed-card {
	padding-bottom: 0;
}

.hero__feed-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	align-items: center;
	margin-bottom: 0.35rem;
}

.hero__feed-type,
.hero__feed-date {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero__feed-type {
	color: var(--color-accent-strong);
}

.hero__feed-date {
	color: var(--color-muted);
}

.hero__feed-title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.15;
}

.hero__feed-copy {
	margin: 0.45rem 0 0;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.hero__feed-link {
	display: inline-flex;
	margin-top: 0.6rem;
	color: var(--color-accent-strong);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__checklist li {
	padding-left: 1rem;
	position: relative;
}

.hero__checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: var(--color-accent);
}

.content-section {
	padding: 2rem 0 4rem;
}

.brand-carousel {
	position: relative;
	width: var(--wrap);
	margin: 0 0 4rem;
	padding: 0 0 1rem;
	overflow: hidden;
	margin-inline: auto;
}

.brand-carousel--nfa {
	margin-top: 2rem;
}

.brand-carousel__intro {
	margin-bottom: 1.25rem;
}

.brand-carousel__title {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.brand-carousel__viewport {
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
}

.brand-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.brand-carousel__track {
	display: flex;
	gap: 1rem;
	width: max-content;
	padding: 0;
}

.brand-carousel__item {
	display: block;
	width: clamp(180px, 18vw, 280px);
	flex: 0 0 auto;
}

.brand-carousel__item-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 132px;
	padding: 1.1rem;
	border: 1px solid rgba(229, 224, 212, 0.22);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(34, 37, 34, 0.98), rgba(22, 24, 22, 0.98));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 1rem 2rem rgba(0, 0, 0, 0.18);
	transition: border-color 180ms ease, background 180ms ease;
}

.brand-carousel__item:hover .brand-carousel__item-inner,
.brand-carousel__item:focus-visible .brand-carousel__item-inner {
	border-color: rgba(197, 161, 93, 0.52);
	background:
		linear-gradient(180deg, rgba(39, 42, 39, 0.98), rgba(25, 27, 25, 0.98));
}

.brand-carousel__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.86;
	filter: grayscale(100%) invert(1) brightness(1.18) contrast(0.9);
	transition: opacity 180ms ease, filter 180ms ease;
}

.brand-carousel__item:hover .brand-carousel__image,
.brand-carousel__item:focus-visible .brand-carousel__image {
	opacity: 1;
	filter: grayscale(100%) invert(1) brightness(1.35) contrast(0.96);
}

.audience-section {
	padding-top: 0;
}

.audience-section__inner {
	gap: 1.5rem;
}

.audience-section__intro {
	max-width: 56rem;
}

.audience-section__intro h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.audience-section__intro p:last-child {
	max-width: 48rem;
	color: var(--color-muted);
}

.audience-grid {
	grid-template-columns: 1fr;
}

.audience-card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
	align-items: stretch;
	gap: 1.5rem;
	overflow: hidden;
	min-height: 28rem;
	padding: 1rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.97), rgba(8, 9, 8, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.audience-card--media-left .audience-card__content {
	order: 2;
}

.audience-card--media-left .audience-card__media {
	order: 1;
}

.audience-card--competition {
	background:
		linear-gradient(180deg, rgba(17, 18, 17, 0.98), rgba(6, 7, 6, 0.98));
}

.audience-card--premium {
	background:
		linear-gradient(180deg, rgba(31, 29, 25, 0.97), rgba(19, 18, 16, 0.98));
}

.audience-card__content {
	align-self: center;
	padding: clamp(1rem, 3vw, 2.5rem);
}

.audience-card__media {
	position: relative;
	min-height: 24rem;
	overflow: hidden;
	border-radius: 0.2rem;
	background: rgba(255, 255, 255, 0.04);
}

.audience-card__media img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	display: block;
	object-fit: cover;
}

.audience-card__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--color-accent-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.audience-card h3 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.05;
}

.audience-card__list {
	display: grid;
	gap: 0.75rem;
	margin: 1.25rem 0 0;
	padding-left: 1.1rem;
}

.audience-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--color-accent-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.feature-card h2,
.entry-card__title,
.prose h1 {
	margin-top: 0;
}

.prose {
	padding: 2rem;
	border-radius: 0.3rem;
}

.prose h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	letter-spacing: -0.03em;
}

.about-page__image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 7;
	margin: 0 0 1.75rem;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background-color: #090a09;
}

.about-page__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 12, 10, 0.02), rgba(10, 12, 10, 0.26) 100%),
		linear-gradient(90deg, rgba(10, 12, 10, 0.3), rgba(10, 12, 10, 0) 48%);
	pointer-events: none;
}

.about-page__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.about-employees {
	padding-top: 0;
}

.about-employees__inner,
.about-employees__grid {
	display: grid;
	gap: 1.5rem;
}

.about-employees__intro {
	max-width: 46rem;
}

.about-employees__intro h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.03em;
	overflow: hidden;
	text-overflow: clip;
	white-space: nowrap;
}

.about-employees__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.employee-card {
	display: grid;
	grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
	padding: 1rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background: linear-gradient(180deg, rgba(18, 20, 18, 0.97), rgba(8, 9, 8, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.employee-card--has-blurb {
	grid-column: 1 / -1;
	grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
}

.employee-card--no-image {
	grid-template-columns: 1fr;
}

.employee-card--no-blurb {
	align-items: center;
}

.employee-card__image {
	width: 100%;
	aspect-ratio: 4 / 5;
	margin: 0;
	overflow: hidden;
	border-radius: 0.2rem;
	background: rgba(255, 255, 255, 0.04);
}

.employee-card__headshot {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.employee-card__body {
	padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
}

.employee-card--no-blurb .employee-card__body {
	padding-block: 0.75rem;
}

.employee-card__name {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.05;
}

.employee-card__role {
	margin: 0.55rem 0 0;
	color: var(--color-accent-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.employee-card__blurb {
	margin-top: 0.95rem;
	color: var(--color-muted);
	max-width: 58rem;
}

.employee-card__blurb p {
	margin: 0;
}

.employee-card__blurb p + p {
	margin-top: 0.75rem;
}

.prose h2 {
	margin: 2rem 0 1rem;
	font-size: 1.65rem;
	letter-spacing: -0.02em;
}

.prose h3 {
	margin: 0 0 0.85rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.prose p {
	color: var(--color-muted);
}

.prose .wp-block-image {
	margin: 0 0 1.5rem;
}

.prose .wp-block-image img {
	max-width: 120px;
	height: auto;
	opacity: 0.9;
}

.prose .wp-block-columns {
	gap: 1.5rem;
	margin: 2rem 0;
}

/* .prose .wp-block-column {
	padding: 1.35rem;
	border: 1px solid var(--color-border);
	border-radius: 0.9rem;
	background:
		linear-gradient(180deg, rgba(32, 39, 33, 0.9), rgba(21, 26, 22, 0.92));
} */

.prose .wp-block-list {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

.prose .wp-block-list li + li {
	margin-top: 0.5rem;
}

.prose .wp-block-table {
	margin: 1rem 0 0;
	overflow: visible;
}

.prose .wp-block-table table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 1rem;
}

.prose .wp-block-table td,
.prose .wp-block-table th {
	padding: 0.8rem 0;
	border: 0;
	border-bottom: 1px solid var(--color-border);
	vertical-align: middle;
}

.prose .wp-block-table td:first-child,
.prose .wp-block-table th:first-child {
	padding-right: 1rem;
}

.prose .wp-block-table td:last-child,
.prose .wp-block-table th:last-child {
	width: 88px;
	white-space: nowrap;
	text-align: right;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--color-accent-strong);
	padding-left: 0.75rem;
}

.local-landing-page__inner {
	display: grid;
	gap: 1.5rem;
}

.local-landing-page__hero,
.local-landing-page__card,
.local-landing-page__location {
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(17, 18, 17, 0.98), rgba(6, 7, 6, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.local-landing-page__hero {
	padding: clamp(2rem, 5vw, 3.5rem);
}

.local-landing-page__hero h1 {
	max-width: 58rem;
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
}

.local-landing-page__hero p {
	max-width: 52rem;
	margin: 1.2rem 0 0;
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.6;
}

.local-landing-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.local-landing-page__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.local-landing-page__card {
	padding: 1.35rem;
}

.local-landing-page__card h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	line-height: 1.15;
}

.local-landing-page__card p {
	margin: 0.85rem 0 0;
	color: var(--color-muted);
	line-height: 1.55;
}

.local-landing-page__location {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	gap: 1.5rem;
	padding: 1.5rem;
}

.local-landing-page__location h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	line-height: 1.05;
}

.local-landing-page__location p {
	margin: 0.85rem 0 0;
	color: var(--color-muted);
	line-height: 1.55;
}

.local-landing-page__details {
	display: grid;
	gap: 0.9rem;
	margin: 0;
}

.local-landing-page__details div {
	padding-bottom: 0.9rem;
	border-bottom: 1px solid rgba(229, 224, 212, 0.12);
}

.local-landing-page__details div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.local-landing-page__details dt,
.local-landing-page__details dd {
	margin: 0;
}

.local-landing-page__details dt {
	color: var(--color-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.local-landing-page__details dd {
	margin-top: 0.25rem;
	color: var(--color-ink);
	font-weight: 700;
}

.local-landing-page__details a {
	color: var(--color-ink);
}

.local-landing-page__map {
	grid-column: 1 / -1;
}

.location-map {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(20rem, 1.3fr);
	gap: 1.25rem;
	align-items: stretch;
	padding: 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(17, 18, 17, 0.98), rgba(6, 7, 6, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.location-map__intro h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.1;
}

.location-map__intro p {
	margin: 0.75rem 0 0;
	color: var(--color-muted);
	line-height: 1.5;
}

.location-map__frame {
	position: relative;
	min-height: 18rem;
	overflow: hidden;
	border: 1px solid rgba(229, 224, 212, 0.16);
	border-radius: 0.25rem;
	background: #090a09;
}

.location-map__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
	filter: grayscale(28%) contrast(0.95) brightness(0.86);
}

.contact-page__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
	align-items: start;
	gap: 2rem;
}

.contact-page__intro h1 {
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 4rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
}

.contact-page__intro p:last-child,
.contact-page__intro ul:last-child {
	max-width: 38rem;
	color: var(--color-muted);
}

.contact-prompt-list {
	display: grid;
	gap: 0.7rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.contact-prompt-list li {
	position: relative;
	padding: 0.85rem 1rem 0.85rem 2.65rem;
	border: 1px solid rgba(229, 224, 212, 0.12);
	border-radius: 0.25rem;
	background: rgba(7, 8, 7, 0.26);
	color: var(--color-muted);
	font-weight: 700;
	line-height: 1.35;
}

.contact-prompt-list li::before {
	content: "?";
	position: absolute;
	top: 0.8rem;
	left: 0.85rem;
	display: inline-grid;
	place-items: center;
	width: 1.2rem;
	height: 1.2rem;
	border: 1px solid rgba(197, 161, 93, 0.52);
	border-radius: 999px;
	color: var(--color-accent-strong);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.contact-form {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.97), rgba(8, 9, 8, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-form__field {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 1rem;
}

.contact-form__field label {
	color: var(--color-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	border: 1px solid rgba(229, 224, 212, 0.18);
	border-radius: 0.25rem;
	background: rgba(7, 8, 7, 0.34);
	color: var(--color-ink);
	font: inherit;
}

.contact-form__field input {
	min-height: 3rem;
	padding: 0 0.85rem;
}

.contact-form__field textarea {
	padding: 0.85rem;
	resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: 2px solid rgba(197, 161, 93, 0.34);
	outline-offset: 2px;
	border-color: rgba(197, 161, 93, 0.68);
}

.contact-form__notice {
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 0.25rem;
	font-weight: 700;
}

.contact-form__notice ul {
	margin: 0;
	padding-left: 1.1rem;
}

.contact-form__notice--success {
	border: 1px solid rgba(197, 161, 93, 0.46);
	background: rgba(197, 161, 93, 0.1);
	color: #f4e6c6;
}

.contact-form__notice--error {
	border: 1px solid rgba(197, 93, 93, 0.5);
	background: rgba(197, 93, 93, 0.12);
	color: #f7dfdf;
}

.contact-form__hidden {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.prose .wp-block-table td:first-child {
	font-weight: 600;
	line-height: 1.25;
}

.prose .wp-block-table td:first-child em,
.prose .wp-block-table td:first-child strong em,
.prose .wp-block-table td:first-child em strong {
	display: block;
	margin-top: 0.12rem;
	color: var(--color-muted);
	font-size: 0.86rem;
	font-style: italic;
	font-weight: 600;
}

.prose .wp-block-table td br + em,
.prose .wp-block-table td br + strong,
.prose .wp-block-table td br + span {
	display: inline-block;
	margin-top: 0.2rem;
}

.prose .wp-block-table tr:last-child td,
.prose .wp-block-table tr:last-child th {
	border-bottom: 0;
}

.gunsmithing-page__inner {
	display: grid;
	gap: 1.1rem;
	max-width: 960px;
}

.gunsmithing-page__header,
.gunsmithing-services__group {
	border: 1px solid var(--color-border);
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.96), rgba(8, 9, 8, 0.98));
	box-shadow: var(--shadow-soft);
}

.gunsmithing-page__header {
	border-radius: 0.3rem;
	padding: clamp(1.35rem, 3vw, 2rem);
}

.gunsmithing-page__header h1 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.gunsmithing-page__header p:last-child {
	max-width: 42rem;
	margin: 0.8rem 0 0;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.5;
}

.gunsmithing-page__intro {
	max-width: 58rem;
	margin: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
}

.gunsmithing-page__intro > *:first-child {
	margin-top: 0;
}

.gunsmithing-page__intro > *:last-child {
	margin-bottom: 0;
}

.gunsmithing-services {
	display: grid;
	gap: 1rem;
}

.gunsmithing-services__group {
	overflow: hidden;
	border: 1px solid rgba(197, 161, 93, 0.22);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(17, 18, 17, 0.96), rgba(6, 7, 6, 0.98));
	box-shadow:
		0 1rem 2.2rem rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.gunsmithing-services__group h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	padding: 0.78rem 1.05rem;
	border-bottom: 0;
	color: var(--color-ink);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background:
		linear-gradient(90deg, rgba(197, 161, 93, 0.11), rgba(12, 14, 12, 0.64) 42%, rgba(12, 14, 12, 0.46));
	border-left: 3px solid var(--color-accent-strong);
	border-bottom: 1px solid rgba(229, 224, 212, 0.12);
}

.gunsmithing-services__count {
	flex: 0 0 auto;
	color: var(--color-muted);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.gunsmithing-services--menu .gunsmithing-services__group h2 {
	border-bottom-color: rgba(229, 224, 212, 0.1);
}

.gunsmithing-services__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem;
	padding: 0.75rem;
	background: rgba(7, 8, 7, 0.12);
}

.gunsmithing-services__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.65rem;
	min-height: 3.35rem;
	padding: 0.64rem 0.72rem;
	border: 1px solid rgba(229, 224, 212, 0.075);
	border-radius: 0.22rem;
	background: rgba(8, 10, 8, 0.34);
	transition: border-color 160ms ease, background 160ms ease;
}

.gunsmithing-services__item:hover {
	border-color: rgba(197, 161, 93, 0.18);
	background: rgba(13, 16, 13, 0.5);
}

.gunsmithing-services__item:hover .gunsmithing-services__price {
	border-color: rgba(197, 161, 93, 0.44);
	background: rgba(197, 161, 93, 0.09);
	color: #e0bd75;
}

.gunsmithing-services__details {
	min-width: 0;
}

.gunsmithing-services__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.gunsmithing-services__table td {
	padding: 0.68rem 1.05rem;
	border-bottom: 1px solid rgba(229, 224, 212, 0.09);
	background: rgba(8, 10, 8, 0.28);
	text-align: left;
	vertical-align: middle;
}

.gunsmithing-services__table tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.035);
}

.gunsmithing-services__table td:last-child {
	width: 6.4rem;
	text-align: right;
}

.gunsmithing-services__table td:last-child {
	color: var(--color-accent-strong);
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.gunsmithing-services__price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.65rem;
	min-height: 1.55rem;
	padding: 0.2rem 0.48rem;
	border: 1px solid rgba(197, 161, 93, 0.2);
	border-radius: 999px;
	background: rgba(7, 8, 7, 0.22);
	color: var(--color-accent-strong);
	font-size: 0.84rem;
	font-weight: 850;
	line-height: 1;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.gunsmithing-services__table tr:hover .gunsmithing-services__price {
	border-color: rgba(197, 161, 93, 0.44);
	background: rgba(197, 161, 93, 0.09);
	color: #e0bd75;
}

.gunsmithing-services__table tr:last-child td {
	border-bottom: 0;
}

.gunsmithing-services__name,
.gunsmithing-services__note {
	display: block;
}

.gunsmithing-services__name {
	margin: 0;
	color: var(--color-ink);
	font-weight: 650;
	line-height: 1.25;
	font-size: 0.94rem;
}

.gunsmithing-services__note {
	margin-top: 0.14rem;
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.76rem;
	font-style: normal;
	font-weight: 600;
}

.gunsmithing-services__disclaimer {
	margin: 0;
	padding: 0.8rem 1.05rem;
	border: 1px solid rgba(229, 224, 212, 0.1);
	border-radius: 0.3rem;
	background: rgba(7, 8, 7, 0.38);
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.45;
}

.nfa-page__inner {
	display: grid;
	gap: 1.5rem;
}

.nfa-page__content,
.custom-competition-builds-page__content {
	max-width: 56rem;
}

.nfa-page__content h1,
.custom-competition-builds-page__content h1 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.nfa-page__content > * + *,
.custom-competition-builds-page__content > * + * {
	margin-top: 1rem;
}

.nfa-page__content p,
.custom-competition-builds-page__content p {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.nfa-wizard {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(17, 18, 17, 0.98), rgba(6, 7, 6, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.nfa-wizard__intro {
	max-width: 56rem;
	margin-bottom: 1.35rem;
}

.nfa-wizard__intro h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.nfa-wizard__intro p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
}

.nfa-pricing {
	margin-bottom: 1.35rem;
	padding: 1rem;
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: rgba(7, 8, 7, 0.26);
}

.nfa-pricing h3 {
	margin: 0 0 0.9rem;
	color: var(--color-accent-strong);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nfa-pricing__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	border-top: 1px solid rgba(229, 224, 212, 0.1);
}

.nfa-pricing__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 0.85rem;
	min-height: 4.25rem;
	padding: 0.85rem 1rem;
	border-top: 1px solid rgba(229, 224, 212, 0.1);
	border-left: 1px solid rgba(229, 224, 212, 0.1);
}

.nfa-pricing__item:nth-child(-n+3) {
	border-top: 0;
}

.nfa-pricing__item:nth-child(3n+1) {
	border-left: 0;
}

.nfa-pricing__item dt,
.nfa-pricing__item dd {
	margin: 0;
}

.nfa-pricing__item dt {
	color: var(--color-ink);
	font-size: 0.9rem;
	line-height: 1.3;
}

.nfa-pricing__item dd {
	color: var(--color-accent-strong);
	font-size: 1.08rem;
	font-weight: 800;
	text-align: right;
	white-space: nowrap;
}

.nfa-process-note {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 1rem;
	margin-bottom: 1.35rem;
	padding: 1rem;
	border: 1px solid rgba(197, 161, 93, 0.28);
	border-left: 4px solid var(--color-accent-strong);
	border-radius: 0.25rem;
	background:
		linear-gradient(180deg, rgba(20, 22, 19, 0.98), rgba(12, 14, 12, 0.98));
}

.nfa-process-note__label {
	margin: 0;
	color: var(--color-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.nfa-process-note__body p {
	margin: 0;
	color: var(--color-ink);
	font-size: 0.98rem;
	line-height: 1.45;
}

.nfa-process-note__body p + p {
	margin-top: 0.45rem;
	color: var(--color-muted);
}

.nfa-process-note a {
	color: var(--color-accent-strong);
	font-weight: 800;
}

.custom-competition-builds-note {
	grid-template-columns: 1fr;
	margin-top: 1.5rem;
	text-align: left;
}

.custom-competition-builds-video {
	overflow: hidden;
	margin: 1.4rem 0 1.5rem;
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: rgba(0, 0, 0, 0.28);
	aspect-ratio: 16 / 9;
}

.custom-competition-builds-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000000;
}

.custom-competition-builds-consultation {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.custom-competition-builds-hunter,
.custom-competition-builds-scope {
	min-width: 0;
}

.custom-competition-builds-hunter {
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: rgba(0, 0, 0, 0.28);
}

.custom-competition-builds-hunter--no-image {
	grid-template-columns: 1fr;
}

.custom-competition-builds-hunter__image {
	order: 2;
	aspect-ratio: 16 / 10;
	margin: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
}

.custom-competition-builds-hunter__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.custom-competition-builds-hunter__body {
	order: 1;
	align-self: center;
	padding: clamp(1rem, 1.8vw, 1.45rem);
}

.custom-competition-builds-hunter__body h3 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.custom-competition-builds-hunter__body p {
	margin: 0.85rem 0 0;
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.46;
}

.custom-competition-builds-hunter__credentials {
	display: grid;
	gap: 0.45rem;
	margin: 0.85rem 0 0;
	padding: 0;
	list-style: none;
	color: var(--color-ink);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.35;
}

.custom-competition-builds-hunter__credentials li {
	position: relative;
	padding-left: 0.9rem;
}

.custom-competition-builds-hunter__credentials li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.32rem;
	height: 0.32rem;
	border-radius: 999px;
	background: var(--color-accent-strong);
	content: "";
}

.custom-competition-builds-hunter__body a {
	color: var(--color-accent-strong);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.custom-competition-builds-hunter__body a:hover,
.custom-competition-builds-hunter__body a:focus-visible {
	color: #ffffff;
}

.nfa-wizard__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem 2.2rem;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: nfa-step;
}

.custom-competition-builds-scope {
	display: grid;
	align-content: space-between;
	gap: clamp(1.4rem, 3vw, 2.4rem);
	padding: clamp(1.25rem, 2vw, 1.65rem);
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: rgba(0, 0, 0, 0.28);
}

.custom-competition-builds-scope__summary h3 {
	margin: 0 0 0.65rem;
	color: var(--color-ink);
	font-size: clamp(1.25rem, 2.2vw, 1.7rem);
	line-height: 1.15;
}

.custom-competition-builds-scope__summary p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.custom-competition-builds-scope__summary a {
	color: var(--color-accent-strong);
	font-weight: 800;
}

.custom-competition-builds-scope__topics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
}

.custom-competition-builds-scope__video {
	overflow: hidden;
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: #000000;
	aspect-ratio: 16 / 9;
}

.custom-competition-builds-scope__video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000000;
}

.custom-competition-builds-scope__topic {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.15rem;
	padding: 0.45rem 0.7rem;
	border: 1px solid rgba(197, 161, 93, 0.3);
	border-radius: 999px;
	background: rgba(197, 161, 93, 0.09);
	color: var(--color-ink);
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.custom-competition-builds-scope__topic::after {
	content: attr(data-detail);
	position: absolute;
	z-index: 5;
	box-sizing: border-box;
	bottom: calc(100% + 0.65rem);
	left: 50%;
	width: min(20rem, calc(100vw - 3rem));
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(197, 161, 93, 0.38);
	border-radius: 0.25rem;
	background: rgba(12, 14, 12, 0.98);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.38);
	color: var(--color-ink);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.45;
	opacity: 0;
	pointer-events: none;
	text-transform: none;
	transform: translate(-50%, 0.35rem);
	transition: opacity 160ms ease, transform 160ms ease;
}

.custom-competition-builds-scope__topic::before {
	content: "";
	position: absolute;
	z-index: 6;
	bottom: calc(100% + 0.34rem);
	left: 50%;
	width: 0.65rem;
	height: 0.65rem;
	border-right: 1px solid rgba(197, 161, 93, 0.38);
	border-bottom: 1px solid rgba(197, 161, 93, 0.38);
	background: rgba(12, 14, 12, 0.98);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 0.35rem) rotate(45deg);
	transition: opacity 160ms ease, transform 160ms ease;
}

.custom-competition-builds-scope__topic:hover,
.custom-competition-builds-scope__topic:focus,
.custom-competition-builds-scope__topic:focus-visible {
	border-color: rgba(197, 161, 93, 0.68);
	background: rgba(197, 161, 93, 0.16);
	outline: none;
}

.custom-competition-builds-scope__topic:hover::after,
.custom-competition-builds-scope__topic:hover::before,
.custom-competition-builds-scope__topic:focus::after,
.custom-competition-builds-scope__topic:focus::before,
.custom-competition-builds-scope__topic:focus-visible::after,
.custom-competition-builds-scope__topic:focus-visible::before {
	opacity: 1;
	transform: translate(-50%, 0) rotate(0);
}

.custom-competition-builds-scope__topic:hover::before,
.custom-competition-builds-scope__topic:focus::before,
.custom-competition-builds-scope__topic:focus-visible::before {
	transform: translate(-50%, 0) rotate(45deg);
}

.nfa-wizard__step {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-content: start;
	align-items: start;
	gap: 1rem;
	min-height: 100%;
	padding: 1.25rem;
	border: 1px solid rgba(229, 224, 212, 0.14);
	border-radius: 0.25rem;
	background: rgba(0, 0, 0, 0.28);
}

.nfa-wizard__number {
	display: inline-grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(197, 161, 93, 0.58);
	border-radius: 999px;
	background: rgba(197, 161, 93, 0.12);
	color: var(--color-accent-strong);
	font-weight: 800;
	line-height: 1;
}

.nfa-wizard__body h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nfa-wizard__body p {
	margin: 0.65rem 0 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.nfa-wizard__body p a {
	color: var(--color-accent-strong);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.nfa-wizard__body p a:hover,
.nfa-wizard__body p a:focus-visible {
	color: var(--color-ink);
}

.nfa-wizard__link {
	display: inline-flex;
	align-items: center;
	margin-top: 0.8rem;
	color: var(--color-accent-strong);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nfa-scheduler {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 0.3rem;
	background:
		linear-gradient(180deg, rgba(18, 20, 18, 0.97), rgba(8, 9, 8, 0.98));
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.nfa-scheduler__intro {
	max-width: 48rem;
	margin-bottom: 1.25rem;
}

.nfa-scheduler__intro h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.nfa-scheduler__intro p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
}

.nfa-scheduler__widget {
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(229, 224, 212, 0.16);
	border-radius: 0.25rem;
	background: #ffffff;
}

.nfa-scheduler__notice {
	padding: 1rem;
	border: 1px dashed rgba(197, 161, 93, 0.46);
	border-radius: 0.25rem;
	background: rgba(197, 161, 93, 0.1);
	color: var(--color-ink);
}

.nfa-scheduler__notice p {
	margin: 0;
	color: inherit;
}

.site-footer {
	position: relative;
	margin-top: 4rem;
	padding: 3rem 0 3.25rem;
	border-top: 0;
	background:
		radial-gradient(circle at 50% 0, rgba(197, 161, 93, 0.08), transparent 34rem),
		linear-gradient(180deg, rgba(11, 12, 11, 0.99), rgba(4, 5, 4, 0.99));
	box-shadow: inset 0 1px 0 rgba(197, 161, 93, 0.1);
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background:
		linear-gradient(90deg, rgba(197, 161, 93, 0), rgba(197, 161, 93, 0.28) 18%, rgba(197, 161, 93, 0.68) 50%, rgba(197, 161, 93, 0.28) 82%, rgba(197, 161, 93, 0));
}

.site-footer__inner {
	grid-template-columns: minmax(0, 1fr) minmax(20rem, 31rem) minmax(12rem, auto);
	align-items: center;
	column-gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__primary,
.site-footer__signup,
.site-footer__contact {
	display: grid;
	gap: 0.72rem;
}

.site-footer__brand {
	margin: 0;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__copy,
.site-footer__discount,
.site-footer__privacy,
.site-footer__label,
.site-footer__meta {
	margin: 0;
}

.site-footer__discount {
	color: var(--color-accent-strong);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__map-link {
	display: block;
	width: min(100%, 15rem);
	height: 5.5rem;
	overflow: hidden;
	border: 1px solid rgba(197, 161, 93, 0.18);
	border-radius: 0.25rem;
	background: #090a09;
}

.site-footer__map-link iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(32%) contrast(0.95) brightness(0.8);
	pointer-events: none;
}

.site-footer__map-link:hover,
.site-footer__map-link:focus-visible {
	border-color: rgba(197, 161, 93, 0.5);
	outline: none;
}

.site-footer__privacy {
	font-size: 0.86rem;
	font-weight: 700;
}

.site-footer__privacy {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	align-items: center;
}

.site-footer__privacy span {
	color: rgba(229, 224, 212, 0.42);
	font-weight: 600;
}

.site-footer__signup {
	gap: 0.85rem;
	padding: 0.25rem 0 0.25rem 1.35rem;
	border-left: 1px solid rgba(197, 161, 93, 0.34);
	background: transparent;
}

.site-footer__signup-title {
	margin: 0;
	color: var(--color-ink);
	font-size: 1.2rem;
	line-height: 1.2;
}

.site-footer__signup-copy {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.site-footer__signup-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.5rem;
	margin-top: 0.05rem;
}

.site-footer__signup-input {
	min-width: 0;
	padding: 0.78rem 0.85rem;
	border: 1px solid rgba(229, 224, 212, 0.14);
	background: rgba(0, 0, 0, 0.32);
	color: var(--color-ink);
	font: inherit;
}

.site-footer__signup-input::placeholder {
	color: var(--color-muted);
}

.site-footer__signup-input:disabled {
	cursor: not-allowed;
	opacity: 0.76;
}

.site-footer__signup-button {
	justify-self: start;
	padding: 0.68rem 0.9rem;
	border: 1px solid rgba(197, 161, 93, 0.44);
	background: rgba(197, 161, 93, 0.12);
	color: var(--color-accent-strong);
	font: inherit;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-footer__signup-button:disabled {
	cursor: not-allowed;
	opacity: 0.9;
}

.site-footer__contact {
	justify-items: end;
	text-align: right;
	gap: 0.5rem;
}

.site-footer__label {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer__meta {
	color: var(--color-ink);
	font-weight: 600;
}

@media (max-width: 800px) {
	.site-header__inner,
	.home-banner__inner,
	.hero__inner,
	.audience-grid,
	.feature-grid,
	.local-landing-page__grid,
	.local-landing-page__location,
	.location-map,
	.contact-page__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.audience-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.audience-card--media-left .audience-card__content,
	.audience-card--media-left .audience-card__media {
		order: initial;
	}

	.audience-card__media {
		min-height: 18rem;
	}

	.brand-carousel {
		margin-bottom: 3rem;
	}

	.brand-carousel__item {
		width: 220px;
	}

	.site-announcement__inner,
	.site-announcement__content {
		align-items: center;
		flex-direction: column;
	}

	.site-announcement__inner {
		gap: 0.7rem;
		padding: 0.85rem 0;
	}

	.site-announcement__content {
		gap: 0.25rem;
	}

	.site-announcement__title {
		white-space: normal;
	}

	.site-header__inner {
		gap: 1rem;
		align-items: start;
	}

	.site-branding__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
		width: 100%;
	}

	.site-header__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 0.75rem;
		width: 100%;
		margin-top: 0.15rem;
	}

	.site-search {
		min-width: 0;
		width: 100%;
	}

	.site-branding__links a {
		justify-content: center;
		width: 100%;
		min-height: 3rem;
		padding: 0.65rem 0.75rem;
		font-size: 0.75rem;
		text-align: center;
	}

	.site-nav-dropdown {
		grid-column: 1 / -1;
		width: 100%;
	}

	.site-nav-dropdown__toggle {
		width: 100%;
	}

	.site-nav-dropdown__toggle {
		justify-content: center;
		min-height: 3rem;
		padding: 0.65rem 0.75rem;
		font-size: 0.75rem;
	}

	.site-nav-dropdown__menu {
		position: static;
		display: none;
		min-width: 0;
		margin-top: 0.55rem;
		padding: 0.45rem;
		border-color: rgba(229, 224, 212, 0.14);
		background:
			linear-gradient(180deg, rgba(22, 25, 22, 0.98), rgba(12, 14, 12, 0.99));
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-nav-dropdown__menu::before {
		display: none;
	}

	.site-nav-dropdown.is-open .site-nav-dropdown__menu {
		display: grid;
	}

	.site-nav-dropdown__menu a {
		justify-content: center;
		min-height: 2.8rem;
		font-size: 0.82rem;
		text-align: center;
	}

	.site-nav-dropdown__menu li + li a {
		border-top: 1px solid rgba(229, 224, 212, 0.08);
	}

	.site-nav__menu {
		gap: 0.75rem 1rem;
	}

	.hero {
		padding-top: 4rem;
	}

	.home-banner {
		min-height: 320px;
		background-position: center top;
	}

	.home-banner__slides {
		inset: -72px;
	}

	.home-banner__content {
		max-width: none;
		padding: 1.1rem;
	}

	.home-banner__title {
		font-size: 2.35rem;
	}

	.home-banner__copy {
		font-size: 0.98rem;
	}

	.site-footer__contact {
		justify-items: start;
		text-align: left;
	}

	.site-footer__signup {
		padding: 1rem 0 0 0;
		border-top: 1px solid rgba(197, 161, 93, 0.24);
		border-left: 0;
	}

	.site-footer__signup-form {
		grid-template-columns: 1fr;
	}

	.site-footer__signup-button {
		justify-self: stretch;
		width: 100%;
	}

	.prose {
		padding: 1.25rem;
	}

	.prose h1 {
		font-size: 2.3rem;
	}

	.prose h2 {
		font-size: 1.35rem;
	}

	.about-employees__grid,
	.employee-card {
		grid-template-columns: 1fr;
	}

	.employee-card__image {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.contact-form {
		padding: 1.15rem;
	}

	.contact-form__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.gunsmithing-services__group h2,
	.gunsmithing-services__table td {
		padding-inline: 1.15rem;
	}

	.gunsmithing-services__list {
		grid-template-columns: 1fr;
		padding: 0.75rem;
	}

	.gunsmithing-services__item {
		min-height: 0;
		padding: 0.8rem;
	}

	.gunsmithing-services__table,
	.gunsmithing-services__table tbody,
	.gunsmithing-services__table tr,
	.gunsmithing-services__table td {
		display: block;
		width: 100%;
	}

	.gunsmithing-services__table tr {
		padding: 0.78rem 1.15rem;
		border-bottom: 1px solid rgba(229, 224, 212, 0.085);
	}

	.gunsmithing-services__table tr:last-child {
		border-bottom: 0;
	}

	.gunsmithing-services__table td {
		padding: 0;
		border-bottom: 0;
	}

	.gunsmithing-services__table td:last-child {
		width: auto;
		margin-top: 0.32rem;
		text-align: left;
	}

	.gunsmithing-services__price {
		min-width: 0;
	}

	.nfa-wizard,
	.nfa-scheduler {
		padding: 1.15rem;
	}

	.nfa-wizard__steps {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.custom-competition-builds-consultation {
		grid-template-columns: 1fr;
	}

	.custom-competition-builds-hunter {
		grid-template-columns: 1fr;
	}

	.custom-competition-builds-hunter__image {
		min-height: 0;
	}

	.custom-competition-builds-scope {
		grid-template-columns: 1fr;
	}

	.custom-competition-builds-scope__topics {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-competition-builds-scope__topic {
		justify-content: center;
		width: 100%;
	}

	.custom-competition-builds-scope__topic::after {
		top: calc(100% + 0.65rem);
		bottom: auto;
		left: 0;
		width: 100%;
		transform: translateY(-0.25rem);
	}

	.custom-competition-builds-scope__topic::before {
		top: calc(100% + 0.34rem);
		bottom: auto;
		left: 50%;
		border-top: 1px solid rgba(197, 161, 93, 0.38);
		border-left: 1px solid rgba(197, 161, 93, 0.38);
		border-right: 0;
		border-bottom: 0;
		transform: translate(-50%, -0.25rem) rotate(45deg);
	}

	.custom-competition-builds-scope__topic:hover::after,
	.custom-competition-builds-scope__topic:focus::after,
	.custom-competition-builds-scope__topic:focus-visible::after {
		transform: translateY(0);
	}

	.custom-competition-builds-scope__topic:hover::before,
	.custom-competition-builds-scope__topic:focus::before,
	.custom-competition-builds-scope__topic:focus-visible::before {
		transform: translate(-50%, 0) rotate(45deg);
	}

	.nfa-pricing__list {
		grid-template-columns: 1fr;
	}

	.nfa-pricing__item:nth-child(-n+3) {
		border-top: 1px solid rgba(229, 224, 212, 0.1);
	}

	.nfa-pricing__item:first-child {
		border-top: 0;
	}

	.nfa-pricing__item {
		border-left: 0;
	}

	.nfa-process-note {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.nfa-process-note__label {
		white-space: normal;
	}

	.nfa-wizard__step {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.prose .wp-block-table table,
	.prose .wp-block-table tbody,
	.prose .wp-block-table tr,
	.prose .wp-block-table td,
	.prose .wp-block-table th {
		display: block;
		width: 100%;
	}

	.prose .wp-block-table tr {
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--color-border);
	}

	.prose .wp-block-table tr:last-child {
		border-bottom: 0;
	}

	.prose .wp-block-table td,
	.prose .wp-block-table th {
		padding: 0;
		border: 0;
	}

	.prose .wp-block-table td:first-child,
	.prose .wp-block-table th:first-child {
		padding-right: 0;
	}

	.prose .wp-block-table td:last-child,
	.prose .wp-block-table th:last-child {
		width: auto;
		margin-top: 0.3rem;
		padding-left: 0;
		text-align: left;
	}
}

@media (max-width: 1024px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.site-branding {
		margin-bottom: 0;
		position: static;
	}

	.site-branding__name {
		transform: none;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.site-branding__logo {
		width: 6.9rem;
		height: 7.5rem;
		object-fit: initial;
	}

	.site-branding__text {
		font-size: 1.5rem;
	}

	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__menu {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
		padding-top: 1rem;
		border-top: 1px solid var(--color-border);
	}

	.site-header__menu.is-open {
		display: grid;
		gap: 1.1rem;
	}

	.site-branding__links {
		justify-content: stretch;
	}

	.site-header__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) repeat(3, 3rem) minmax(0, 1fr);
		grid-template-areas:
			"search search search search search"
			". partner account cart .";
		justify-content: center;
		gap: 0.75rem 1rem;
		width: 100%;
	}

	.site-search {
		grid-area: search;
		width: 100%;
		min-width: 0;
	}

	.site-header__partner-link {
		grid-area: partner;
	}

	.site-header__actions .site-account:nth-of-type(2) {
		grid-area: account;
	}

	.site-header__actions .site-account:nth-of-type(3) {
		grid-area: cart;
	}

	.nfa-pricing__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nfa-pricing__item:nth-child(-n+3) {
		border-top: 1px solid rgba(229, 224, 212, 0.1);
	}

	.nfa-pricing__item:nth-child(-n+2) {
		border-top: 0;
	}

	.nfa-pricing__item:nth-child(odd) {
		border-left: 0;
	}

	.nfa-pricing__item:nth-child(even) {
		border-left: 1px solid rgba(229, 224, 212, 0.1);
	}
}

@media (min-width: 1025px) {
	.site-header__toggle {
		display: none;
	}

	.site-header__inner {
		width: min(1800px, calc(100vw - 4rem));
	}

	.site-header__menu {
		display: grid;
		grid-column: 2 / -1;
		grid-template-columns: 3rem minmax(0, 1fr) 3rem 3rem;
		justify-self: end;
		justify-items: stretch;
		width: max-content;
		max-width: 100%;
		gap: 0.7rem 0.75rem;
	}

	.site-header__actions {
		display: contents;
	}

	.site-search {
		grid-column: 2;
		grid-row: 1;
		width: auto;
		min-width: 0;
	}

	.site-header__partner-link {
		grid-column: 1;
		grid-row: 1 / 3;
		align-self: center;
		justify-self: center;
		width: 5.4rem;
		height: 6.1rem;
		margin-right: 0.5rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-header__partner-image {
		width: 100%;
		height: 100%;
	}

	.site-header__actions .site-account:nth-of-type(2) {
		grid-column: 3;
		grid-row: 1;
	}

	.site-header__actions .site-account:nth-of-type(3) {
		grid-column: 4;
		grid-row: 1;
	}

	.site-header__partner-link:hover,
	.site-header__partner-link:focus-visible {
		background: transparent;
	}

	.site-branding__links {
		grid-column: 2 / 5;
		grid-row: 2;
		flex-wrap: nowrap;
		gap: 0.35rem;
		justify-content: flex-end;
	}

	.site-branding__links a,
	.site-nav-dropdown__toggle {
		min-height: 2.7rem;
		padding: 0.3rem 0.42rem;
		font-size: 0.76rem;
		white-space: nowrap;
	}

	body:not(.home) .site-header__inner {
		padding-left: 0;
	}

	body:not(.home) .site-branding {
		position: static;
	}

	body:not(.home) .site-branding__name {
		transform: none;
	}

	body:not(.home) .site-branding__logo {
		width: 16rem;
		height: 9.25rem;
	}
}

@media (max-width: 800px) {
	.site-branding__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
	}

	.site-header__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) repeat(3, 3rem) minmax(0, 1fr);
	}

	.site-search {
		min-width: 0;
	}

	.nfa-wizard__steps {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.custom-competition-builds-hunter {
		grid-template-columns: 1fr;
	}

	.custom-competition-builds-hunter__image {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.custom-competition-builds-scope__topics {
		grid-template-columns: 1fr;
	}

	.nfa-pricing__list {
		grid-template-columns: 1fr;
	}

	.nfa-pricing__item:nth-child(-n+2) {
		border-top: 1px solid rgba(229, 224, 212, 0.1);
	}

	.nfa-pricing__item:first-child {
		border-top: 0;
	}

	.nfa-pricing__item {
		border-left: 0;
	}
}
