/* ============================================================================
 * AIIMS NewImage Heating & Cooling — main stylesheet
 *
 * Authoring conventions:
 *   - Mobile-first; min-width media queries scale layouts up.
 *   - CSS custom properties at :root for easy theming.
 *   - BEM-ish class names. No CSS preprocessor required.
 *   - Components grouped by purpose; the file is ordered top → bottom:
 *       1.  Reset / base
 *       2.  Tokens (variables)
 *       3.  Utilities (.container, .btn, .screen-reader-text)
 *       4.  Layout chrome (topbar, header, footer)
 *       5.  Sections (hero, services, why-us, testimonials, CTA)
 *       6.  Components (cards, comments, forms)
 *       7.  Editor / block overrides
 * ==========================================================================*/

/* -----------------------------------------------------------------------------
   1. Base reset
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/*
 * Global horizontal-scroll guard.
 *
 * Section partials that intentionally overflow (the why-us marquee, hero
 * background images) sit inside wrappers that already have overflow:hidden,
 * but stray sub-pixels still occasionally trigger a horizontal scrollbar on
 * some devices. Clamp the <html> element (NOT body) so the page can never
 * scroll sideways without breaking `position: sticky` on the header.
 *
 * Why html-only:
 *   - `overflow-x: hidden` on <body> creates a new scroll container, which
 *     turns every descendant `position: sticky` into a no-op (the sticky
 *     element sticks to <body>, but <body> never scrolls — only <html> /
 *     window does).
 *   - `overflow-x: clip` on <html> preserves window scroll behaviour and
 *     still prevents sideways scrolling.
 *   - Pre-clip browsers (Chromium < 90, Firefox < 87, Safari < 16) get the
 *     `hidden` fallback. <html>-level `hidden` doesn't break sticky in any
 *     modern browser the same way <body>-level does.
 */
html {
	overflow-x: clip;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	max-width: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--c-link);
	text-decoration: none;
	transition: color .15s ease;
}

a:hover,
a:focus {
	color: var(--c-link-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 .5em;
	color: var(--c-heading);
}

h1 {
	font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	padding-left: 1.5rem;
}

blockquote {
	margin: 0 0 1em;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--c-accent);
	/* background: var(--c-muted); */
	font-style: italic;
}

hr {
	border: 0;
	border-top: 1px solid var(--c-border);
	margin: 2rem 0;
}

:focus-visible {
	outline: 3px solid var(--c-focus);
	outline-offset: 2px;
}

/* -----------------------------------------------------------------------------
   2. Design tokens
----------------------------------------------------------------------------- */
:root {
	/* Brand colours — heating & cooling/gas industry "trustworthy navy + safety orange". */
	--c-primary: #0b3d91;
	--c-primary-dark: #07296a;
	--c-primary-light: #2e63c8;
	--c-accent: #ff6b1a;
	--c-accent-dark: #d8540a;

	--c-text: #1f2937;
	--c-heading: #0b1730;
	--c-muted-text: #5b6678;
	--c-link: var(--c-primary);
	--c-link-hover: var(--c-primary-dark);

	--c-bg: #ffffff;
	--c-muted: #f4f6fb;
	--c-border: #dde3ee;
	--c-focus: #ffbf47;

	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--radius: 10px;
	--radius-lg: 18px;
	--shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, .10);
	--shadow-lg: 0 20px 60px rgba(15, 23, 42, .18);

	--ease: cubic-bezier(.2, .8, .2, 1);
}

/* -----------------------------------------------------------------------------
   3. Utilities
----------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1rem;
}

@media (min-width: 768px) {
	.container {
		padding-inline: 1.5rem;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	position: absolute;
	background: var(--c-primary);
	color: #fff;
	padding: .75rem 1rem;
	z-index: 9999;
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
	width: auto;
	height: auto;
}

.alignwide {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .75rem 1.25rem;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.1;
	border-radius: var(--radius);
	border: 2px solid transparent;
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s ease;
	cursor: pointer;
	text-decoration: none;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--c-primary);
	color: #fff;
	border-color: var(--c-primary);
}

.btn--primary:hover,
.btn--primary:focus {
	background: var(--c-primary-dark);
	border-color: var(--c-primary-dark);
	color: #fff;
}

.btn--accent {
	background: var(--c-accent);
	color: #fff;
	border-color: var(--c-accent);
}

.btn--accent:hover,
.btn--accent:focus {
	background: var(--c-accent-dark);
	border-color: var(--c-accent-dark);
	color: #fff;
}

.btn--outline {
	background: transparent;
	color: var(--c-primary);
	border-color: var(--c-primary);
}

.btn--outline:hover,
.btn--outline:focus {
	background: var(--c-primary);
	color: #fff;
}

.btn--ghost {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}

.btn--ghost:hover,
.btn--ghost:focus {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.btn--xl {
	padding: 1rem 1.75rem;
	font-size: 1.1rem;
}

.btn--header {
	margin-left: 1rem;
}

/* Badges */
.badge {
	display: inline-block;
	padding: .2em .65em;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.badge--accent {
	background: var(--c-accent);
	color: #fff;
}

/* -----------------------------------------------------------------------------
   4. Layout chrome
----------------------------------------------------------------------------- */

/* Top contact bar */
.topbar {
	background: var(--c-primary-dark);
	color: rgba(255, 255, 255, .92);
	font-size: .85rem;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
}

.topbar__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
}

.topbar__item {
	display: inline-flex;
	align-items: center;
	gap: .35em;
}

.topbar__icon {
	display: inline-flex;
}

.topbar a {
	color: inherit;
}

.topbar a:hover {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 640px) {
	.topbar {
		display: none;
	}
}

/* Site header */
.site-header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 1rem;
}

.site-branding {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.site-title,
.site-title a {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--c-primary-dark);
	margin: 0;
}

.site-description {
	font-size: .85rem;
	color: var(--c-muted-text);
	margin: 0;
}

.custom-logo-link img {
	max-height: 60px;
	width: auto;
}

/* Primary nav */
.main-navigation {
	display: flex;
	align-items: center;
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.25rem;
}

.primary-menu a {
	display: inline-block;
	padding: .5em 0;
	color: var(--c-heading);
	font-weight: 600;
}

.primary-menu .current-menu-item>a,
.primary-menu .current_page_item>a {
	color: var(--c-primary);
}

.primary-menu .menu-item-has-children>a::after {
	content: " ▾";
	font-size: .8em;
	opacity: .7;
}

.primary-menu .sub-menu {
	position: absolute;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	list-style: none;
	padding: .5rem 0;
	min-width: 220px;
	box-shadow: var(--shadow-md);
	margin: .25rem 0 0;
	display: none;
	z-index: 60;
}

.primary-menu li {
	position: relative;
}

.primary-menu li:hover>.sub-menu,
.primary-menu li:focus-within>.sub-menu {
	display: block;
}

.primary-menu .sub-menu a {
	padding: .5rem 1rem;
	display: block;
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: .5rem;
	width: 44px;
	height: 44px;
}

.menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-heading);
	margin: 5px auto;
	transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
	.menu-toggle {
		display: block;
	}

	.primary-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: #fff;
		padding: 1rem;
		box-shadow: var(--shadow-md);
		border-top: 1px solid var(--c-border);
	}

	.main-navigation.is-open .primary-menu {
		display: flex;
	}

	.primary-menu a {
		padding: .75rem 0;
		border-bottom: 1px solid var(--c-border);
	}

	.primary-menu .sub-menu {
		position: static;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 1rem;
	}

	.btn--header {
		display: none;
	}
}

/* -----------------------------------------------------------------------------
   5. Sections
----------------------------------------------------------------------------- */
.section {
	padding: 4rem 0;
}

.section--posts {
	background: var(--c-muted);
}

.section--why {
	background: var(--c-muted);
}

.section--testimonials {
	background: linear-gradient(180deg, #fff 0%, var(--c-muted) 100%);
}

.section__header {
	max-width: 720px;
	margin-bottom: 2.5rem;
}

.section__header--center {
	margin-inline: auto;
	text-align: center;
}

.section__eyebrow {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .85rem;
	font-weight: 700;
	color: var(--c-accent);
	margin: 0 0 .5em;
}

.section__title {
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	margin: 0 0 .4em;
}

.section__lede {
	font-size: 1.1rem;
	color: var(--c-muted-text);
}

.section__action {
	margin-top: 2rem;
	text-align: center;
}

/* Hero */
.hero {
	background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
	color: #fff;
	padding: 5rem 0 6rem;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .10), transparent 60%);
}

.hero__inner {
	position: relative;
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: center;
}

@media (min-width: 960px) {
	.hero__inner {
		grid-template-columns: 1.4fr 1fr;
	}
}

.hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .85rem;
	color: var(--c-accent);
	font-weight: 700;
}

.hero__title {
	color: #fff;
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	margin: 0 0 1rem;
}

.hero__lede {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, .9);
	max-width: 56ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0 1.5rem;
}

.hero__phone {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .85);
}

.hero__phone a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}

.hero__trust {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .75rem 1rem;
	grid-template-columns: 1fr 1fr;
	background: rgba(255, 255, 255, .08);
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(2px);
}

.hero__trust li {
	display: flex;
	gap: .5rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, .95);
	font-weight: 500;
}

/* Services grid */
.services-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.services-grid--archive {
	gap: 1.5rem;
}

/* Why-us feature grid */
.feature-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
	text-align: center;
	padding: 1rem;
}

.feature__icon {
	font-size: 2.5rem;
	display: inline-block;
	margin-bottom: .5rem;
	color: var(--c-primary);
}

.feature__title {
	margin: 0 0 .25em;
}

.feature__blurb {
	color: var(--c-muted-text);
	margin: 0;
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--c-border);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.testimonial__rating {
	color: #f5a623;
	font-size: 1.1rem;
	letter-spacing: 2px;
}

.testimonial__quote {
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-style: normal;
}

.testimonial__cite {
	font-style: normal;
}

.testimonial__location {
	color: var(--c-muted-text);
	font-size: .9rem;
	display: block;
}

/* CTA strip */
.cta-strip {
	background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
	color: #fff;
	padding: 3rem 0;
}

.cta-strip__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.cta-strip__inner {
		grid-template-columns: 1.5fr auto;
	}
}

.cta-strip__title {
	color: #fff;
	margin: 0 0 .35em;
	font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.cta-strip__lede {
	color: rgba(255, 255, 255, .9);
	margin: 0;
	max-width: 56ch;
}

.cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.cta-strip .btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, .7);
}

.cta-strip .btn--accent {
	background: #fff;
	color: var(--c-accent-dark);
	border-color: #fff;
}

.cta-strip .btn--accent:hover {
	background: var(--c-primary-dark);
	color: #fff;
	border-color: var(--c-primary-dark);
}

/* -----------------------------------------------------------------------------
   6. Components
----------------------------------------------------------------------------- */

/* Cards (used for service tiles and post tiles) */
.card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
	display: flex;
	flex-direction: column;
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-primary-light);
}

.card__link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.card__media img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.card__icon {
	font-size: 2.5rem;
	padding: 1.25rem 1.25rem 0;
	color: var(--c-primary);
}

.card__body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.card__eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .75rem;
	font-weight: 700;
	color: var(--c-accent);
	margin: 0;
}

.card__title {
	font-size: 1.15rem;
	margin: 0;
}

.card__title a {
	color: var(--c-heading);
}

.card__excerpt {
	color: var(--c-muted-text);
	margin: 0;
}

.card__cta {
	color: var(--c-primary);
	font-weight: 700;
	margin-top: auto;
}

.card__meta {
	color: var(--c-muted-text);
	font-size: .85rem;
	margin: 0;
}

/* Layout with sidebar */
.layout-with-sidebar {
	display: grid;
	gap: 2.5rem;
	padding-block: 3rem;
}

@media (min-width: 960px) {
	.layout-with-sidebar {
		grid-template-columns: minmax(0, 1fr) 320px;
	}

	.has-no-sidebar .layout-with-sidebar {
		grid-template-columns: minmax(0, 1fr);
	}
}

.widget-area .widget {
	background: var(--c-muted);
	padding: 1.25rem;
	border-radius: var(--radius);
	margin-bottom: 1.5rem;
}

.widget__title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

/* Post grid (blog index, archives) */
.post-grid--cards {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Page header banner used by archives/search/404 */
.page-header--banner {
	background: var(--c-muted);
	padding: 3rem 0 2rem;
	border-bottom: 1px solid var(--c-border);
}

.page-header__title {
	margin: 0;
}

.page-header__description {
	color: var(--c-muted-text);
	margin-top: .5rem;
}

/* Entry (single post / page) */
.entry {
	margin-block: 2rem;
}

.entry--single,
.entry--page,
.entry--service {
	background: #fff;
	padding-block: 1rem;
}

.entry__featured {
	margin: 1.5rem 0;
}

.entry__featured img {
	border-radius: var(--radius-lg);
}

.entry__meta {
	color: var(--c-muted-text);
	font-size: .9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.entry__meta a {
	color: inherit;
	text-decoration: underline;
}

.entry__content {
	font-size: 1.05rem;
	line-height: 1.75;
}

.entry__content h2,
.entry__content h3 {
	margin-top: 2rem;
}

.entry__footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--c-border);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: var(--c-muted-text);
	font-size: .9rem;
}

.entry__more {
	font-weight: 700;
}

.meta-label {
	font-weight: 700;
	color: var(--c-heading);
}

/* Service single CTA */
.service-cta {
	margin-top: 3rem;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
	color: #fff;
}

.service-cta__title {
	color: #fff;
	margin: 0 0 .5em;
}

.service-cta__lede {
	color: rgba(255, 255, 255, .9);
	margin: 0 0 1.25em;
}

.service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Pagination */
.posts-navigation,
.post-navigation,
.pagination,
.navigation.pagination {
	margin-block: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5em;
	padding: .35em .75em;
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid var(--c-border);
	color: var(--c-text);
	text-decoration: none;
	font-weight: 600;
}

.page-numbers.current {
	background: var(--c-primary);
	color: #fff;
	border-color: var(--c-primary);
}

.page-numbers:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
}

/* Comments */
.comments-area {
	margin-top: 3rem;
}

.comments-title {
	font-size: 1.25rem;
}

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

.comment-list .children {
	list-style: none;
	padding-left: 1.5rem;
	border-left: 2px solid var(--c-border);
}

.comment-body {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--c-border);
}

.comment-meta {
	font-size: .85rem;
	color: var(--c-muted-text);
	margin-bottom: .5rem;
}

.comment-author img {
	float: left;
	margin-right: 1rem;
	border-radius: 50%;
}

.comment-respond {
	margin-top: 2rem;
	padding: 1.5rem;
	background: var(--c-muted);
	border-radius: var(--radius);
}

.comment-form label {
	display: block;
	font-weight: 600;
	margin-bottom: .25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: .65rem .85rem;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	font: inherit;
	background: #fff;
}

.comment-form textarea {
	min-height: 140px;
}

/* Search form */
.search-form {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.search-field {
	flex: 1;
	min-width: 0;
	padding: .75rem 1rem;
	font: inherit;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	background: #fff;
}

/* Footer */
.site-footer {
	background: #0a1b3d;
	color: rgba(255, 255, 255, .78);
	padding-top: 0;
}

.footer-widgets {
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-widgets__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.footer-widgets__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.site-footer .widget {
	background: transparent;
	padding: 0;
	margin-bottom: 0;
}

.site-footer .widget__title {
	color: #fff;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: var(--c-accent);
}

.footer-meta {
	border-top: 1px solid rgba(255, 255, 255, .07);
	padding: 2rem 0;
}

.footer-meta__inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.footer-meta__inner {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.footer-menu,
.social-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.social-menu a {
	display: inline-block;
	padding: .5rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .06);
}

.site-info {
	border-top: 1px solid rgba(255, 255, 255, .07);
	padding: 1.25rem 0;
	font-size: .85rem;
}

.site-info__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
}

/* 404 */
.error-404 {
	padding: 5rem 0;
	background: var(--c-muted);
}

.error-404__inner {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.error-404__code {
	font-size: 6rem;
	font-weight: 800;
	color: var(--c-primary);
	margin: 0;
	line-height: 1;
	opacity: .25;
}

.error-404__title {
	margin-top: 0;
}

.error-404__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2rem 0;
}

.error-404__search {
	max-width: 480px;
	margin-inline: auto;
}

/* -----------------------------------------------------------------------------
   7. Block editor / WordPress overrides
----------------------------------------------------------------------------- */
.wp-block-image figcaption {
	color: var(--c-muted-text);
	font-size: .9rem;
	text-align: center;
}

.wp-block-pullquote {
	border-top: 4px solid var(--c-accent);
	border-bottom: 4px solid var(--c-accent);
	padding: 1.5rem 0;
	text-align: center;
}

.wp-block-button__link {
	background: var(--c-primary);
	border-radius: var(--radius);
	padding: .75em 1.5em;
}

.wp-block-button__link:hover {
	background: var(--c-primary-dark);
}

.wp-block-cover .wp-block-cover__inner-container {
	color: #fff;
}

.has-text-align-center {
	text-align: center;
}



.suburb-hero-a:hover {
	color: #C72026;
}


.contact-hero-div {
	max-width: 465px;
	width: 100%;
	bottom: -50px;
	right: 200px;
	overflow: visible;

	@media (max-width:1450px) {
		right: 50px;
	}
}

.left-static {
	background-color: #C72026;
	height: 100%;
	position: relative;
	z-index: 9;
}



@media (max-width:1660px) {
	.nav{
		gap:1rem !important;
	}
	/* .nav-menu {
		padding-left:330px;
	}
	a.logo{
		left:160px;
	} */
}