.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2000;
	width: 100%;
	margin-top: 0;
	min-height: 165px;
	background: #050505;
	box-shadow: 0 1px 0 rgba(245, 193, 108, 0.18);
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 4rem);
	width: min(1500px, calc(100% - 56px));
	min-height: 165px;
	margin: 0 auto;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 auto;
	min-width: 150px;
	color: var(--anzsbs-white);
	text-decoration: none;
}

.site-header__brand .custom-logo {
	width: 214px;
	height: 132px;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.46));
}

.site-header__logo {
	width: 214px;
	height: 132px;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.46));
}

.site-header__brand-text {
	display: block;
	color: var(--anzsbs-white);
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.9;
}

.site-header__brand-tagline {
	display: block;
	margin-top: 8px;
	color: var(--anzsbs-gold);
	font-size: 0.82rem;
	font-weight: 800;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: clamp(1.15rem, 2.2vw, 2.3rem);
}

.anzsbs-menu,
.site-footer__links,
.site-footer__contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.anzsbs-menu {
	display: flex;
	align-items: center;
	gap: clamp(1.15rem, 2.2vw, 2.3rem);
}

.site-nav a {
	position: relative;
	display: block;
	padding: 0.75rem 0 0.8rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.94rem;
	font-weight: 760;
	text-decoration: none;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	content: "";
	background: var(--anzsbs-gold);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .current-menu-item a {
	color: var(--anzsbs-gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item a::after {
	transform: scaleX(1);
}

.sc-mobile-menu-toggle {
	display: none;
}

.site-footer {
	position: relative;
	overflow: hidden;
	padding: clamp(42px, 5vw, 72px) 0 0;
	background: radial-gradient(circle at 72% 18%, rgba(255, 191, 63, 0.06), transparent 28%),
		radial-gradient(circle at 14% 84%, rgba(241, 89, 58, 0.07), transparent 30%),
		#030507;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.74);
}

.site-footer::before {
	position: absolute;
	inset: 0;
	content: "";
	background-image: linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 76px 76px;
	opacity: 0.16;
	pointer-events: none;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr 0.62fr 0.82fr 1.2fr;
	gap: clamp(28px, 4vw, 58px);
	align-items: start;
	width: min(var(--anzsbs-container), calc(100% - 64px));
	margin: 0 auto;
}

.site-footer__brand-name {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 18px;
	color: #fff;
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 0.95;
	text-decoration: none;
}

.site-footer__logo {
	width: 156px;
	height: auto;
	max-height: 96px;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.site-footer__tagline {
	color: var(--anzsbs-gold);
	font-weight: 900;
}

.site-footer p {
	margin: 0;
	max-width: 310px;
}

.site-footer__heading {
	display: block;
	width: 100%;
	margin: 0 0 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px 24px;
}

.site-footer a {
	display: block;
	width: fit-content;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.28;
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--anzsbs-gold);
}

.site-footer__contact-list {
	display: grid;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
}

.site-footer__addresses {
	display: grid;
	gap: 12px;
}

.site-footer__bottom {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	width: min(var(--anzsbs-container), calc(100% - 64px));
	margin: clamp(34px, 4.5vw, 54px) auto 0;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.44);
	font-size: 13px;
}

@media (max-width: 1100px) {
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__addresses {
		grid-column: span 2;
	}
}

@media (max-width: 900px) {
	/* Body clears the stacked column header (~178px with 18px padding + logo + gap + button) */
	body {
		padding-top: 178px !important;
	}

	/* ── Header: vertical stack, centered, black bg ── */
	.site-header {
		min-height: auto;
		height: auto;
		padding: 18px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		overflow: visible;
	}

	.site-header__inner,
	.header-inner {
		width: 100%;
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 18px;
	}

	/* Logo: 190px wide, centered — matches home reference */
	.site-header__brand,
	.logo-link {
		display: block;
		width: 100%;
		text-align: center;
		line-height: 0;
		justify-content: center;
	}

	.site-header__brand .custom-logo,
	.site-header__logo,
	.logo-link img,
	.site-header img {
		display: block;
		width: 190px;
		max-width: 190px;
		height: auto;
		margin: 0 auto;
		object-position: center center;
	}

	.site-header__brand-text {
		font-size: 2rem;
	}

	.site-header__brand-tagline {
		display: none;
	}

	/* Yellow/gold toggle button — 148×44 px, border-radius 14px, matches home */
	.sc-mobile-menu-toggle {
		position: relative;
		z-index: 5;
		display: inline-flex;
		width: 148px;
		min-width: 148px;
		max-width: 148px;
		height: 44px;
		min-height: 44px;
		margin: 0;
		padding: 0 16px;
		align-items: center;
		justify-content: center;
		border: 0;
		border-radius: 14px;
		background: linear-gradient(135deg, #ffd16a 0%, #f4a900 100%);
		box-shadow: 0 12px 26px rgba(244, 169, 0, 0.20);
		color: #15110a;
		font-size: 15px;
		font-weight: 900;
		line-height: 1;
		cursor: pointer;
	}

	/* Nav panel: centered pill, dark semi-opaque so text is readable over any bg */
	.site-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		z-index: 2001;
		width: min(100%, 286px);
		margin: 0 auto;
		padding: 10px;
		background: rgba(5, 5, 7, 0.93);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 16px;
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.54);
	}

	/* JS toggles is-menu-open on .site-header — show nav as block, menu grid handles rows */
	.site-header.is-menu-open .site-nav {
		display: block;
	}

	/* Menu list: single-column grid with even gap */
	.anzsbs-menu {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	/* Centered boxed cards — !important prevents page-specific a{color} bleed */
	.site-nav a,
	.anzsbs-menu__link {
		display: block !important;
		width: 100% !important;
		padding: 11px 13px !important;
		color: rgba(255, 255, 255, 0.88) !important;
		background: rgba(255, 255, 255, 0.055) !important;
		border: 1px solid rgba(255, 255, 255, 0.09) !important;
		border-radius: 12px !important;
		text-align: center !important;
		font-size: 14px !important;
		font-weight: 850 !important;
	}

	.site-nav a:hover,
	.site-nav a:focus-visible {
		color: var(--anzsbs-gold) !important;
		background: rgba(255, 255, 255, 0.10) !important;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 32px, var(--anzsbs-container));
	}

	/* 2-col grid: brand full-width → Explore | Support → form full-width */
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.sc-footer__brand {
		grid-column: 1 / -1;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.site-footer__logo {
		object-position: center center;
	}

	.site-footer p {
		text-align: center;
	}

	.site-footer__contact-small {
		text-align: center;
	}

	.site-footer__addresses {
		grid-column: auto;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
	}
}

/* ── Footer nav columns (Explore + Support) ── */
.sc-footer__links,
.sc-footer__services {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
}

.sc-footer__links a,
.sc-footer__services a {
	display: block;
	width: fit-content;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.28;
	text-decoration: none;
}

.sc-footer__links a:hover,
.sc-footer__links a:focus-visible,
.sc-footer__services a:hover,
.sc-footer__services a:focus-visible {
	color: var(--anzsbs-gold);
}

/* ── Footer quick-message form ── */
.sc-footer__form {
	display: grid;
	gap: 10px;
}

.sc-footer__form input,
.sc-footer__form textarea {
	width: 100%;
	min-height: 44px;
	padding: 12px 14px;
	color: #fff;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 13px;
	outline: none;
	font: inherit;
}

.sc-footer__form textarea {
	min-height: 96px;
	resize: vertical;
}

.sc-footer__form input::placeholder,
.sc-footer__form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.sc-footer__form-btn {
	width: 100%;
	border-radius: 13px;
}

/* ── Brand supplementary contact numbers ── */
.site-footer__contact-small {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.7;
}

/* ── Responsive: form spans full width below 900px ── */
@media (max-width: 900px) {
	.sc-footer__form {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.sc-footer__form {
		grid-column: 1 / -1;
	}
}
