@font-face {
	font-family: 'Noyh Black';
	src:
		local('Noyh Black'),
		url('/Noyh-Black.ttf') format('truetype');
	font-style: normal;
	font-weight: 900;
	font-display: swap;
}

:root {
	--brand-blue: #2aa9e0;
	--brand-pink: #eb71a6;
	--brand-yellow: #fece00;
	--brand-white: #ffffff;
	--brand-cream: #f4ede8;
	--brand-ink: #121212;
	--brand-shadow: rgba(18, 18, 18, 0.22);
	--surface-white: rgba(255, 255, 255, 0.92);
	--surface-border: rgba(255, 255, 255, 0.88);
	--surface-muted: rgba(255, 255, 255, 0.12);
	--site-max-width: 1120px;
	--site-gutter: clamp(20px, 3vw, 32px);
	--header-offset: 112px;
	--font-heading: 'Noyh Black', 'The Bold Font', 'Noyh', 'Montserrat', 'Arial Black', sans-serif;
	--font-display: 'The Bold Font', 'Noyh', 'Montserrat', 'Arial Black', sans-serif;
	--font-body: 'Noyh', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
	--shadow-soft: 0 20px 60px rgba(18, 18, 18, 0.16);
}

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

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

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background-color: var(--brand-blue);
	color: var(--brand-white);
	font-family: var(--font-display);
	text-rendering: optimizeLegibility;
}

body.menu-lock {
	overflow: hidden;
}

body.age-gate-lock {
	overflow: hidden;
}

body.page-home {
	background:
		radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58) 0, transparent 42%),
		radial-gradient(circle at 82% 28%, rgba(254, 206, 0, 0.48) 0, transparent 46%),
		radial-gradient(circle at 12% 88%, rgba(235, 113, 166, 0.43) 0, transparent 44%),
		linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-pink) 52%, var(--brand-blue) 100%);
}

body.page-taprooms {
	background:
		radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58) 0, transparent 42%),
		radial-gradient(circle at 82% 28%, rgba(254, 206, 0, 0.42) 0, transparent 44%),
		radial-gradient(circle at 12% 88%, rgba(235, 113, 166, 0.46) 0, transparent 44%),
		linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-pink) 52%, var(--brand-blue) 100%);
}

body.page-beers {
	background:
		radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.62) 0, transparent 34%),
		linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-pink) 55%, var(--brand-blue) 100%);
}

body.page-history {
	background:
		radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.47) 0, transparent 38%),
		linear-gradient(160deg, var(--brand-pink) 0%, var(--brand-blue) 65%, var(--brand-pink) 100%);
}

body.page-about {
	background:
		radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.56) 0, transparent 34%),
		radial-gradient(circle at 84% 18%, rgba(254, 206, 0, 0.2) 0, transparent 28%),
		radial-gradient(circle at 78% 84%, rgba(235, 113, 166, 0.3) 0, transparent 34%),
		linear-gradient(155deg, rgba(17, 46, 94, 1) 0%, rgba(42, 169, 224, 1) 42%, rgba(235, 113, 166, 0.92) 100%);
}

body.page-contact {
	background:
		radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.5) 0, transparent 34%),
		radial-gradient(circle at 86% 20%, rgba(254, 206, 0, 0.38) 0, transparent 30%),
		radial-gradient(circle at 74% 78%, rgba(235, 113, 166, 0.34) 0, transparent 34%),
		linear-gradient(155deg, rgba(22, 84, 146, 1) 0%, rgba(42, 169, 224, 1) 46%, rgba(18, 32, 68, 1) 100%);
}

body.page-events {
	background:
		radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.56) 0, transparent 34%),
		radial-gradient(circle at 84% 18%, rgba(254, 206, 0, 0.3) 0, transparent 30%),
		radial-gradient(circle at 78% 82%, rgba(235, 113, 166, 0.34) 0, transparent 34%),
		linear-gradient(155deg, rgba(12, 34, 74, 1) 0%, rgba(42, 169, 224, 1) 44%, rgba(235, 113, 166, 0.94) 100%);
}

body.page-visit {
	background:
		radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.52) 0, transparent 36%),
		linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-yellow) 45%, var(--brand-pink) 100%);
}

body.page-clients {
	background:
		radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.56) 0, transparent 34%),
		radial-gradient(circle at 82% 22%, rgba(254, 206, 0, 0.28) 0, transparent 32%),
		linear-gradient(165deg, rgba(15, 32, 70, 1) 0%, rgba(42, 169, 224, 1) 46%, rgba(235, 113, 166, 1) 100%);
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
}

iframe {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

main {
	display: block;
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.section-title {
	font-family: var(--font-heading) !important;
}

::selection {
	background: rgba(254, 206, 0, 0.7);
	color: var(--brand-ink);
}

.page-shell {
	min-height: 100vh;
	position: relative;
	flex: 1 0 auto;
}

.page-shell--home {
	overflow-x: clip;
}

.page-section {
	width: min(var(--site-max-width), calc(100% - (var(--site-gutter) * 2)));
	margin: 0 auto;
	padding: calc(var(--header-offset) + 28px) 0 56px;
	position: relative;
	z-index: 1;
}

.page-title {
	margin: 0;
	font-size: clamp(32px, 5vw, 56px);
	letter-spacing: 0.06em;
	line-height: 0.96;
	text-transform: uppercase;
}

.page-lead {
	margin: 14px 0 28px;
	max-width: 720px;
	font-family: var(--font-body);
	font-size: clamp(15px, 2vw, 19px);
	line-height: 1.5;
}

.surface-card {
	background: var(--surface-white);
	border: 2px solid var(--surface-border);
	box-shadow: var(--shadow-soft);
	color: var(--brand-ink);
}

.surface-card h2 {
	margin: 0 0 10px;
	font-size: clamp(18px, 2vw, 24px);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.surface-card p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
}

@media (max-width: 760px) {
	.page-section {
		padding-top: calc(var(--header-offset) + 64px);
		padding-bottom: 40px;
	}
}

.age-gate {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.age-gate__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24) 0, transparent 34%),
		radial-gradient(circle at 82% 18%, rgba(254, 206, 0, 0.2) 0, transparent 30%),
		radial-gradient(circle at 50% 88%, rgba(235, 113, 166, 0.24) 0, transparent 42%),
		rgba(8, 12, 26, 0.72);
	backdrop-filter: blur(22px);
}

.age-gate__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 16px;
	width: min(100%, 560px);
	max-height: calc(100dvh - 48px);
	overflow-y: auto;
	padding: clamp(26px, 4vw, 38px);
	border-radius: 30px;
	background:
		radial-gradient(circle at 16% 18%, rgba(42, 169, 224, 0.18) 0%, rgba(42, 169, 224, 0) 32%),
		radial-gradient(circle at 84% 18%, rgba(255, 214, 73, 0.16) 0%, rgba(255, 214, 73, 0) 28%),
		radial-gradient(circle at 50% 86%, rgba(235, 113, 166, 0.2) 0%, rgba(235, 113, 166, 0) 40%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
	border: 1px solid rgba(18, 18, 18, 0.06);
	box-shadow:
		0 28px 80px rgba(6, 9, 18, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
	color: var(--brand-ink);
	text-align: center;
}

.age-gate__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(18, 18, 18, 0.06);
	color: rgba(18, 18, 18, 0.72);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.age-gate__dialog h2 {
	margin: 0;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 0.94;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.age-gate__dialog p {
	margin: 0 auto;
	max-width: 34ch;
	font-family: var(--font-body);
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.65;
	color: rgba(18, 18, 18, 0.68);
}

.age-gate__fine-print {
	max-width: 42ch;
	font-size: clamp(10px, 1vw, 11px) !important;
	line-height: 1.45 !important;
	letter-spacing: 0.02em;
	color: rgba(18, 18, 18, 0.54) !important;
}

.age-gate__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}

.age-gate__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border-radius: 999px;
	border: 0;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.age-gate__button:hover {
	transform: translateY(-2px);
}

.age-gate__button--primary {
	background: var(--brand-ink);
	color: var(--brand-white);
}

.age-gate__button--primary:hover {
	background: var(--brand-pink);
}

.age-gate__button--secondary {
	background: rgba(18, 18, 18, 0.08);
	color: rgba(18, 18, 18, 0.84);
}

.age-gate__button--secondary:hover {
	background: rgba(18, 18, 18, 0.12);
}

@media (max-width: 640px) {
	.age-gate {
		place-items: start center;
		padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
	}

	.age-gate__dialog {
		gap: 12px;
		max-height: calc(100dvh - max(24px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
		padding: 20px 16px;
		border-radius: 24px;
	}

	.age-gate__dialog h2 {
		font-size: clamp(30px, 10vw, 42px);
		line-height: 0.98;
	}

	.age-gate__actions {
		flex-direction: column;
	}

	.age-gate__button {
		width: 100%;
		min-height: 48px;
	}
}
