/* ==========================================================================
   Location Page (Stuart / Jupiter / Palm Beach) — shared template
   ========================================================================== */

/* Hero */

.fae-location-hero__section {
	margin-left: auto;
	margin-right: auto;
	max-width: 1240px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 112px;
	padding-bottom: 96px;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
}

@media (min-width: 640px) {
	.fae-location-hero__section {
		padding-left: 32px;
		padding-right: 32px;
		padding-top: 144px;
		padding-bottom: 112px;
	}
}

.fae-location-hero__pill {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background-color: rgba(255, 255, 255, 0.03);
	padding: 0 16px;
	font-size: 12px;
	color: #8a8a8f;
}

.fae-location-hero__pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background-color: #c6f135;
	box-shadow: 0 0 10px #c6f135;
}

.fae-location-hero__title {
	max-width: 900px;
	font-size: clamp(3rem, 6.4vw, 5.5rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.055em;
}

.fae-location-hero__subline {
	max-width: 680px;
	margin-top: 32px;
	font-size: 16px;
	line-height: 1.75;
	color: #b6b6ba;
}

@media (min-width: 640px) {
	.fae-location-hero__subline {
		font-size: 18px;
		line-height: 2;
	}
}

.fae-location-hero__ctas {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 36px;
}

@media (min-width: 640px) {
	.fae-location-hero__ctas {
		flex-direction: row;
		align-items: center;
	}
}

/* Intro */

.fae-location-intro {
	padding-bottom: 48px;
}

@media (min-width: 640px) {
	.fae-location-intro {
		padding-bottom: 64px;
	}
}

.fae-location-intro__heading {
	max-width: 700px;
	margin: 0 0 28px;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

@media (min-width: 640px) {
	.fae-location-intro__heading {
		font-size: 36px;
	}
}

.fae-location-intro__body {
	max-width: 760px;
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: #a8a8b0;
}

@media (min-width: 640px) {
	.fae-location-intro__body {
		font-size: 18px;
	}
}

/* FAQ (location variant — chevron toggle instead of Home's plus/minus badge) */

.fae-location-faq__heading {
	max-width: 760px;
	margin: 0 0 40px;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.04em;
	color: #ffffff;
}

@media (min-width: 640px) {
	.fae-location-faq__heading {
		font-size: 36px;
	}
}

.fae-location-faq__list {
	display: flex;
	flex-direction: column;
	max-width: 820px;
}

.fae-location-faq__list .fae-faq__item {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: none;
	padding-left: 0;
	padding-right: 0;
}

.fae-location-faq__list .fae-faq__item:last-child {
	border-bottom: none;
}

.fae-location-faq__trigger {
	font-size: 16px;
	font-weight: 600;
}

@media (min-width: 640px) {
	.fae-location-faq__trigger {
		font-size: 18px;
	}
}

.fae-location-faq__chevron {
	flex-shrink: 0;
	color: #a8a8b0;
	transition: transform 0.25s ease;
}

.fae-location-faq__trigger[aria-expanded="true"] .fae-location-faq__chevron {
	transform: rotate(180deg);
}