/* Sydney Roofing — layout, hero, navigation, components */

:root {
	--sr-accent: #e85d33;
	--sr-accent-hover: #f06f45;
	--sr-bg: #000000;
	--sr-bg-soft: #1a1a1a;
	--sr-header-topbar: #000000;
	--sr-header-bar: #1c1c1c;
	--sr-nav-muted: #cccccc;
	--sr-text: #ffffff;
	--sr-muted: rgba(255, 255, 255, 0.82);
	--sr-font-head: "Bebas Neue", "Impact", system-ui, sans-serif;
	--sr-font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
	--sr-container: 1200px;
	--sr-header-z: 50;
	--sr-header-compact-height: 4rem;
}

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

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

body {
	margin: 0;
	font-family: var(--sr-font-body);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--sr-text);
	background: var(--sr-bg);
}

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

a {
	color: var(--sr-accent);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--sr-accent-hover);
}

a:focus-visible {
	outline: 2px solid var(--sr-accent);
	outline-offset: 2px;
}

.container {
	width: 100%;
	max-width: var(--sr-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Wider / offset layout on larger screens; matches .container on small viewports */
.container1 {
	width: 100%;
	max-width: var(--sr-container);
	margin-left: 10rem;
	margin-right: auto;
}

@media (max-width: 767px) {
	.container1 {
		margin-left: auto;
		margin-right: auto;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

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

.skip-link:focus {
	clip: auto !important;
	clip-path: none;
	height: auto;
	width: auto;
	left: 0.5rem;
	top: 0.5rem;
	padding: 0.75rem 1rem;
	background: var(--sr-accent);
	color: #fff;
	z-index: 100000;
}

/* ——— Top bar ——— */
.top-bar {
	background: var(--sr-header-topbar);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	color: #fff;
	transition:
		max-height 0.35s ease,
		opacity 0.28s ease,
		visibility 0.28s ease,
		border-width 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
	.top-bar {
		transition: none;
	}
}

.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.375rem;
}

.top-bar__mobile-phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--sr-text);
}

.top-bar__mobile-phone .top-bar__phone-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: inherit;
}

.top-bar__desktop {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	color: var(--sr-muted);
}

.top-bar__divider {
	width: 1px;
	height: 0.875rem;
	background: rgba(255, 255, 255, 0.35);
	margin: 0 0.875rem;
	flex-shrink: 0;
}

.top-bar__item {
	color: var(--sr-text);
}

.top-bar__desktop .top-bar__item {
	color: var(--sr-muted);
}

.top-bar__desktop a.top-bar__item {
	color: var(--sr-text);
}

@media (min-width: 768px) {
	.top-bar__mobile-phone {
		display: none;
	}

	.top-bar__desktop {
		display: flex;
	}

	.top-bar__inner {
		justify-content: center;
	}
}

/* ——— Site header ——— */
/* Fixed on all pages / viewports; main offset via --sr-inner-header-pad (nav.js). */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: calc(var(--sr-header-z) + 10);
}

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

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

.site-header .site-header__bar {
	position: relative;
	top: auto;
	z-index: auto;
}

#main-content {
	padding-top: var(--sr-inner-header-pad, 7.25rem);
}

.site-header__bar {
	background: var(--sr-header-bar);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-header-past-top .site-header__bar {
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

/* After scroll: hide top bar, glass bar, compact row — all pages (nav.js: is-header-inner-scrolled). */
.site-header.is-header-inner-scrolled .top-bar {
	max-height: 0;
	min-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	border-width: 0;
	padding: 0;
	margin: 0;
	pointer-events: none;
}

.site-header.is-header-inner-scrolled .site-header__bar {
	background: rgba(28, 28, 28, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.site-header.is-header-inner-scrolled .site-header__inner {
	min-height: var(--sr-header-compact-height);
}

.site-header.is-header-inner-scrolled .site-branding .custom-logo {
	max-height: 3rem;
}

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

@media (min-width: 1024px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		align-items: center;
		min-height: 5rem;
	}
}

.site-branding {
	flex: 0 0 auto;
}

.site-branding__fallback {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	max-width: 100%;
	text-decoration: none;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 4rem;
	overflow: hidden;
}

.site-branding .site-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 3.75rem;
	width: 3.75rem;
	height: 3.75rem;
	overflow: hidden;
}

.site-branding .custom-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.site-branding .site-icon-image {
	width: 100%;
	height: 100%;
	border-radius: 0.35rem;
	display: block;
	object-fit: contain;
}

.site-title {
	font-family: var(--sr-font-head);
	font-size: 1.75rem;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 400;
	display: inline-block;
}

.site-header__bar .site-title {
	color: #ffffff;
}

.site-header__bar .custom-logo-link {
	color: #ffffff;
}

/* ——— Primary navigation ——— */
.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--sr-text);
	margin-left: auto;
	z-index: calc(var(--sr-header-z) + 2);
}

.menu-toggle__bar {
	display: block;
	height: 2px;
	width: 1.5rem;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 1024px) {
	.menu-toggle {
		display: none;
	}
}

body.is-nav-open .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.is-nav-open .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

body.is-nav-open .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-navigation {
	position: fixed;
	inset: 0;
	min-height: 100vh;
	min-height: 100dvh;
	background: var(--sr-bg);
	padding: 6rem 1.5rem 2rem;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
	/* Above fixed .site-header; must not sit under a backdrop-filter ancestor (clips fixed to bar). */
	z-index: calc(var(--sr-header-z) + 20);
}

body.is-nav-open .site-navigation {
	transform: translateX(0);
}

body.is-nav-open {
	overflow: hidden;
}

/* Mobile: bar backdrop-filter traps fixed descendants to the bar box — drawer only covered the strip. */
@media (max-width: 1023px) {
	body.is-nav-open .site-header .site-header__bar {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	body.is-nav-open .site-header.is-header-inner-scrolled .site-header__bar {
		background: var(--sr-header-bar);
	}

	body.is-nav-open .menu-toggle {
		position: relative;
		z-index: calc(var(--sr-header-z) + 35);
	}
}

@media (min-width: 1024px) {
	.site-navigation {
		position: static;
		inset: auto;
		min-height: 0;
		height: auto;
		max-height: none;
		padding: 0;
		transform: none;
		background: transparent;
		overflow: visible;
		justify-self: center;
		z-index: auto;
	}

	body.is-nav-open {
		overflow: visible;
	}
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.primary-menu {
		flex-direction: row;
		align-items: center;
		gap: 0.35rem;
	}
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li.menu-item-has-children {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.primary-menu > li > a {
	display: block;
	padding: 0.85rem 0.5rem;
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sr-nav-muted);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: transparent;
	color: var(--sr-nav-muted);
	cursor: pointer;
}

.submenu-toggle__icon {
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.primary-menu > li.is-submenu-open > .submenu-toggle {
	color: #fff;
}

.primary-menu > li.is-submenu-open > .submenu-toggle .submenu-toggle__icon {
	transform: rotate(225deg);
}

@media (min-width: 1024px) {
	.primary-menu > li.menu-item-has-children {
		display: block;
	}

	.primary-menu > li > a {
		padding: 0.55rem 0.75rem;
		font-size: 0.875rem;
		font-weight: 600;
		letter-spacing: 0.08em;
		border-bottom: none;
	}

	.submenu-toggle {
		display: none;
	}
}

.site-header__bar .primary-menu > li > a:hover,
.site-header__bar .primary-menu > li > a:focus-visible {
	color: #fff;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--sr-accent);
}

.primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.25rem 0 0 0.75rem;
	display: none;
	grid-column: 1 / -1;
}

.primary-menu > li.is-submenu-open > .sub-menu {
	display: block;
}

.primary-menu .sub-menu a {
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	border-bottom: none;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1024px) {
	.primary-menu > li.menu-item-has-children > a {
		padding-right: 1.8rem;
	}

	.primary-menu > li.menu-item-has-children > a::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 0.75rem;
		width: 0.45rem;
		height: 0.45rem;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-65%) rotate(45deg);
		transition: transform 0.2s ease;
	}

	.primary-menu .sub-menu {
		position: absolute;
		top: calc(100% + 0.55rem);
		left: 0;
		min-width: 14rem;
		padding: 0.5rem 0;
		display: block;
		background: rgba(20, 20, 20, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 12px;
		box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
		opacity: 0;
		visibility: hidden;
		transform: translateY(0.45rem);
		pointer-events: none;
		transition:
			opacity 0.2s ease,
			transform 0.2s ease,
			visibility 0.2s ease;
		z-index: calc(var(--sr-header-z) + 5);
	}

	.primary-menu .sub-menu::before {
		content: '';
		position: absolute;
		top: -0.7rem;
		left: 0;
		right: 0;
		height: 0.7rem;
	}

	.primary-menu .sub-menu a {
		display: block;
		padding: 0.7rem 1rem;
		font-size: 0.8125rem;
		line-height: 1.35;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.88);
		white-space: nowrap;
	}

	.primary-menu .sub-menu a:hover,
	.primary-menu .sub-menu a:focus-visible {
		background: rgba(232, 93, 51, 0.12);
		color: #fff;
	}

	.primary-menu > li:hover > .sub-menu,
	.primary-menu > li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.primary-menu > li:hover > a::after,
	.primary-menu > li:focus-within > a::after {
		transform: translateY(-35%) rotate(225deg);
	}

	.primary-menu .current-menu-item > a,
	.primary-menu .current-menu-ancestor > a {
		box-shadow: inset 0 -2px 0 var(--sr-accent);
		padding-bottom: 0.45rem;
	}
}

.header-cta {
	display: none;
	white-space: nowrap;
	font-family: var(--sr-font-body);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.7rem 1.35rem;
	background: linear-gradient(180deg, #f06f45 0%, #d94e28 45%, #c73d24 100%);
	color: #fff !important;
	border-radius: 6px;
	justify-self: end;
	box-shadow: 0 2px 12px rgba(217, 78, 40, 0.35);
	transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
	filter: brightness(1.06);
	color: #fff !important;
	box-shadow: 0 4px 16px rgba(217, 78, 40, 0.45);
}

@media (hover: hover) {
	.header-cta:hover,
	.header-cta:focus-visible {
		transform: translateY(-1px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-cta {
		transition: none;
	}

	.header-cta:hover,
	.header-cta:focus-visible {
		transform: none;
	}
}

@media (min-width: 1024px) {
	.header-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

/* ——— Hero ——— */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 6rem 0 0;
	overflow: hidden;
	background: var(--sr-bg);
}

@media (min-width: 1024px) {
	.hero {
		padding-top: 8rem;
	}
}

/* Homepage: hero top padding with fixed site header (main already has header offset). */
body.home .site-main--front > .hero {
	padding-top: clamp(1.25rem, 5vw, 2rem);
}

@media (min-width: 1024px) {
	body.home .site-main--front > .hero {
		padding-top: clamp(1.5rem, 4vw, 2.5rem);
	}
}

body.home .site-main--front .hero__content {
	padding-bottom: 1rem;
}

.hero__media-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__kenburns {
	position: absolute;
	inset: -5%;
	width: 110%;
	height: 110%;
	animation: srKenBurns 22s ease-in-out infinite;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.hero__kenburns {
		animation: none;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.hero__anim,
	.hero-feature--anim {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.hero__scroll-hint {
		animation: none;
		opacity: 0.7;
		transform: translateX(-50%);
	}

	.hero-feature {
		transition: none;
	}

	.btn:hover,
	.btn:focus-visible {
		transform: none;
	}
}

@keyframes srKenBurns {
	0% {
		transform: scale(1);
	}
	82% {
		transform: scale(1.1);
	}
	90% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(0, 0, 0, 0.55) 40%,
		rgba(0, 0, 0, 0.85) 100%
	);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding-top: 1rem;
	padding-left: 1rem;
	max-width: 44rem;
}

.hero__anim {
	opacity: 0;
	transform: translateY(1.35rem);
	animation: srHeroLift 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__anim--1 {
	animation-delay: 0.06s;
}

.hero__anim--2 {
	animation-delay: 0.16s;
}

.hero__anim--3 {
	animation-delay: 0.26s;
}

.hero__anim--4 {
	animation-delay: 0.36s;
}

.hero__anim--5 {
	animation-delay: 0.46s;
}

@keyframes srHeroLift {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.9125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--sr-text);
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid var(--sr-accent);
	border-radius: 4px;
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sr-accent);
	flex-shrink: 0;
}

.hero__title {
	font-family: var(--sr-font-head);
	font-size: clamp(2.5rem, 6vw, 4.75rem);
	line-height: 1.05;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
	color: var(--sr-text);
}

.hero__title-rule {
	display: block;
	width: 5rem;
	height: 3px;
	background: var(--sr-accent);
	margin-bottom: 1rem;
}

.hero__sub {
	margin: 0 0 1.75rem;
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.94);
	max-width: 36rem;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 480px) {
	.hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0 2rem;
	font-weight: 700;
	font-size: 1.075rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 6px;
	border: 2px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
	.btn:hover,
	.btn:focus-visible {
		transform: scale(1.03);
	}
}

.btn--primary {
	background: var(--sr-accent);
	color: #fff !important;
	border-color: var(--sr-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--sr-accent-hover);
	border-color: var(--sr-accent-hover);
	color: #fff !important;
}

.btn--ghost {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.85);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
}

.btn__icon {
	display: inline-flex;
}

.btn__icon svg {
	width: 1.125rem;
	height: 1.125rem;
}

/* ——— Hero features ——— */
.hero__features {
	position: relative;
	z-index: 1;
	width: 100%;
	flex-shrink: 0;
	margin-top: 0;
}

.hero__features-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	padding-bottom: 2.5rem;
}

@media (min-width: 900px) {
	.hero__features-inner {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
		padding-bottom: 3rem;
	}
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 10px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	color: var(--sr-text);
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-feature--anim {
	opacity: 0;
	transform: translateY(1.15rem);
	animation: srHeroLift 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__features-inner .hero-feature--anim:nth-child(1) {
	animation-delay: 0.52s;
}

.hero__features-inner .hero-feature--anim:nth-child(2) {
	animation-delay: 0.6s;
}

.hero__features-inner .hero-feature--anim:nth-child(3) {
	animation-delay: 0.68s;
}

.hero__features-inner .hero-feature--anim:nth-child(4) {
	animation-delay: 0.76s;
}

@media (hover: hover) {
	.hero-feature:hover {
		transform: translateY(-3px);
		border-color: rgba(255, 255, 255, 0.5);
		background: rgba(255, 255, 255, 0.16);
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	}
}

@media (min-width: 900px) {
	.hero-feature {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		min-height: 4.5rem;
	}
}

.hero-feature__icon {
	flex-shrink: 0;
	color: var(--sr-accent);
	display: inline-flex;
}

.hero-feature__icon svg {
	width: 22px;
	height: 22px;
}

.hero__scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 0.35rem;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid rgba(255, 255, 255, 0.55);
	opacity: 0.75;
	animation: srScrollNudge 2.2s ease-in-out infinite;
}

@keyframes srScrollNudge {
	0%,
	100% {
		opacity: 0.45;
		transform: translateX(-50%) translateY(0);
	}

	50% {
		opacity: 0.95;
		transform: translateX(-50%) translateY(5px);
	}
}

/* ——— Interior pages ——— */
.page-hero {
	background: linear-gradient(180deg, var(--sr-bg-soft) 0%, var(--sr-bg) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 3rem 0 2rem;
}

.page-hero__title {
	font-family: var(--sr-font-head);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	color: var(--sr-text);
}

.page-content,
.front-page-content {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
	color: var(--sr-muted);
}

.page-content h2,
.page-content h3,
.front-page-content h2,
.front-page-content h3 {
	font-family: var(--sr-font-head);
	color: var(--sr-text);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-top: 2rem;
}

.page-content a,
.front-page-content a {
	color: var(--sr-accent);
}

/* ——— Blog index ——— */
.post-list {
	padding-bottom: 4rem;
}

.post-card {
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.post-card__title a {
	color: var(--sr-text);
}

.post-card__title a:hover {
	color: var(--sr-accent);
}

.post-card__link {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
}

.pagination {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin: 2rem 0;
}

.pagination a,
.pagination span {
	padding: 0.35rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--sr-text);
}

/* ——— Blog index + single ——— */
.blog-index-page__hero-inner,
.blog-single-page__hero-inner {
	position: relative;
	z-index: 1;
	min-height: clamp(18rem, 34vw, 24rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.blog-index-page__hero-kicker,
.blog-single-page__meta {
	margin: 0 0 0.6rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.blog-index-page__hero-title,
.blog-single-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.blog-index-page__hero-sub {
	margin: 0.9rem auto 0;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.65;
}

.blog-index-page__content {
	padding: 3rem 0 4rem;
	background: #f8f9fa;
}

.blog-index-page__search {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0 0 2rem;
}

.blog-index-page__search input[type='search'] {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	background: #fff;
}

@media (min-width: 700px) {
	.blog-index-page__search {
		flex-direction: row;
		align-items: center;
	}

	.blog-index-page__search input[type='search'] {
		flex: 1 1 auto;
	}
}

.blog-index-page__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.blog-index-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.blog-index-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.blog-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.blog-card__thumb-link {
	display: block;
}

.blog-card__thumb {
	width: 100%;
	height: 14rem;
	object-fit: cover;
	display: block;
}

.blog-card__body {
	padding: 1.25rem;
}

.blog-card__meta {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.blog-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	line-height: 1.35;
}

.blog-card__title a {
	color: #111;
	text-decoration: none;
}

.blog-card__title a:hover,
.blog-card__title a:focus-visible {
	color: var(--sr-accent);
}

.blog-card__excerpt {
	color: #555;
	line-height: 1.65;
}

.blog-card__link,
.blog-single-page__back {
	display: inline-block;
	margin-top: 1rem;
	font-weight: 700;
	color: var(--sr-accent);
	text-decoration: none;
}

.blog-card__link:hover,
.blog-card__link:focus-visible,
.blog-single-page__back:hover,
.blog-single-page__back:focus-visible {
	text-decoration: underline;
}

.blog-index-page__pagination .page-numbers {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0;
	margin: 2rem 0 0;
}

.blog-index-page__pagination .page-numbers a,
.blog-index-page__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	background: #fff;
	color: #111;
	text-decoration: none;
}

.blog-index-page__pagination .page-numbers .current {
	background: var(--sr-accent);
	border-color: var(--sr-accent);
	color: #fff;
}

.blog-single-page__article {
	padding: 3rem 1rem 4rem;
	max-width: 56rem;
}

.blog-single-page__content {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-single-page__content > *:first-child {
	margin-top: 0;
}

.blog-single-page__content > *:last-child {
	margin-bottom: 0;
}

.blog-single-page__content p,
.blog-single-page__content li {
	line-height: 1.8;
	color: #444;
}

.blog-single-page__content h2,
.blog-single-page__content h3,
.blog-single-page__content h4 {
	margin-top: 1.5rem;
	color: #111;
}

.blog-single-page__footer {
	margin-top: 1.25rem;
}

/* ——— Footer ——— */
.site-footer {
	background: var(--sr-bg-soft);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.5rem 0;
	font-size: 0.875rem;
}

.site-footer__copy {
	margin: 0;
	color: var(--sr-muted);
	text-align: center;
}

.site-footer__copy a {
	color: var(--sr-text);
}

/* ——— FAB ——— */
.fab-call {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: var(--sr-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
	z-index: 40;
}

.fab-call:hover,
.fab-call:focus-visible {
	background: var(--sr-accent-hover);
	color: #fff;
}

.fab-call svg {
	width: 1.35rem;
	height: 1.35rem;
}

@media (min-width: 1024px) {
	.fab-call {
		display: none;
	}
}

/* ——— Scroll reveal (subtle) ——— */
.sr-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sr-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.sr-reveal-children > * {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.sr-reveal-children.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

.sr-reveal-children.is-visible > *:nth-child(1) {
	transition-delay: 0.04s;
}

.sr-reveal-children.is-visible > *:nth-child(2) {
	transition-delay: 0.08s;
}

.sr-reveal-children.is-visible > *:nth-child(3) {
	transition-delay: 0.12s;
}

.sr-reveal-children.is-visible > *:nth-child(4) {
	transition-delay: 0.16s;
}

.sr-reveal-children.is-visible > *:nth-child(5) {
	transition-delay: 0.2s;
}

.sr-reveal-children.is-visible > *:nth-child(6) {
	transition-delay: 0.24s;
}

.sr-reveal-children.is-visible > *:nth-child(7) {
	transition-delay: 0.28s;
}

.sr-reveal-children.is-visible > *:nth-child(8) {
	transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
	.sr-reveal,
	.sr-reveal-children > * {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ——— Homepage services section ——— */
.services-section {
	background: #f4f4f4;
	color: #1a1a1a;
	padding: 4rem 0 4.5rem;
}

.services-section__header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.75rem;
}

.services-section__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.services-section__title {
	margin: 0 0 1rem;
	font-family: var(--sr-font-head);
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.1;
}

.services-section__intro {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.service-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem 1.35rem 1.35rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
	.service-card:hover {
		box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
		transform: translateY(-2px);
	}
}

.service-card__blob {
	position: absolute;
	top: -20%;
	right: -15%;
	width: 55%;
	height: 55%;
	background: radial-gradient(circle at center, rgba(232, 93, 51, 0.12) 0%, transparent 70%);
	pointer-events: none;
	border-radius: 50%;
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 8px;
	background: var(--sr-accent);
	color: #fff;
	margin-bottom: 1rem;
}

.service-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.25;
}

.service-card__title a {
	color: #111;
	text-decoration: none;
}

.service-card__title a:hover {
	color: var(--sr-accent);
}

.service-card__excerpt {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #555;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.service-card__link:hover {
	color: var(--sr-accent-hover);
}

.service-card__link-arrow {
	transition: transform 0.2s ease;
}

.service-card__link:hover .service-card__link-arrow {
	transform: translateX(4px);
}

/* ——— Homepage why choose ——— */
.why-choose {
	--why-accent: #e85034;
	position: relative;
	overflow: hidden;
	background: #121212;
	color: #fff;
	padding: 4rem 0 4.75rem;
}

.why-choose__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 85% 55% at 50% 0%, rgba(232, 80, 52, 0.16) 0%, transparent 58%),
		radial-gradient(ellipse 70% 45% at 50% 12%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.why-choose__inner {
	position: relative;
	z-index: 1;
}

.why-choose__header {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2.75rem;
}

.why-choose__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--why-accent);
}

.why-choose__title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.1;
}

.why-choose__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	text-align: center;
	margin: 0 0 2.75rem;
}

@media (min-width: 768px) {
	.why-choose__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem 2rem;
		align-items: start;
	}
}

.why-choose__value {
	font-family: var(--sr-font-head);
	font-size: clamp(3.35rem, 5vw, 4.35rem);
	line-height: 1.05;
	letter-spacing: 0.04em;
	color: var(--why-accent);
	margin: 0 0 0.65rem;
}

.why-choose__label {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ccc;
	line-height: 1.45;
}

.why-choose__body {
	margin: 0 auto;
	max-width: 42rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.65;
	color: #e0e0e0;
}

/* ——— Single service ——— */
body.is-service-single .site-main--service {
	background: #fff;
}

.hero.hero--service {
	min-height: 55vh;
	min-height: 55dvh;
	padding: 5rem 0 3rem;
	justify-content: center;
	align-items: stretch;
}

.hero__media-wrap--empty {
	background: #1a1a1a;
}

.hero__content--service {
	width: 100%;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	align-items: center;
}

/* Single service hero: override base .hero__content flex alignment */
.hero.hero--service .hero__content--single-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.hero.hero--service .hero__content--single-service .hero__service-kicker,
.hero.hero--service .hero__content--single-service .hero__title.hero__title--service,
.hero.hero--service .hero__content--single-service .hero__sub.hero__sub--service {
	width: 100%;
	text-align: center;
}

.hero__service-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.hero__title--service {
	color: #fff;
}

.hero__title-rule--service {
	margin-left: auto;
	margin-right: auto;
}

.hero__sub--service {
	margin-left: auto;
	margin-right: auto;
	color: rgba(255, 255, 255, 0.92);
}

.service-body {
	background: #fff;
	padding-bottom: 4rem;
}

.service-layout {
	display: grid;
	gap: 2.5rem;
	padding-top: 2.5rem;
	align-items: start;
}

@media (min-width: 960px) {
	.service-layout {
		grid-template-columns: 1fr min(360px, 34%);
		gap: 2rem 3rem;
	}
}

.service-content {
	color: #555;
	font-size: 1.0625rem;
	line-height: 1.65;
}

.service-content h2,
.service-content h3 {
	font-family: var(--sr-font-body);
	color: #222;
	text-transform: none;
	letter-spacing: normal;
}

.service-included {
	margin-top: 2.5rem;
}

.service-included__heading {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #333;
}

.service-included__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.service-included__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.service-included__item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: #f0f0f0;
	border-radius: 8px;
	font-size: 0.9375rem;
	color: #444;
	line-height: 1.4;
}

.service-included__check {
	flex-shrink: 0;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: var(--sr-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1rem;
}

.service-included__check svg {
	width: 12px;
	height: 12px;
}

.service-ctas {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

@media (min-width: 480px) {
	.service-ctas {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.btn--outline-dark {
	background: #fff;
	color: #222 !important;
	border-color: #ccc;
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
	background: #fafafa;
	border-color: #bbb;
	color: #111 !important;
}

.btn__icon--dark svg {
	color: #222;
}

.other-services {
	background: #fff;
	border-radius: 12px;
	padding: 1.35rem 1.15rem;
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.other-services__title {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #333;
}

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

.other-services__row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.65rem;
	margin-bottom: 0.5rem;
	background: #f3f3f3;
	border-radius: 8px;
	border: 2px solid transparent;
	text-decoration: none;
	color: #444;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.other-services__row:last-child {
	margin-bottom: 0;
}

.other-services__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 6px;
	background: var(--sr-accent);
	color: #fff;
}

.other-services__label {
	flex: 1;
}

.other-services__chev {
	color: var(--sr-accent);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	font-weight: 700;
}

@media (hover: hover) {
	.other-services__row:hover,
	.other-services__row:focus-visible {
		border-color: rgba(232, 93, 51, 0.55);
		background: #fff;
		box-shadow: 0 2px 12px rgba(232, 93, 51, 0.12);
	}

	.other-services__row:hover .other-services__chev,
	.other-services__row:focus-visible .other-services__chev {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ——— Homepage coverage (suburb chips) ——— */
.coverage-section {
	position: relative;
	background: #f2f2f2;
	color: #222;
	padding: 4rem 0 4.25rem;
	overflow: hidden;
}

.coverage-section__watermark {
	position: absolute;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	font-family: var(--sr-font-head);
	font-size: clamp(5rem, 18vw, 14rem);
	letter-spacing: 0.08em;
	color: rgba(0, 0, 0, 0.035);
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.coverage-section__inner {
	position: relative;
	z-index: 1;
}

.coverage-section__header {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto 2.5rem;
}

.coverage-section__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.coverage-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-head);
	font-size: clamp(2.85rem, 3.5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1a1a1a;
	line-height: 1.1;
}

.coverage-section__sub {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: #555;
}

.coverage-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 0.75rem;
	max-width: 58rem;
	margin: 0 auto 2rem;
}

.coverage-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.9rem;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-size: 0.9375rem;
	font-weight: 600;
	transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.coverage-chip__pin {
	display: inline-flex;
	color: #888;
	transition: color 0.2s ease;
}

.coverage-chip__pin svg {
	width: 1rem;
	height: 1rem;
}

@media (hover: hover) {
	.coverage-chip:hover,
	.coverage-chip:focus-visible {
		border-color: var(--sr-accent);
		color: var(--sr-accent);
		box-shadow: 0 2px 14px rgba(232, 93, 51, 0.15);
		transform: translateY(-2px);
	}

	.coverage-chip:hover .coverage-chip__pin,
	.coverage-chip:focus-visible .coverage-chip__pin {
		color: var(--sr-accent);
	}
}

.coverage-section__footer {
	text-align: center;
	margin: 0;
	font-size: 0.9375rem;
	color: #555;
}

.coverage-section__footer-sep {
	margin: 0 0.35rem;
}

.coverage-section__link {
	color: var(--sr-accent);
	font-weight: 700;
	text-decoration: none;
	margin: 0 0.15rem;
}

.coverage-section__link:hover,
.coverage-section__link:focus-visible {
	text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
	.coverage-chip:hover,
	.coverage-chip:focus-visible {
		transform: none;
	}
}

/* ——— Homepage testimonials ——— */
.testimonials-section {
	--testimonials-accent: #c0533d;
	background: #f7f7f7;
	color: #222;
	padding: 4rem 0 4.5rem;
}

.testimonials-section__header {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 2.75rem;
}

.testimonials-section__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--testimonials-accent);
}

.testimonials-section__title {
	margin: 0 0 1rem;
	font-family: var(--sr-font-head);
	font-size: clamp(2.85rem, 3.5vw, 3.65rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.1;
}

.testimonials-section__trust {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #444;
}

.testimonials-section__trust-prefix {
	color: #444;
}

.testimonials-section__trust-emphasis,
.testimonials-section__trust-link {
	color: var(--testimonials-accent);
}

.testimonials-section__trust-link {
	font-weight: 700;
	text-decoration: none;
}

.testimonials-section__trust-link:hover,
.testimonials-section__trust-link:focus-visible {
	text-decoration: underline;
}

.testimonials-section__trust-stars {
	color: var(--testimonials-accent);
	letter-spacing: 0.06em;
	font-size: 1rem;
	line-height: 1;
}

.testimonials-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 900px) {
	.testimonials-section__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.testimonial-card {
	position: relative;
	background: #fff;
	border-radius: 17px;
	padding: 1.6rem 1.65rem 1.5rem;
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}

.testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 0.35rem;
	right: 1rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.5rem, 8vw, 4.75rem);
	line-height: 1;
	color: rgba(192, 83, 61, 0.2);
	pointer-events: none;
	user-select: none;
}

.testimonial-card__top {
	position: relative;
	z-index: 1;
	margin-bottom: 0.65rem;
}

.testimonial-card__stars {
	display: inline-block;
	color: var(--testimonials-accent);
	letter-spacing: 0.05em;
	font-size: 0.95rem;
	line-height: 1;
}

.testimonial-card__quote {
	margin: 0;
	padding: 0;
	border: 0;
	position: relative;
	z-index: 1;
}

.testimonial-card__quote > p {
	margin: 0 0 1.25rem;
	font-family: var(--sr-font-body);
	font-size: 1rem;
	line-height: 1.65;
	font-style: italic;
	color: #444;
	text-align: left;
}

.testimonial-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	border: 0;
	text-align: left;
}

.testimonial-card__avatar {
	flex-shrink: 0;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 50%;
	background: var(--testimonials-accent);
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--sr-font-body);
}

.testimonial-card__meta {
	min-width: 0;
}

.testimonial-card__name {
	display: block;
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	font-family: var(--sr-font-body);
}

.testimonial-card__suburb {
	margin: 0.2rem 0 0;
	font-size: 0.875rem;
	color: #666;
	font-family: var(--sr-font-body);
}

@media (hover: hover) {
	.testimonial-card:hover,
	.testimonial-card:focus-within {
		transform: translateY(-4px);
		box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	.testimonial-card {
		transition: box-shadow 0.2s ease;
	}

	.testimonial-card:hover,
	.testimonial-card:focus-within {
		transform: none;
		box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
	}
}

/* ——— Reviews page ——— */
body.is-reviews-template .site-main--reviews {
	background: #f2f2f2;
}

.hero.hero--reviews {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	min-height: 48dvh;
	padding: 5rem 0 3.5rem;
	justify-content: center;
	align-items: stretch;
}

.reviews-page__hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 46rem;
	margin: 0 auto;
}

.reviews-page__hero-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c0533d;
}

.reviews-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.reviews-page__hero-sub {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.reviews-page__hero-trust {
	margin: 1.35rem 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

.reviews-page__hero-trust-stars {
	color: #c0533d;
	letter-spacing: 0.06em;
	font-size: 1rem;
	line-height: 1;
}

.reviews-page__hero-trust-prefix {
	color: rgba(255, 255, 255, 0.88);
}

.reviews-page__hero-trust-emphasis,
.reviews-page__hero-trust-link {
	color: #c0533d;
}

.reviews-page__hero-trust-link {
	font-weight: 700;
	text-decoration: none;
}

.reviews-page__hero-trust-link:hover,
.reviews-page__hero-trust-link:focus-visible {
	text-decoration: underline;
}

/* ——— Services landing page ——— */
body.is-services-template .site-main--services {
	background: #fff;
}

.hero.hero--services {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	min-height: 48dvh;
	padding: 5rem 0 3.5rem;
	justify-content: center;
	align-items: stretch;
}

.services-page__hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 46rem;
	margin: 0 auto;
}

.services-page__hero-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.services-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.services-page__hero-sub {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.services-page__grid-wrap {
	background: #fff;
	padding: 3rem 0 3.5rem;
}

.services-page__empty {
	text-align: center;
	color: #666;
	margin: 0;
	padding: 2rem 0;
}

.reviews-page__grid-section.testimonials-section {
	padding-top: 3rem;
	padding-bottom: 3.5rem;
}

.reviews-page__empty {
	text-align: center;
	color: #666;
	margin: 0;
	padding: 2rem 0;
}

.reviews-page__cta-wrap,
.services-page__cta-wrap {
	padding: 2.5rem 1rem 3.5rem;
}

.reviews-page__cta,
.services-page__cta {
	margin: 0 auto;
	max-width: 40rem;
	padding: 2.25rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sr-accent) 0%, #c73d24 100%);
	color: #fff;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.reviews-page__cta-title,
.services-page__cta-title {
	margin: 0 0 0.5rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
}

.reviews-page__cta-sub,
.services-page__cta-sub {
	margin: 0 0 1.35rem;
	opacity: 0.95;
	line-height: 1.55;
	font-size: 1rem;
}

.reviews-page__cta-btn,
.services-page__cta-btn {
	margin-top: 0.25rem;
}

@media (hover: hover) {
	.reviews-page__cta-btn:hover,
	.reviews-page__cta-btn:focus-visible,
	.services-page__cta-btn:hover,
	.services-page__cta-btn:focus-visible {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	}
}

@media (prefers-reduced-motion: reduce) {
	.reviews-page__cta-btn:hover,
	.reviews-page__cta-btn:focus-visible,
	.services-page__cta-btn:hover,
	.services-page__cta-btn:focus-visible {
		transform: none;
		box-shadow: none;
	}
}

/* ——— Gallery page (suburb rotator) ——— */
body.is-gallery-template .site-main--gallery {
	background: #fff;
}

.hero.hero--gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 42vh;
	min-height: 42dvh;
	padding: 5rem 0 3.25rem;
	justify-content: center;
	align-items: stretch;
}

.gallery-page__hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 46rem;
	margin: 0 auto;
}

.gallery-page__hero-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.gallery-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.gallery-page__hero-sub {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.gallery-page__app {
	padding: 2rem 0 4rem;
	outline: none;
}

.gallery-page__app:focus-visible {
	outline: 2px solid var(--sr-accent);
	outline-offset: 4px;
}

.gallery-page__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.gallery-page__tool {
	font-family: var(--sr-font-body);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.55rem 1.1rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
	color: #1a1a1a;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gallery-page__tool:hover,
.gallery-page__tool:focus-visible {
	border-color: var(--sr-accent);
	color: var(--sr-accent);
}

.gallery-page__tool--toggle[aria-pressed='true'] {
	background: var(--sr-header-bar);
	color: #fff;
	border-color: var(--sr-header-bar);
}

.gallery-page__tool-nav {
	display: flex;
	gap: 0.5rem;
}

.gallery-page__tool--icon {
	min-width: 2.5rem;
	padding-left: 0.65rem;
	padding-right: 0.65rem;
	font-size: 1.35rem;
	line-height: 1;
}

.gallery-page__strip-wrap {
	position: relative;
	margin-bottom: 1.75rem;
}

.gallery-page__strip-wrap::before,
.gallery-page__strip-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2rem;
	z-index: 1;
	pointer-events: none;
}

.gallery-page__strip-wrap::before {
	left: 0;
	background: linear-gradient(90deg, #fff 30%, transparent);
}

.gallery-page__strip-wrap::after {
	right: 0;
	background: linear-gradient(270deg, #fff 30%, transparent);
}

.gallery-page__strip {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	overflow-x: auto;
	padding: 0.35rem 0;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.gallery-page__pill {
	flex: 0 0 auto;
	font-family: var(--sr-font-body);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #f7f7f7;
	color: #333;
	cursor: pointer;
	scroll-snap-align: start;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-page__pill:hover,
.gallery-page__pill:focus-visible {
	border-color: var(--sr-accent);
	color: var(--sr-accent);
}

.gallery-page__pill.is-active {
	background: var(--sr-accent);
	border-color: var(--sr-accent);
	color: #fff;
	box-shadow: 0 4px 14px rgba(232, 93, 51, 0.35);
}

.gallery-page__stage-wrap {
	max-width: 56rem;
	margin: 0 auto;
}

.gallery-page__active-title {
	margin: 0 0 0.35rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.5rem, 3vw, 2rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-align: center;
}

.gallery-page__active-link {
	display: block;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--sr-accent);
}

.gallery-page__active-link:hover,
.gallery-page__active-link:focus-visible {
	color: var(--sr-accent-hover);
}

.gallery-page__stage {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #1a1a1a;
	aspect-ratio: 16 / 10;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gallery-page__main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s ease;
}

.gallery-page__main-img.is-swapping {
	opacity: 0.45;
}

.gallery-page__thumbs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding: 0.25rem 0;
	-webkit-overflow-scrolling: touch;
}

.gallery-page__thumbs.is-hidden {
	display: none;
}

.gallery-page__thumb {
	flex: 0 0 auto;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	opacity: 0.75;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-page__thumb:hover,
.gallery-page__thumb:focus-visible {
	opacity: 1;
}

.gallery-page__thumb.is-active {
	opacity: 1;
	border-color: var(--sr-accent);
}

.gallery-page__thumb img {
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	object-fit: cover;
}

.gallery-page__empty-wrap {
	padding: 3rem 0 4rem;
}

.gallery-page__empty {
	text-align: center;
	color: #666;
	margin: 0;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.gallery-page__grid-section {
	padding: 2.5rem 0 4.5rem;
	background: #fff;
}

.gallery-page__photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	max-width: 72rem;
	align-items: start;
}

.gallery-page__photo-cell {
	position: relative;
	min-width: 0;
	background: #e8e8e8;
	overflow: hidden;
}

.gallery-page__photo-link {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	outline: none;
}

.gallery-page__photo-link:focus-visible {
	box-shadow: inset 0 0 0 3px var(--sr-accent);
}

.gallery-page__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-page__photo-link:hover .gallery-page__photo-img,
.gallery-page__photo-link:focus-visible .gallery-page__photo-img {
	transform: scale(1.02);
	opacity: 0.96;
}

.gallery-page__photo-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	max-height: 100%;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.28s ease;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.72) 100%);
	font-family: var(--sr-font-body, 'Source Sans 3', system-ui, sans-serif);
}

.gallery-page__photo-link:hover .gallery-page__photo-overlay,
.gallery-page__photo-link:focus-visible .gallery-page__photo-overlay {
	opacity: 1;
}

.gallery-page__photo-overlay-area {
	max-width: 100%;
	font-size: clamp(0.75rem, 1.5vw, 0.92rem);
	font-weight: 500;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.gallery-page__photo-overlay-area:only-child {
	font-size: clamp(0.85rem, 1.85vw, 1.05rem);
	font-weight: 600;
}

.gallery-page__load-sentinel {
	grid-column: 1 / -1;
	height: 4px;
	margin: 0;
	padding: 0;
	pointer-events: none;
	opacity: 0;
}

@media (max-width: 991px) {
	.gallery-page__photo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 559px) {
	.gallery-page__photo-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gallery-page__main-img {
		transition: none;
	}

	.gallery-page__strip {
		scroll-behavior: auto;
	}

	.gallery-page__photo-img {
		transition: none;
	}

	.gallery-page__photo-link:hover .gallery-page__photo-img,
	.gallery-page__photo-link:focus-visible .gallery-page__photo-img {
		transform: none;
		opacity: 1;
	}

	.gallery-page__photo-overlay {
		transition: none;
	}
}

/* ——— Areas archive /areas/ ——— */
body.is-suburb-archive .site-main--areas-archive {
	background: #f5f5f5;
}

.hero.hero--areas-archive {
	min-height: 50vh;
	min-height: 50dvh;
	padding: 5rem 0 3rem;
	justify-content: center;
	align-items: stretch;
}

.hero.hero--areas-archive .hero__content {
	width: 100%;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	align-items: center;
}

.hero.hero--areas-archive .hero__title-rule--service {
	margin-left: auto;
	margin-right: auto;
}

.areas-archive-body {
	padding: 3rem 0 4rem;
}

.area-region-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.area-region-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.area-region-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.area-region-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.35rem 1.25rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.area-region-card__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.area-region-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 8px;
	background: var(--sr-accent);
	color: #fff;
	flex-shrink: 0;
}

.area-region-card__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.area-region-card__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}

.area-region-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.area-region-card__list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.area-region-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sr-accent);
}

.area-region-card__link {
	color: #444;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.area-region-card__link:hover,
.area-region-card__link:focus-visible {
	color: var(--sr-accent);
}

.areas-archive-empty {
	text-align: center;
	color: #666;
}

.areas-archive-cta {
	margin-top: 2.5rem;
	background: #fff;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.areas-archive-cta__title {
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
}

.areas-archive-cta__text {
	margin: 0 0 1.25rem;
	color: #555;
	line-height: 1.55;
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

/* ——— Single suburb ——— */
body.is-suburb-single .site-main--suburb {
	background: #fff;
}

.hero.hero--suburb {
	min-height: min(72vh, 54rem);
	min-height: min(72dvh, 54rem);
	padding: 0rem 0 1rem 8rem;
	justify-content: flex-start;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.hero.hero--suburb {
		min-height: min(76vh, 58rem);
		min-height: min(76dvh, 58rem);
	}
}

.hero.hero--suburb .hero__overlay {
	background:
		radial-gradient(ellipse 90% 75% at 12% 35%, rgba(34, 34, 34, 0.72) 0%, transparent 55%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.82) 100%);
}

/* Suburb hero: large left inset is for wide screens only — on tablet/phone it squeezed content to the right. */
@media (max-width: 1023px) {
	body.is-suburb-single .hero.hero--suburb {
		padding-left: 0;
		padding-right: 0;
	}

	body.is-suburb-single .hero.hero--suburb .hero__overlay {
		background:
			radial-gradient(ellipse 95% 70% at 50% 20%, rgba(34, 34, 34, 0.55) 0%, transparent 52%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.84) 100%);
	}

	body.is-suburb-single .hero__content--suburb {
		padding-top: clamp(3.25rem, 8vh, 4.75rem);
		padding-bottom: clamp(2rem, 5vh, 3.25rem);
	}

	body.is-suburb-single .hero__content--suburb.container {
		padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
		padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
	}

	body.is-suburb-single .hero__content--suburb .hero__title.hero__title--service {
		font-size: clamp(1.85rem, 5.2vw + 0.85rem, 2.65rem);
		line-height: 1.08;
		max-width: 100%;
	}

	body.is-suburb-single .hero__sub.hero__sub--suburb-intro {
		max-width: 100%;
	}

	body.is-suburb-single .hero__content--suburb .hero__actions.hero__actions--suburb {
		width: 100%;
		max-width: 22rem;
	}

	body.is-suburb-single .hero__content--suburb .hero__actions.hero__actions--suburb .btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 1023px) and (min-width: 768px) {
	body.is-suburb-single .hero__content--suburb.container {
		padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
		padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
	}
}

.hero__content--suburb {
	max-width: none;
	width: 100%;
	text-align: left;
	align-self: stretch;
	align-items: flex-start;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* Space under fixed header (~80–100px) and above trust strip (~100px+) */
	padding-top: clamp(4.5rem, 10vh, 6.5rem);
	padding-bottom: clamp(5rem, 11vh, 7.5rem);
}

@media (min-width: 768px) {
	.hero__content--suburb.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1200px) {
	.hero__content--suburb.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.hero__content--suburb .hero__title.hero__title--service {
	max-width: min(46rem, 100%);
	font-size: clamp(2.4rem, 4.2vw + 1.1rem, 4rem);
	line-height: 1.06;
	letter-spacing: 0.055em;
	margin: 0 0 0.5rem;
	color: #fff;
}

.hero__content--suburb .hero__title-rule.hero__title-rule--service {
	width: 3.5rem;
	height: 4px;
	margin-left: 0;
	margin-right: auto;
	margin-bottom: 1.375rem;
}

.suburb-breadcrumb {
	margin: 0 0 0.625rem;
	font-family: var(--sr-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.45);
}

.suburb-breadcrumb a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.suburb-breadcrumb a:hover,
.suburb-breadcrumb a:focus-visible {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: underline;
}

.suburb-breadcrumb__sep {
	margin: 0 0.35rem;
	opacity: 0.45;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
}

.suburb-breadcrumb__current {
	color: var(--sr-accent);
	font-weight: 700;
}

.hero__suburb-meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.45rem;
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-body);
	font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.hero__suburb-meta-pin {
	display: inline-flex;
	align-items: center;
}

.hero__suburb-meta-pin svg {
	width: 1.125rem;
	height: 1.125rem;
}

/* ~30px gap: intro margin-bottom handles when excerpt exists */
.hero__content--suburb .hero__sub.hero__sub--suburb-intro + .hero__actions.hero__actions--suburb {
	margin-top: 0;
}

/* No excerpt: space after orange rule before CTAs */
.hero__content--suburb .hero__title-rule.hero__title-rule--service + .hero__actions.hero__actions--suburb {
	margin-top: 1.875rem;
}

.hero__content--suburb .hero__actions.hero__actions--suburb {
	justify-content: flex-start;
	align-items: stretch;
	gap: 1rem;
}

@media (min-width: 480px) {
	.hero__content--suburb .hero__actions.hero__actions--suburb {
		align-items: center;
	}
}

.hero__sub.hero__sub--suburb-intro {
	max-width: min(38rem, 100%);
	margin: 0 0 1.875rem;
	text-align: left;
	font-size: clamp(1rem, 1.1vw + 0.85rem, 1.125rem);
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.94);
}

.suburb-trust-bar {
	background: #fff;
	border-bottom: 1px solid #eaeaea;
	padding: 1.125rem 0;
}

.suburb-trust-bar__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
	align-items: center;
}

@media (min-width: 768px) {
	.suburb-trust-bar__inner {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem 1.5rem;
	}
}

.suburb-trust-bar__item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #3a3a3a;
	line-height: 1.35;
}

@media (min-width: 960px) {
	.suburb-trust-bar__item {
		font-size: 0.875rem;
	}
}

.suburb-trust-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 2px solid var(--sr-accent);
	background: transparent;
	color: var(--sr-accent);
	box-sizing: border-box;
}

.suburb-trust-bar__icon svg {
	width: 1.125rem;
	height: 1.125rem;
}

.suburb-body {
	padding-bottom: 4rem;
}

.suburb-layout {
	display: grid;
	gap: 2.5rem;
	padding-top: 2.5rem;
	align-items: start;
}

@media (min-width: 960px) {
	.suburb-layout {
		grid-template-columns: 1fr min(340px, 34%);
		gap: 2rem 2.5rem;
	}
}

.suburb-section-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #222;
	line-height: 1.2;
	text-align: left;
}

.suburb-content {
	color: #555;
	font-size: 1.0625rem;
	line-height: 1.65;
	text-align: left;
}

.suburb-content p {
	margin-top: 0;
}

.suburb-services-grid {
	margin-top: 2.5rem;
	text-align: left;
}

.suburb-post-services {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.suburb-services-grid__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

@media (min-width: 560px) {
	.suburb-services-grid__list {
		grid-template-columns: 1fr 1fr;
	}
}

.suburb-service-pill {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: #f0f0f0;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-size: 0.9375rem;
	border: 2px solid transparent;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.suburb-service-pill__check {
	flex-shrink: 0;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: var(--sr-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.suburb-service-pill__label {
	flex: 1;
}

.suburb-service-pill__arrow {
	color: var(--sr-accent);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	font-weight: 700;
}

@media (hover: hover) {
	.suburb-service-pill:hover,
	.suburb-service-pill:focus-visible {
		border-color: rgba(232, 93, 51, 0.45);
		background: #fff;
		transform: translateY(-1px);
	}

	.suburb-service-pill:hover .suburb-service-pill__arrow,
	.suburb-service-pill:focus-visible .suburb-service-pill__arrow {
		opacity: 1;
		transform: translateX(0);
	}
}

.suburb-testimonial {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.suburb-testimonial--featured {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 1.75rem 1.5rem 1.65rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	text-align: left;
	quotes: none;
}

.suburb-testimonial--featured::before,
.suburb-testimonial--featured::after {
	content: none;
}

.suburb-testimonial__blob {
	position: absolute;
	top: -35%;
	right: -12%;
	width: 52%;
	max-width: 220px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(232, 93, 51, 0.12) 0%, rgba(232, 93, 51, 0.04) 45%, transparent 72%);
	pointer-events: none;
}

.suburb-testimonial__inner {
	position: relative;
	z-index: 1;
	max-width: 100%;
}

.suburb-testimonial__stars {
	color: #c0392b;
	font-size: 1.05rem;
	letter-spacing: 0.12em;
	margin: 0 0 1rem;
	line-height: 1;
}

.suburb-testimonial__quote {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #3a3a3a;
	font-style: italic;
}

.suburb-testimonial__cite {
	display: block;
	font-size: 0.9375rem;
	font-style: normal;
	font-weight: 500;
	color: #888;
}

.suburb-cta-band {
	margin-top: 0;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sr-accent) 0%, #c73d24 100%);
	color: #fff;
	text-align: center;
}

.suburb-cta-band__title {
	margin: 0 0 0.5rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
}

.suburb-cta-band__sub {
	margin: 0 0 1.25rem;
	opacity: 0.95;
	line-height: 1.5;
	font-size: 1rem;
}

.suburb-cta-band__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
}

@media (min-width: 480px) {
	.suburb-cta-band__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.btn--block {
	width: 100%;
}

.btn--dark {
	background: #111;
	color: #fff !important;
	border-color: #111;
}

.btn--dark:hover,
.btn--dark:focus-visible {
	background: #222;
	border-color: #222;
	color: #fff !important;
}

.btn--ghost-light {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.9);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff !important;
}

.suburb-sidebar-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.35rem 1.15rem;
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 1.25rem;
}

.suburb-sidebar-card__title {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #333;
}

.suburb-sidebar-card--contact .btn {
	margin-bottom: 0.75rem;
}

.suburb-sidebar-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	background: #f3f3f3;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.2s ease;
}

.suburb-sidebar-phone:hover,
.suburb-sidebar-phone:focus-visible {
	background: #eaeaea;
	color: #111;
}

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

.suburb-nearby-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 0.75rem;
	margin-bottom: 0.45rem;
	background: #f3f3f3;
	border-radius: 8px;
	text-decoration: none;
	color: #444;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.suburb-nearby-row:last-child {
	margin-bottom: 0;
}

.suburb-nearby-row__pin {
	display: inline-flex;
	color: var(--sr-accent);
	flex-shrink: 0;
}

.suburb-nearby-row__pin svg {
	width: 1rem;
	height: 1rem;
}

.suburb-nearby-row:hover,
.suburb-nearby-row:focus-visible {
	background: #eee;
	color: var(--sr-accent);
}

.suburb-sidebar-services {
	margin-top: 0;
}

.suburb-other-areas {
	background: #f2f2f2;
	padding: 3rem 0;
	margin-top: 2rem;
}

.suburb-other-areas__title {
	margin: 0 0 1.5rem;
	text-align: center;
	font-family: var(--sr-font-head);
	font-size: clamp(1.25rem, 2.2vw, 1.65rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
}

.suburb-other-areas__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 0.65rem;
}

.suburb-other-chip {
	display: inline-block;
	padding: 0.5rem 0.85rem;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	font-size: 0.9375rem;
	font-weight: 600;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
	.suburb-other-chip:hover,
	.suburb-other-chip:focus-visible {
		border-color: var(--sr-accent);
		color: var(--sr-accent);
		transform: translateY(-2px);
		box-shadow: 0 2px 12px rgba(232, 93, 51, 0.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	.suburb-service-pill:hover,
	.suburb-service-pill:focus-visible,
	.suburb-other-chip:hover,
	.suburb-other-chip:focus-visible {
		transform: none;
	}
}

/* ——— Contact page & homepage quote form ——— */
body.is-contact-template .site-main--contact {
	background: #f2f2f2;
}

.hero.hero--contact {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	min-height: 48dvh;
	padding: 5rem 0 3.5rem;
	justify-content: center;
	align-items: stretch;
}

.contact-page__hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 44rem;
	margin: 0 auto;
}

.contact-page__hero-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.contact-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.contact-page__hero-sub {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.contact-page__body {
	padding: 2.5rem 0 3.5rem;
}

.contact-page__notice {
	margin: 0 0 1.25rem;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-weight: 600;
}

.contact-page__notice--success {
	background: rgba(46, 160, 67, 0.12);
	color: #1a5c2e;
	border: 1px solid rgba(46, 160, 67, 0.35);
}

.contact-page__notice--error {
	background: rgba(200, 50, 50, 0.1);
	color: #8b1a1a;
	border: 1px solid rgba(200, 50, 50, 0.3);
}

.contact-page__card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	padding: 1.75rem 1.5rem 2rem;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-page__layout {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.contact-page__layout {
		grid-template-columns: 1fr min(320px, 34%);
		gap: 2.5rem 2rem;
	}
}

.contact-page__form-title {
	margin: 0 0 1.25rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
}

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

.quote-form__grid {
	display: grid;
	gap: 1rem 1.25rem;
}

@media (min-width: 640px) {
	.quote-form__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.quote-form__field--full {
	grid-column: 1 / -1;
}

.quote-form__input,
.quote-form__select,
.quote-form__textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	font-family: var(--sr-font-body);
	font-size: 1rem;
	color: #222;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form__input:focus,
.quote-form__select:focus,
.quote-form__textarea:focus {
	outline: none;
	border-color: var(--sr-accent);
	box-shadow: 0 0 0 2px rgba(232, 93, 51, 0.2);
}

.quote-form__textarea {
	min-height: 8rem;
	resize: vertical;
}

.quote-form__submit-wrap {
	margin: 1.25rem 0 0;
}

.btn.quote-form__submit {
	width: 100%;
	border: none;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.95rem 1.5rem;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, #e97341 0%, #d34a2c 100%);
	box-shadow: 0 4px 18px rgba(211, 74, 44, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

@media (min-width: 640px) {
	.btn.quote-form__submit {
		width: auto;
		min-width: 14rem;
	}
}

@media (hover: hover) {
	.btn.quote-form__submit:hover,
	.btn.quote-form__submit:focus-visible {
		transform: scale(1.03);
		box-shadow: 0 6px 24px rgba(211, 74, 44, 0.45);
		filter: brightness(1.03);
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn.quote-form__submit:hover,
	.btn.quote-form__submit:focus-visible {
		transform: none;
	}
}

.quote-call-card {
	background: linear-gradient(135deg, #e97341 0%, #c0392b 100%);
	border-radius: 12px;
	padding: 1.35rem 1.25rem;
	color: #fff;
	text-align: center;
	margin-bottom: 1.25rem;
}

.quote-call-card__label {
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.quote-call-card__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

.quote-call-card__phone:hover,
.quote-call-card__phone:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.quote-info-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 1.25rem 1.15rem;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.quote-info-card__row {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	margin-bottom: 1.15rem;
}

.quote-info-card__row:last-child {
	margin-bottom: 0;
}

.quote-info-card__row--stack {
	align-items: flex-start;
}

.quote-info-card__icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--sr-accent);
	color: #fff;
}

.quote-info-card__icon svg {
	width: 1.15rem;
	height: 1.15rem;
}

.quote-info-card__key {
	margin: 0 0 0.2rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #333;
}

.quote-info-card__val {
	margin: 0;
	font-size: 0.9375rem;
	color: #555;
	line-height: 1.45;
}

.quote-info-card__val--multiline {
	white-space: pre-line;
}

a.quote-info-card__val {
	color: var(--sr-accent);
	font-weight: 600;
}

.contact-map {
	margin-top: 2rem;
}

.contact-map__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 420px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Homepage quote section */
.home-quote-section {
	background: #f2f2f2;
	padding: 3rem 0 3.5rem;
}

.home-quote-section__header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 1.5rem;
}

.home-quote-section__kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a33b32;
}

.home-quote-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-head);
	font-size: clamp(2.65rem, 4vw, 3.35rem);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.1;
}

.home-quote-section__link {
	font-weight: 600;
	color: #a33b32;
	text-decoration: none;
}

.home-quote-section__link:hover,
.home-quote-section__link:focus-visible {
	text-decoration: underline;
}

.home-quote-section__notice {
	max-width: 40rem;
	margin: 0 auto 1rem;
	text-align: center;
	padding: 0.75rem;
	border-radius: 8px;
	font-weight: 600;
}

.home-quote-section__notice--success {
	background: rgba(46, 160, 67, 0.12);
	color: #1a5c2e;
}

.home-quote-section__notice--error {
	background: rgba(200, 50, 50, 0.1);
	color: #8b1a1a;
}

.home-quote-section__card {
	background: #fff;
	border-radius: 14px;
	padding: 1.5rem 1.35rem 1.75rem;
	box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.05);
	max-width: var(--sr-container);
	margin: 0 auto;
}

.home-quote-section .contact-page__main,
.home-quote-section .contact-page__aside {
	min-width: 0;
}

/* Suburb map block */
.suburb-map {
	padding: 2rem 0 1rem;
	background: #f5f5f5;
}

.suburb-map .contact-map__frame {
	max-height: 380px;
}

/* ——— About page ——— */
body.is-about-template .site-main--about {
	background: #fff;
}

.hero.hero--about {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	min-height: 48dvh;
	padding: 5rem 0 3.5rem;
	justify-content: center;
	align-items: stretch;
}

.about-page__hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 44rem;
	margin: 0 auto;
}

.about-page__hero-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.about-page__hero-title {
	margin: 0;
	font-family: var(--sr-font-head);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.05;
}

.about-page__hero-sub {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.about-page__story {
	padding: 3.5rem 0 3rem;
	background: #fff;
}

.about-page__story-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.about-page__story-inner {
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
		gap: 3rem;
		align-items: center;
	}
}

.about-page__story-kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.about-page__story-title {
	margin: 0 0 1.25rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.1;
}

.about-page__story-body {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
}

.about-page__story-body p {
	margin: 0 0 1rem;
}

.about-page__story-body p:last-child {
	margin-bottom: 0;
}

.about-page__stats-card {
	background: #fff;
	border-radius: 14px;
	padding: 1.75rem 1.35rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-page__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 1.25rem;
	text-align: center;
}

.about-page__stat-value.sr-stats__value {
	font-family: var(--sr-font-head);
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	line-height: 1.05;
	letter-spacing: 0.04em;
	color: var(--sr-accent);
	margin: 0 0 0.5rem;
}

.about-page__stat-label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #888;
	line-height: 1.4;
}

.about-page__values {
	background: #f8f9fa;
	padding: 3.5rem 0 4rem;
}

.about-page__values-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}

.about-page__values-kicker {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sr-accent);
}

.about-page__values-title {
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.1;
}

.about-page__values-intro {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.55;
	color: #555;
}

.about-page__values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 600px) {
	.about-page__values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.about-page__values-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.about-value-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem 1.35rem 1.35rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-value-card__blob {
	position: absolute;
	top: -18%;
	right: -12%;
	width: 52%;
	height: 52%;
	background: radial-gradient(circle at center, rgba(232, 93, 51, 0.14) 0%, transparent 72%);
	pointer-events: none;
	border-radius: 50%;
}

.about-value-card__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--sr-accent) 0%, #c73d24 100%);
	color: #fff;
	margin-bottom: 1rem;
}

.about-value-card__icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.about-value-card__title {
	position: relative;
	z-index: 1;
	margin: 0 0 0.65rem;
	font-family: var(--sr-font-head);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}

.about-value-card__text {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #555;
}

@media (hover: hover) {
	.about-value-card:hover {
		box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
		transform: translateY(-2px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-value-card {
		transition: box-shadow 0.2s ease;
	}

	.about-value-card:hover {
		transform: none;
	}
}

body.is-about-template .about-page__cta-wrap {
	padding: 2.5rem 1rem 3.5rem;
	background: #fff;
}

.about-page__cta {
	margin: 0 auto;
	max-width: 40rem;
	padding: 2.25rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sr-accent) 0%, #c73d24 100%);
	color: #fff;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-page__cta-title {
	margin: 0 0 0.5rem;
	font-family: var(--sr-font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
}

.about-page__cta-sub {
	margin: 0 0 1.35rem;
	opacity: 0.95;
	line-height: 1.55;
	font-size: 1rem;
}

.about-page__cta-btn {
	margin-top: 0.25rem;
}

@media (hover: hover) {
	.about-page__cta-btn:hover,
	.about-page__cta-btn:focus-visible {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-page__cta-btn:hover,
	.about-page__cta-btn:focus-visible {
		transform: none;
		box-shadow: none;
	}
}

/* ——— Rich footer ——— */
.site-footer--rich {
	background: #141414;
	color: rgba(255, 255, 255, 0.88);
	padding-top: 0;
}

.site-footer--rich .site-footer__inner {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.25rem;
	padding-bottom: 1.5rem;
	margin-top: 0;
}

.site-footer__rich {
	padding: 2.75rem 0 2.25rem;
}

.site-footer__rich-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem 2.5rem;
}

@media (min-width: 600px) {
	.site-footer__rich-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.site-footer__rich-inner {
		grid-template-columns: 1.2fr repeat(3, 1fr);
		align-items: start;
	}
}

.site-footer__logo {
	margin: 0 0 0.75rem;
	font-family: var(--sr-font-head);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__tagline {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	max-width: 22rem;
}

.site-footer__contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.site-footer__contact-item {
	margin: 0 0 0.5rem;
}

.site-footer__contact-item a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.site-footer__heading {
	margin: 0 0 1rem;
	font-family: var(--sr-font-head);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

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

.site-footer__menu li {
	margin: 0 0 0.55rem;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	color: var(--sr-accent);
}

.site-footer--rich .site-footer__copy,
.site-footer--rich .site-footer__copy a {
	color: rgba(255, 255, 255, 0.55);
}
