/* ==========================================================================
   Binham — layout: container, header, footer, section rhythm, grids
   ========================================================================== */

.bnh-container {
	width: 100%;
	max-width: calc(var(--bnh-container) + var(--bnh-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--bnh-gutter);
}

.bnh-section {
	padding-block: var(--bnh-section-y);
}

.bnh-section--tight { padding-block: calc(var(--bnh-section-y) * .6); }
.bnh-section--grey { background: var(--bnh-grey-100); }
.bnh-section--soft { background: var(--bnh-grey-050); }
.bnh-section--cream { background: var(--bnh-cream); }
.bnh-section--navy { background: var(--bnh-navy); color: var(--bnh-white); }
.bnh-section--navy h1,
.bnh-section--navy h2,
.bnh-section--navy h3 { color: var(--bnh-white); }

.bnh-main { display: block; }

/* --- Header -------------------------------------------------------------- */

.bnh-head {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--bnh-orange);
}

.bnh-topbar {
	display: none;
	overflow: hidden;
	max-height: var(--bnh-topbar-h);
	transition: max-height .25s var(--bnh-ease), opacity .2s var(--bnh-ease);
	/*
	 * Collapsing this bar removes ~44px from above the fold. Scroll anchoring
	 * then nudges scrollY back to keep the content still, which can drop it
	 * under the threshold that collapsed the bar — so it expands, anchoring
	 * pushes back, and the header flickers. Opting this element out of
	 * anchoring breaks the loop; app.js adds hysteresis as the second guard.
	 */
	overflow-anchor: none;
}

.bnh-head.is-scrolled .bnh-topbar {
	max-height: 0;
	opacity: 0;
}

.bnh-topbar__in {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--bnh-s2);
	min-height: var(--bnh-topbar-h);
	font-size: var(--bnh-fs-sm);
}

.bnh-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: var(--bnh-white);
	text-decoration: none;
	font-weight: 500;
}

.bnh-topbar__item:hover {
	color: var(--bnh-white);
	text-decoration: underline;
}

.bnh-topbar__item .bnh-icon { opacity: .85; }

.bnh-topbar__sep {
	color: rgba(255, 255, 255, .55);
	padding-inline: var(--bnh-s2);
}

.bnh-navwrap { padding-bottom: var(--bnh-s3); }

.bnh-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s4);
	min-height: 60px;
	padding: var(--bnh-s2) var(--bnh-s3) var(--bnh-s2) var(--bnh-s4);
	background: var(--bnh-white);
	border-radius: var(--bnh-r);
	box-shadow: var(--bnh-sh);
}

.bnh-nav__brand { flex: 0 0 auto; }

.bnh-nav__logo,
.bnh-nav__brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.bnh-nav__logo img,
.bnh-nav__brand .custom-logo {
	width: auto;
	height: 44px;
}

.bnh-nav__menu { display: none; }

.bnh-nav__actions {
	display: flex;
	align-items: center;
	gap: var(--bnh-s2);
	flex: 0 0 auto;
}

/*
 * Scoped to the parent on purpose: components.css loads after this file and
 * its `.bnh-btn { display: inline-flex }` matches at the same specificity,
 * which silently un-hid this button on phones. The extra class wins.
 * Below 768px the drawer carries the contact link, so the bar is just the
 * logo and the burger.
 */
.bnh-nav__actions .bnh-nav__cta { display: none; }

.bnh-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--bnh-navy-050);
	border: 0;
	border-radius: var(--bnh-r-sm);
	color: var(--bnh-navy-800);
}

.bnh-burger:hover { background: var(--bnh-orange-050); color: var(--bnh-orange-600); }

/* --- Primary menu -------------------------------------------------------- */

.bnh-menu {
	display: flex;
	align-items: center;
	gap: clamp(.75rem, 1.6vw, 1.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bnh-menu > li { position: relative; }

.bnh-menu a {
	display: block;
	padding: .5rem 0;
	color: var(--bnh-navy-800);
	font-size: .9375rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.bnh-menu a:hover,
.bnh-menu .current-menu-item > a,
.bnh-menu .current_page_item > a,
.bnh-menu [aria-current="page"] {
	color: var(--bnh-orange);
}

.bnh-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 220px;
	margin: 0;
	padding: var(--bnh-s2);
	list-style: none;
	background: var(--bnh-white);
	border-radius: var(--bnh-r);
	box-shadow: var(--bnh-sh-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s var(--bnh-ease), transform .18s var(--bnh-ease), visibility .18s;
}

.bnh-menu > li:hover > .sub-menu,
.bnh-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bnh-menu .sub-menu a {
	padding: .5rem .75rem;
	border-radius: var(--bnh-r-sm);
	white-space: normal;
}

.bnh-menu .sub-menu a:hover { background: var(--bnh-orange-050); }

/* --- Drawer -------------------------------------------------------------- */

.bnh-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
}

.bnh-drawer[hidden] { display: none; }

.bnh-drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(1, 29, 50, .55);
	opacity: 0;
	transition: opacity .25s var(--bnh-ease);
}

.bnh-drawer.is-open .bnh-drawer__scrim { opacity: 1; }

.bnh-drawer__panel {
	position: absolute;
	inset-block: 0;
	right: 0;
	width: min(340px, 88vw);
	display: flex;
	flex-direction: column;
	gap: var(--bnh-s5);
	padding: var(--bnh-s5);
	overflow-y: auto;
	background: var(--bnh-white);
	box-shadow: var(--bnh-sh-lg);
	transform: translateX(100%);
	transition: transform .28s var(--bnh-ease);
}

.bnh-drawer.is-open .bnh-drawer__panel { transform: translateX(0); }

.bnh-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bnh-s4);
}

.bnh-drawer__logo img { height: 40px; width: auto; }

.bnh-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--bnh-grey-050);
	border: 0;
	border-radius: var(--bnh-r-sm);
	color: var(--bnh-navy-800);
}

.bnh-menu--stack {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.bnh-menu--stack > li { border-bottom: 1px solid var(--bnh-line); }

.bnh-menu--stack a {
	padding: .875rem 0;
	font-size: 1rem;
	font-weight: 500;
}

.bnh-menu--stack .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	padding: 0 0 var(--bnh-s2) var(--bnh-s4);
}

.bnh-drawer__foot {
	display: flex;
	flex-direction: column;
	gap: var(--bnh-s3);
	margin-top: auto;
}

.bnh-drawer__contact {
	margin: var(--bnh-s2) 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--bnh-s2);
	font-size: var(--bnh-fs-sm);
}

.bnh-drawer__contact a {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--bnh-muted);
	text-decoration: none;
}

.bnh-drawer__contact a:hover { color: var(--bnh-orange); }

/* --- Footer -------------------------------------------------------------- */

.bnh-foot {
	background: var(--bnh-navy);
	color: rgba(255, 255, 255, .82);
}

.bnh-foot a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.bnh-foot a:hover { color: var(--bnh-orange); }

.bnh-foot__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bnh-s6);
	padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
}

.bnh-foot__logo { display: inline-block; line-height: 0; margin-bottom: var(--bnh-s4); }
.bnh-foot__logo img { height: 62px; width: auto; }

.bnh-foot__blurb {
	max-width: 34ch;
	font-size: var(--bnh-fs-sm);
	line-height: 1.7;
}

.bnh-foot__title {
	margin-bottom: var(--bnh-s4);
	color: var(--bnh-orange);
	font-size: 1.125rem;
	font-weight: 600;
}

.bnh-foot__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--bnh-s3);
	font-size: var(--bnh-fs-sm);
}

.bnh-foot__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--bnh-s2);
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 260px;
}

.bnh-foot__gallery a { display: block; line-height: 0; }

.bnh-foot__thumb {
	width: 100%;
	height: 46px;
	object-fit: cover;
	border-radius: 6px;
	transition: transform .25s var(--bnh-ease), opacity .25s var(--bnh-ease);
}

.bnh-foot__gallery a:hover .bnh-foot__thumb { transform: scale(1.05); opacity: .88; }

.bnh-foot__note {
	margin-bottom: var(--bnh-s4);
	font-size: var(--bnh-fs-sm);
	max-width: 30ch;
}

.bnh-subscribe { display: grid; gap: var(--bnh-s3); }

.bnh-subscribe__input {
	background: transparent;
	border: 1.5px solid var(--bnh-orange);
	border-radius: var(--bnh-r-sm);
	color: var(--bnh-white);
}

.bnh-subscribe__input::placeholder { color: rgba(255, 255, 255, .7); }

.bnh-foot__extra { padding-bottom: var(--bnh-s6); }

.bnh-foot__bar { background: var(--bnh-navy-900); }

.bnh-foot__barin {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--bnh-s3);
	padding-block: var(--bnh-s4);
	text-align: center;
}

.bnh-foot__copy {
	margin: 0;
	font-size: var(--bnh-fs-sm);
	color: rgba(255, 255, 255, .7);
}

.bnh-foot__legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bnh-s4);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--bnh-fs-sm);
}

/* --- Reusable grids ------------------------------------------------------ */

.bnh-grid {
	display: grid;
	gap: var(--bnh-s5);
	grid-template-columns: 1fr;
}

.bnh-grid--2 { grid-template-columns: 1fr; }
.bnh-grid--3 { grid-template-columns: 1fr; }
.bnh-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.bnh-split {
	display: grid;
	gap: var(--bnh-s6);
	align-items: center;
	grid-template-columns: 1fr;
}

/* --- Breakpoints --------------------------------------------------------- */

@media (min-width: 640px) {
	.bnh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bnh-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bnh-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bnh-foot__barin { justify-content: space-between; text-align: left; }
}

@media (min-width: 768px) {
	.bnh-topbar { display: block; }
	.bnh-nav__actions .bnh-nav__cta { display: inline-flex; }
	.bnh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.bnh-nav {
		min-height: var(--bnh-nav-h);
		padding-inline: var(--bnh-s5);
	}

	.bnh-nav__menu { display: block; }
	.bnh-burger { display: none; }
	.bnh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.bnh-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--bnh-s8); }
	.bnh-foot__grid { grid-template-columns: 1.4fr .8fr 1fr 1.2fr; gap: var(--bnh-s7); }
}

/* --- Footer refresh 1.1 -------------------------------------------------- */
.bnh-foot {
	position: relative;
	background: var(--bnh-navy-800);
	border-top: 4px solid var(--bnh-orange);
}

.bnh-foot__grid {
	gap: clamp(2rem, 4vw, 4.5rem);
	padding-block: clamp(3rem, 3rem + 2vw, 5rem);
}

.bnh-foot__logo { margin-bottom: var(--bnh-s3); }
.bnh-foot__logo img { height: 70px; }

.bnh-foot__trust {
	width: max-content;
	margin: 0 0 var(--bnh-s4);
	padding: .35rem .7rem;
	background: rgba(255,107,17,.12);
	border: 1px solid rgba(255,107,17,.45);
	border-radius: var(--bnh-r-pill);
	color: var(--bnh-orange);
	font-size: var(--bnh-fs-xs);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bnh-foot__blurb {
	margin: 0 0 var(--bnh-s5);
	max-width: 38ch;
	color: rgba(255,255,255,.72);
	line-height: 1.8;
}

.bnh-foot__title {
	position: relative;
	margin: 0 0 var(--bnh-s5);
	padding-bottom: .7rem;
	color: var(--bnh-white);
	font-size: 1rem;
	font-weight: 600;
}

.bnh-foot__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 34px;
	height: 2px;
	background: var(--bnh-orange);
	border-radius: 999px;
}

.bnh-foot__list { gap: .7rem; }
.bnh-foot__list a { color: rgba(255,255,255,.74); }

.bnh-foot__gallery {
	grid-template-columns: repeat(3, 72px);
	gap: .55rem;
	max-width: none;
}

.bnh-foot__thumb {
	height: 54px;
	border-radius: var(--bnh-r-sm);
	border: 1px solid rgba(255,255,255,.13);
}

.bnh-foot__note {
	margin: 0 0 var(--bnh-s4);
	color: rgba(255,255,255,.7);
	line-height: 1.7;
}

.bnh-subscribe { gap: .625rem; }
.bnh-subscribe__input {
	min-height: 46px;
	padding-inline: .9rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.2);
}
.bnh-subscribe__input:focus { border-color: var(--bnh-orange); }
.bnh-subscribe .bnh-btn { min-height: 46px; border-radius: var(--bnh-r-sm); box-shadow: none; }

.bnh-foot__bar {
	background: var(--bnh-navy-900);
	border-top: 1px solid rgba(255,255,255,.08);
}

.bnh-foot__barin { padding-block: 1.1rem; }
.bnh-foot__identity { display: grid; gap: .2rem; }
.bnh-foot__site { width: max-content; color: var(--bnh-orange) !important; font-size: var(--bnh-fs-xs); font-weight: 600; }

@media (min-width: 1024px) {
	.bnh-foot__grid { grid-template-columns: 1.3fr .72fr .95fr 1.05fr; }
}

/* --- Footer refresh 1.2: compact premium layout -------------------------- */
.bnh-foot--premium {
	position: relative;
	background: #022D4A;
	border-top: 0;
	color: rgba(255,255,255,.78);
}

.bnh-foot--premium .bnh-foot__cta {
	background: linear-gradient(100deg, #073F68 0%, #032F50 100%);
	border-top: 3px solid var(--bnh-orange);
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.bnh-foot--premium .bnh-foot__ctain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	padding-block: 1.5rem;
}

.bnh-foot__ctaeyebrow {
	margin: 0 0 .25rem;
	color: var(--bnh-orange);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.bnh-foot--premium .bnh-foot__cta h2 {
	margin: 0 0 .25rem;
	color: var(--bnh-white);
	font-family: var(--bnh-font-sans);
	font-size: clamp(1.2rem, 1rem + .8vw, 1.65rem);
	font-weight: 700;
}

.bnh-foot--premium .bnh-foot__cta p:not(.bnh-foot__ctaeyebrow) {
	margin: 0;
	color: rgba(255,255,255,.64);
	font-size: .8rem;
}

.bnh-foot__ctaactions {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
}

.bnh-foot__ctaactions .bnh-btn {
	min-height: 42px;
	padding: .55rem 1rem;
	font-size: .74rem;
	box-shadow: none;
}

.bnh-btn--footerghost {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.24);
	color: var(--bnh-white) !important;
}

.bnh-btn--footerghost:hover {
	background: var(--bnh-white);
	border-color: var(--bnh-white);
	color: var(--bnh-navy) !important;
}

.bnh-foot--premium .bnh-foot__grid--premium {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-block: clamp(2.3rem, 4vw, 3.4rem);
}

.bnh-foot--premium .bnh-foot__logo {
	margin-bottom: .8rem;
}

.bnh-foot--premium .bnh-foot__logo img {
	height: 58px;
	width: auto;
}

.bnh-foot--premium .bnh-foot__trust {
	margin-bottom: .85rem;
	padding: .28rem .62rem;
	font-size: .62rem;
}

.bnh-foot--premium .bnh-foot__blurb {
	max-width: 36ch;
	margin: 0;
	color: rgba(255,255,255,.62);
	font-size: .76rem;
	line-height: 1.75;
}

.bnh-foot--premium .bnh-foot__title {
	margin: 0 0 1rem;
	padding-bottom: .55rem;
	font-size: .84rem;
	letter-spacing: .01em;
}

.bnh-foot--premium .bnh-foot__title::after {
	width: 26px;
	height: 2px;
}

.bnh-foot--premium .bnh-foot__list {
	gap: .55rem;
	font-size: .75rem;
}

.bnh-foot--premium .bnh-foot__list a {
	color: rgba(255,255,255,.68);
}

.bnh-foot__contactlist {
	display: grid;
	gap: .65rem;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.bnh-foot__contactlist li {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: .55rem;
	align-items: center;
	font-size: .73rem;
}

.bnh-foot__contactlist li > span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	color: var(--bnh-orange);
}

.bnh-foot__contactlist a {
	overflow-wrap: anywhere;
	color: rgba(255,255,255,.72) !important;
}

.bnh-foot__socials {
	display: flex;
	gap: .5rem;
}

.bnh-foot__socials a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.11);
	border-radius: 9px;
	color: var(--bnh-white) !important;
}

.bnh-foot__socials a:hover {
	background: var(--bnh-orange);
	border-color: var(--bnh-orange);
	color: var(--bnh-white) !important;
}

.bnh-foot__galleryhead {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .75rem;
}

.bnh-foot__galleryhead > a {
	margin-top: .1rem;
	color: var(--bnh-orange) !important;
	font-size: .65rem;
	font-weight: 600;
}

.bnh-foot--premium .bnh-foot__gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .45rem;
	max-width: 290px;
}

.bnh-foot--premium .bnh-foot__thumb {
	height: 58px;
	border-radius: 7px;
	border: 1px solid rgba(255,255,255,.1);
}

.bnh-foot--premium .bnh-foot__bar {
	background: #01243C;
	border-top: 1px solid rgba(255,255,255,.08);
}

.bnh-foot--premium .bnh-foot__barin--premium {
	display: grid;
	grid-template-columns: 1fr;
	gap: .45rem;
	padding-block: .95rem;
	text-align: left;
}

.bnh-foot__signature {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .45rem;
	margin: 0;
	color: rgba(255,255,255,.55);
	font-size: .62rem;
}

.bnh-foot__signature strong { color: var(--bnh-orange); letter-spacing: .06em; }
.bnh-foot__signature a { color: rgba(255,255,255,.7) !important; }

.bnh-foot--premium .bnh-foot__copy {
	margin: 0;
	color: rgba(255,255,255,.45);
	font-size: .6rem;
}

@media (min-width: 640px) {
	.bnh-foot--premium .bnh-foot__grid--premium {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.bnh-foot--premium .bnh-foot__grid--premium {
		grid-template-columns: 1.35fr .62fr 1fr 1.05fr;
		gap: clamp(2rem, 4vw, 4rem);
	}

	.bnh-foot--premium .bnh-foot__barin--premium {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.bnh-foot--premium .bnh-foot__copy { text-align: right; }
}

@media (max-width: 639px) {
	.bnh-foot--premium .bnh-foot__ctain { align-items: stretch; }
	.bnh-foot__ctaactions { width: 100%; }
	.bnh-foot__ctaactions .bnh-btn { flex: 1 1 160px; justify-content: center; }
	.bnh-foot--premium .bnh-foot__gallery { max-width: 100%; }
	.bnh-foot__signature span[aria-hidden="true"] { display: none; }
	.bnh-foot__signature { gap: .35rem .7rem; }
}

/* --- Footer legibility ----------------------------------------------------
 * The footer was set in 0.62–0.84rem type, which reads as fine print across a
 * full-width band. Every selector here is scoped to .bnh-foot--premium to
 * match the specificity of the block above — a bare .bnh-foot__blurb loses to
 * .bnh-foot--premium .bnh-foot__blurb no matter how late it appears.
 * ------------------------------------------------------------------------ */

.bnh-foot--premium { font-size: .9375rem; line-height: 1.7; }

.bnh-foot--premium .bnh-foot__blurb {
	max-width: 42ch;
	font-size: .9375rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, .78);
}

.bnh-foot--premium .bnh-foot__title {
	margin-bottom: 1.1rem;
	padding-bottom: .6rem;
	font-size: 1.0625rem;
	font-weight: 700;
}

.bnh-foot--premium .bnh-foot__title::after { width: 34px; }

.bnh-foot--premium .bnh-foot__list { gap: .7rem; font-size: .9375rem; }
.bnh-foot--premium .bnh-foot__list a { color: rgba(255, 255, 255, .8); }

.bnh-foot--premium .bnh-foot__contactlist { font-size: .9375rem; }
.bnh-foot--premium .bnh-foot__contactlist li { gap: .75rem; }

.bnh-foot--premium .bnh-foot__trust { font-size: .72rem; padding: .4rem .8rem; }
.bnh-foot--premium .bnh-foot__galleryhead { font-size: .9375rem; }

/* A footnote, so a step below the columns rather than level with them. */
.bnh-foot--premium .bnh-foot__signature,
.bnh-foot--premium .bnh-foot__signature a,
.bnh-foot--premium .bnh-foot__copy { font-size: .8125rem; }

@media (min-width: 1024px) {
	.bnh-foot--premium { font-size: 1rem; }
	.bnh-foot--premium .bnh-foot__blurb { font-size: 1rem; }
	.bnh-foot--premium .bnh-foot__title { font-size: 1.125rem; }
	.bnh-foot--premium .bnh-foot__list { font-size: 1rem; }
	.bnh-foot--premium .bnh-foot__contactlist { font-size: 1rem; }

	.bnh-foot--premium .bnh-foot__signature,
	.bnh-foot--premium .bnh-foot__signature a,
	.bnh-foot--premium .bnh-foot__copy { font-size: .875rem; }
}
