:root {
	--bbq-gold: #c39a57;
	--bbq-black: #0f0f0f;
	--bbq-off-white: #eaeaea;
	--bbq-nav-h: 72px;
	--bbq-nav-bg: rgba(15, 15, 15, 0.96);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bbq-black);
	color: var(--bbq-off-white);
	font-family: system-ui, sans-serif;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Arial Narrow", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

[hidden] {
	display: none !important;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header/nav styles are handled by nav.css. Do not override them on front page. */

.bbq-front {
	max-width: none;
	margin: 0;
	padding: 0;
}

.bbq-hero-section {
	position: relative;
	min-height: 100svh;
	padding-top: var(--bbq-nav-h);
	background: #090909;
	overflow: clip;
}

.bbq-hero-bg-wrap,
.bbq-hero-bg,
.bbq-hero-bg__img,
.bbq-hero-overlay,
.bbq-hero-grid-lines {
	position: absolute;
	inset: 0;
}

.bbq-hero-bg--thumb .bbq-hero-bg__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bbq-hero-bg {
	overflow: hidden;
}

.bbq-hero-bg--thumb picture,
.bbq-hero-bg--fallback picture {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bbq-hero-bg--thumb .bbq-hero-bg__img,
.bbq-hero-bg--fallback .bbq-hero-bg__img,
.bbq-hero-bg--video .bbq-hero-bg__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bbq-hero-bg--fallback {
	background:
		radial-gradient(circle at 20% 20%, rgba(195, 154, 87, 0.16), transparent 35%),
		linear-gradient(180deg, #131313 0%, #090909 100%);
}

.bbq-hero-bg--video .bbq-hero-bg__img,
.bbq-hero-bg--fallback .bbq-hero-bg__img {
	filter: contrast(1.05) brightness(0.55);
}

.bbq-hero-section--has-thumb .bbq-hero-bg--fallback {
	display: none;
}

.bbq-hero-overlay {
	background: linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, rgba(7, 7, 7, 0.72) 100%);
}

.bbq-hero-grid-lines {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	opacity: 0.28;
}

.bbq-hero-content {
	position: relative;
	z-index: 2;
	min-height: calc(100svh - var(--bbq-nav-h));
	display: flex;
	align-items: center;
}

.bbq-hero-inner {
	width: min(1320px, calc(100% - 48px));
	margin: 0 auto;
	padding: 48px 0 72px;
}

.bbq-hero-label {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--bbq-gold);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bbq-hero-title {
	max-width: 11ch;
	font-size: clamp(3rem, 8vw, 6.2rem);
	line-height: 0.92;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.bbq-hero-title span {
	color: var(--bbq-gold);
}

.bbq-hero-desc {
	max-width: 46rem;
	margin: 24px 0 0;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.7;
	color: rgba(234, 234, 234, 0.9);
}

.bbq-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.bbq-btn-tech,
.bbq-btn-tech--outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.9rem 1.35rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bbq-btn-tech {
	background: var(--bbq-gold);
	color: #111;
}

.bbq-btn-tech--outline {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--bbq-off-white);
	background: transparent;
}

@media (max-width: 991px) {
	.bbq-hero-inner {
		width: min(100% - 32px, 760px);
		padding: 36px 0 56px;
	}
}
