/* Homebrew Academy Revival — global header / navigation */
:root {
	--hba-header-ink: #171a16;
	--hba-header-paper: #f7f2e8;
	--hba-header-paper-2: #efe5d3;
	--hba-header-cream: #fff8e9;
	--hba-header-amber: #e0a647;
	--hba-header-green: #24372b;
	--hba-header-line: rgba(255,248,233,.42);
	--hba-header-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hba-header-hand: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
	--hba-header-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

.hba-site-header {
	position: relative;
	z-index: 90;
	font-family: var(--hba-header-sans);
	background: var(--hba-header-paper);
	box-shadow: 0 1px 0 rgba(36,27,18,.08);
}

.hba-header-wrap {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.hba-header-brand-row {
	background:
		linear-gradient(90deg, rgba(198,123,44,.04), transparent 35%),
		var(--hba-header-paper);
	border-bottom: 1px solid #d9cebc;
}

.hba-header-brand-row .hba-header-wrap {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.hba-header-brand {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	text-decoration: none;
	color: #171815;
	min-width: 0;
}

.hba-header-logo {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	line-height: 1;
	flex: 0 0 auto;
}

.hba-logo-mark {
	display: block;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	transform: rotate(-1deg);
	filter: drop-shadow(3px 4px 0 rgba(198,123,44,.16));
}

.hba-logo-mark svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hba-logo-type {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.hba-logo-type strong {
	font-family: var(--hba-header-display);
	font-size: clamp(27px, 2.3vw, 34px);
	font-weight: 700;
	line-height: .92;
	letter-spacing: -.035em;
	white-space: nowrap;
	color: #171815;
}

.hba-logo-type small {
	font-family: var(--hba-header-sans);
	font-size: 8px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: #8f4f17;
	white-space: nowrap;
}

.hba-header-brand-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 22px;
	border-left: 1px solid #d7c9b3;
}

.hba-header-brand-copy strong {
	font-family: var(--hba-header-display);
	font-size: 17px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	letter-spacing: -.02em;
	color: #24372b;
}

.hba-header-brand-copy small {
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #8f4f17;
}

.hba-header-side-note {
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	transform: rotate(-1deg);
}

.hba-header-side-note span {
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .17em;
	color: #9a611f;
}

.hba-header-side-note strong {
	font-family: var(--hba-header-hand);
	font-size: 17px;
	line-height: 1;
	color: #24372b;
	font-weight: 700;
}

.hba-header-board {
	position: relative;
	background: var(--hba-header-ink);
	color: var(--hba-header-cream);
	border-top: 5px solid #22261f;
	border-bottom: 5px solid #22261f;
	overflow: visible;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.025), inset 0 -1px 0 rgba(255,255,255,.025);
}

.hba-header-board::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle at 20% 38%, rgba(255,255,255,.055) 0 1px, transparent 1.5px),
		radial-gradient(circle at 72% 58%, rgba(255,255,255,.034) 0 1px, transparent 1.5px),
		linear-gradient(174deg, transparent 0 49%, rgba(255,255,255,.012) 49.5% 50.5%, transparent 51% 100%);
	background-size: 19px 19px, 29px 29px, 190px 85px;
	opacity: .92;
}

.hba-header-chalk {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hba-header-chalk::before,
.hba-header-chalk::after {
	content: "";
	position: absolute;
	width: 155px;
	height: 60px;
	border-top: 3px solid rgba(255,248,233,.16);
	border-radius: 50%;
}

.hba-header-chalk::before {
	left: 4%;
	top: 11px;
	transform: rotate(-5deg);
	box-shadow: 34px 15px 0 -30px rgba(224,166,71,.58);
}

.hba-header-chalk::after {
	right: 5%;
	bottom: -28px;
	transform: rotate(8deg);
	border-color: rgba(224,166,71,.25);
}

.hba-header-nav-wrap {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	gap: 18px;
	align-items: stretch;
}

.hba-main-nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(110px, 1fr));
	align-items: stretch;
}

.hba-main-nav > a {
	position: relative;
	min-height: 76px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 13px 20px 11px;
	color: var(--hba-header-cream);
	text-decoration: none;
	border-left: 1px solid rgba(255,248,233,.13);
	transition: background .18s ease, color .18s ease;
	overflow: hidden;
}

.hba-main-nav > a:last-child {
	border-right: 1px solid rgba(255,248,233,.13);
}

.hba-main-nav > a span {
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .18em;
	color: var(--hba-header-amber);
	text-transform: uppercase;
}

.hba-main-nav > a strong {
	position: relative;
	z-index: 2;
	font-family: var(--hba-header-hand);
	font-size: clamp(18px, 1.45vw, 23px);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -.02em;
}

.hba-main-nav > a::before {
	content: "";
	position: absolute;
	left: 19px;
	bottom: 12px;
	width: 0;
	height: 4px;
	border-top: 2px solid var(--hba-header-amber);
	border-radius: 50%;
	transform: rotate(-2deg);
	transition: width .2s ease;
	opacity: .9;
}

.hba-main-nav > a::after {
	content: "";
	position: absolute;
	right: -26px;
	top: -38px;
	width: 78px;
	height: 78px;
	border: 2px solid rgba(255,248,233,.07);
	border-radius: 50%;
	transform: rotate(18deg);
}

.hba-main-nav > a:nth-child(2)::after,
.hba-main-nav > a:nth-child(4)::after {
	border-radius: 8px;
	transform: rotate(28deg);
}

.hba-main-nav > a:hover,
.hba-main-nav > a:focus-visible {
	background: rgba(224,166,71,.09);
	color: #fffdf8;
}

.hba-main-nav > a:hover::before,
.hba-main-nav > a:focus-visible::before {
	width: 52%;
}

.hba-main-nav > a:focus-visible,
.hba-header-search input:focus-visible,
.hba-header-search button:focus-visible,
.hba-menu-toggle:focus-visible {
	outline: 2px solid var(--hba-header-amber);
	outline-offset: 2px;
}

.hba-header-search {
	display: flex;
	align-items: center;
	align-self: stretch;
	padding: 13px 0 13px 12px;
}

.hba-header-search input {
	width: 100%;
	height: 46px;
	border: 1px solid rgba(255,248,233,.25);
	border-right: 0;
	background: rgba(0,0,0,.12);
	color: var(--hba-header-cream);
	padding: 0 12px;
	font-size: 12px;
	font-family: var(--hba-header-sans);
	box-shadow: none;
	border-radius: 0;
}

.hba-header-search input::placeholder {
	color: rgba(255,248,233,.48);
}

.hba-header-search button {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255,248,233,.25);
	background: var(--hba-header-amber);
	color: #1c1812;
	font-family: var(--hba-header-hand);
	font-size: 25px;
	font-weight: 900;
	cursor: pointer;
	border-radius: 0;
}

.hba-menu-toggle {
	display: none;
	width: 48px;
	height: 44px;
	padding: 9px 10px;
	border: 1px solid #cab99f;
	background: transparent;
	color: #171815;
	cursor: pointer;
}

.hba-menu-toggle-lines {
	display: grid;
	gap: 5px;
}

.hba-menu-toggle-lines i {
	display: block;
	height: 2px;
	background: currentColor;
	transform-origin: center;
	transition: transform .18s ease, opacity .18s ease;
}

body.hba-nav-open .hba-menu-toggle-lines i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.hba-nav-open .hba-menu-toggle-lines i:nth-child(2) { opacity: 0; }
body.hba-nav-open .hba-menu-toggle-lines i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
	.hba-header-brand-copy { display: none; }
	.hba-header-side-note { display: none; }
	.hba-header-nav-wrap { grid-template-columns: minmax(0, 1fr) 185px; }
	.hba-main-nav > a { padding-inline: 14px; }
	.hba-main-nav > a strong { font-size: 18px; }
}

@media (max-width: 820px) {
	.hba-header-wrap { width: min(100% - 28px, 1240px); }
	.hba-header-brand-row .hba-header-wrap { min-height: 76px; }
	.hba-logo-mark { width: 50px; height: 50px; flex-basis: 50px; }
	.hba-logo-type strong { font-size: 27px; }
	.hba-logo-type small { font-size: 7px; letter-spacing: .13em; }
	.hba-menu-toggle { display: block; margin-left: auto; }
	.hba-header-board { border-top-width: 4px; border-bottom-width: 4px; }
	.hba-header-nav-wrap { display: block; width: 100%; }
	.hba-main-nav {
		display: none;
		grid-template-columns: 1fr;
		width: min(100% - 28px, 1240px);
		margin-inline: auto;
		padding: 10px 0;
	}
	body.hba-nav-open .hba-main-nav { display: grid; }
	.hba-main-nav > a {
		min-height: 62px;
		padding: 11px 16px 10px;
		border-left: 1px solid rgba(255,248,233,.16);
		border-right: 1px solid rgba(255,248,233,.16);
		border-bottom: 1px solid rgba(255,248,233,.11);
	}
	.hba-main-nav > a:first-child { border-top: 1px solid rgba(255,248,233,.16); }
	.hba-main-nav > a span { font-size: 7px; }
	.hba-main-nav > a strong { font-size: 21px; }
	.hba-main-nav > a::before { bottom: 9px; }
	.hba-header-search {
		display: none;
		width: min(100% - 28px, 1240px);
		margin-inline: auto;
		padding: 4px 0 14px;
	}
	body.hba-nav-open .hba-header-search { display: flex; }
}

/* Related-content handoff used at the end of all article types. */
body.single-post .hba-related {
	margin: 54px 0 4px;
	padding-top: 28px;
	border-top: 1px solid rgba(141,119,90,.28);
	font-family: var(--hba-header-sans);
}
body.single-post .hba-related-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}
body.single-post .hba-related-head span {
	display: block;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .17em;
	color: #9a611f;
	margin-bottom: 5px;
}
body.single-post .hba-related-head strong {
	display: block;
	font-family: var(--hba-header-display);
	font-size: 31px;
	line-height: 1;
	letter-spacing: -.035em;
	color: #171815;
}
body.single-post .hba-related-head em {
	font-family: var(--hba-header-hand);
	font-style: normal;
	font-size: 16px;
	color: #24372b;
	transform: rotate(-2deg);
}
body.single-post .hba-related-list {
	display: grid;
	gap: 8px;
}
body.single-post .hba-related a.hba-related-link {
	display: grid;
	grid-template-columns: 104px minmax(0,1fr) 24px;
	gap: 16px;
	align-items: center;
	padding: 10px;
	border: 1px solid rgba(150,129,101,.20);
	background: rgba(255,253,248,.72);
	color: #171815 !important;
	text-decoration: none !important;
	transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
body.single-post .hba-related a.hba-related-link:hover {
	transform: translateX(3px);
	background: #fffdf8;
	border-color: #c7ad87;
}
body.single-post .hba-related-image {
	display: block;
	width: 104px;
	height: 76px;
	overflow: hidden;
	background: #24372b;
}
body.single-post .hba-related-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 !important;
}
body.single-post .hba-related-image i {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--hba-header-display);
	font-size: 25px;
	font-style: normal;
	color: rgba(255,248,233,.62);
}
body.single-post .hba-related-copy small {
	display: block;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .15em;
	color: #9a611f;
	margin-bottom: 4px;
}
body.single-post .hba-related-copy strong {
	display: block;
	font-family: var(--hba-header-display);
	font-size: 20px;
	line-height: 1.08;
	letter-spacing: -.025em;
}
body.single-post .hba-related-link > b {
	font-size: 22px;
	color: #c67b2c;
}

@media (max-width: 540px) {
	.hba-header-logo img { max-width: 190px; max-height: 50px; }
	.hba-header-brand-row .hba-header-wrap { min-height: 70px; }
	.hba-menu-toggle { width: 44px; height: 40px; }
	body.single-post .hba-related-head { align-items: start; flex-direction: column; gap: 7px; }
	body.single-post .hba-related a.hba-related-link { grid-template-columns: 82px minmax(0,1fr) 18px; gap: 12px; padding: 8px; }
	body.single-post .hba-related-image { width: 82px; height: 68px; }
	body.single-post .hba-related-copy strong { font-size: 17px; }
}

/* Native sharing + author system. Replaces legacy Hubbub/Simple Author Box presentation in the draft. */
body.single-post #dpsp-content-top,
body.single-post #dpsp-content-bottom,
body.single-post .dpsp-content-wrapper,
body.single-post .saboxplugin-wrap {
	display: none !important;
}
body.single-post .hba-native-share,
body.single-post .hba-native-author {
	box-sizing: border-box;
	font-family: var(--hba-header-sans);
}
body.single-post .hba-native-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 22px 0 34px;
	padding: 13px 0;
	border-top: 1px solid rgba(141,119,90,.24);
	border-bottom: 1px solid rgba(141,119,90,.24);
}
body.single-post .hba-native-share-copy span {
	display: block;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .17em;
	color: #9a611f;
	margin-bottom: 3px;
}
body.single-post .hba-native-share-copy em {
	display: block;
	font-family: var(--hba-header-hand);
	font-size: 14px;
	line-height: 1.1;
	font-style: normal;
	color: #4c5149;
}
body.single-post .hba-native-share-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
body.single-post .hba-native-share-actions a,
body.single-post .hba-native-share-actions button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #d3c4ae;
	background: #fffdf8;
	color: #171815 !important;
	font: inherit;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	box-shadow: none;
	border-radius: 0;
}
body.single-post .hba-native-share .wpil-link-icon { display: none !important; }
body.single-post .hba-native-share-actions i {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #24372b;
	color: #fff8e9;
	font: 800 11px/1 var(--hba-header-sans);
	font-style: normal;
	text-transform: none;
}
body.single-post .hba-share-facebook:hover,
body.single-post .hba-share-pinterest:hover,
body.single-post .hba-share-email:hover,
body.single-post .hba-share-copy:hover {
	background: #24372b;
	border-color: #24372b;
	color: #fff8e9 !important;
}
body.single-post .hba-native-author {
	position: relative;
	display: grid;
	grid-template-columns: 120px minmax(0,1fr) auto;
	gap: 24px;
	align-items: center;
	margin: 54px 0 22px;
	padding: 24px 26px;
	background: #24372b;
	color: #fff8e9;
	border: 4px solid #202d24;
	box-shadow: 7px 8px 0 rgba(198,123,44,.17);
	overflow: hidden;
}
body.single-post .hba-native-author:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 18% 24%,rgba(255,255,255,.04) 0 1px,transparent 1.5px),radial-gradient(circle at 78% 70%,rgba(255,255,255,.025) 0 1px,transparent 1.5px);
	background-size: 19px 19px,29px 29px;
	pointer-events: none;
}
body.single-post .hba-native-author > * { position: relative; z-index: 2; }
body.single-post .hba-native-author-photo {
	width: 120px;
	height: 120px;
	background: #171a16;
	border: 3px solid rgba(255,248,233,.75);
	transform: rotate(-1.5deg);
	overflow: hidden;
}
body.single-post .hba-native-author-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 !important;
}
body.single-post .hba-native-author-photo span {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--hba-header-display);
	font-size: 34px;
	color: rgba(255,248,233,.65);
}
body.single-post .hba-native-author-copy > span {
	display: block;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .17em;
	color: #e0a647;
	margin-bottom: 6px;
}
body.single-post .hba-native-author-copy h2 {
	font-family: var(--hba-header-display);
	font-size: 30px;
	line-height: 1;
	letter-spacing: -.03em;
	color: #fff8e9;
	margin: 0 0 9px;
}
body.single-post .hba-native-author-copy p {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255,248,233,.76);
	margin: 0;
	max-width: 620px;
}
body.single-post .hba-native-author-copy a {
	display: inline-block;
	margin-top: 12px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #efbd71 !important;
	text-decoration: none !important;
}
body.single-post .hba-native-author > em {
	font-family: var(--hba-header-hand);
	font-size: 17px;
	line-height: 1.05;
	font-style: normal;
	color: rgba(255,248,233,.58);
	transform: rotate(-5deg);
	white-space: nowrap;
}
body.single-post .hba-native-share--bottom {
	margin-top: 28px;
	padding: 18px 20px;
	background: #171a16;
	border: 3px solid #22261f;
	box-shadow: 5px 6px 0 rgba(198,123,44,.15);
	color: #fff8e9;
}
body.single-post .hba-native-share--bottom .hba-native-share-copy span { color: #e0a647; }
body.single-post .hba-native-share--bottom .hba-native-share-copy em { color: rgba(255,248,233,.72); }
body.single-post .hba-native-share--bottom .hba-native-share-actions a,
body.single-post .hba-native-share--bottom .hba-native-share-actions button {
	border-color: rgba(255,248,233,.20);
	background: rgba(255,255,255,.04);
	color: #fff8e9 !important;
}
@media (max-width: 720px) {
	body.single-post .hba-native-share { align-items: flex-start; flex-direction: column; gap: 11px; }
	body.single-post .hba-native-share-actions { width: 100%; justify-content: flex-start; }
	body.single-post .hba-native-share-actions a,
	body.single-post .hba-native-share-actions button { padding-inline: 9px; }
	body.single-post .hba-native-share-actions strong { display: none; }
	body.single-post .hba-native-share-actions i { width: 21px; height: 21px; }
	body.single-post .hba-native-author { grid-template-columns: 82px minmax(0,1fr); gap: 17px; padding: 20px; }
	body.single-post .hba-native-author-photo { width: 82px; height: 82px; align-self: start; }
	body.single-post .hba-native-author-copy h2 { font-size: 25px; }
	body.single-post .hba-native-author-copy p { font-size: 12px; }
	body.single-post .hba-native-author > em { display: none; }
}
@media (max-width: 460px) {
	body.single-post .hba-native-author { grid-template-columns: 1fr; }
	body.single-post .hba-native-author-photo { width: 92px; height: 92px; }
	body.single-post .hba-native-share--bottom { padding: 16px; }
}

/* Compact single-post reader sidebar. Keep deliberately short for sticky ad inventory below. */
body.single-post .hba-reader-sidebar {
	display: grid;
	gap: 12px;
	margin-bottom: 20px;
	font-family: var(--hba-header-sans);
}
body.single-post .hba-reader-sidebar-card {
	padding: 20px;
	background: #171a16;
	color: #fff8e9;
	border: 3px solid #22261f;
	box-shadow: 5px 6px 0 rgba(198,123,44,.15);
	transform: rotate(-.35deg);
}
body.single-post .hba-reader-sidebar-card > span,
body.single-post .hba-reader-sidebar-links > span,
body.single-post .hba-reader-sidebar-links small {
	display: block;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #e0a647;
}
body.single-post .hba-reader-sidebar-card strong {
	display: block;
	font-family: var(--hba-header-hand);
	font-size: 25px;
	line-height: 1;
	margin: 10px 0 9px;
}
body.single-post .hba-reader-sidebar-card p {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255,248,233,.72);
}
body.single-post .hba-reader-sidebar-search {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto;
}
body.single-post .hba-reader-sidebar-search input {
	min-width: 0;
	height: 42px;
	border: 1px solid #d8cab5;
	background: #fffdf8;
	padding: 0 11px;
	font-size: 12px;
	box-shadow: none;
	border-radius: 0;
}
body.single-post .hba-reader-sidebar-search button {
	height: 42px;
	border: 0;
	background: #24372b;
	color: #fff8e9;
	padding: 0 11px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}
body.single-post .hba-reader-sidebar-links {
	display: grid;
	border-top: 1px solid rgba(141,119,90,.25);
	padding-top: 15px;
}
body.single-post .hba-reader-sidebar-links > span {
	color: #9a611f;
	margin-bottom: 7px;
}
body.single-post .hba-reader-sidebar-links a {
	display: grid;
	gap: 2px;
	padding: 10px 3px;
	border-bottom: 1px solid rgba(141,119,90,.18);
	color: #171815;
	text-decoration: none;
}
body.single-post .hba-reader-sidebar-links small { color: #9a611f; }
body.single-post .hba-reader-sidebar-links strong {
	font-family: var(--hba-header-display);
	font-size: 18px;
	line-height: 1;
}
@media (max-width: 1040px) {
	body.single-post .hba-reader-sidebar { display: none; }
}

/* Homebrew Academy back-bar footer. */
.hba-site-footer {
	font-family: var(--hba-header-sans);
	color: var(--hba-header-cream);
	background: #141814;
}

.hba-footer-wrap {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.hba-footer-backbar {
	position: relative;
	overflow: hidden;
	padding: 76px 0 42px;
	background:
		radial-gradient(circle at 14% 22%, rgba(255,255,255,.045) 0 1px, transparent 1.5px),
		radial-gradient(circle at 74% 68%, rgba(255,255,255,.028) 0 1px, transparent 1.5px),
		linear-gradient(135deg, rgba(224,166,71,.035), transparent 38%),
		#151a15;
	background-size: 21px 21px, 31px 31px, auto, auto;
	border-top: 7px solid #232820;
	box-shadow: inset 0 18px 70px rgba(0,0,0,.16);
}

.hba-footer-backbar::before {
	content: "";
	position: absolute;
	right: -120px;
	top: -135px;
	width: 390px;
	height: 390px;
	border: 4px solid rgba(255,248,233,.07);
	border-radius: 50%;
	box-shadow: 0 0 0 17px rgba(224,166,71,.018);
	transform: rotate(14deg);
	pointer-events: none;
}

.hba-footer-backbar::after {
	content: "LAST CALL";
	position: absolute;
	right: 38px;
	top: 92px;
	font-family: var(--hba-header-hand);
	font-size: 34px;
	font-weight: 800;
	letter-spacing: .06em;
	color: rgba(255,248,233,.055);
	transform: rotate(8deg);
	pointer-events: none;
}

.hba-footer-chalk {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hba-footer-chalk::before,
.hba-footer-chalk::after {
	content: "";
	position: absolute;
	border-top: 3px solid rgba(255,248,233,.11);
	border-radius: 50%;
}

.hba-footer-chalk::before {
	left: 5%;
	top: 44px;
	width: 185px;
	height: 52px;
	transform: rotate(-5deg);
	box-shadow: 51px 14px 0 -48px rgba(224,166,71,.65);
}

.hba-footer-chalk::after {
	right: 7%;
	bottom: 83px;
	width: 240px;
	height: 64px;
	border-color: rgba(224,166,71,.15);
	transform: rotate(6deg);
}

.hba-footer-lead {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(270px, .72fr) minmax(0, 1.6fr);
	gap: 70px;
	align-items: start;
}

.hba-footer-brand {
	padding-right: 10px;
}

.hba-footer-kicker,
.hba-footer-column > span,
.hba-footer-company > span,
.hba-footer-social > span {
	display: block;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--hba-header-amber);
}

.hba-footer-name {
	display: inline-block;
	margin-top: 10px;
	font-family: var(--hba-header-display);
	font-size: clamp(40px, 4vw, 58px);
	line-height: .92;
	letter-spacing: -.045em;
	color: #fff9ed;
	text-decoration: none;
}

.hba-footer-brand > p {
	margin: 13px 0 0;
	font-family: var(--hba-header-display);
	font-size: 19px;
	font-style: italic;
	color: rgba(255,248,233,.66);
}

.hba-footer-chalk-note {
	position: relative;
	margin-top: 34px;
	padding: 19px 20px 18px;
	border: 2px solid rgba(255,248,233,.36);
	background: rgba(0,0,0,.1);
	box-shadow: 4px 5px 0 rgba(224,166,71,.14);
	transform: rotate(-.8deg);
}

.hba-footer-chalk-note::after {
	content: "";
	position: absolute;
	left: 15px;
	right: 20%;
	bottom: 8px;
	height: 3px;
	border-top: 2px solid rgba(224,166,71,.42);
	border-radius: 50%;
	transform: rotate(-1deg);
}

.hba-footer-chalk-note span {
	display: block;
	margin-bottom: 7px;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--hba-header-amber);
}

.hba-footer-chalk-note strong {
	display: block;
	font-family: var(--hba-header-hand);
	font-size: clamp(20px, 1.8vw, 27px);
	line-height: 1.08;
	font-weight: 700;
	color: #fff8e9;
}

.hba-footer-links-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(255,248,233,.14);
	border-bottom: 1px solid rgba(255,248,233,.14);
}

.hba-footer-column {
	position: relative;
	min-width: 0;
	padding: 22px 20px 25px;
	border-left: 1px solid rgba(255,248,233,.12);
}

.hba-footer-column:last-child {
	border-right: 1px solid rgba(255,248,233,.12);
}

.hba-footer-column::after {
	content: "";
	position: absolute;
	right: -14px;
	top: -17px;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255,248,233,.055);
	border-radius: 50%;
	transform: rotate(18deg);
}

.hba-footer-column:nth-child(even)::after {
	border-radius: 7px;
	transform: rotate(30deg);
}

.hba-footer-column > strong {
	display: block;
	margin: 6px 0 17px;
	font-family: var(--hba-header-hand);
	font-size: 19px;
	line-height: 1.02;
	font-weight: 700;
	color: #fff9ed;
}

.hba-footer-column > a {
	display: block;
	width: fit-content;
	margin: 9px 0;
	font-size: 13px;
	line-height: 1.35;
	color: rgba(255,248,233,.72);
	text-decoration: none;
	transition: color .18s ease, transform .18s ease;
}

.hba-footer-column > a:hover,
.hba-footer-column > a:focus-visible,
.hba-footer-company a:hover,
.hba-footer-company a:focus-visible {
	color: #fff9ed;
	transform: translateX(3px);
}

.hba-footer-column > a:focus-visible,
.hba-footer-company a:focus-visible,
.hba-footer-social a:focus-visible,
.hba-footer-legal a:focus-visible {
	outline: 2px solid var(--hba-header-amber);
	outline-offset: 3px;
}

.hba-footer-barrail {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 34px;
	margin-top: 48px;
	padding-top: 23px;
	border-top: 1px dashed rgba(255,248,233,.19);
}

.hba-footer-company {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.hba-footer-company > span {
	width: 100%;
	margin-bottom: 3px;
}

.hba-footer-company a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
	color: rgba(255,248,233,.68);
	text-decoration: none;
	transition: color .18s ease, transform .18s ease;
}

.hba-footer-social {
	text-align: right;
}

.hba-footer-social > span {
	margin-bottom: 10px;
}

.hba-footer-social > div {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
}

.hba-footer-social a {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 37px;
	padding: 0 9px;
	border: 1px solid rgba(255,248,233,.27);
	background: rgba(255,255,255,.025);
	color: #fff8e9;
	font-family: var(--hba-header-hand);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	transform: rotate(-1deg);
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hba-footer-social a:nth-child(even) {
	transform: rotate(1.2deg);
}

.hba-footer-social a:hover {
	background: var(--hba-header-amber);
	color: #19150f;
	transform: rotate(0) translateY(-2px);
}

.hba-footer-receipt {
	background: #f1e7d6;
	color: #29231c;
	border-top: 1px solid #cbb99e;
	box-shadow: inset 0 5px 16px rgba(71,52,31,.05);
}

.hba-footer-receipt .hba-footer-wrap {
	min-height: 66px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.hba-footer-legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 17px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .035em;
}

.hba-footer-legal span {
	font-weight: 850;
}

.hba-footer-legal a {
	color: #5c5145;
	text-decoration: none;
}

.hba-footer-legal a:hover {
	color: #8f4f17;
}

.hba-footer-signoff {
	font-family: var(--hba-header-hand);
	font-size: 19px;
	line-height: 1;
	color: #24372b;
	transform: rotate(-1deg);
	white-space: nowrap;
}

@media (max-width: 1050px) {
	.hba-footer-lead {
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.hba-footer-brand {
		max-width: 630px;
	}
	.hba-footer-links-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hba-footer-column:nth-child(3) {
		border-top: 1px solid rgba(255,248,233,.12);
	}
	.hba-footer-column:nth-child(4) {
		border-top: 1px solid rgba(255,248,233,.12);
	}
}

@media (max-width: 720px) {
	.hba-footer-wrap {
		width: min(100% - 28px, 1240px);
	}
	.hba-footer-backbar {
		padding: 58px 0 34px;
	}
	.hba-footer-links-grid {
		grid-template-columns: 1fr;
	}
	.hba-footer-column,
	.hba-footer-column:last-child {
		border-right: 1px solid rgba(255,248,233,.12);
		border-bottom: 1px solid rgba(255,248,233,.12);
	}
	.hba-footer-column:first-child {
		border-top: 0;
	}
	.hba-footer-barrail {
		align-items: flex-start;
		flex-direction: column;
	}
	.hba-footer-social {
		text-align: left;
	}
	.hba-footer-social > div {
		justify-content: flex-start;
	}
	.hba-footer-receipt .hba-footer-wrap {
		align-items: flex-start;
		flex-direction: column;
		gap: 13px;
		padding-top: 17px;
		padding-bottom: 18px;
	}
	.hba-footer-signoff {
		font-size: 17px;
	}
	.hba-footer-backbar::after {
		display: none;
	}
}

@media (max-width: 480px) {
	.hba-footer-name {
		font-size: 42px;
	}
	.hba-footer-chalk-note {
		padding: 16px;
	}
	.hba-footer-social > div {
		flex-wrap: wrap;
	}
}
