/* ==========================================================================
   Brewed Awakening Theme — Main Stylesheet v2.0
   Dark botanical meets modern artisan
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--ba-shadow-sm: 0 1px 2px rgba(0,0,0,.2), 0 4px 8px rgba(0,0,0,.15);
	--ba-shadow-md: 0 4px 12px rgba(0,0,0,.25), 0 16px 40px rgba(0,0,0,.2);
	--ba-shadow-lg: 0 8px 24px rgba(0,0,0,.3), 0 24px 80px rgba(0,0,0,.35);
	--ba-shadow-xl: 0 12px 32px rgba(0,0,0,.35), 0 40px 100px rgba(0,0,0,.4), 0 0 0 1px rgba(201,169,110,.04);
	--ba-shadow-amber: 0 4px 30px rgba(201,169,110,.08), 0 0 80px rgba(201,169,110,.04);
	--ba-shadow-glow: 0 0 30px rgba(201,169,110,.12), 0 0 60px rgba(201,169,110,.06);
	--ba-shadow-glow-strong: 0 0 40px rgba(201,169,110,.2), 0 0 80px rgba(201,169,110,.08);

	--ba-transition-fast: 150ms cubic-bezier(.4,0,.2,1);
	--ba-transition: 300ms cubic-bezier(.4,0,.2,1);
	--ba-transition-slow: 600ms cubic-bezier(.16,1,.3,1);
	--ba-transition-spring: 500ms cubic-bezier(.34,1.56,.64,1);
	--ba-transition-smooth: 800ms cubic-bezier(.25,.46,.45,.94);

	--ba-header-height: 80px;
	--ba-header-height-scrolled: 64px;
	--ba-border-radius: 3px;
	--ba-border-radius-lg: 8px;
	--ba-content-max: 1200px;
	--ba-content-narrow: 780px;

	--ba-border-brass: 1px solid var(--wp--preset--color--amber);
	--ba-border-subtle: 1px solid rgba(201,169,110,.15);
	--ba-border-faint: 1px solid rgba(201,169,110,.06);
	--ba-border-glass: 1px solid rgba(255,255,255,.06);

	--ba-z-header: 1000;
	--ba-z-overlay: 900;
	--ba-z-mobile-menu: 950;
	--ba-z-cursor: 9999;

	--ba-grain-opacity: .035;
	--ba-glass-bg: rgba(26,23,20,.6);
	--ba-glass-blur: 20px;
}


/* --------------------------------------------------------------------------
   1. Base Resets & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scrollbar-color: var(--wp--preset--color--amber) var(--wp--preset--color--deep-roast);
	scrollbar-width: thin;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--wp--preset--color--midnight); }
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(201,169,110,.5), rgba(184,115,51,.4));
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--wp--preset--color--amber), var(--wp--preset--color--copper));
}

::selection {
	background: rgba(201,169,110,.3);
	color: var(--wp--preset--color--warm-white);
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background-color: var(--wp--preset--color--midnight);
	color: var(--wp--preset--color--cream);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 300;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	cursor: none;
}

/* Film grain overlay on body */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
	opacity: var(--ba-grain-opacity);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 256px;
	mix-blend-mode: overlay;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--wp--preset--color--amber);
	text-decoration: none;
	transition: color var(--ba-transition);
}

a:hover {
	color: var(--wp--preset--color--copper);
}

p {
	margin-top: 0;
}

h1, h2, h3 {
	font-family: var(--wp--preset--font-family--sunday-delight);
	color: var(--wp--preset--color--cream);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0.01em;
}

h4, h5, h6 {
	font-family: var(--wp--preset--font-family--dm-serif);
	color: var(--wp--preset--color--cream);
	font-weight: 400;
	line-height: 1.3;
}

strong, b {
	font-weight: 500;
	color: var(--wp--preset--color--ivory);
}

blockquote {
	font-family: var(--wp--preset--font-family--dm-serif);
	font-style: italic;
	color: var(--wp--preset--color--cream);
	border-left: 3px solid rgba(201,169,110,.3);
	padding-left: 1.5rem;
	position: relative;
}

blockquote::before {
	content: "\201C";
	position: absolute;
	top: -0.5rem;
	left: -0.25rem;
	font-size: 4rem;
	color: rgba(201,169,110,.15);
	font-family: var(--wp--preset--font-family--dm-serif);
	line-height: 1;
}

hr {
	border: none;
	border-top: var(--ba-border-subtle);
	margin: 3rem 0;
}


/* --------------------------------------------------------------------------
   2. Custom Cursor
   -------------------------------------------------------------------------- */
.ba-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid rgba(201,169,110,.5);
	pointer-events: none;
	z-index: var(--ba-z-cursor);
	transition: width .3s cubic-bezier(.16,1,.3,1),
				height .3s cubic-bezier(.16,1,.3,1),
				border-color .3s,
				background .3s,
				opacity .3s;
	transform: translate(-50%, -50%);
	mix-blend-mode: difference;
	opacity: 0;
}

.ba-cursor.is-visible { opacity: 1; }

.ba-cursor.is-hovering {
	width: 56px;
	height: 56px;
	border-color: rgba(201,169,110,.8);
	background: rgba(201,169,110,.08);
}

.ba-cursor.is-clicking {
	width: 24px;
	height: 24px;
	border-color: var(--wp--preset--color--amber);
}

.ba-cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--wp--preset--color--amber);
	border-radius: 50%;
	pointer-events: none;
	z-index: var(--ba-z-cursor);
	transform: translate(-50%, -50%);
	mix-blend-mode: difference;
	opacity: 0;
}

.ba-cursor-dot.is-visible { opacity: 1; }


/* --------------------------------------------------------------------------
   3. Scroll Progress Indicator
   -------------------------------------------------------------------------- */
.ba-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: linear-gradient(90deg, var(--wp--preset--color--amber), var(--wp--preset--color--copper), var(--wp--preset--color--amber));
	background-size: 200% 100%;
	animation: progressShimmer 3s ease-in-out infinite;
	z-index: calc(var(--ba-z-header) + 1);
	transition: width 100ms linear;
}

@keyframes progressShimmer {
	0%, 100% { background-position: 0% center; }
	50% { background-position: 100% center; }
}


/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header,
.wp-block-template-part[data-slug="header"] {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--ba-z-header);
	height: var(--ba-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	background: transparent;
	transition:
		background var(--ba-transition-slow),
		height var(--ba-transition),
		backdrop-filter var(--ba-transition);
}

.site-header::after,
.wp-block-template-part[data-slug="header"]::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 5%,
		rgba(201,169,110,.2) 25%,
		rgba(201,169,110,.4) 50%,
		rgba(201,169,110,.2) 75%,
		transparent 95%
	);
	opacity: 0;
	transition: opacity var(--ba-transition-slow);
}

.header-scrolled .site-header,
.header-scrolled .wp-block-template-part[data-slug="header"] {
	background: rgba(15,15,15,.85);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	height: var(--ba-header-height-scrolled);
}

.header-scrolled .site-header::after,
.header-scrolled .wp-block-template-part[data-slug="header"]::after {
	opacity: 1;
}

.site-header .custom-logo-link,
.site-header .wp-block-site-logo a {
	display: flex;
	align-items: center;
	height: 48px;
	transition: opacity var(--ba-transition), transform var(--ba-transition);
}

.site-header .custom-logo-link:hover,
.site-header .wp-block-site-logo a:hover {
	transform: scale(1.02);
}

.site-header .custom-logo,
.site-header .wp-block-site-logo img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

.header-scrolled .site-header .custom-logo,
.header-scrolled .site-header .wp-block-site-logo img {
	height: 40px;
}

body {
	padding-top: var(--ba-header-height);
}


/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.primary-navigation,
.wp-block-navigation {
	display: flex;
	align-items: center;
	gap: 0;
}

.primary-navigation ul,
.wp-block-navigation__container {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.15rem;
}

.primary-navigation a,
.wp-block-navigation-item__content {
	display: inline-block;
	position: relative;
	padding: 0.5em 1.1em;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(240,224,200,.7);
	text-decoration: none;
	transition: color var(--ba-transition), letter-spacing var(--ba-transition-slow);
}

.primary-navigation a::after,
.wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--amber), transparent);
	transition: width var(--ba-transition-slow), left var(--ba-transition-slow);
	border-radius: 1px;
}

.primary-navigation a:hover::after,
.wp-block-navigation-item__content:hover::after,
.primary-navigation .current-menu-item a::after,
.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after {
	width: calc(100% - 1.6em);
	left: 0.8em;
}

.primary-navigation a:hover,
.wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--cream);
	letter-spacing: 0.16em;
}

.primary-navigation .current-menu-item a,
.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
	color: var(--wp--preset--color--amber);
}


/* --------------------------------------------------------------------------
   6. Mobile Menu
   -------------------------------------------------------------------------- */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: none;
	padding: 0.5rem;
	z-index: calc(var(--ba-z-mobile-menu) + 10);
	position: relative;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wp--preset--color--cream);
	margin: 6px 0;
	transition: transform var(--ba-transition), opacity var(--ba-transition), background var(--ba-transition);
	transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: rotate(45deg) translate(5.5px, 5.5px);
	background: var(--wp--preset--color--amber);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: rotate(-45deg) translate(5.5px, -5.5px);
	background: var(--wp--preset--color--amber);
}

.wp-block-navigation__responsive-container.is-menu-open {
	background: rgba(15,15,15,.96);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

@media (max-width: 782px) {
	.menu-toggle { display: block; }

	.primary-navigation ul {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		height: 100dvh;
		flex-direction: column;
		gap: 0;
		padding: calc(var(--ba-header-height) + 2rem) 2rem 2rem;
		background: rgba(15,15,15,.97);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		border-left: var(--ba-border-subtle);
		z-index: var(--ba-z-mobile-menu);
		transition: right var(--ba-transition-slow);
		overflow-y: auto;
	}

	.primary-navigation.is-open ul { right: 0; }

	.primary-navigation a {
		padding: 1em 0;
		font-size: 1rem;
		letter-spacing: 0.08em;
		border-bottom: var(--ba-border-faint);
		width: 100%;
		color: var(--wp--preset--color--cream);
	}

	.primary-navigation a::after {
		left: 0;
		bottom: -1px;
	}

	.primary-navigation a:hover::after,
	.primary-navigation .current-menu-item a::after {
		width: 100%;
		left: 0;
	}
}


/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.brewed-hero,
.wp-block-cover.is-style-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	margin-top: calc(var(--ba-header-height) * -1);
	padding: calc(var(--ba-header-height) + 4rem) 2rem 4rem;
	overflow: hidden;
	text-align: center;
}

.brewed-hero__background {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	transform: translateZ(0);
	will-change: transform;
}

.brewed-hero::before,
.brewed-hero__background::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15,15,15,.7) 0%,
		rgba(15,15,15,.3) 30%,
		rgba(15,15,15,.25) 50%,
		rgba(15,15,15,.45) 70%,
		rgba(15,15,15,.9) 100%
	);
	z-index: 1;
}

/* Amber light spill from above */
.brewed-hero::after {
	content: "";
	position: absolute;
	top: -20%;
	left: 20%;
	right: 20%;
	height: 60%;
	background: radial-gradient(ellipse at center, rgba(201,169,110,.07) 0%, transparent 60%);
	z-index: 2;
	pointer-events: none;
	animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
	0% { opacity: .6; transform: scale(1) translateY(0); }
	100% { opacity: 1; transform: scale(1.1) translateY(-3%); }
}

/* Steam rising effect */
.ba-steam {
	position: absolute;
	bottom: 20%;
	z-index: 2;
	pointer-events: none;
	width: 3px;
	height: 80px;
	opacity: 0;
}

.ba-steam::before,
.ba-steam::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(240,224,200,.12), transparent);
	border-radius: 50%;
	filter: blur(6px);
}

.ba-steam:nth-child(1) { left: 42%; animation: steamRise 5s 0s ease-out infinite; }
.ba-steam:nth-child(2) { left: 48%; animation: steamRise 6s 1.2s ease-out infinite; }
.ba-steam:nth-child(3) { left: 55%; animation: steamRise 5.5s 2.5s ease-out infinite; }

@keyframes steamRise {
	0% { opacity: 0; transform: translateY(0) scaleX(1); }
	15% { opacity: .4; }
	50% { opacity: .2; transform: translateY(-60px) scaleX(1.8); }
	100% { opacity: 0; transform: translateY(-140px) scaleX(3); }
}

.brewed-hero__content {
	position: relative;
	z-index: 3;
	max-width: 900px;
}

.brewed-hero h1 {
	font-family: var(--wp--preset--font-family--sunday-delight);
	font-size: clamp(2.8rem, 7vw, 5.5rem);
	color: var(--wp--preset--color--cream);
	margin-bottom: 0.4em;
	text-shadow: 0 2px 30px rgba(0,0,0,.5), 0 0 80px rgba(201,169,110,.08);
}

/* Hero heading reveal animation */
.brewed-hero h1,
.wp-block-cover.is-style-hero h1 {
	opacity: 0;
	transform: translateY(40px);
	animation: heroReveal 1.2s cubic-bezier(.16,1,.3,1) .3s forwards;
}

.brewed-hero h2,
.brewed-hero .wp-block-heading,
.wp-block-cover .wp-block-cover__inner-container > .wp-block-group > p:first-of-type {
	font-family: var(--wp--preset--font-family--dm-serif);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	color: var(--wp--preset--color--amber);
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 2em;
	opacity: 0;
	transform: translateY(30px);
	animation: heroReveal 1s cubic-bezier(.16,1,.3,1) .6s forwards;
}

/* Hero button reveal */
.brewed-hero .wp-block-buttons,
.wp-block-cover .wp-block-cover__inner-container .wp-block-buttons {
	opacity: 0;
	transform: translateY(20px);
	animation: heroReveal 1s cubic-bezier(.16,1,.3,1) .9s forwards;
}

@keyframes heroReveal {
	to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.ba-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	animation: heroReveal 1s cubic-bezier(.16,1,.3,1) 1.5s forwards;
}

.ba-scroll-indicator span {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: .65rem;
	text-transform: uppercase;
	letter-spacing: .25em;
	color: rgba(201,169,110,.5);
}

.ba-scroll-indicator::after {
	content: "";
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, rgba(201,169,110,.4), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% { transform: scaleY(1); opacity: .4; }
	50% { transform: scaleY(.6); opacity: .8; }
}

.wp-block-cover.is-style-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	text-align: center;
}


/* --------------------------------------------------------------------------
   8. Section Styling
   -------------------------------------------------------------------------- */
.brewed-section {
	padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 4vw, 3rem);
	position: relative;
}

.brewed-section--midnight { background-color: var(--wp--preset--color--midnight); }
.brewed-section--deep-roast { background-color: var(--wp--preset--color--deep-roast); }
.brewed-section--botanical { background-color: var(--wp--preset--color--botanical); }

.wp-block-group.has-midnight-background-color,
.wp-block-group.has-deep-roast-background-color,
.wp-block-group.has-botanical-background-color {
	padding-top: clamp(5rem, 10vw, 10rem);
	padding-bottom: clamp(5rem, 10vw, 10rem);
	position: relative;
}

/* Diagonal section connector */
.ba-section-divider {
	position: relative;
	height: 80px;
	margin-top: -1px;
	overflow: hidden;
}

.ba-section-divider::before {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
}

/* Ambient glow on sections */
.wp-block-group.has-botanical-background-color::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 200px;
	background: radial-gradient(ellipse at center top, rgba(45,90,63,.2) 0%, transparent 70%);
	pointer-events: none;
}

.wp-block-group.has-deep-roast-background-color::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 200px;
	background: radial-gradient(ellipse at center top, rgba(201,169,110,.04) 0%, transparent 70%);
	pointer-events: none;
}

/* Decorative section heading treatment */
.wp-block-group .wp-block-heading.has-sunday-delight-font-family {
	position: relative;
}

.wp-block-group .wp-block-heading.has-sunday-delight-font-family.has-text-align-center::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--amber), transparent);
	margin: 0.6em auto 0;
	border-radius: 1px;
}


/* --------------------------------------------------------------------------
   9. Glass Morphism Cards (Botanical Card upgrade)
   -------------------------------------------------------------------------- */
.botanical-card,
.is-style-botanical-card {
	position: relative;
	background: var(--ba-glass-bg);
	backdrop-filter: blur(var(--ba-glass-blur)) saturate(1.3);
	-webkit-backdrop-filter: blur(var(--ba-glass-blur)) saturate(1.3);
	border: var(--ba-border-glass);
	border-radius: var(--ba-border-radius-lg);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	overflow: hidden;
	transition:
		transform var(--ba-transition-slow),
		box-shadow var(--ba-transition-slow),
		border-color var(--ba-transition);
}

/* Traveling light border effect */
.botanical-card::before,
.is-style-botanical-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: conic-gradient(
		from var(--ba-border-angle, 0deg),
		transparent 40%,
		rgba(201,169,110,.3) 50%,
		transparent 60%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
	to { --ba-border-angle: 360deg; }
}

@property --ba-border-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

/* Inner glow on hover */
.botanical-card::after,
.is-style-botanical-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
		rgba(201,169,110,.06) 0%,
		transparent 40%
	);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--ba-transition);
}

.botanical-card:hover::after,
.is-style-botanical-card:hover::after {
	opacity: 1;
}

.botanical-card:hover,
.is-style-botanical-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: var(--ba-shadow-xl);
	border-color: rgba(201,169,110,.2);
}

.botanical-card img {
	margin-bottom: 1.5rem;
	border-radius: var(--ba-border-radius);
	filter: brightness(0.9) contrast(1.05) saturate(1.1);
	transition: filter var(--ba-transition), transform var(--ba-transition-slow);
}

.botanical-card:hover img {
	filter: brightness(1) contrast(1.05) saturate(1.1);
	transform: scale(1.02);
}


/* --------------------------------------------------------------------------
   10. Menu Board
   -------------------------------------------------------------------------- */
.menu-board,
.is-style-menu-board {
	background: var(--ba-glass-bg);
	backdrop-filter: blur(var(--ba-glass-blur));
	-webkit-backdrop-filter: blur(var(--ba-glass-blur));
	border: var(--ba-border-glass);
	border-radius: var(--ba-border-radius-lg);
	padding: clamp(2rem, 4vw, 3.5rem);
	position: relative;
}

.menu-board::before,
.is-style-menu-board::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	bottom: 14px;
	border: var(--ba-border-subtle);
	border-radius: calc(var(--ba-border-radius-lg) - 4px);
	pointer-events: none;
}

.menu-board__heading,
.is-style-menu-board > .wp-block-column:first-child > h2,
.is-style-menu-board > .wp-block-column:first-child > h3 {
	font-family: var(--wp--preset--font-family--sunday-delight);
	color: var(--wp--preset--color--amber);
	text-align: center;
	margin-bottom: 2rem;
}

.menu-board__heading::after {
	content: "";
	display: block;
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--amber), transparent);
	margin: 1rem auto 0;
}

.menu-board__item,
.menu-item-row {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.75em 0;
	border-bottom: var(--ba-border-faint);
	transition: padding-left var(--ba-transition);
}

.menu-board__item:hover,
.menu-item-row:hover {
	padding-left: 4px;
}

.menu-board__item:last-child,
.menu-item-row:last-child { border-bottom: none; }

.menu-board__name,
.menu-item-name {
	font-family: var(--wp--preset--font-family--dm-serif);
	color: var(--wp--preset--color--ivory);
	font-size: 1.05rem;
	white-space: nowrap;
	transition: color var(--ba-transition);
}

.menu-board__item:hover .menu-board__name,
.menu-item-row:hover .menu-item-name {
	color: var(--wp--preset--color--amber);
}

.menu-board__description,
.menu-item-description {
	font-size: var(--wp--preset--font-size--small);
	color: rgba(240,224,200,.5);
	font-style: italic;
}

.menu-board__dots,
.menu-item-dots {
	flex: 1;
	border-bottom: 1px dotted rgba(201,169,110,.2);
	margin: 0 0.25rem;
	min-width: 2rem;
	position: relative;
	top: -4px;
}

.menu-board__price,
.menu-item-price {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 500;
	color: var(--wp--preset--color--amber);
	white-space: nowrap;
}

.menu-board__divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 2rem 0 1.5rem;
	color: var(--wp--preset--color--amber);
	font-family: var(--wp--preset--font-family--dm-serif);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.menu-board__divider::before,
.menu-board__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,.25), transparent);
}


/* --------------------------------------------------------------------------
   11. Buttons — Upgraded
   -------------------------------------------------------------------------- */
.wp-block-button__link,
.brewed-btn {
	display: inline-block;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding: 1em 2.4em;
	border: 2px solid transparent;
	border-radius: 0;
	cursor: none;
	text-decoration: none;
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		color var(--ba-transition),
		border-color var(--ba-transition),
		box-shadow var(--ba-transition),
		transform var(--ba-transition-fast),
		letter-spacing var(--ba-transition-slow);
}

/* Sweep fill on hover */
.wp-block-button__link::before,
.brewed-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	transition: transform var(--ba-transition-slow);
}

/* Solid amber button */
.wp-block-button:not(.is-style-brass-outline) .wp-block-button__link,
.brewed-btn--primary {
	background: linear-gradient(135deg, var(--wp--preset--color--amber), var(--wp--preset--color--copper));
	color: var(--wp--preset--color--midnight);
	border-color: transparent;
}

.wp-block-button:not(.is-style-brass-outline) .wp-block-button__link::before,
.brewed-btn--primary::before {
	background: linear-gradient(135deg, var(--wp--preset--color--copper), #a06020);
	transform: scaleX(0);
	transform-origin: right;
}

.wp-block-button:not(.is-style-brass-outline) .wp-block-button__link:hover,
.brewed-btn--primary:hover {
	color: var(--wp--preset--color--warm-white);
	box-shadow: 0 4px 20px rgba(201,169,110,.35), 0 0 60px rgba(201,169,110,.1);
	transform: translateY(-2px);
	letter-spacing: 0.18em;
}

.wp-block-button:not(.is-style-brass-outline) .wp-block-button__link:hover::before,
.brewed-btn--primary:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.wp-block-button:not(.is-style-brass-outline) .wp-block-button__link:active,
.brewed-btn--primary:active {
	transform: translateY(0) scale(.98);
	box-shadow: 0 2px 10px rgba(201,169,110,.25);
}

/* Brass Outline variant */
.is-style-brass-outline .wp-block-button__link,
.brewed-btn--outline {
	background: transparent;
	color: var(--wp--preset--color--amber);
	border: 2px solid rgba(201,169,110,.4);
}

.is-style-brass-outline .wp-block-button__link::before,
.brewed-btn--outline::before {
	background: rgba(201,169,110,.08);
	transform: scaleY(0);
	transform-origin: bottom;
}

.is-style-brass-outline .wp-block-button__link:hover,
.brewed-btn--outline:hover {
	color: var(--wp--preset--color--cream);
	border-color: var(--wp--preset--color--amber);
	box-shadow: 0 0 30px rgba(201,169,110,.12), inset 0 0 30px rgba(201,169,110,.04);
	transform: translateY(-2px);
	letter-spacing: 0.18em;
}

.is-style-brass-outline .wp-block-button__link:hover::before,
.brewed-btn--outline:hover::before {
	transform: scaleY(1);
	transform-origin: top;
}

.is-style-brass-outline .wp-block-button__link:active,
.brewed-btn--outline:active {
	transform: translateY(0);
}


/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer,
.wp-block-template-part[data-slug="footer"] {
	background: var(--wp--preset--color--deep-roast);
	position: relative;
	overflow: hidden;
}

/* Gradient border top */
.site-footer::before,
.wp-block-template-part[data-slug="footer"]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 10%,
		rgba(201,169,110,.3) 30%,
		rgba(201,169,110,.5) 50%,
		rgba(201,169,110,.3) 70%,
		transparent 90%
	);
}

/* Ambient glow */
.site-footer::after,
.wp-block-template-part[data-slug="footer"]::after {
	content: "";
	position: absolute;
	top: 0;
	left: 25%;
	right: 25%;
	height: 180px;
	background: radial-gradient(ellipse at center top, rgba(201,169,110,.04) 0%, transparent 70%);
	pointer-events: none;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 3rem;
	padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
	max-width: var(--ba-content-max);
	margin: 0 auto;
}

.footer-content h4,
.brewed-footer-widget__title {
	font-family: var(--wp--preset--font-family--dm-serif);
	color: var(--wp--preset--color--amber);
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	position: relative;
}

.footer-content h4::after,
.brewed-footer-widget__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--wp--preset--color--amber), transparent);
	border-radius: 1px;
}

.footer-content a {
	color: rgba(240,224,200,.6);
	font-size: 0.9rem;
	transition: color var(--ba-transition), padding-left var(--ba-transition), letter-spacing var(--ba-transition);
	display: inline-block;
}

.footer-content a:hover {
	color: var(--wp--preset--color--amber);
	padding-left: 6px;
}

.footer-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-content li {
	margin-bottom: 0.7rem;
}

.footer-leaf {
	position: relative;
	padding-left: 1.5rem;
}

.footer-leaf::before {
	content: "\2767";
	position: absolute;
	left: 0;
	top: 0;
	color: rgba(201,169,110,.3);
	font-size: 0.8rem;
}

.footer-bottom {
	border-top: var(--ba-border-faint);
	padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
	text-align: center;
	font-size: var(--wp--preset--font-size--small);
	color: rgba(240,224,200,.35);
	letter-spacing: .04em;
}

.footer-bottom a {
	color: rgba(201,169,110,.5);
}

.footer-bottom a:hover {
	color: var(--wp--preset--color--amber);
}


/* --------------------------------------------------------------------------
   13. Block Style Implementations
   -------------------------------------------------------------------------- */

/* --- Brick Panel --- */
.is-style-brick-panel {
	position: relative;
	background-color: var(--wp--preset--color--deep-roast);
	padding: clamp(2rem, 4vw, 3.5rem);
	overflow: hidden;
	border-radius: var(--ba-border-radius-lg);
}

.is-style-brick-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 28px,
			rgba(139,94,60,.05) 28px,
			rgba(139,94,60,.05) 30px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 58px,
			rgba(139,94,60,.03) 58px,
			rgba(139,94,60,.03) 60px
		);
	background-size: 60px 30px;
	opacity: .6;
	pointer-events: none;
}

.is-style-brick-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 30%, rgba(15,15,15,.35) 100%);
	pointer-events: none;
}

.is-style-brick-panel > * {
	position: relative;
	z-index: 1;
}

/* --- Brass Ornament (separator) --- */
.is-style-brass-ornament {
	border: none !important;
	text-align: center;
	overflow: visible;
	height: auto;
	opacity: 1 !important;
	background: none !important;
	position: relative;
	padding: 2rem 0;
}

.is-style-brass-ornament::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(201,169,110,.25) 25%,
		rgba(201,169,110,.25) 45%,
		transparent 48%,
		transparent 52%,
		rgba(201,169,110,.25) 55%,
		rgba(201,169,110,.25) 75%,
		transparent
	);
}

.is-style-brass-ornament::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: var(--wp--preset--color--amber);
	transform: translate(-50%, -50%) rotate(45deg);
	box-shadow: 0 0 12px rgba(201,169,110,.3), 0 0 24px rgba(201,169,110,.1);
}

/* --- Brass Frame (image) --- */
.is-style-brass-frame {
	border: 3px solid rgba(201,169,110,.5) !important;
	padding: 6px !important;
	background: var(--wp--preset--color--deep-roast);
	position: relative;
	border-radius: var(--ba-border-radius);
}

.is-style-brass-frame::before {
	content: "";
	position: absolute;
	inset: -1px;
	border: 1px solid rgba(201,169,110,.1);
	border-radius: inherit;
	pointer-events: none;
}

.is-style-brass-frame img {
	display: block;
	width: 100%;
}


/* --------------------------------------------------------------------------
   14. Decorative Dividers
   -------------------------------------------------------------------------- */
.brewed-divider {
	position: relative;
	text-align: center;
	padding: 3rem 0;
	overflow: visible;
}

.brewed-divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 15%;
	right: 15%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(201,169,110,.2) 20%,
		rgba(201,169,110,.2) 40%,
		transparent 48%,
		transparent 52%,
		rgba(201,169,110,.2) 60%,
		rgba(201,169,110,.2) 80%,
		transparent
	);
}

.brewed-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 18px;
	height: 24px;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at 50% 40%,
		var(--wp--preset--color--amber) 0%,
		rgba(184,115,51,.8) 100%
	);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.15),
		0 0 16px rgba(201,169,110,.25);
}

.brewed-divider .bean-slit {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 14px;
	background: rgba(15,15,15,.5);
	z-index: 1;
	border-radius: 1px;
}


/* --------------------------------------------------------------------------
   15. Animations — Upgraded
   -------------------------------------------------------------------------- */

/* Fade in up — base for scroll reveals */
.ba-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition:
		opacity 0.8s cubic-bezier(.16,1,.3,1),
		transform 0.8s cubic-bezier(.16,1,.3,1);
}

.ba-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Legacy class support */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s cubic-bezier(.16,1,.3,1),
		transform 0.8s cubic-bezier(.16,1,.3,1);
}

.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children — cleaner system */
.ba-stagger > * {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.7s cubic-bezier(.16,1,.3,1),
		transform 0.7s cubic-bezier(.16,1,.3,1);
}

.ba-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.ba-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.ba-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.ba-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.ba-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.ba-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* Legacy stagger support */
.fade-in-up.is-visible:nth-child(2) { transition-delay: 100ms; }
.fade-in-up.is-visible:nth-child(3) { transition-delay: 200ms; }
.fade-in-up.is-visible:nth-child(4) { transition-delay: 300ms; }
.fade-in-up.is-visible:nth-child(5) { transition-delay: 400ms; }
.fade-in-up.is-visible:nth-child(6) { transition-delay: 500ms; }

/* Slide in from sides */
.ba-slide-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.ba-slide-right {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.ba-slide-left.is-visible,
.ba-slide-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Scale reveal */
.ba-scale-in {
	opacity: 0;
	transform: scale(.9);
	transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.ba-scale-in.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Brass shimmer */
@keyframes brassShimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

.brass-shimmer {
	background: linear-gradient(
		120deg,
		rgba(201,169,110,.3) 0%,
		rgba(201,169,110,.7) 25%,
		rgba(184,115,51,.5) 50%,
		rgba(201,169,110,.3) 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: brassShimmer 4s ease-in-out infinite;
}

/* Glow pulse */
@keyframes glowPulse {
	0%, 100% { box-shadow: 0 0 10px rgba(201,169,110,.04); }
	50% { box-shadow: 0 0 25px rgba(201,169,110,.1); }
}

.glow-pulse { animation: glowPulse 4s ease-in-out infinite; }

/* Float */
@keyframes floatGentle {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.float-gentle { animation: floatGentle 6s ease-in-out infinite; }

/* Text glow */
@keyframes textGlow {
	0%, 100% { text-shadow: 0 0 20px rgba(201,169,110,.1); }
	50% { text-shadow: 0 0 40px rgba(201,169,110,.2), 0 0 80px rgba(201,169,110,.05); }
}

.ba-text-glow { animation: textGlow 4s ease-in-out infinite; }


/* --------------------------------------------------------------------------
   16. Marquee / Scrolling Text Banner
   -------------------------------------------------------------------------- */
.ba-marquee {
	overflow: hidden;
	white-space: nowrap;
	padding: 1.2rem 0;
	border-top: var(--ba-border-faint);
	border-bottom: var(--ba-border-faint);
	background: rgba(201,169,110,.02);
}

.ba-marquee__inner {
	display: inline-flex;
	animation: marqueeScroll 30s linear infinite;
}

.ba-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 2rem;
	padding: 0 2rem;
	font-family: var(--wp--preset--font-family--dm-serif);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: .2em;
	color: rgba(201,169,110,.4);
}

.ba-marquee__item::after {
	content: "\2726";
	font-size: .6em;
	color: rgba(201,169,110,.25);
}

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}


/* --------------------------------------------------------------------------
   17. Tilt Card Effect
   -------------------------------------------------------------------------- */
.ba-tilt {
	transform-style: preserve-3d;
	perspective: 1000px;
}

.ba-tilt-inner {
	transition: transform var(--ba-transition-slow);
	transform-style: preserve-3d;
}

.ba-tilt:hover .ba-tilt-inner {
	transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.ba-tilt .ba-tilt-shine {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		var(--tilt-angle, 135deg),
		rgba(201,169,110,.08) 0%,
		transparent 60%
	);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--ba-transition);
}

.ba-tilt:hover .ba-tilt-shine { opacity: 1; }


/* --------------------------------------------------------------------------
   18. Utility Classes
   -------------------------------------------------------------------------- */
.text-amber { color: var(--wp--preset--color--amber); }
.text-copper { color: var(--wp--preset--color--copper); }
.text-cream { color: var(--wp--preset--color--cream); }
.text-center { text-align: center; }
.font-display { font-family: var(--wp--preset--font-family--sunday-delight); }
.font-serif { font-family: var(--wp--preset--font-family--dm-serif); }

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

/* Glow highlight for important text */
.ba-highlight {
	position: relative;
	display: inline;
}

.ba-highlight::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: -4px;
	right: -4px;
	height: 40%;
	background: linear-gradient(90deg, rgba(201,169,110,.1), rgba(201,169,110,.2), rgba(201,169,110,.1));
	z-index: -1;
	border-radius: 2px;
}


/* --------------------------------------------------------------------------
   19. WordPress Block Refinements
   -------------------------------------------------------------------------- */
.wp-block-columns {
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.wp-block-gallery {
	gap: 0.5rem;
}

.wp-block-gallery .wp-block-image img {
	border-radius: var(--ba-border-radius);
}

.wp-block-code {
	background: rgba(15,15,15,.8);
	border: var(--ba-border-faint);
	border-left: 3px solid var(--wp--preset--color--amber);
	padding: 1.5rem;
	font-size: 0.875rem;
	overflow-x: auto;
	border-radius: var(--ba-border-radius);
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
}

.wp-block-table td,
.wp-block-table th {
	border: var(--ba-border-faint);
	padding: 0.75rem 1rem;
}

.wp-block-table thead {
	background: rgba(201,169,110,.06);
}

.wp-block-table th {
	font-family: var(--wp--preset--font-family--dm-serif);
	color: var(--wp--preset--color--amber);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--wp--preset--font-size--small);
}

.wp-block-table tbody tr {
	transition: background var(--ba-transition);
}

.wp-block-table tbody tr:hover {
	background: rgba(201,169,110,.03);
}

/* Separator refinement */
.wp-block-separator {
	opacity: 1;
}

.wp-block-separator:not(.is-style-brass-ornament) {
	border-top: var(--ba-border-subtle);
}


/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 782px) {
	.brewed-hero__background {
		background-attachment: scroll;
	}

	.brewed-hero h1 {
		font-size: clamp(2rem, 9vw, 3.2rem);
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.is-style-menu-board::before {
		top: 8px;
		left: 8px;
		right: 8px;
		bottom: 8px;
	}

	body {
		cursor: auto;
	}

	.ba-cursor,
	.ba-cursor-dot {
		display: none !important;
	}
}

@media (max-width: 600px) {
	:root {
		--ba-header-height: 64px;
		--ba-header-height-scrolled: 56px;
	}

	.site-header .custom-logo,
	.site-header .wp-block-site-logo img {
		height: 36px;
	}

	.header-scrolled .site-header .custom-logo,
	.header-scrolled .site-header .wp-block-site-logo img {
		height: 32px;
	}

	.menu-board__item,
	.menu-item-row {
		flex-wrap: wrap;
	}

	.menu-board__dots,
	.menu-item-dots {
		display: none;
	}

	.menu-board__price,
	.menu-item-price {
		width: 100%;
		text-align: right;
		margin-top: -0.25rem;
		padding-bottom: 0.25rem;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.brewed-hero__background {
		background-attachment: scroll;
	}

	.ba-reveal,
	.fade-in-up,
	.ba-slide-left,
	.ba-slide-right,
	.ba-scale-in {
		opacity: 1;
		transform: none;
	}

	.ba-stagger > * {
		opacity: 1;
		transform: none;
	}

	.brewed-hero h1,
	.brewed-hero h2,
	.brewed-hero .wp-block-heading,
	.brewed-hero .wp-block-buttons,
	.wp-block-cover .wp-block-cover__inner-container > .wp-block-group > p:first-of-type,
	.wp-block-cover .wp-block-cover__inner-container .wp-block-buttons,
	.wp-block-cover.is-style-hero h1 {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.ba-scroll-indicator {
		opacity: 1;
		animation: none;
	}

	body { cursor: auto; }
	.ba-cursor, .ba-cursor-dot { display: none !important; }
}


/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */
@media print {
	.site-header,
	.menu-toggle,
	.site-footer,
	.ba-cursor,
	.ba-cursor-dot,
	.ba-scroll-progress,
	.ba-scroll-indicator {
		display: none;
	}

	body {
		background: #fff;
		color: #1a1714;
		padding-top: 0;
	}

	body::after { display: none; }

	a {
		color: #1a1714;
		text-decoration: underline;
	}
}
