/*
Theme Name: Empyrean Business
Theme URI: https://empyreanbusiness.com/
Author: Empyrean Business
Author URI: https://empyreanbusiness.com/
Description: Rebuild of the empyreanbusiness.com site as a self-contained classic WordPress theme. Reproduces the original header, hero, services grid and footer with no page-builder or third-party plugin dependencies. Text, contact details, menus and social links are editable from Appearance > Customize.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: empyrean-business
Tags: business, one-column, custom-menu, custom-logo, editor-style, full-width-template, translation-ready
*/

/* --------------------------------------------------------------
   1. Design tokens
-------------------------------------------------------------- */
:root {
	--emp-font: "Helvetica Neue", Helvetica, Arial, sans-serif;

	--emp-blue: #2ba6cb;
	--emp-blue-dark: #2284a1;
	--emp-blue-link: #2ba5ca;
	--emp-orange: #ff9933;

	--emp-header-bg: #292929;
	--emp-footer-bg: #1d2123;
	--emp-footer-bar-bg: #2f373b;
	--emp-footer-text: #8996a0;
	--emp-footer-heading: #dddddd;
	--emp-social-bg: #848f97;

	--emp-body-text: #434343;
	--emp-hero-fallback: #171226;

	--emp-container: 1200px;
	--emp-container-pad: 40px;
}

/* --------------------------------------------------------------
   2. Reset / base
-------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #ffffff;
	color: var(--emp-body-text);
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
}

a {
	color: var(--emp-blue-link);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--emp-blue-dark);
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	font-family: var(--emp-font);
	font-weight: 700;
	line-height: 1.3;
	color: #2b2b2b;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0 0 1em;
	padding-left: 1.2em;
}

figure {
	margin: 0 0 1em;
}

blockquote {
	margin: 0 0 1em;
	padding: 0.5em 1.2em;
	border-left: 4px solid var(--emp-blue);
	color: #666666;
}

table {
	width: 100%;
	margin: 0 0 1.5em;
	border-collapse: collapse;
}

th,
td {
	padding: 0.6em 0.8em;
	border: 1px solid #e2e6ea;
	text-align: left;
}

code,
pre {
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.9em;
	background: #eceff3;
}

pre {
	padding: 1em;
	overflow-x: auto;
}

/* Accessibility helpers -------------------------------------- */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 8px;
	z-index: 1000;
	padding: 10px 18px;
	background: #ffffff;
	color: #292929;
	font-weight: 700;
}

.skip-link:focus {
	top: 8px;
}

:focus-visible {
	outline: 2px solid var(--emp-blue);
	outline-offset: 2px;
}

/* --------------------------------------------------------------
   3. Layout helpers
-------------------------------------------------------------- */
.emp-container {
	width: 100%;
	max-width: var(--emp-container);
	margin: 0 auto;
	padding: 0 var(--emp-container-pad);
}

/* --------------------------------------------------------------
   4. Buttons
-------------------------------------------------------------- */
.emp-button {
	display: inline-block;
	padding: 12px 24px;
	border: 2px solid var(--emp-blue-dark);
	border-radius: 0;
	background-color: var(--emp-blue);
	color: #ffffff;
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.emp-button:hover,
.emp-button:focus {
	background-color: var(--emp-blue-dark);
	color: #ffffff;
	text-decoration: none;
}

/* --------------------------------------------------------------
   5. Header + navigation
-------------------------------------------------------------- */
.emp-header {
	position: relative;
	z-index: 20;
	background-color: var(--emp-header-bg);
}

.emp-header__inner {
	display: flex;
	align-items: center;
	max-width: 1234px;
	margin: 0 auto;
	padding: 0 10px;
}

.emp-header__branding {
	flex: 0 0 18.902%;
	max-width: 18.902%;
	padding: 0 10px;
}

.emp-header__nav-col {
	flex: 0 0 81.098%;
	max-width: 81.098%;
	padding: 0 10px;
}

.emp-header__logo {
	display: block;
	margin: -25px 0 -13px;
	line-height: 0;
}

.emp-header__logo img {
	display: block;
	width: auto;
	max-width: 88%;
	height: 94px;
	object-fit: cover;
	object-position: center center;
}

.emp-header__logo-text {
	display: block;
	padding: 14px 0;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.emp-header__logo-text:hover,
.emp-header__logo-text:focus {
	color: #ffffff;
	text-decoration: none;
}

/* Primary menu ------------------------------------------------ */
.emp-nav__list,
.emp-nav__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.emp-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.emp-nav__list li {
	position: relative;
}

.emp-nav__list a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0 14px;
	color: #ffffff;
	font-family: var(--emp-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 50px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s ease;
}

.emp-nav__list a::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-color: var(--emp-blue);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.emp-nav__list a:hover::before,
.emp-nav__list a:focus::before {
	opacity: 1;
}

.emp-nav__list a:hover,
.emp-nav__list a:focus {
	color: #ffffff;
	text-decoration: none;
}

/* Sub menus --------------------------------------------------- */
.emp-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 30;
	min-width: 220px;
	background-color: var(--emp-header-bg);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.emp-nav__list li:hover > .sub-menu,
.emp-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.emp-nav__list .sub-menu a {
	padding: 12px 16px;
	font-size: 13px;
	line-height: 1.4;
	text-transform: none;
}

/* Menu toggle ------------------------------------------------- */
.emp-nav__toggle {
	display: none;
	margin-left: auto;
	padding: 12px;
	border: 0;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	line-height: 0;
}

.emp-nav__toggle svg {
	width: 26px;
	height: 26px;
	fill: #ffffff;
}

.emp-nav__toggle .emp-nav__icon-close {
	display: none;
}

.emp-nav__toggle[aria-expanded="true"] .emp-nav__icon-open {
	display: none;
}

.emp-nav__toggle[aria-expanded="true"] .emp-nav__icon-close {
	display: block;
}

/* --------------------------------------------------------------
   6. Hero
-------------------------------------------------------------- */
.emp-hero {
	border-bottom: 8px solid var(--emp-blue);
	background-color: var(--emp-hero-fallback);
	background-position: top left;
	background-repeat: no-repeat;
}

.emp-hero__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1082px;
	min-height: 125px;
	margin: 0 auto;
	padding: 30px 10px;
}

.emp-hero__col {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 10px;
}

.emp-hero__title {
	margin: 0 0 20px;
	color: #ffffff;
	font-family: var(--emp-font);
	font-size: 25px;
	font-weight: 700;
	line-height: 35px;
}

.emp-hero__text {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
}

.emp-hero__text p:last-child {
	margin-bottom: 0;
}

.emp-hero__cta {
	margin: -26px 0 20px;
}

.emp-hero__phone {
	margin: 0;
	color: var(--emp-orange);
	font-family: var(--emp-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	text-align: center;
}

.emp-hero__phone a {
	color: inherit;
	text-decoration: none;
}

.emp-hero__phone a:hover,
.emp-hero__phone a:focus {
	color: inherit;
	text-decoration: underline;
}

.emp-hero__subtitle {
	margin: 0 0 20px;
	color: var(--emp-orange);
	font-family: var(--emp-font);
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	text-align: left;
}

.emp-hero__list {
	margin: -29px 0 0;
	padding-left: 1.2em;
	color: #ffffff;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.65;
}

.emp-hero__list li {
	margin-bottom: 0.35em;
}

/* --------------------------------------------------------------
   7. Services / three-column band
-------------------------------------------------------------- */
.emp-services {
	display: flex;
	align-items: center;
	min-height: 541px;
	padding: 40px 0;
	background: #ffffff;
}

.emp-services__inner {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 15px;
}

.emp-services__col {
	padding: 0 15px;
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: var(--emp-body-text);
}

.emp-services__col--1 {
	flex: 0 0 23.849%;
	max-width: 23.849%;
}

.emp-services__col--2 {
	flex: 0 0 51.685%;
	max-width: 51.685%;
}

.emp-services__col--3 {
	flex: 0 0 23.994%;
	max-width: 23.994%;
}

.emp-services__col h4,
.emp-services__col h5 {
	margin: 0 0 0.8em;
	color: var(--emp-blue-link);
	font-family: var(--emp-font);
	font-weight: 700;
}

.emp-services__col h5 {
	font-size: 1.1em;
}

.emp-services__col h4 {
	font-size: 1.3em;
}

.emp-services__col ul {
	margin: 0;
	padding-left: 1.2em;
}

.emp-services__col li {
	margin-bottom: 0.35em;
}

.emp-services__col a {
	color: var(--emp-blue-link);
}

.emp-accent {
	color: var(--emp-blue-link);
}

/* --------------------------------------------------------------
   8. Inner page layout
-------------------------------------------------------------- */
.emp-page-header {
	border-bottom: 8px solid var(--emp-blue);
	background-color: var(--emp-hero-fallback);
	background-position: top left;
	background-repeat: no-repeat;
}

.emp-page-header__inner {
	display: flex;
	align-items: center;
	min-height: 160px;
	padding: 40px 0;
}

.emp-page-header__title {
	margin: 0;
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
}

.emp-page-header__subtitle {
	margin: 8px 0 0;
	color: var(--emp-orange);
	font-size: 16px;
	font-weight: 300;
}

.emp-main {
	padding: 50px 0 60px;
}

.emp-entry {
	max-width: 900px;
	font-size: 16px;
	line-height: 1.7;
}

.emp-entry h2 {
	font-size: 26px;
}

.emp-entry h3 {
	font-size: 21px;
}

.emp-entry h4 {
	font-size: 18px;
}

.emp-entry .alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.emp-entry .alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.emp-entry .aligncenter {
	display: block;
	margin: 0 auto 1em;
}

.emp-entry .wp-caption-text {
	font-size: 13px;
	color: #777777;
}

.emp-post-list {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.emp-post-card__title {
	margin: 0 0 8px;
	font-size: 20px;
}

.emp-post-card__meta {
	margin: 0 0 12px;
	font-size: 13px;
	color: #7a7a7a;
}

.emp-pagination {
	margin-top: 40px;
	font-size: 15px;
}

.emp-pagination .page-numbers {
	display: inline-block;
	padding: 6px 12px;
	margin-right: 4px;
	border: 1px solid #dfe4e8;
	color: var(--emp-body-text);
}

.emp-pagination .page-numbers.current,
.emp-pagination .page-numbers:hover {
	background: var(--emp-blue);
	border-color: var(--emp-blue);
	color: #ffffff;
	text-decoration: none;
}

.emp-search-form {
	display: flex;
	max-width: 420px;
	gap: 8px;
}

.emp-search-form label {
	flex: 1 1 auto;
	display: block;
}

.emp-search-form input[type="search"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dfe4e8;
	font-family: inherit;
	font-size: 15px;
}

.emp-comments {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e2e6ea;
}

.emp-comments .comment-list {
	list-style: none;
	padding: 0;
}

.emp-comments .comment-list ul.children {
	list-style: none;
	padding-left: 24px;
}

/* Inner page copy ---------------------------------------------- */
.emp-entry h2 {
	margin-top: 1.6em;
	color: var(--emp-blue-link);
}

.emp-entry h2:first-child {
	margin-top: 0;
}

.emp-entry ul,
.emp-entry ol {
	padding-left: 1.4em;
}

.emp-entry li {
	margin-bottom: 0.45em;
}

.emp-entry li strong {
	color: #2b2b2b;
}

.emp-cta-row {
	margin-top: 2em;
}

.emp-cta-row__or {
	display: inline-block;
	margin-left: 14px;
	font-size: 15px;
}

/* --------------------------------------------------------------
   8a. Contact page + quote form
-------------------------------------------------------------- */
.emp-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	align-items: flex-start;
}

.emp-contact__form {
	flex: 1 1 520px;
	max-width: 720px;
}

.emp-contact__aside {
	flex: 0 1 320px;
}

.emp-contact__card {
	padding: 26px 28px;
	border-top: 4px solid var(--emp-blue);
	background: #f6f8fa;
}

.emp-contact__heading {
	margin: 0 0 8px;
	font-size: 20px;
}

.emp-contact__phone {
	margin: 0 0 18px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}

.emp-contact__phone a {
	color: var(--emp-orange);
}

.emp-contact__company {
	margin: 0 0 4px;
	font-weight: 700;
}

.emp-contact__address {
	margin: 0 0 24px;
	line-height: 1.6;
}

.emp-contact__subheading {
	margin: 0 0 8px;
	font-size: 15px;
	color: #6a7480;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.emp-contact__steps {
	margin: 0;
	padding-left: 1.2em;
	line-height: 1.6;
}

.emp-contact__steps li {
	margin-bottom: 6px;
}

/* Form ---------------------------------------------------------- */
.emp-form {
	margin-top: 8px;
}

.emp-form__row--2 {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}

.emp-form__row--2 .emp-form__field {
	flex: 1 1 220px;
}

.emp-form__field {
	margin: 0 0 18px;
}

.emp-form__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #2b2b2b;
}

.emp-form__field label span {
	color: var(--emp-orange);
}

.emp-form__field input,
.emp-form__field select,
.emp-form__field textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #cfd6dc;
	border-radius: 0;
	background: #ffffff;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.4;
	color: var(--emp-body-text);
}

.emp-form__field textarea {
	resize: vertical;
	min-height: 140px;
}

.emp-form__field input:focus,
.emp-form__field select:focus,
.emp-form__field textarea:focus {
	border-color: var(--emp-blue);
	outline: 2px solid var(--emp-blue);
	outline-offset: 0;
}

.emp-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.emp-form__consent {
	margin: 0 0 18px;
	font-size: 13px;
	color: #6a7480;
}

.emp-form__submit {
	margin: 0;
}

.emp-form__submit .emp-button {
	padding: 14px 32px;
	font-size: 15px;
}

.emp-form__notice {
	margin: 0 0 24px;
	padding: 14px 18px;
	border-left: 4px solid;
	font-size: 15px;
}

.emp-form__notice--ok {
	border-color: #2e9e5b;
	background: #eef8f1;
	color: #1f5c38;
}

.emp-form__notice--err {
	border-color: #d9534f;
	background: #fdf1f0;
	color: #7a2b28;
}

@media (max-width: 767px) {
	.emp-contact {
		gap: 32px;
	}

	.emp-contact__aside {
		flex-basis: 100%;
	}
}

/* --------------------------------------------------------------
   8b. Capability statement page
-------------------------------------------------------------- */
.emp-cap__intro {
	margin-bottom: 44px;
}

.emp-cap__section {
	max-width: 900px;
	margin: 0 0 40px;
	padding: 0 0 36px;
	border-bottom: 1px solid #e6eaee;
}

.emp-cap__section:last-child {
	border-bottom: 0;
}

.emp-cap__heading {
	margin: 0 0 20px;
	color: var(--emp-blue-link);
	font-size: 22px;
	font-weight: 700;
}

/* Snapshot table ---------------------------------------------- */
.emp-cap__table {
	margin: 0;
	border-top: 1px solid #e6eaee;
}

.emp-cap__row {
	display: flex;
	flex-wrap: wrap;
	padding: 12px 0;
	border-bottom: 1px solid #e6eaee;
}

.emp-cap__label {
	flex: 0 0 34%;
	max-width: 34%;
	margin: 0;
	padding-right: 16px;
	color: #6a7480;
	font-size: 14px;
	font-weight: 700;
}

.emp-cap__value {
	flex: 1 1 60%;
	margin: 0;
	font-size: 16px;
	color: var(--emp-body-text);
}

/* Codes ------------------------------------------------------- */
.emp-cap__primary {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--emp-body-text);
}

.emp-cap__badge {
	flex: 0 0 auto;
	display: inline-block;
	margin-top: 4px;
	padding: 4px 10px;
	background: var(--emp-blue);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-transform: uppercase;
	white-space: nowrap;
}

.emp-cap__codes {
	display: grid;
	gap: 8px 24px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.emp-cap__codes li {
	padding: 8px 12px;
	border-left: 3px solid var(--emp-blue);
	background: #f6f8fa;
	font-size: 15px;
}

.emp-cap__bullets {
	margin: 0;
	padding-left: 1.2em;
	font-size: 16px;
	line-height: 1.7;
}

.emp-cap__bullets li {
	margin-bottom: 0.5em;
}

/* Point of contact -------------------------------------------- */
.emp-cap__poc-name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.emp-cap__poc-title {
	margin: 2px 0 12px;
	color: #6a7480;
	font-size: 15px;
}

.emp-cap__poc-list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 1.9;
}

/* Editor-only notice ------------------------------------------ */
.emp-cap__notice {
	max-width: 900px;
	margin: 0 0 32px;
	padding: 16px 20px;
	border-left: 4px solid var(--emp-orange);
	background: #fff8ef;
	font-size: 14px;
	line-height: 1.6;
	color: #5a4a33;
}

.emp-cap__notice p {
	margin: 0 0 6px;
}

.emp-cap__notice p:last-child {
	margin-bottom: 0;
	font-weight: 700;
}

@media (max-width: 640px) {
	.emp-cap__label,
	.emp-cap__value {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.emp-cap__value {
		margin-top: 2px;
	}
}

/* --------------------------------------------------------------
   9. Footer
-------------------------------------------------------------- */
.emp-footer {
	background-color: var(--emp-footer-bg);
}

.emp-footer__top {
	display: flex;
	align-items: center;
	min-height: 205px;
	padding: 24px 0;
}

.emp-footer__inner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 10px;
}

.emp-footer__intro {
	margin: 14px 0 20px;
	color: var(--emp-footer-text);
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

.emp-footer__intro p:last-child {
	margin-bottom: 0;
}

.emp-footer__cols {
	display: flex;
	flex-wrap: wrap;
	margin-top: -18px;
}

.emp-footer__col {
	padding: 0 10px;
}

.emp-footer__col--links {
	flex: 0 0 67.17%;
	max-width: 67.17%;
}

.emp-footer__col--contact {
	flex: 0 0 32.784%;
	max-width: 32.784%;
}

.emp-footer__heading {
	margin: 0 0 20px;
	color: var(--emp-footer-heading);
	font-family: var(--emp-font);
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	text-align: left;
}

.emp-footer__list {
	list-style: none;
	margin: -11px 0 20px;
	padding: 0;
}

.emp-footer__list:last-child {
	margin-bottom: 0;
}

.emp-footer__list li {
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: var(--emp-footer-text);
}

.emp-footer__list a {
	display: block;
	color: var(--emp-footer-text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.emp-footer__list a:hover,
.emp-footer__list a:focus {
	color: #ffffff;
	text-decoration: none;
}

.emp-footer__company {
	margin: -2px 0 0;
}

.emp-footer__company li,
.emp-footer__company a {
	font-weight: 700;
}

.emp-footer__address {
	margin: -19px 0 0;
}

/* Footer bar -------------------------------------------------- */
.emp-footer__bar {
	padding: 22px 0 18px;
	background-color: var(--emp-footer-bar-bg);
	text-align: center;
}

.emp-social {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.emp-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--emp-social-bg);
	transition: background-color 0.3s ease;
}

.emp-social a:hover,
.emp-social a:focus {
	background-color: #ffffff;
}

.emp-social svg {
	width: 24px;
	height: 24px;
	fill: var(--emp-footer-bar-bg);
}

.emp-footer__copyright {
	margin: 0;
	color: var(--emp-footer-text);
	font-family: var(--emp-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

.emp-footer__copyright p:last-child {
	margin-bottom: 0;
}

.emp-footer__copyright a {
	color: var(--emp-footer-text);
	text-decoration: underline;
}

.emp-footer__copyright a:hover,
.emp-footer__copyright a:focus {
	color: #ffffff;
}

/* --------------------------------------------------------------
   10. Scroll to top
-------------------------------------------------------------- */
.emp-scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background-color: rgba(41, 41, 41, 0.75);
	color: #ffffff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.emp-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.emp-scroll-top svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

/* --------------------------------------------------------------
   11. Responsive
-------------------------------------------------------------- */
@media (max-width: 1024px) {
	:root {
		--emp-container: 1024px;
		--emp-container-pad: 32px;
	}
}

@media (max-width: 880px) {
	.emp-services {
		min-height: 0;
	}

	.emp-services__col--1,
	.emp-services__col--2,
	.emp-services__col--3 {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 28px;
	}
}

@media (max-width: 767px) {
	:root {
		--emp-container-pad: 24px;
	}

	.emp-header__inner {
		flex-wrap: wrap;
		padding: 0 4px;
	}

	.emp-header__branding {
		flex: 0 0 auto;
		max-width: 70%;
	}

	.emp-header__nav-col {
		flex: 1 1 auto;
		max-width: none;
		display: flex;
		justify-content: flex-end;
	}

	.emp-header__logo img {
		max-width: 100%;
		height: 78px;
	}

	.emp-nav__toggle {
		display: block;
	}

	.emp-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background-color: var(--emp-header-bg);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	}

	.emp-nav.is-open {
		display: block;
	}

	.emp-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.emp-nav__list a {
		padding: 12px 24px;
		line-height: 1.4;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.emp-nav__list .sub-menu {
		position: static;
		min-width: 0;
		opacity: 1;
		visibility: visible;
		background: rgba(0, 0, 0, 0.25);
	}

	.emp-hero__col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.emp-hero__title {
		font-size: 18px;
		line-height: 32px;
	}

	.emp-hero__phone {
		font-size: 26px;
		line-height: 38px;
	}

	.emp-hero__list,
	.emp-hero__cta {
		margin-top: 0;
	}

	.emp-services__col {
		font-size: 12px;
		line-height: 23px;
	}

	.emp-footer__col--links,
	.emp-footer__col--contact {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}

	.emp-footer__heading {
		font-size: 15px;
	}

	.emp-footer__list li {
		font-size: 12px;
	}

	.emp-footer__list,
	.emp-footer__company,
	.emp-footer__address {
		margin-top: 0;
	}

	.emp-footer__copyright {
		font-size: 11px;
		line-height: 1.4;
	}

	.emp-social a {
		width: 40px;
		height: 40px;
	}

	.emp-social svg {
		width: 20px;
		height: 20px;
	}

	.emp-page-header__title {
		font-size: 24px;
	}
}

/* --------------------------------------------------------------
   12. WordPress core classes
-------------------------------------------------------------- */
.alignwide {
	max-width: 1100px;
}

.alignfull {
	max-width: none;
}

.wp-block-image img {
	height: auto;
}

.sticky,
.gallery-caption,
.bypostauthor {
	display: block;
}
