/* ==========================================================================
   Easy Move Experts — Theme Stylesheet
   Brand: Black #15171A / Red #E5202B / White
   Display: Plus Jakarta Sans · Body: Inter
   Signature device: a forward-motion "chevron" pulled from the logo's
   arrow mark — used as an eyebrow glyph, list marker and section divider
   to tie every page back to the brand without being decorative for its
   own sake (the chevron literally means "your move, in motion").
   ========================================================================== */

:root {
	--eme-red: #E5202B;
	--eme-red-dark: #BD1620;
	--eme-red-tint: #FDECED;
	--eme-black: #15171A;
	--eme-black-soft: #21242A;
	--eme-white: #FFFFFF;
	--eme-grey-50: #F7F7F8;
	--eme-grey-100: #EFEFF1;
	--eme-grey-200: #E2E3E6;
	--eme-grey-400: #9A9DA5;
	--eme-grey-600: #61646C;
	--eme-grey-700: #44464C;

	--eme-font-display: 'Plus Jakarta Sans', 'Arial Black', Helvetica, sans-serif;
	--eme-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--eme-radius-sm: 8px;
	--eme-radius-md: 14px;
	--eme-radius-lg: 22px;
	--eme-radius-pill: 999px;

	--eme-shadow-sm: 0 2px 8px rgba(21, 23, 26, 0.06);
	--eme-shadow-md: 0 8px 24px rgba(21, 23, 26, 0.10);
	--eme-shadow-lg: 0 20px 48px rgba(21, 23, 26, 0.16);

	--eme-container: 1180px;
	--eme-gutter: clamp(20px, 5vw, 48px);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.eme-site {
	margin: 0;
	font-family: var(--eme-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--eme-grey-700);
	background: var(--eme-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: var(--eme-red); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--eme-red-dark); }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
	font-family: var(--eme-font-display);
	color: var(--eme-black);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 0.6em;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); }

p { margin: 0 0 1.1em; }

button { font-family: inherit; cursor: pointer; }

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

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.eme-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--eme-black);
	color: var(--eme-white);
	padding: 12px 20px;
	z-index: 10000;
	border-radius: 0 0 8px 0;
}
.eme-skip-link:focus {
	left: 0;
	color: var(--eme-white);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.eme-container {
	max-width: var(--eme-container);
	margin: 0 auto;
	padding-left: var(--eme-gutter);
	padding-right: var(--eme-gutter);
}

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

.eme-section-heading { margin-bottom: 0.4em; }
.eme-section-heading.eme-center { }

.eme-section-subheading {
	color: var(--eme-grey-600);
	font-size: 1.05rem;
	max-width: 640px;
	margin: 0 auto 2.6rem;
}
.eme-page-header:not(.eme-center) .eme-section-subheading { margin-left: 0; }

section { padding: clamp(3rem, 5vw, 5.5rem) 0; }

/* Eyebrow label with signature chevron glyph */
.eme-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--eme-font-display);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eme-red);
	margin: 0 0 0.9em;
}
.eme-eyebrow::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid var(--eme-red);
	flex: none;
}
.eme-eyebrow-light { color: var(--eme-red); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.eme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	font-family: var(--eme-font-display);
	font-weight: 700;
	font-size: 0.98rem;
	padding: 0.95em 1.7em;
	border-radius: var(--eme-radius-pill);
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}
.eme-btn:hover { transform: translateY(-2px); }

.eme-btn-primary {
	background: var(--eme-red);
	color: var(--eme-white);
	box-shadow: var(--eme-shadow-sm);
}
.eme-btn-primary:hover {
	background: var(--eme-red-dark);
	color: var(--eme-white);
	box-shadow: var(--eme-shadow-md);
}

.eme-btn-light {
	background: var(--eme-white);
	color: var(--eme-black);
}
.eme-btn-light:hover { background: var(--eme-grey-100); color: var(--eme-black); }

.eme-btn-outline {
	background: transparent;
	border-color: var(--eme-black);
	color: var(--eme-black);
}
.eme-btn-outline:hover { background: var(--eme-black); color: var(--eme-white); border-color: var(--eme-black); }

.eme-btn-block { display: flex; width: 100%; }

.eme-inline-cta { margin: 1.6rem 0; }

.eme-btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: var(--eme-white);
	border-radius: 50%;
	animation: eme-spin 0.7s linear infinite;
}
button[disabled] .eme-btn-spinner { display: inline-block; }
button[disabled] { opacity: 0.85; cursor: progress; }

@keyframes eme-spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Header
   ========================================================================== */

.eme-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--eme-grey-200);
}

.eme-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 84px;
}

.eme-site-logo { display: inline-flex; align-items: center; flex: none; }
.eme-site-logo img { height: 38px; width: auto; }

.eme-primary-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin-left: auto;
}

.eme-primary-menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}
.eme-primary-menu a {
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.96rem;
	color: var(--eme-black);
	position: relative;
	padding: 0.3em 0;
}
.eme-primary-menu a:hover { color: var(--eme-red); }
.eme-primary-menu li.current-menu-item > a,
.eme-primary-menu li.current_page_item > a { color: var(--eme-red); }

.eme-nav-cta { padding: 0.7em 1.4em; font-size: 0.92rem; }

.eme-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: none;
	background: transparent;
	border-radius: var(--eme-radius-sm);
}
.eme-mobile-toggle:hover { background: var(--eme-grey-100); }
.eme-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--eme-black);
	margin: 0 auto;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.eme-mobile-toggle[aria-expanded="true"] .eme-toggle-bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.eme-mobile-toggle[aria-expanded="true"] .eme-toggle-bar:nth-child(3) { opacity: 0; }
.eme-mobile-toggle[aria-expanded="true"] .eme-toggle-bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.eme-hero {
	position: relative;
	padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
	background:
		linear-gradient(180deg, var(--eme-grey-50) 0%, var(--eme-white) 100%);
	overflow: hidden;
}
.eme-hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -160px;
	width: 520px;
	height: 520px;
	background: var(--eme-red-tint);
	border-radius: 50%;
	z-index: 0;
}
.eme-hero::after {
	content: "";
	position: absolute;
	left: -10%;
	bottom: -18%;
	width: 60%;
	height: 70%;
	background:
		linear-gradient(135deg, transparent 48%, var(--eme-grey-100) 48.5%, var(--eme-grey-100) 51%, transparent 51.5%);
	opacity: 0.6;
	z-index: 0;
}

.eme-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.eme-hero-copy h1 { margin-bottom: 0.5em; }

.eme-hero-subhead {
	font-size: 1.1rem;
	color: var(--eme-grey-700);
	max-width: 560px;
}

.eme-hero-trust-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 1.6rem;
}
.eme-hero-trust-list li {
	display: flex;
	align-items: center;
	gap: 0.65em;
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--eme-black);
}
.eme-hero-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--eme-black);
	color: var(--eme-white);
	font-size: 0.7rem;
	flex: none;
}

.eme-hero-form-wrap { position: relative; }

/* ==========================================================================
   Forms (Web3Forms quote + partner)
   ========================================================================== */

.eme-form-card {
	background: var(--eme-white);
	border-radius: var(--eme-radius-lg);
	box-shadow: var(--eme-shadow-lg);
	border: 1px solid var(--eme-grey-200);
	padding: clamp(1.5rem, 3vw, 2.2rem);
	position: relative;
}
.eme-form-card::before {
	content: "";
	position: absolute;
	top: 0; left: 28px;
	width: 46px; height: 5px;
	background: var(--eme-red);
	border-radius: 0 0 6px 6px;
}

.eme-form-title { margin-bottom: 0.25em; }
.eme-form-subtitle { color: var(--eme-grey-600); font-size: 0.96rem; margin-bottom: 1.4rem; }

.eme-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1rem;
	margin-bottom: 1.3rem;
}

.eme-field { display: flex; flex-direction: column; gap: 0.4rem; }
.eme-field-full { grid-column: 1 / -1; }

.eme-field label {
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--eme-black);
}
.eme-req { color: var(--eme-red); }

.eme-field input,
.eme-field select,
.eme-field textarea {
	font-family: var(--eme-font-body);
	font-size: 0.96rem;
	padding: 0.75em 0.9em;
	border-radius: var(--eme-radius-sm);
	border: 1.5px solid var(--eme-grey-200);
	background: var(--eme-grey-50);
	color: var(--eme-black);
	width: 100%;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}
.eme-field input:focus,
.eme-field select:focus,
.eme-field textarea:focus {
	border-color: var(--eme-red);
	background: var(--eme-white);
	outline: none;
}
.eme-field textarea { resize: vertical; min-height: 80px; }

.eme-field input[aria-invalid="true"],
.eme-field select[aria-invalid="true"],
.eme-field textarea[aria-invalid="true"] {
	border-color: var(--eme-red);
	background: var(--eme-red-tint);
}

.eme-error {
	display: block;
	font-size: 0.8rem;
	color: var(--eme-red-dark);
	min-height: 1em;
}

.eme-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	opacity: 0;
}

.eme-form-disclaimer {
	font-size: 0.78rem;
	color: var(--eme-grey-400);
	margin: 0.9rem 0 0;
	line-height: 1.5;
}

.eme-form-result {
	margin-top: 1rem;
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.94rem;
	border-radius: var(--eme-radius-sm);
	padding: 0;
	min-height: 0;
}
.eme-form-result:not(:empty) { padding: 0.85em 1em; }
.eme-form-result[data-state="success"] {
	background: #EAF7EE;
	color: #1E7B3B;
}
.eme-form-result[data-state="error"] {
	background: var(--eme-red-tint);
	color: var(--eme-red-dark);
}

.eme-form-compact .eme-form-grid { grid-template-columns: 1fr; }

/* ==========================================================================
   Why choose us
   ========================================================================== */

.eme-why-choose-section { background: var(--eme-white); }

.eme-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.eme-why-card {
	background: var(--eme-grey-50);
	border-radius: var(--eme-radius-md);
	padding: 1.8rem;
	border: 1px solid var(--eme-grey-100);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eme-why-card:hover { transform: translateY(-4px); box-shadow: var(--eme-shadow-md); }

.eme-why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: var(--eme-radius-sm);
	background: var(--eme-black);
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.eme-why-card h3 { margin-bottom: 0.4em; }
.eme-why-card p { color: var(--eme-grey-600); font-size: 0.96rem; margin: 0; }

/* ==========================================================================
   Service / suburb / blog grids + cards
   ========================================================================== */

.eme-services-grid-section { background: var(--eme-grey-50); }

.eme-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.eme-service-card,
.eme-blog-card {
	display: block;
	background: var(--eme-white);
	border-radius: var(--eme-radius-md);
	overflow: hidden;
	border: 1px solid var(--eme-grey-200);
	box-shadow: var(--eme-shadow-sm);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eme-service-card:hover,
.eme-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--eme-shadow-md);
}

.eme-service-card-media,
.eme-blog-card-media {
	aspect-ratio: 3 / 2;
	background: var(--eme-grey-100);
	overflow: hidden;
}
.eme-service-card-media img,
.eme-blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.eme-blog-card-media-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--eme-grey-100), var(--eme-grey-200));
}

.eme-service-card h3,
.eme-blog-card-body h2,
.eme-blog-card-body h3 {
	padding: 0 1.25rem;
	margin-top: 1.1rem;
	margin-bottom: 0.3em;
	font-size: 1.1rem;
}
.eme-service-card p,
.eme-blog-card-body p {
	padding: 0 1.25rem;
	color: var(--eme-grey-600);
	font-size: 0.92rem;
	margin-bottom: 0.7rem;
}
.eme-blog-card-cat {
	padding: 1.1rem 1.25rem 0;
	margin: 0;
	font-family: var(--eme-font-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--eme-red);
}
.eme-blog-card-body h2,
.eme-blog-card-body h3 { padding-top: 0; }

.eme-card-link {
	display: block;
	margin: 0 1.25rem 1.25rem;
	font-family: var(--eme-font-display);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--eme-black);
}
.eme-service-card:hover .eme-card-link,
.eme-blog-card:hover .eme-card-link { color: var(--eme-red); }

.eme-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

/* Suburb grid (chip cloud) */

.eme-suburb-grid-section { background: var(--eme-white); }

.eme-suburb-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	justify-content: center;
}
.eme-suburb-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--eme-black);
	background: var(--eme-grey-50);
	border: 1.5px solid var(--eme-grey-200);
	padding: 0.6em 1.2em;
	border-radius: var(--eme-radius-pill);
	transition: all 0.15s ease;
}
.eme-suburb-chip::before {
	content: "";
	width: 0; height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid var(--eme-red);
	flex: none;
}
.eme-suburb-chip:hover {
	background: var(--eme-black);
	border-color: var(--eme-black);
	color: var(--eme-white);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.eme-testimonials-section { background: var(--eme-black); color: var(--eme-white); }
.eme-testimonials-section .eme-section-heading { color: var(--eme-white); }

.eme-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.eme-testimonial-card {
	background: var(--eme-black-soft);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--eme-radius-md);
	padding: 1.6rem;
}
.eme-stars { color: var(--eme-red); font-size: 1rem; margin-bottom: 0.7rem; letter-spacing: 0.1em; }
.eme-testimonial-quote { font-size: 0.98rem; color: var(--eme-white); margin-bottom: 1rem; }
.eme-testimonial-author { font-family: var(--eme-font-display); font-weight: 700; font-size: 0.88rem; color: var(--eme-grey-400); margin: 0; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.eme-faq-block { margin: 2.5rem 0; }
.eme-faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.eme-faq-item {
	border: 1px solid var(--eme-grey-200);
	border-radius: var(--eme-radius-md);
	overflow: hidden;
	background: var(--eme-white);
}

.eme-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: var(--eme-grey-50);
	border: none;
	padding: 1.1rem 1.4rem;
	text-align: left;
	font-family: var(--eme-font-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--eme-black);
}
.eme-faq-question:hover { background: var(--eme-grey-100); }

.eme-faq-icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--eme-red);
	color: var(--eme-white);
	font-size: 1rem;
	line-height: 1;
	transition: transform 0.2s ease;
}
.eme-faq-question[aria-expanded="true"] .eme-faq-icon { transform: rotate(45deg); }

.eme-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease, padding 0.25s ease;
	padding: 0 1.4rem;
}
.eme-faq-answer p { margin: 0; padding: 0 0 1.2rem; color: var(--eme-grey-600); }
.eme-faq-question[aria-expanded="true"] + .eme-faq-answer {
	max-height: 600px;
	padding-top: 0.2rem;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.eme-cta-banner {
	background: linear-gradient(120deg, var(--eme-red) 0%, var(--eme-red-dark) 100%);
	color: var(--eme-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.eme-cta-banner::before {
	content: "";
	position: absolute;
	right: -6%;
	top: 50%;
	transform: translateY(-50%) rotate(20deg);
	width: 280px; height: 280px;
	background: rgba(255,255,255,0.07);
	clip-path: polygon(0 30%, 60% 30%, 60% 0, 100% 50%, 60% 100%, 60% 70%, 0 70%);
}
.eme-cta-banner h2 { color: var(--eme-white); margin-bottom: 0.3em; }
.eme-cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 1.4rem; }

/* ==========================================================================
   Partner CTA (Join Us band)
   ========================================================================== */

.eme-partner-cta-section { background: var(--eme-black); color: var(--eme-white); }
.eme-partner-cta-inner { max-width: 760px; text-align: center; }
.eme-partner-cta-copy h2 { color: var(--eme-white); }
.eme-partner-cta-copy p { color: rgba(255,255,255,0.78); margin-bottom: 1.6rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.eme-site-footer { background: var(--eme-black-soft); color: rgba(255,255,255,0.85); }

.eme-footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding: clamp(2.5rem, 5vw, 4rem) var(--eme-gutter);
}

.eme-footer-logo img { height: 36px; }
.eme-footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin: 1rem 0 1.4rem; max-width: 320px; }

.eme-footer-col h3 {
	color: var(--eme-white);
	font-size: 0.86rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.eme-footer-menu { display: flex; flex-direction: column; gap: 0.65rem; }
.eme-footer-menu a { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.eme-footer-menu a:hover { color: var(--eme-white); }

.eme-footer-note { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }

.eme-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.eme-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1.4rem var(--eme-gutter);
}
.eme-footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.eme-footer-legal { display: flex; gap: 1.5rem; }
.eme-footer-legal a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.eme-footer-legal a:hover { color: var(--eme-white); }

/* Footer widget area */
.eme-widget { margin-bottom: 1.2rem; }
.eme-widget-title { color: var(--eme-white); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   Page header / breadcrumbs / generic page content
   ========================================================================== */

.eme-page-container { padding-top: 2.4rem; padding-bottom: 1rem; }

.eme-breadcrumbs { margin-bottom: 1.6rem; }
.eme-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4em; }
.eme-breadcrumbs li { display: flex; align-items: center; gap: 0.4em; font-size: 0.85rem; }
.eme-breadcrumbs a { color: var(--eme-grey-600); }
.eme-breadcrumbs a:hover { color: var(--eme-red); }
.eme-breadcrumbs [aria-current="page"] { color: var(--eme-black); font-weight: 600; }
.eme-breadcrumb-sep { color: var(--eme-grey-400); }

.eme-page-header { margin-bottom: 2rem; }
.eme-page-header.eme-suburb-header,
.eme-page-header.eme-service-header { max-width: 760px; }

.eme-suburb-postcode,
.eme-service-summary {
	color: var(--eme-grey-600);
	font-size: 1.05rem;
}

.eme-post-thumbnail {
	border-radius: var(--eme-radius-lg);
	overflow: hidden;
	margin-bottom: 2.2rem;
	aspect-ratio: 16 / 9;
}
.eme-post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.eme-entry-content,
.eme-page-body { max-width: 780px; }
.eme-entry-content h2,
.eme-page-body h2 { margin-top: 1.8em; }
.eme-entry-content h3,
.eme-page-body h3 { margin-top: 1.4em; }
.eme-entry-content ul,
.eme-page-body ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1.1em; }
.eme-entry-content ul li,
.eme-page-body ul li { margin-bottom: 0.4em; }
.eme-entry-content .eme-form-card,
.eme-page-body .eme-form-card,
.eme-entry-content .eme-cta-banner,
.eme-page-body .eme-cta-banner { max-width: 100%; margin: 2.4rem 0; }

.eme-landmark-list { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.eme-landmark-list li {
	padding-left: 1.3em;
	position: relative;
}
.eme-landmark-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 0; height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid var(--eme-red);
}

.eme-nearby-suburbs { margin: 2rem 0; padding: 1.4rem; background: var(--eme-grey-50); border-radius: var(--eme-radius-md); }
.eme-nearby-suburbs h3 { margin-bottom: 0.7em; }
.eme-nearby-suburbs ul { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.eme-nearby-suburbs a {
	display: inline-block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--eme-black);
	background: var(--eme-white);
	border: 1px solid var(--eme-grey-200);
	padding: 0.45em 0.9em;
	border-radius: var(--eme-radius-pill);
}
.eme-nearby-suburbs a:hover { background: var(--eme-black); color: var(--eme-white); border-color: var(--eme-black); }

.eme-related-service-callout {
	margin: 2rem 0;
	padding: 1.1rem 1.4rem;
	background: var(--eme-red-tint);
	border-left: 4px solid var(--eme-red);
	border-radius: var(--eme-radius-sm);
}
.eme-related-service-callout p { margin: 0; font-weight: 600; color: var(--eme-black); }

.eme-related-links { margin: 2rem 0; }

/* ==========================================================================
   Single post layout w/ sidebar
   ========================================================================== */

.eme-single-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	padding-top: 2.4rem;
	align-items: start;
}

.eme-post-meta { color: var(--eme-grey-400); font-size: 0.88rem; }

.eme-post-nav {
	margin-top: 3rem;
	padding-top: 1.6rem;
	border-top: 1px solid var(--eme-grey-200);
}
.eme-post-nav a { font-family: var(--eme-font-display); font-weight: 700; }

.eme-sidebar { position: sticky; top: 100px; }
.eme-sidebar-card {
	background: var(--eme-grey-50);
	border: 1px solid var(--eme-grey-200);
	border-radius: var(--eme-radius-md);
	padding: 1.6rem;
	margin-bottom: 1.6rem;
}
.eme-sidebar-card h3 { margin-bottom: 0.4em; }
.eme-sidebar-card p { font-size: 0.92rem; color: var(--eme-grey-600); }

.eme-archive-main { min-width: 0; }
.eme-archive-description { color: var(--eme-grey-600); max-width: 640px; }

.eme-pagination { margin-top: 2.5rem; display: flex; gap: 0.6rem; justify-content: center; }
.eme-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px; height: 38px;
	border-radius: var(--eme-radius-sm);
	border: 1px solid var(--eme-grey-200);
	font-family: var(--eme-font-display);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--eme-black);
}
.eme-pagination .page-numbers.current,
.eme-pagination a.page-numbers:hover { background: var(--eme-red); color: var(--eme-white); border-color: var(--eme-red); }

/* ==========================================================================
   Search form (used in search.php, 404.php)
   ========================================================================== */

.search-form {
	display: flex;
	gap: 0.6rem;
}
.search-form .search-field {
	flex: 1;
	padding: 0.8em 1em;
	border-radius: var(--eme-radius-sm);
	border: 1.5px solid var(--eme-grey-200);
	font-size: 0.96rem;
}
.search-form .search-submit {
	font-family: var(--eme-font-display);
	font-weight: 700;
	padding: 0.8em 1.4em;
	border-radius: var(--eme-radius-sm);
	border: none;
	background: var(--eme-black);
	color: var(--eme-white);
}
.search-form .search-submit:hover { background: var(--eme-red); }

/* ==========================================================================
   404 page
   ========================================================================== */

.eme-404-page { padding-top: 3rem; padding-bottom: 1rem; }
.eme-404-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
	margin-bottom: 3rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.eme-hero-grid { grid-template-columns: 1fr; }
	.eme-hero-form-wrap { max-width: 560px; }
	.eme-why-grid,
	.eme-services-grid,
	.eme-blog-grid,
	.eme-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
	.eme-footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
	.eme-footer-col:last-child { grid-column: 1 / -1; }
	.eme-single-layout { grid-template-columns: 1fr; }
	.eme-sidebar { position: static; }
}

@media (max-width: 782px) {
	.eme-primary-nav {
		position: fixed;
		top: 84px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--eme-white);
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem var(--eme-gutter);
		gap: 1rem;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
		margin-left: 0;
	}
	.eme-primary-nav.is-open { transform: translateX(0); }
	.eme-primary-menu { flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
	.eme-nav-cta { width: 100%; }
	.eme-mobile-toggle { display: flex; }

	.eme-form-grid { grid-template-columns: 1fr; }

	.eme-why-grid,
	.eme-services-grid,
	.eme-blog-grid,
	.eme-testimonials-grid { grid-template-columns: 1fr; }

	.eme-footer-top { grid-template-columns: 1fr; }
	.eme-footer-col:last-child { grid-column: auto; }
	.eme-footer-bottom-inner { flex-direction: column; align-items: flex-start; }

	section { padding: 2.6rem 0; }
}

@media (max-width: 480px) {
	.eme-eyebrow { font-size: 0.72rem; }
	.eme-btn { width: 100%; }
	.eme-inline-cta { width: auto; display: inline-flex; }
}
