/* GuidaMontascale – responsive theme (Bootstrap 5) */

:root {
	--gm-teal: #225061;
	--gm-teal-dark: #1a3d4a;
	--gm-teal-light: #2d6a7f;
	--gm-green: #7cb342;
	--gm-green-light: #a2c94f;
	--gm-cream: #f5f0e6;
	--gm-warm: #f9e9c8;
	--gm-text: #333;
	--gm-muted: #6c757d;
	--gm-radius: 0.5rem;
	--gm-shadow: 0 0.25rem 1rem rgba(34, 80, 97, 0.12);
	--gm-shadow-lg: 0 0.5rem 2rem rgba(34, 80, 97, 0.18);
}

/* ---- Base ---- */

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--gm-text);
	background: #eef2f0;
	min-height: 100vh;
	padding-bottom: 4.5rem;
}

@media (min-width: 992px) {
	body {
		padding-bottom: 0;
	}
}

a {
	color: var(--gm-teal);
	font-weight: 600;
	text-decoration: none;
}

a:hover {
	color: var(--gm-teal-light);
}

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

.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	z-index: 9999;
	padding: 0.5rem 1rem;
	background: var(--gm-teal);
	color: #fff;
	border-radius: var(--gm-radius);
}

.skip-link:focus {
	top: 1rem;
}

/* ---- Utility (legacy classes) ---- */

.br { display: block; }
.h { display: none !important; }
.tc, .aligncenter { text-align: center !important; }
.tl, .alignleft { text-align: left !important; }
.tr, .alignright { text-align: right !important; }
.tj { text-align: justify !important; }
.cl { clear: left; }
.cr { clear: right; }
.cb { clear: both; }
.nobr { white-space: nowrap; }

/* ---- Mobile sticky CTA ---- */

.mobile-cta-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1040;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1rem;
	background: linear-gradient(135deg, var(--gm-green) 0%, var(--gm-green-light) 100%);
	color: #fff !important;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none !important;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	border-top: 3px solid var(--gm-teal);
	transition: transform 0.3s ease, background 0.2s ease;
}

.mobile-cta-bar:hover,
.mobile-cta-bar:focus {
	color: #fff !important;
	background: linear-gradient(135deg, var(--gm-teal-light) 0%, var(--gm-teal) 100%);
}

.mobile-cta-bar__icon {
	font-size: 1.4rem;
	line-height: 1;
}

/* ---- Header / Navbar ---- */

.site-header {
	background: var(--gm-teal);
	box-shadow: var(--gm-shadow);
}

.site-header .navbar {
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
	font-size: 1.15rem;
	color: #fff !important;
}

.navbar-brand:hover {
	color: var(--gm-warm) !important;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	background: var(--gm-green);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	border-radius: 0.35rem;
	letter-spacing: -0.5px;
}

.brand-text {
	line-height: 1.2;
}

.navbar-dark .nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 600;
	padding: 0.5rem 0.85rem !important;
	border-radius: var(--gm-radius);
}

.navbar-dark .nav-link:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.1);
}

.btn-cta-nav {
	background: var(--gm-green) !important;
	color: #fff !important;
	border: 2px solid transparent;
	padding: 0.5rem 1.1rem !important;
	font-weight: 700 !important;
}

.btn-cta-nav:hover {
	background: #fff !important;
	color: var(--gm-teal) !important;
	border-color: #fff;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		background: var(--gm-teal-dark);
		margin: 0.75rem -0.75rem -0.6rem;
		padding: 0.75rem;
		border-radius: 0 0 var(--gm-radius) var(--gm-radius);
	}

	.btn-cta-nav {
		display: block;
		text-align: center;
		margin-top: 0.5rem !important;
	}
}

/* ---- Page layout grid ---- */

#contentContainer {
	background: linear-gradient(180deg, #e8ede9 0%, #f4f6f5 120px);
	padding: 1rem 0 2rem;
}

.content-wrap {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.page-layout,
#text {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	grid-template-areas:
		"hero"
		"sidebar"
		"content"
		"extra"
		"extras";
}

#main-content {
	display: contents;
}

#leading { grid-area: hero; }
#sidebar { grid-area: sidebar; scroll-margin-top: 5rem; }
#textMain { grid-area: content; }
#content-extras { grid-area: extras; }
#text > nav:not(#sidebar) { grid-area: extra; }
main > nav:not(#sidebar) { grid-area: extra; }

@media (min-width: 992px) {
	.page-layout,
	#text {
		grid-template-columns: 1fr 380px;
		grid-template-areas:
			"hero hero"
			"content sidebar"
			"extra sidebar"
			"extras sidebar";
		gap: 1.5rem;
	}

	#sidebar {
		grid-column: 2;
		grid-row: 2 / -1;
		align-self: start;
		position: sticky;
		top: 1rem;
		z-index: 2;
		max-height: calc(100vh - 2rem);
		overflow-y: auto;
	}

	#content-extras {
		grid-area: extras;
	}
}

/* ---- Hero banner ---- */

#leading {
	background:
		linear-gradient(135deg, rgba(34, 80, 97, 0.88) 0%, rgba(45, 106, 127, 0.82) 100%),
		url("home.jpg") center / cover no-repeat;
	border-radius: var(--gm-radius);
	overflow: hidden;
	min-height: 120px;
	display: flex;
	align-items: center;
	box-shadow: var(--gm-shadow);
}

#leading > p {
	margin: 0;
	padding: 1.5rem 1.25rem;
	width: 100%;
	font-size: clamp(1.25rem, 4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#leading > p > b {
	color: var(--gm-green-light);
}

/* ---- Main content card ---- */

#textMain {
	background: #fff;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
	overflow: hidden;
}

#textMain > h1:first-child,
#text h1:first-of-type {
	margin: 0;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
	color: var(--gm-teal);
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	text-align: center;
	border-bottom: 3px solid var(--gm-green);
}

#textMain p,
#text p {
	margin: 0;
	padding: 1rem 1.5rem;
	text-align: justify;
}

#textMain > p:first-of-type,
#textMain > h1 + p {
	padding-top: 1.25rem;
}

#text h1, #text h2, #text h3, #text h4, #text h5, #text h6 {
	margin: 1.5rem 1.5rem 0.75rem;
	color: var(--gm-teal);
	font-weight: 700;
	line-height: 1.25;
	clear: both;
}

#text h2 { font-size: 1.5rem; }
#text h3 { font-size: 1.3rem; }
#text h4 { font-size: 1.15rem; }

#text h2.normal {
	margin: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 400;
	color: var(--gm-text);
	border: 0;
	text-align: justify;
}

#text ul, #text ol, #text dl {
	margin: 0.75rem 1.5rem 1.25rem 2rem;
}

#text dl > dt {
	font-size: 1.1rem;
	font-weight: 700;
}

#text dl > dd {
	margin-bottom: 1rem;
	text-align: justify;
}

/* Comma-separated link lists */

#text ul.commaList {
	list-style: none;
	margin: 0.75rem 1.5rem 1.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0;
	font-size: 0.95rem;
	line-height: 1.8;
}

#text ul.commaList li {
	display: inline;
}

#text ul.commaList li::after {
	content: " · ";
	color: var(--gm-green);
	font-weight: 700;
}

#text ul.commaList li:last-child::after {
	content: "";
}

#text ul.commaList li a span {
	display: none;
}

/* Product photos – block layout (max 800px = risoluzione sorgente) */

#text img[src*="/foto/"],
#text .product-photo img {
	float: none !important;
	display: block;
	clear: both;
	width: min(800px, calc(100% - 3rem));
	max-width: 800px;
	height: auto;
	margin: 1rem auto 1.25rem;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
}

#text .product-photo {
	margin: 0 auto;
	padding: 0;
	max-width: 800px;
	width: 100%;
}

@media (min-width: 768px) {
	#text img[src*="/foto/"],
	#text .product-photo img {
		width: 100%;
		max-width: 800px;
		margin: 1.5rem auto;
		border-radius: 0;
		box-shadow: none;
	}

	#text .product-photo {
		margin: 1rem auto 1.25rem;
		max-width: 800px;
		overflow: hidden;
		border-radius: 0;
		box-shadow: var(--gm-shadow);
	}

	#text .product-photo img {
		margin: 0 auto;
	}

	#text .content-section .product-photo img {
		border-radius: 0;
	}
}

/* Decorative images in articles (layout/, icons) */

#text img.fl:not([src*="/foto/"]),
#text img.fr:not([src*="/foto/"]),
img.alignleft:not([src*="/foto/"]),
img.alignright:not([src*="/foto/"]) {
	float: none;
	display: block;
	margin: 1rem auto;
	max-width: 280px;
	height: auto;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
}

@media (min-width: 768px) {
	#text img.fl:not([src*="/foto/"]),
	img.alignleft:not([src*="/foto/"]) {
		float: left;
		margin: 0.5rem 1.5rem 1rem 0;
		max-width: 220px;
	}

	#text img.fr:not([src*="/foto/"]),
	img.alignright:not([src*="/foto/"]) {
		float: right;
		margin: 0.5rem 0 1rem 1.5rem;
		max-width: 220px;
	}
}

#text img.map,
.geo-map.map {
	float: none;
	display: block;
	margin: 1rem auto;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
}

.geo-map {
	background: #e8ede9;
	border: 2px solid var(--gm-teal);
	overflow: hidden;
	z-index: 1;
}

.geo-map--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	color: var(--gm-teal);
	font-weight: 600;
	background: linear-gradient(135deg, #e8ede9 0%, #f5f8f6 100%);
}

.geo-map .leaflet-control-attribution {
	font-size: 10px;
}

@media (min-width: 576px) {
	#text img.map {
		float: left;
		margin: 0.5rem 1.5rem 1rem 1.5rem;
	}
}

/* Blocco mappa + intro nelle pagine geo */

.geo-header {
	padding: 1rem 1.5rem 0.25rem;
}

.geo-header .geo-map.map {
	float: none;
	margin: 0 auto 1rem;
	max-width: 300px;
}

.geo-header__body h2.normal {
	margin: 0 0 1rem;
	padding: 0;
}

#text .geo-header .content-cta {
	clear: none;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.geo-header {
		display: flex;
		gap: 1.5rem;
		align-items: flex-start;
		padding: 1.25rem 1.5rem 0.75rem;
	}

	.geo-header .geo-map.map {
		flex: 0 0 300px;
		width: 300px;
		max-width: none;
		margin: 0;
	}

	.geo-header__body {
		flex: 1;
		min-width: 0;
	}
}

/* CTA verso il form in sidebar */

#text #arrowRight,
#text a.content-cta {
	display: block;
	clear: both;
	float: none;
	width: fit-content;
	max-width: calc(100% - 3rem);
	margin: 1.25rem auto 1.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	background: var(--gm-green);
	color: #fff;
	border-radius: var(--gm-radius);
	letter-spacing: 0;
	box-shadow: var(--gm-shadow);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

#text #arrowRight:hover,
#text #arrowRight:focus,
#text a.content-cta:hover,
#text a.content-cta:focus {
	background: var(--gm-teal);
	color: #fff;
	transform: translateY(-1px);
}

#text #arrowRight::after {
	display: none;
}

/* ---- Italy map ---- */

#mappaContainer {
	float: none;
	clear: both;
	width: 100%;
	max-width: 320px;
	margin: 1rem auto 1.5rem;
	position: relative;
	border-radius: var(--gm-radius);
	overflow: hidden;
	box-shadow: var(--gm-shadow);
}

#mappaImageMap {
	width: 100%;
	height: auto;
	border: 0;
	display: block;
}

#mappaDisplayName {
	display: none;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	padding: 0.35rem 0.6rem;
	background: var(--gm-teal);
	color: #fff;
	font-size: 0.8rem;
	border-radius: 0.25rem;
	z-index: 10;
}

/* Content sections (homepage lists, ecc.) */

.content-section {
	clear: both;
}

.content-section > h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e3ebe6;
}

.content-section > h3:first-child {
	margin-top: 1.25rem;
}

.content-section .commaList {
	margin-top: 0.5rem;
}

/* ---- Sidebar ---- */

#sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

#sidebar div.sbox {
	background: #fff;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow-lg);
	border: 2px solid var(--gm-teal);
}

#sidebar div.sbox > ul {
	list-style: none;
	margin: 0;
	padding: 0.75rem;
	max-height: 400px;
	overflow-y: auto;
}

#sidebar .sbox-title {
	margin: 0;
	padding: 0.85rem 1rem;
	background: var(--gm-teal);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

#sidebar div.sbox > ul li {
	border-bottom: 1px solid #eee;
}

#sidebar div.sbox > ul li:last-child {
	border-bottom: 0;
}

#sidebar div.sbox > ul a {
	display: block;
	padding: 0.55rem 0.75rem;
	color: var(--gm-text);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 0.25rem;
	text-decoration: none;
}

#sidebar div.sbox > ul a:hover {
	background: var(--gm-cream);
	color: var(--gm-teal);
}

#sidebar p.alert {
	background: linear-gradient(135deg, var(--gm-warm) 0%, #fff5e0 100%);
	border: 0;
	border-bottom: 2px solid var(--gm-green);
	color: var(--gm-teal-dark);
	padding: 1rem 1.25rem;
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	animation: none;
}

#sidebar p.alert.error {
	color: #842029;
	background: #f8d7da;
	border-bottom-color: #dc3545;
}

/* Sidebar info block (__sidebar.php → content-extras) */

#content-extras {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

#content-extras > h3 {
	background: var(--gm-teal);
	color: #fff;
	margin: 0;
	padding: 0.85rem 1rem;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: var(--gm-radius) var(--gm-radius) 0 0;
}

#content-extras > ul:not(.commaList) {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0 0 var(--gm-radius) var(--gm-radius);
	box-shadow: var(--gm-shadow);
	overflow: hidden;
}

#content-extras > ul:not(.commaList) li {
	border-bottom: 1px solid #eee;
}

#content-extras > ul:not(.commaList) li a {
	display: block;
	padding: 0.65rem 1rem;
	color: var(--gm-text);
	font-weight: 600;
	text-decoration: none;
}

#content-extras > ul:not(.commaList) li a:hover {
	background: var(--gm-cream);
	color: var(--gm-teal);
}

#content-extras > p.tc {
	background: #fff;
	padding: 1rem;
	margin: 0;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
	text-align: center;
}

#content-extras > p.tc img {
	max-width: 200px;
}

#content-extras div.sbox {
	background: #fff;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow-lg);
	border: 2px solid var(--gm-teal);
}

#content-extras div.sbox > ul {
	list-style: none;
	margin: 0;
	padding: 0.75rem;
	max-height: 400px;
	overflow-y: auto;
}

#content-extras .sbox-title {
	margin: 0;
	padding: 0.85rem 1rem;
	background: var(--gm-teal);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

#content-extras div.sbox > ul li {
	border-bottom: 1px solid #eee;
}

#content-extras div.sbox > ul li:last-child {
	border-bottom: 0;
}

#content-extras div.sbox > ul a {
	display: block;
	padding: 0.55rem 0.75rem;
	color: var(--gm-text);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 0.25rem;
	text-decoration: none;
}

#content-extras div.sbox > ul a:hover {
	background: var(--gm-cream);
	color: var(--gm-teal);
}

/* Legacy: sidebar info block if still present */

#sidebar > h3 {
	background: var(--gm-teal);
	color: #fff;
	margin: 0;
	padding: 0.85rem 1rem;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: var(--gm-radius) var(--gm-radius) 0 0;
}

#sidebar > ul:not(.commaList) {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0 0 var(--gm-radius) var(--gm-radius);
	box-shadow: var(--gm-shadow);
	overflow: hidden;
}

#sidebar > ul:not(.commaList) li {
	border-bottom: 1px solid #eee;
}

#sidebar > ul:not(.commaList) li a {
	display: block;
	padding: 0.65rem 1rem;
	color: var(--gm-text);
	font-weight: 600;
	text-decoration: none;
}

#sidebar > ul:not(.commaList) li a:hover {
	background: var(--gm-cream);
	color: var(--gm-teal);
}

#sidebar > p.tc {
	background: #fff;
	padding: 1rem;
	margin: 0;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
}

#sidebar > p.tc img {
	max-width: 200px;
}

/* Extra nav (province lists below content) */

#text > nav:not(#sidebar) {
	background: #fff;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
	padding: 1.25rem 1.5rem;
}

#text > nav:not(#sidebar) h2,
#text > nav:not(#sidebar) h3 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
}

/* ---- Forms ---- */

#sidebar form,
#textMain form {
	padding: 0 1rem 1.25rem;
}

form table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 0.75rem;
	padding: 0;
	margin: 0;
}

form table tr {
	display: block;
}

form table th,
form table td {
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	font-size: 0.95rem;
	text-align: left;
}

form table th {
	font-weight: 600;
	color: var(--gm-teal);
	margin-bottom: 0.25rem;
	padding-top: 0.25rem;
}

form table th.nobr {
	white-space: normal;
}

form table td[colspan="2"] {
	margin-top: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
input[type="email"] {
	display: block;
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--gm-text);
	background: #fff;
	border: 2px solid #dee2e6;
	border-radius: var(--gm-radius);
	transition: border-color 0.15s, box-shadow 0.15s;
	box-sizing: border-box;
	min-height: 2.75rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: var(--gm-teal-light);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(34, 80, 97, 0.2);
}

textarea {
	min-height: 100px;
	resize: vertical;
}

select {
	appearance: auto;
	cursor: pointer;
}

/* Privacy row */

form table tr:has(input[type="checkbox"]) th,
form table tr:has(input[type="checkbox"]) td {
	display: inline;
	width: auto;
	vertical-align: top;
}

form table tr:has(input[type="checkbox"]) {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	padding: 0.5rem 0;
}

form table tr:has(input[type="checkbox"]) td {
	font-size: 0.85rem;
	line-height: 1.45;
	flex: 1;
}

input[type="checkbox"] {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	accent-color: var(--gm-teal);
	flex-shrink: 0;
}

/* Submit button */

.coolButton,
form input[type="submit"],
form button[type="submit"] {
	display: block;
	width: 100%;
	padding: 0.9rem 1.5rem;
	margin-top: 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	font-family: inherit;
	line-height: 1.3;
	color: #fff;
	background: linear-gradient(180deg, var(--gm-teal-light) 0%, var(--gm-teal) 100%);
	border: 0;
	border-radius: var(--gm-radius);
	border-bottom: 4px solid var(--gm-teal-dark);
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s;
	text-align: center;
}

.coolButton:hover,
form input[type="submit"]:hover,
form button[type="submit"]:hover {
	background: linear-gradient(180deg, var(--gm-green) 0%, var(--gm-green-light) 100%);
	border-bottom-color: #5a8a2a;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--gm-shadow);
}

#form-processing {
	text-align: center;
	padding: 1rem;
}

form.is-submitting {
	pointer-events: none;
	cursor: wait;
}

form.is-submitting input,
form.is-submitting select,
form.is-submitting textarea {
	cursor: wait;
}

/* ---- Footer ---- */

.site-footer {
	margin-top: auto;
}

.footer-intro {
	background: var(--gm-teal);
	color: rgba(255, 255, 255, 0.95);
	padding: 2rem 0;
}

.footer-intro p {
	margin: 0;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.6;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.footer-links {
	background: var(--gm-teal-dark);
	color: rgba(255, 255, 255, 0.85);
	padding: 1.5rem 0;
}

.footer-home {
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
}

.footer-home:hover {
	color: var(--gm-green-light);
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	font-size: 0.9rem;
}

.footer-nav a:hover {
	color: #fff;
}

.company-info {
	margin-top: 1.25rem !important;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.8rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

/* ---- Print ---- */

@media print {
	.site-header,
	.mobile-cta-bar,
	#sidebar,
	.site-footer {
		display: none !important;
	}

	body {
		padding: 0;
		background: #fff;
	}

	#textMain {
		box-shadow: none;
	}
}
