:root {
	--bb-navy: #062a4d;
	--bb-navy-dark: #031b32;
	--bb-red: #c91418;
	--bb-red-dark: #9e0d10;
	--bb-gold: #f5b900;
	--bb-gold-dark: #d79d00;
	--bb-alpine: #b9ddf4;
	--bb-lake: #287eb5;
	--bb-paper: #f8f7f2;
	--bb-ink: #17191c;
	--bb-white: #fff;
	--bb-muted: #637083;
	--bb-border: #dce5eb;
	--bb-shadow: 0 18px 50px rgba(3, 27, 50, .14);
	--bb-radius: 16px;
	--bb-display: "Barlow Condensed", Impact, sans-serif;
	--bb-body: "Inter", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bb-paper);
	color: var(--bb-ink);
	font-family: var(--bb-body);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.bbacc-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--bb-red); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--bb-red-dark); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--bb-gold); outline-offset: 3px; }

h1, h2, h3, h4, h5, h6 {
	color: var(--bb-navy);
	font-family: var(--bb-display);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: .98;
	margin: 0 0 .6em;
	text-wrap: balance;
	text-transform: uppercase;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
p { margin: 0 0 1.2rem; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.bbacc-skip-link {
	background: var(--bb-gold);
	color: var(--bb-navy);
	font-weight: 800;
	left: 1rem;
	padding: .75rem 1rem;
	position: fixed;
	top: -10rem;
	z-index: 9999;
}
.bbacc-skip-link:focus { top: 1rem; }

.bbacc-site-header {
	background: rgba(248, 247, 242, .94);
	border-bottom: 1px solid rgba(6, 42, 77, .08);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	transition: box-shadow .25s ease, background .25s ease;
	z-index: 1000;
}
.bbacc-site-header.is-scrolled {
	background: rgba(248, 247, 242, .985);
	box-shadow: 0 10px 30px rgba(3, 27, 50, .13);
}
.bbacc-header-inner {
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 230px 1fr auto;
	margin: 0 auto;
	max-width: 1500px;
	min-height: 92px;
	padding: .45rem 2rem;
}
.bbacc-brand { display: block; position: relative; z-index: 2; }
.bbacc-brand img,
.bbacc-brand .custom-logo { height: 112px; object-fit: contain; width: auto; }
.bbacc-brand .custom-logo-link { display: block; }
.bbacc-primary-nav { justify-self: end; }
.bbacc-menu {
	align-items: center;
	display: flex;
	gap: clamp(.6rem, 1.6vw, 1.45rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.bbacc-menu > li > a,
.bbacc-mega-trigger {
	background: transparent;
	border: 0;
	color: var(--bb-navy);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--bb-display);
	font-size: .96rem;
	font-weight: 800;
	letter-spacing: .02em;
	padding: 2rem 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
.bbacc-menu > li > a::after,
.bbacc-mega-trigger::after {
	background: var(--bb-red);
	bottom: 1.45rem;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
	width: 100%;
}
.bbacc-menu > li > a:hover::after,
.bbacc-mega-trigger:hover::after,
.bbacc-mega-trigger[aria-expanded="true"]::after { transform: scaleX(1); }
.bbacc-mega-trigger::before { content: "▾"; font-size: .65rem; margin: .05rem .4rem 0 0; order: 2; }
.bbacc-has-mega { position: static; }
.bbacc-mega-menu {
	background: var(--bb-white);
	border-radius: 0 0 18px 18px;
	box-shadow: var(--bb-shadow);
	display: grid;
	gap: 2.25rem;
	grid-template-columns: 1.15fr 1fr .9fr;
	left: 50%;
	max-width: 1160px;
	opacity: 0;
	padding: 1.35rem;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translate(-50%, -8px);
	transition: opacity .2s ease, transform .2s ease;
	visibility: hidden;
	width: calc(100vw - 3rem);
}
.bbacc-mega-trigger[aria-expanded="true"] + .bbacc-mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}
.bbacc-mega-menu > div:not(.bbacc-mega-feature) { padding: 1rem .4rem; }
.bbacc-mega-menu a:not(.bbacc-button) {
	border-bottom: 1px solid var(--bb-border);
	color: var(--bb-navy);
	display: block;
	font-weight: 700;
	padding: .64rem 0;
	text-decoration: none;
}
.bbacc-mega-menu a:not(.bbacc-button):hover { color: var(--bb-red); padding-left: .25rem; }
.bbacc-mega-feature {
	align-content: end;
	background: linear-gradient(180deg, transparent 20%, rgba(3, 27, 50, .88)), var(--mega-image) center/cover;
	border-radius: 12px;
	color: white;
	display: grid;
	min-height: 230px;
	overflow: hidden;
	padding: 1.4rem;
}
.bbacc-mega-feature span { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bbacc-mega-feature strong { font-family: var(--bb-display); font-size: 2rem; line-height: 1; text-transform: uppercase; }
.bbacc-menu-label { color: var(--bb-red); font-family: var(--bb-display); font-size: .95rem; font-weight: 800; letter-spacing: .1em; margin-bottom: .4rem; text-transform: uppercase; }
.bbacc-mega-cta { background: #eef7fc; border-radius: 12px; }

.bbacc-button {
	align-items: center;
	border: 2px solid transparent;
	border-radius: 7px;
	display: inline-flex;
	font-family: var(--bb-display);
	font-size: 1rem;
	font-weight: 800;
	gap: .5rem;
	justify-content: center;
	letter-spacing: .025em;
	line-height: 1;
	min-height: 48px;
	padding: .9rem 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.bbacc-button:hover { box-shadow: 0 10px 24px rgba(3, 27, 50, .18); transform: translateY(-2px); }
.bbacc-button--red { background: var(--bb-red); color: var(--bb-white); }
.bbacc-button--red:hover { background: var(--bb-red-dark); color: var(--bb-white); }
.bbacc-button--gold { background: var(--bb-gold); color: var(--bb-navy); }
.bbacc-button--gold:hover { background: var(--bb-gold-dark); color: var(--bb-navy); }
.bbacc-header-cta { white-space: nowrap; }
.bbacc-menu-toggle { background: transparent; border: 0; display: none; padding: .65rem; }
.bbacc-menu-toggle > span:not(.screen-reader-text) { background: var(--bb-navy); display: block; height: 3px; margin: 5px 0; width: 28px; }

.bbacc-main { min-height: 55vh; }
.bbacc-home-hero {
	align-items: center;
	background: linear-gradient(90deg, rgba(248,247,242,.92) 0%, rgba(248,247,242,.62) 38%, rgba(248,247,242,0) 64%), url("../images/01-hero-red-classic-car.webp") center/cover;
	display: flex;
	min-height: min(760px, calc(100vh - 92px));
	padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - 1380px)/2));
}
.bbacc-home-hero__content { max-width: 650px; }
.bbacc-kicker { color: var(--bb-navy); font-family: var(--bb-display); font-size: 1.1rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.bbacc-home-hero h1 { display: grid; margin: 0; text-shadow: 0 3px 0 rgba(255,255,255,.55); }
.bbacc-home-hero h1 span { color: var(--bb-navy); }
.bbacc-home-hero h1 em { color: var(--bb-red); font-size: .9em; font-style: italic; transform: rotate(-3deg); transform-origin: left; }
.bbacc-home-hero__tagline { border-left: 6px solid var(--bb-gold); color: var(--bb-navy); font-family: var(--bb-display); font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.1; margin: 1rem 0 2rem; padding-left: 1rem; text-transform: uppercase; }
.bbacc-action-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.bbacc-event-facts { background: #d8ebf8; display: grid; grid-template-columns: repeat(5,1fr); padding: 1.2rem max(1.5rem, calc((100vw - 1380px)/2)); }
.bbacc-event-facts > div { align-items: center; border-right: 1px solid rgba(6,42,77,.22); display: grid; gap: 0 .75rem; grid-template-columns: auto 1fr; padding: .4rem 1.1rem; }
.bbacc-event-facts > div:last-child { border: 0; }
.bbacc-event-facts span { color: var(--bb-navy); font-size: 1.7rem; grid-row: 1 / 3; }
.bbacc-event-facts strong { color: var(--bb-navy); font-family: var(--bb-display); font-size: 1.12rem; line-height: 1; text-transform: uppercase; }
.bbacc-event-facts small { color: #29435e; }
.bbacc-home-section { padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - 1380px)/2)); }
.bbacc-home-section--white { background: white; }
.bbacc-home-section--paper { background: var(--bb-paper); }
.bbacc-feature-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3,1fr); }
.bbacc-photo-card { background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.9)), var(--card-image) center/cover; border-radius: var(--bb-radius); box-shadow: var(--bb-shadow); color: white; display: flex; min-height: 460px; overflow: hidden; padding: 1.6rem; transition: transform .25s ease; }
.bbacc-photo-card:hover { transform: translateY(-6px); }
.bbacc-photo-card > div { align-self: end; width: 100%; }
.bbacc-photo-card h2 { color: white; font-size: clamp(2rem,3vw,3.25rem); margin: 0; }
.bbacc-photo-card p { color: rgba(255,255,255,.8); margin: 0; }
.bbacc-photo-card a { color: var(--bb-gold); font-family: var(--bb-display); font-weight: 800; text-transform: uppercase; }
.bbacc-experience { background: #cbe5f5; display: grid; grid-template-columns: 1.25fr 1fr; min-height: 440px; }
.bbacc-experience__image { background: linear-gradient(90deg, transparent 75%, #cbe5f5), url("../images/05-lake-and-chairs.webp") center/cover; }
.bbacc-experience__copy { align-self: center; max-width: 620px; padding: 4rem clamp(1.5rem,5vw,5rem); }
.bbacc-experience__copy h2 { font-size: clamp(3rem,5.5vw,5.6rem); }
.bbacc-section-heading { margin: 0 auto 2rem; max-width: 760px; text-align: center; }
.bbacc-gallery-strip { display: grid; gap: .8rem; grid-template-columns: repeat(6,1fr); margin-bottom: 2rem; }
.bbacc-gallery-strip img { aspect-ratio: 4/3; border-radius: 12px; height: 100%; object-fit: cover; transition: transform .2s ease; width: 100%; }
.bbacc-gallery-strip img:hover { transform: scale(1.025); }
.bbacc-center { text-align: center; }
.bbacc-sponsor-band { align-items: center; background: white; display: grid; gap: 3rem; grid-template-columns: 1fr auto; padding: 4rem max(1.5rem, calc((100vw - 1140px)/2)); }
.bbacc-sponsor-band h2 { margin-bottom: .2em; }
.bbacc-sponsor-band p:last-child { max-width: 760px; }
.bbacc-join-band { align-items: center; background: url("../images/01-light-blue-sunburst-mountains.webp") center/cover; display: grid; gap: 2rem; grid-template-columns: minmax(260px,420px) 1fr auto; padding: 2.5rem max(1.5rem, calc((100vw - 1380px)/2)); }
.bbacc-join-band img { filter: drop-shadow(0 16px 20px rgba(3,27,50,.22)); }
.bbacc-join-band h2 { font-size: clamp(2.6rem,5vw,5rem); margin-bottom: .15em; }
.bbacc-join-band p:last-child { max-width: 650px; }
.bbacc-content-shell { margin: 0 auto; max-width: 1240px; padding: clamp(4rem, 8vw, 8rem) 1.5rem; }
.bbacc-content-shell--narrow { max-width: 840px; }
.bbacc-page-content > .elementor { min-height: 40vh; }
.bbacc-page-content:not(:has(> .elementor)) { margin: 0 auto; max-width: 1120px; padding: 4rem 1.5rem 7rem; }
.bbacc-page-hero {
	align-items: end;
	background: linear-gradient(90deg, rgba(3, 27, 50, .93), rgba(3, 27, 50, .3)), url("../images/02-light-blue-mountain-silhouettes.webp") center/cover;
	display: flex;
	min-height: 360px;
	padding: 4rem max(1.5rem, calc((100vw - 1240px)/2));
}
.bbacc-page-hero h1 { color: white; font-size: clamp(3.3rem, 8vw, 7rem); margin: 0; }
.bbacc-eyebrow { color: var(--bb-red); font-family: var(--bb-display); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.bbacc-article { background: white; border-radius: var(--bb-radius); box-shadow: var(--bb-shadow); padding: clamp(1.5rem, 5vw, 4rem); }
.bbacc-featured-image { margin: 2rem 0; }
.bbacc-featured-image img { border-radius: var(--bb-radius); width: 100%; }
.bbacc-error-page {
	background: linear-gradient(90deg, rgba(3, 27, 50, .91), rgba(3, 27, 50, .38)), url("../images/03-scenic-cruise.webp") center/cover;
	color: white;
	min-height: 70vh;
	padding: clamp(7rem, 15vw, 13rem) max(1.5rem, calc((100vw - 1240px)/2));
}
.bbacc-error-page h1 { color: white; max-width: 760px; }

.bbacc-footer-mountains {
	align-items: center;
	background: url("../images/01-light-blue-sunburst-mountains.webp") center/cover;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	min-height: 260px;
	padding: 3rem max(1.5rem, calc((100vw - 1240px)/2));
}
.bbacc-footer-mountains h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); margin: 0; }
.bbacc-footer-main { background: var(--bb-navy); color: rgba(255, 255, 255, .78); padding: 4rem 1.5rem; }
.bbacc-footer-grid { display: grid; gap: 3rem; grid-template-columns: 1.3fr .75fr 1fr 1.1fr; margin: auto; max-width: 1240px; }
.bbacc-footer-grid h3 { color: white; font-size: 1.4rem; }
.bbacc-footer-grid a { color: white; }
.bbacc-footer-grid ul { list-style: none; margin: 0; padding: 0; }
.bbacc-footer-logo { height: 110px; margin-bottom: 1rem; object-fit: contain; object-position: left center; width: auto; }
.bbacc-footer-legal { align-items: center; background: var(--bb-navy-dark); color: rgba(255, 255, 255, .68); display: flex; font-size: .78rem; justify-content: space-between; padding: 1rem max(1.5rem, calc((100vw - 1240px)/2)); }
.bbacc-footer-legal p { margin: 0; }
.bbacc-footer-legal nav { display: flex; gap: 1rem; }
.bbacc-footer-legal a { color: white; }
.bbacc-text-link { font-family: var(--bb-display); font-weight: 800; text-transform: uppercase; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
	.bbacc-header-inner { grid-template-columns: 190px 1fr auto; padding-inline: 1rem; }
	.bbacc-brand img, .bbacc-brand .custom-logo { height: 90px; }
	.bbacc-header-cta { display: none; }
	.bbacc-menu { gap: .75rem; }
}

@media (max-width: 960px) {
	.bbacc-header-inner { grid-template-columns: 1fr auto; min-height: 80px; }
	.bbacc-brand img, .bbacc-brand .custom-logo { height: 78px; }
	.bbacc-menu-toggle { cursor: pointer; display: block; }
	.bbacc-primary-nav {
		background: var(--bb-paper);
		height: calc(100vh - 80px);
		inset: 80px 0 auto;
		opacity: 0;
		overflow-y: auto;
		padding: 1rem;
		pointer-events: none;
		position: fixed;
		transform: translateY(-10px);
		transition: opacity .2s ease, transform .2s ease;
	}
	.bbacc-primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
	.bbacc-menu { align-items: stretch; display: block; }
	.bbacc-menu > li { border-bottom: 1px solid var(--bb-border); }
	.bbacc-menu > li > a, .bbacc-mega-trigger { font-size: 1.2rem; padding: 1rem .25rem; width: 100%; }
	.bbacc-menu > li > a::after, .bbacc-mega-trigger::after { display: none; }
	.bbacc-mega-trigger { justify-content: space-between; }
	.bbacc-mega-menu {
		border-radius: 10px;
		box-shadow: none;
		display: none;
		grid-template-columns: 1fr;
		opacity: 1;
		padding: .8rem;
		position: static;
		transform: none;
		visibility: visible;
		width: 100%;
	}
	.bbacc-mega-trigger[aria-expanded="true"] + .bbacc-mega-menu { display: grid; transform: none; }
	.bbacc-mega-feature { min-height: 180px; }
	.bbacc-footer-grid { grid-template-columns: 1fr 1fr; }
	.bbacc-home-hero { background-position: 62% center; }
	.bbacc-event-facts { grid-template-columns: repeat(2,1fr); }
	.bbacc-event-facts > div { border-bottom: 1px solid rgba(6,42,77,.2); }
	.bbacc-feature-grid { grid-template-columns: 1fr; }
	.bbacc-photo-card { min-height: 420px; }
	.bbacc-experience { grid-template-columns: 1fr; }
	.bbacc-experience__image { background-image: url("../images/05-lake-and-chairs.webp"); min-height: 360px; }
	.bbacc-gallery-strip { grid-template-columns: repeat(3,1fr); }
	.bbacc-join-band { grid-template-columns: 300px 1fr; }
	.bbacc-join-band .bbacc-button { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 640px) {
	h1 { font-size: 3.25rem; }
	h2 { font-size: 2.6rem; }
	.bbacc-footer-mountains { align-items: flex-start; flex-direction: column; }
	.bbacc-footer-grid { grid-template-columns: 1fr; }
	.bbacc-footer-legal { align-items: flex-start; flex-direction: column; gap: .75rem; }
	.bbacc-home-hero {
		align-items: end;
		background-image: linear-gradient(180deg, rgba(248,247,242,.08) 20%, rgba(248,247,242,.95) 70%), url("../images/01-hero-red-classic-car.webp");
		background-position: 62% center;
		min-height: 720px;
	}
	.bbacc-event-facts { grid-template-columns: 1fr; }
	.bbacc-event-facts > div { border-right: 0; }
	.bbacc-gallery-strip { grid-template-columns: repeat(2,1fr); }
	.bbacc-sponsor-band { align-items: start; grid-template-columns: 1fr; }
	.bbacc-join-band { grid-template-columns: 1fr; text-align: center; }
	.bbacc-join-band .bbacc-eyebrow { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
	[data-reveal] { opacity: 1; transform: none; }
}
