/*
Theme Name: Blessed Hope
Theme URI: https://blessedhopebaptistnewport.com
Author: Blessed Hope Baptist Church
Author URI: https://blessedhopebaptistnewport.com
Description: A modern, professional custom theme for Blessed Hope Baptist Church in Newport, WA. Features an integrated media/sermon library and a password-protected live stream page at /live.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blessed-hope
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
	--bhbc-navy: #142238;
	--bhbc-navy-dark: #0c1626;
	--bhbc-navy-light: #1f3455;
	--bhbc-gold: #b8935a;
	--bhbc-gold-light: #d4b483;
	--bhbc-cream: #faf6ef;
	--bhbc-cream-dark: #f0e9db;
	--bhbc-white: #ffffff;
	--bhbc-ink: #23262b;
	--bhbc-ink-soft: #565b64;
	--bhbc-border: #e3ddcf;
	--bhbc-success: #2f6b46;
	--bhbc-error: #a3372c;

	--bhbc-font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
	--bhbc-font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--bhbc-container: 1200px;
	--bhbc-radius: 6px;
	--bhbc-shadow: 0 10px 30px rgba(12, 22, 38, 0.08);
	--bhbc-shadow-lg: 0 20px 50px rgba(12, 22, 38, 0.16);
	--bhbc-transition: 220ms ease;
}

/* =========================================================
   2. RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bhbc-cream);
	color: var(--bhbc-ink);
	font-family: var(--bhbc-font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--bhbc-font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--bhbc-navy);
	margin: 0 0 0.5em;
}
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--bhbc-navy);
	color: var(--bhbc-white);
	padding: 12px 20px;
	z-index: 10000;
	transition: top var(--bhbc-transition);
}
.skip-link:focus { top: 0; }

/* =========================================================
   3. LAYOUT UTILITIES
   ========================================================= */
.bhbc-container {
	max-width: var(--bhbc-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}
.bhbc-section { padding: 88px 0; }
.bhbc-section--tight { padding: 56px 0; }
.bhbc-section--navy {
	background: var(--bhbc-navy);
	color: rgba(255,255,255,0.88);
}
.bhbc-section--navy h1, .bhbc-section--navy h2, .bhbc-section--navy h3 { color: var(--bhbc-white); }
.bhbc-section--cream-dark { background: var(--bhbc-cream-dark); }
.bhbc-eyebrow {
	display: inline-block;
	font-family: var(--bhbc-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bhbc-gold);
	margin-bottom: 14px;
}
.bhbc-section-head { max-width: 640px; margin: 0 0 48px; }
.bhbc-section-head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.bhbc-section-head p { color: var(--bhbc-ink-soft); font-size: 1.08rem; }
.bhbc-lede { font-size: 1.15rem; color: var(--bhbc-ink-soft); }

.bhbc-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 700ms ease, transform 700ms ease;
}
.bhbc-reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   4. BUTTONS
   ========================================================= */
.bhbc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--bhbc-radius);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	border: 2px solid transparent;
	transition: background var(--bhbc-transition), color var(--bhbc-transition), border-color var(--bhbc-transition), transform var(--bhbc-transition);
}
.bhbc-btn:hover { transform: translateY(-1px); }
.bhbc-btn--gold { background: var(--bhbc-gold); color: var(--bhbc-navy-dark); }
.bhbc-btn--gold:hover { background: var(--bhbc-gold-light); }
.bhbc-btn--outline { border-color: rgba(255,255,255,0.55); color: var(--bhbc-white); }
.bhbc-btn--outline:hover { border-color: var(--bhbc-white); background: rgba(255,255,255,0.08); }
.bhbc-btn--navy { background: var(--bhbc-navy); color: var(--bhbc-white); }
.bhbc-btn--navy:hover { background: var(--bhbc-navy-light); }
.bhbc-btn--ghost { border-color: var(--bhbc-navy); color: var(--bhbc-navy); }
.bhbc-btn--ghost:hover { background: var(--bhbc-navy); color: var(--bhbc-white); }
.bhbc-btn--block { width: 100%; justify-content: center; }
.bhbc-btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* =========================================================
   5. SITE HEADER
   ========================================================= */
.bhbc-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(250, 246, 239, 0.92);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--bhbc-border);
	transition: box-shadow var(--bhbc-transition);
}
.bhbc-header.is-scrolled { box-shadow: 0 4px 20px rgba(12,22,38,0.08); }
.bhbc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
}
.bhbc-brand { display: flex; align-items: center; gap: 12px; }
.bhbc-brand a { display: flex; align-items: center; gap: 12px; }
.bhbc-brand img,
.bhbc-brand .custom-logo { max-height: 52px; width: auto; height: auto; object-fit: contain; }
.bhbc-brand__name {
	font-family: var(--bhbc-font-heading);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--bhbc-navy);
	line-height: 1.15;
}
.bhbc-brand__tagline {
	display: block;
	font-family: var(--bhbc-font-body);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bhbc-gold);
	font-weight: 600;
}
.bhbc-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: transparent;
	border: 1px solid var(--bhbc-border);
	border-radius: var(--bhbc-radius);
}
.bhbc-nav-toggle span {
	display: block;
	height: 2px;
	width: 20px;
	margin: 0 auto;
	background: var(--bhbc-navy);
	transition: transform var(--bhbc-transition), opacity var(--bhbc-transition);
}
.bhbc-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bhbc-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bhbc-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bhbc-primary-nav { display: flex; align-items: center; gap: 8px; }
.bhbc-primary-nav ul { display: flex; align-items: center; gap: 4px; }
.bhbc-primary-nav a {
	display: inline-block;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--bhbc-navy);
	border-radius: var(--bhbc-radius);
	transition: color var(--bhbc-transition), background var(--bhbc-transition);
}
.bhbc-primary-nav a:hover,
.bhbc-primary-nav .current-menu-item > a { color: var(--bhbc-gold); }
.bhbc-header__actions { display: flex; align-items: center; gap: 14px; }
.bhbc-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bhbc-navy);
	color: var(--bhbc-white) !important;
	padding: 10px 18px !important;
	border-radius: 999px;
	font-weight: 700 !important;
	font-size: 0.85rem !important;
}
.bhbc-live-pill__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #e0483e;
	box-shadow: 0 0 0 0 rgba(224,72,62,0.6);
	animation: bhbc-pulse 2s infinite;
}
@keyframes bhbc-pulse {
	0% { box-shadow: 0 0 0 0 rgba(224,72,62,0.55); }
	70% { box-shadow: 0 0 0 8px rgba(224,72,62,0); }
	100% { box-shadow: 0 0 0 0 rgba(224,72,62,0); }
}

@media (max-width: 880px) {
	.bhbc-nav-toggle { display: flex; }
	.bhbc-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bhbc-white);
		border-bottom: 1px solid var(--bhbc-border);
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		display: none;
	}
	.bhbc-primary-nav.is-open { display: flex; }
	.bhbc-primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.bhbc-primary-nav a { padding: 14px 12px; border-bottom: 1px solid var(--bhbc-cream-dark); }
	.bhbc-brand__name { font-size: 1.1rem; }
}

/* =========================================================
   6. HERO
   ========================================================= */
.bhbc-hero {
	position: relative;
	color: var(--bhbc-white);
	background: linear-gradient(180deg, rgba(12,22,38,0.78), rgba(12,22,38,0.88)), var(--bhbc-navy);
	background-size: cover;
	background-position: center;
	padding: 130px 0 110px;
	overflow: hidden;
}
.bhbc-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 90px;
	background: linear-gradient(180deg, transparent, var(--bhbc-cream));
	pointer-events: none;
}
.bhbc-hero__inner { max-width: 760px; }
.bhbc-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bhbc-gold-light);
	margin-bottom: 20px;
}
.bhbc-hero h1 {
	color: var(--bhbc-white);
	font-size: clamp(2.2rem, 4.2vw, 3.4rem);
	margin-bottom: 22px;
}
.bhbc-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.82); max-width: 560px; }
.bhbc-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* =========================================================
   7. SERVICE TIMES BAR
   ========================================================= */
.bhbc-times-bar {
	background: var(--bhbc-white);
	border-bottom: 1px solid var(--bhbc-border);
}
.bhbc-times-bar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding: 26px 0;
}
.bhbc-time-item { display: flex; align-items: center; gap: 14px; flex: 1 1 220px; }
.bhbc-time-item__icon {
	flex-shrink: 0;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--bhbc-cream-dark);
	color: var(--bhbc-gold);
	display: flex; align-items: center; justify-content: center;
}
.bhbc-time-item__label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bhbc-ink-soft); font-weight: 600; }
.bhbc-time-item__value { font-family: var(--bhbc-font-heading); font-size: 1.15rem; color: var(--bhbc-navy); font-weight: 600; }

/* =========================================================
   8. CARD GRIDS
   ========================================================= */
.bhbc-grid { display: grid; gap: 32px; }
.bhbc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bhbc-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
	.bhbc-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.bhbc-grid--3, .bhbc-grid--2 { grid-template-columns: 1fr; }
}

.bhbc-card {
	background: var(--bhbc-white);
	border-radius: var(--bhbc-radius);
	overflow: hidden;
	box-shadow: var(--bhbc-shadow);
	transition: transform var(--bhbc-transition), box-shadow var(--bhbc-transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.bhbc-card:hover { transform: translateY(-4px); box-shadow: var(--bhbc-shadow-lg); }
.bhbc-card__media { position: relative; aspect-ratio: 16/10; background: var(--bhbc-navy); overflow: hidden; }
.bhbc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bhbc-card__play {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(12,22,38,0.28);
}
.bhbc-card__play span {
	width: 52px; height: 52px; border-radius: 50%;
	background: rgba(255,255,255,0.92);
	display: flex; align-items: center; justify-content: center;
	color: var(--bhbc-navy);
}
.bhbc-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.bhbc-card__meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bhbc-gold); font-weight: 700; }
.bhbc-card__title { font-size: 1.2rem; margin: 0; }
.bhbc-card__title a:hover { color: var(--bhbc-gold); }
.bhbc-card__excerpt { color: var(--bhbc-ink-soft); font-size: 0.95rem; }
.bhbc-card__footer { margin-top: auto; padding-top: 8px; font-weight: 700; font-size: 0.9rem; color: var(--bhbc-navy); }

.bhbc-empty-state {
	text-align: center;
	padding: 48px 24px;
	background: var(--bhbc-white);
	border: 1px dashed var(--bhbc-border);
	border-radius: var(--bhbc-radius);
	color: var(--bhbc-ink-soft);
}

/* =========================================================
   9. WELCOME / ABOUT
   ========================================================= */
.bhbc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bhbc-split__media { position: relative; }
.bhbc-split__media img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: var(--bhbc-radius);
	box-shadow: var(--bhbc-shadow-lg);
}
.bhbc-split__media-frame {
	aspect-ratio: 4/5;
	border-radius: var(--bhbc-radius);
	box-shadow: var(--bhbc-shadow-lg);
	background: linear-gradient(160deg, var(--bhbc-navy), var(--bhbc-navy-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.35);
	overflow: hidden;
}
.bhbc-split__media::before {
	content: "";
	position: absolute;
	top: -18px; left: -18px;
	width: 90px; height: 90px;
	border-top: 4px solid var(--bhbc-gold);
	border-left: 4px solid var(--bhbc-gold);
	z-index: 1;
}
@media (max-width: 900px) {
	.bhbc-split { grid-template-columns: 1fr; gap: 40px; }
}
.bhbc-signature { margin-top: 24px; font-family: var(--bhbc-font-heading); font-style: italic; color: var(--bhbc-navy); }

/* =========================================================
   10. MISSIONS
   ========================================================= */
.bhbc-mission-card {
	background: var(--bhbc-white);
	border: 1px solid var(--bhbc-border);
	border-radius: var(--bhbc-radius);
	padding: 28px;
	height: 100%;
}
.bhbc-mission-card__flag { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bhbc-gold); margin-bottom: 10px; }
.bhbc-mission-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.bhbc-mission-card__role { font-size: 0.9rem; color: var(--bhbc-ink-soft); margin-bottom: 12px; font-weight: 600; }

/* =========================================================
   11. CTA BAND
   ========================================================= */
.bhbc-cta {
	background: var(--bhbc-navy);
	color: var(--bhbc-white);
	border-radius: var(--bhbc-radius);
	padding: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.bhbc-cta h2 { color: var(--bhbc-white); margin-bottom: 8px; }
.bhbc-cta p { color: rgba(255,255,255,0.78); margin: 0; }

/* =========================================================
   12. MAP / CONTACT
   ========================================================= */
.bhbc-map-wrap { border-radius: var(--bhbc-radius); overflow: hidden; box-shadow: var(--bhbc-shadow); line-height: 0; }
.bhbc-map-wrap iframe { width: 100%; height: 420px; border: 0; }
.bhbc-contact-list { display: flex; flex-direction: column; gap: 22px; }
.bhbc-contact-list__item { display: flex; gap: 16px; align-items: flex-start; }
.bhbc-contact-list__icon {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--bhbc-cream-dark);
	color: var(--bhbc-gold);
	display: flex; align-items: center; justify-content: center;
}
.bhbc-contact-list__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bhbc-ink-soft); font-weight: 700; margin-bottom: 2px; }
.bhbc-contact-list__value { font-size: 1.05rem; color: var(--bhbc-navy); font-weight: 600; }
.bhbc-contact-list__value a:hover { color: var(--bhbc-gold); }

/* =========================================================
   13. FORMS
   ========================================================= */
.bhbc-form-row { margin-bottom: 20px; }
.bhbc-form-row label {
	display: block;
	font-weight: 700;
	font-size: 0.88rem;
	margin-bottom: 8px;
	color: var(--bhbc-navy);
}
.bhbc-form-row input[type="text"],
.bhbc-form-row input[type="email"],
.bhbc-form-row input[type="tel"],
.bhbc-form-row input[type="password"],
.bhbc-form-row textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--bhbc-border);
	border-radius: var(--bhbc-radius);
	background: var(--bhbc-white);
	color: var(--bhbc-ink);
	transition: border-color var(--bhbc-transition), box-shadow var(--bhbc-transition);
}
.bhbc-form-row input:focus,
.bhbc-form-row textarea:focus {
	outline: none;
	border-color: var(--bhbc-gold);
	box-shadow: 0 0 0 3px rgba(184,147,90,0.2);
}
.bhbc-form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .bhbc-form-row--split { grid-template-columns: 1fr; } }
.bhbc-hp-field { position: absolute; left: -9999px; top: -9999px; }
.bhbc-form-notice {
	padding: 16px 20px;
	border-radius: var(--bhbc-radius);
	margin-bottom: 24px;
	font-weight: 600;
	font-size: 0.95rem;
}
.bhbc-form-notice--success { background: #e6f2ea; color: var(--bhbc-success); border: 1px solid #bfe0cb; }
.bhbc-form-notice--error { background: #fbe9e7; color: var(--bhbc-error); border: 1px solid #f0c4bd; }

/* =========================================================
   14. LIVE STREAM PAGE
   ========================================================= */
.bhbc-live-page { min-height: 60vh; }
.bhbc-live-gate {
	max-width: 460px;
	margin: 0 auto;
	background: var(--bhbc-white);
	border-radius: var(--bhbc-radius);
	box-shadow: var(--bhbc-shadow-lg);
	padding: 48px 40px;
	text-align: center;
}
.bhbc-live-gate__icon {
	width: 62px; height: 62px;
	border-radius: 50%;
	background: var(--bhbc-cream-dark);
	color: var(--bhbc-gold);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 20px;
}
.bhbc-live-gate h1 { font-size: 1.6rem; margin-bottom: 10px; }
.bhbc-live-gate p { color: var(--bhbc-ink-soft); }
.bhbc-live-gate form { margin-top: 28px; text-align: left; }
.bhbc-live-gate__times { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--bhbc-border); font-size: 0.9rem; color: var(--bhbc-ink-soft); }
.bhbc-live-gate__times strong { color: var(--bhbc-navy); }

.bhbc-live-player {
	max-width: 960px;
	margin: 0 auto;
}
.bhbc-live-player__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: var(--bhbc-navy-dark);
	border-radius: var(--bhbc-radius);
	overflow: hidden;
	box-shadow: var(--bhbc-shadow-lg);
}
.bhbc-live-player__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bhbc-live-player__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.bhbc-live-player__notice {
	margin-top: 20px;
	padding: 16px 20px;
	border-radius: var(--bhbc-radius);
	background: var(--bhbc-cream-dark);
	color: var(--bhbc-ink-soft);
	font-size: 0.92rem;
}
.bhbc-logout-link { font-size: 0.85rem; font-weight: 700; color: var(--bhbc-ink-soft); }
.bhbc-logout-link:hover { color: var(--bhbc-error); }

/* =========================================================
   15. SINGLE SERMON / POST
   ========================================================= */
.bhbc-single-media__meta { display: flex; flex-wrap: wrap; gap: 24px; margin: 20px 0 32px; padding: 20px 0; border-top: 1px solid var(--bhbc-border); border-bottom: 1px solid var(--bhbc-border); }
.bhbc-single-media__meta div { font-size: 0.9rem; }
.bhbc-single-media__meta span { display: block; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; font-weight: 700; color: var(--bhbc-gold); margin-bottom: 4px; }
.bhbc-audio-wrap { margin: 28px 0; }
.bhbc-audio-wrap audio { width: 100%; }
.bhbc-entry-content { max-width: 760px; }
.bhbc-entry-content h2, .bhbc-entry-content h3 { margin-top: 1.4em; }

/* =========================================================
   16. FOOTER
   ========================================================= */
.bhbc-footer { background: var(--bhbc-navy-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.bhbc-footer h3 { color: var(--bhbc-white); font-size: 1.05rem; margin-bottom: 20px; }
.bhbc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
@media (max-width: 800px) { .bhbc-footer__grid { grid-template-columns: 1fr; gap: 36px; } }
.bhbc-footer__brand { font-family: var(--bhbc-font-heading); color: var(--bhbc-white); font-size: 1.3rem; margin-bottom: 12px; }
.bhbc-footer__list li { margin-bottom: 12px; font-size: 0.95rem; }
.bhbc-footer__list a:hover { color: var(--bhbc-gold-light); }
.bhbc-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.bhbc-footer__social a {
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	display: flex; align-items: center; justify-content: center;
	transition: background var(--bhbc-transition), border-color var(--bhbc-transition);
}
.bhbc-footer__social a:hover { background: var(--bhbc-gold); border-color: var(--bhbc-gold); color: var(--bhbc-navy-dark); }
.bhbc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.85rem;
}
.bhbc-footer__bottom a:hover { color: var(--bhbc-gold-light); }

/* =========================================================
   17. 404 / SEARCH / MISC PAGE HEADER
   ========================================================= */
.bhbc-page-header { background: var(--bhbc-navy); color: var(--bhbc-white); padding: 72px 0; text-align: center; }
.bhbc-page-header h1 { color: var(--bhbc-white); margin: 0; }
.bhbc-404 { text-align: center; padding: 100px 0; }
.bhbc-404 .bhbc-eyebrow { display: block; }
.bhbc-search-form { display: flex; max-width: 480px; margin: 32px auto 0; gap: 10px; }
.bhbc-search-form input[type="search"] { flex: 1; padding: 13px 16px; border: 1px solid var(--bhbc-border); border-radius: var(--bhbc-radius); }

/* =========================================================
   18. RESPONSIVE TYPE / SPACING
   ========================================================= */
@media (max-width: 640px) {
	.bhbc-section { padding: 56px 0; }
	.bhbc-hero { padding: 96px 0 80px; }
	.bhbc-cta { padding: 36px 24px; flex-direction: column; text-align: center; }
	.bhbc-live-gate { padding: 36px 24px; }
}
