/* =====================================================
   LOCATION (local SEO) PAGES — page-specific styles
   Shared section components live in /css/sections.css,
   global tokens in /style.css.
   Prefix: .loc-
   ===================================================== */

/* --- Hero --- */
.loc-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
	padding: 220px 5% 150px;
	background: var(--bg-primary, #141414);
	overflow: hidden;
}
.loc-hero .hero-bg {
	position: absolute;
	top: -15%; bottom: -15%; left: 0; right: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	will-change: transform;
	z-index: 0;
}
.loc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.68);
	z-index: 1;
}
.loc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	width: 100%;
}
.loc-hero__eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--primary, #4cb2ba);
	margin-bottom: 1.2rem;
}
.loc-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.12;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 1.2rem;
	letter-spacing: -.02em;
	text-transform: uppercase;
}
.loc-hero__sub {
	font-size: .98rem;
	line-height: 1.75;
	color: rgba(212, 212, 212, 0.82);
	max-width: 620px;
	margin: 0 auto 2rem;
}
.loc-hero__cta .cta-button {
	display: inline-flex;
	margin: 0 auto;
}

/* --- Section frame --- */
.content-wrapper.loc-intro-section,
.content-wrapper.loc-why-section,
.content-wrapper.loc-areas-section,
.content-wrapper.loc-services-section,
.content-wrapper.loc-review-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 6rem 2rem;
}
.content-wrapper.loc-why-section,
.content-wrapper.loc-review-section {
	border-top: 1px solid rgba(212, 212, 212, 0.06);
	background: var(--bg-secondary, #0F0F0F);
}

/* --- Intro --- */
.loc-intro {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}
.loc-intro h2 {
	margin: 0 0 1.3rem;
	line-height: 1.12;
}
.loc-intro p {
	font-size: .95rem;
	line-height: 1.8;
	color: var(--text-secondary, #8A8A8A);
	margin: 0 0 1.1rem;
}
.loc-intro p:last-child {
	margin-bottom: 0;
}

/* --- Why grid --- */
.loc-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto;
}
.loc-why {
	text-align: center;
	padding: 2rem 1.6rem;
	border: 1px solid rgba(212, 212, 212, 0.06);
	border-radius: 3px;
	background: var(--bg-tile, #1a1a1a);
}
.loc-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(var(--primary-rgb, 76,178,186), 0.4);
	border-radius: 50%;
	color: var(--primary, #4cb2ba);
	margin-bottom: 1rem;
}
.loc-why__icon svg {
	width: 22px;
	height: 22px;
}
.loc-why h3 {
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 .5rem;
}
.loc-why p {
	font-size: .86rem;
	line-height: 1.65;
	color: var(--text-secondary, #8A8A8A);
	margin: 0;
}

/* --- Areas served --- */
.loc-areas {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 820px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .7rem;
}
.loc-areas li {
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--text-secondary, #8A8A8A);
	border: 1px solid rgba(212, 212, 212, 0.1);
	border-radius: 3px;
	padding: .55rem 1rem;
	background: var(--bg-tile, #1a1a1a);
	transition: border-color .3s ease, color .3s ease;
}
.loc-areas li:hover {
	border-color: rgba(var(--primary-rgb, 76,178,186), 0.4);
	color: var(--text-primary, #D4D4D4);
}
.loc-areas__note {
	text-align: center;
	margin-top: 2rem;
}

/* --- Services quick links --- */
.loc-services {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 860px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .7rem;
}
.loc-services li {
	position: relative;
	padding: 1rem 1rem 1rem 2.6rem;
	border: 1px solid rgba(212, 212, 212, 0.06);
	border-radius: 3px;
	background: var(--bg-tile, #1a1a1a);
	font-size: .9rem;
	font-weight: 600;
	color: var(--text-primary, #D4D4D4);
}
.loc-services li::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border: 1px solid var(--primary, #4cb2ba);
	border-radius: 50%;
}
.loc-services__cta {
	text-align: center;
	margin-top: 2.4rem;
}

/* --- Review --- */
.loc-review {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	border: none;
}
.loc-review__stars {
	color: var(--primary, #4cb2ba);
	letter-spacing: .1em;
	margin-bottom: 1rem;
}
.loc-review p {
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	line-height: 1.6;
	color: var(--text-primary, #D4D4D4);
	font-weight: 400;
	margin: 0 0 1rem;
}
.loc-review cite {
	font-style: normal;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.loc-why-grid {
		grid-template-columns: 1fr;
		max-width: 440px;
	}
}
@media (max-width: 600px) {
	.loc-hero {
		min-height: 72vh;
		padding: 160px 6% 110px;
	}
	.content-wrapper.loc-intro-section,
	.content-wrapper.loc-why-section,
	.content-wrapper.loc-areas-section,
	.content-wrapper.loc-services-section,
	.content-wrapper.loc-review-section {
		padding: 4rem 1.25rem;
	}
	.loc-services {
		grid-template-columns: 1fr;
	}
}
