/* =====================================
   INTERIOR PAGE HERO
===================================== */

.interior-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 650px;
	padding: 9rem 0 7rem;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.interior-hero__content {
	max-width: 760px;
}

.interior-hero h1 {
	max-width: 760px;
	margin-bottom: 1.5rem;
	color: var(--color-white);
	font-size: clamp(3.2rem, 7vw, 6rem);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.interior-hero p {
	max-width: 650px;
	margin-bottom: 2rem;
	color: var(--color-white-strong);
	font-size: 1.15rem;
	line-height: 1.75;
}

.section-label--light {
	color: var(--color-white-soft);
}


/* =====================================
   FAQ INTERIOR HERO
===================================== */

.faq-page .interior-hero--faq {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.faq-page .interior-hero--faq .interior-hero__content {
	max-width: 680px;
	margin-right: auto;
	margin-left: 0;
	text-align: left;
}

.faq-page .interior-hero--faq .section-label,
.faq-page .interior-hero--faq h1,
.faq-page .interior-hero--faq p {
	text-align: left;
}

.faq-page .interior-hero--faq p {
	max-width: 620px;
	margin-right: 0;
	margin-left: 0;
}

/* =====================================
   SHARED SECTION TITLES
===================================== */

.centered-section-title {
	position: relative;
	margin-bottom: 2rem;
}

.centered-section-title::after {
	content: "";
	display: block;
	width: 150px;
	height: 4px;
	margin: 1rem auto 0;
	background: var(--color-primary);
}

.split-section__content h2,
.property-types .section-heading h2,
.page-cta h2 {
	position: relative;
}

.split-section__content h2::after,
.property-types .section-heading h2::after {
	content: "";
	display: block;
	width: 150px;
	height: 4px;
	margin-top: 1rem;
	background: var(--color-primary);
}


/* =====================================
   PAGE INTRO
===================================== */

.page-intro {
	background: var(--color-white);
}

.page-intro__content {
	max-width: 850px;
	margin: 0 auto;
}

.page-intro__content h2 {
	font-size: clamp(2.6rem, 5vw, 4.4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.page-intro__content p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.85;
}


/* =====================================
   FEATURE CARDS
===================================== */

.neighborhood-features,
.values-section {
	background: var(--color-light);
}

.neighborhood-features .section-heading,
.values-section .section-heading {
	margin-bottom: 4rem;
}

.feature-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-medium);
	background: var(--color-white);
	box-shadow: var(--shadow-small);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-medium);
}

.feature-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 1.5rem;
	border-radius: var(--radius-small);
	background: var(--color-light);
	font-size: 1.8rem;
}

.feature-card h3 {
	margin-bottom: 0.85rem;
	color: var(--color-black);
}

.feature-card p {
	margin-bottom: 0;
}

.feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	text-align: center;
}

.feature-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	font-size: 2rem;
	line-height: 1;
}


/* =====================================
   SPLIT SECTIONS
===================================== */

.split-section {
	background: var(--color-white);
}

.split-section--light {
	background: var(--color-light);
}

.split-section__image {
	overflow: hidden;
	min-height: 520px;
}

.split-section__image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
}

.split-section__content {
	max-width: 580px;
}

.split-section__content h2 {
	margin-bottom: 2rem;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.split-section__content p {
	font-size: 1.05rem;
	line-height: 1.8;
}

.check-list {
	display: grid;
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 2rem;
	color: var(--color-text);
	font-weight: 600;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
}


/* =====================================
   VALUE CARDS
===================================== */

.section-heading__intro {
	max-width: 700px;
	margin: 1.5rem auto 0;
	font-size: 1.05rem;
	line-height: 1.75;
}

.value-card {
	height: 100%;
	padding: 2.5rem;
	border-top: 4px solid var(--color-primary);
	background: var(--color-white);
	box-shadow: var(--shadow-small);
}

.value-card__number {
	margin-bottom: 1.5rem;
	color: var(--color-primary);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.value-card h3 {
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.value-card p {
	margin-bottom: 0;
	line-height: 1.75;
}


/* =====================================
   PROPERTY TYPES
===================================== */

.property-types {
	background: var(--color-black);
	color: var(--color-white);
}

.property-types .section-heading {
	max-width: 750px;
	margin-bottom: 4rem;
}

.property-types .section-heading h2 {
	color: var(--color-white);
	font-size: clamp(2.7rem, 5vw, 4.5rem);
	font-weight: 500;
	letter-spacing: -0.04em;
}

.property-type-card {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
}

.property-type-card__label {
	margin-bottom: 2rem;
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.property-type-card h3 {
	max-width: 480px;
	margin-bottom: 1.5rem;
	color: var(--color-white);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.03em;
}

.property-type-card p {
	max-width: 520px;
	margin-bottom: 2rem;
	color: var(--color-white-soft);
	line-height: 1.75;
}

.property-type-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
	color: var(--color-white);
	font-weight: 700;
}

.property-type-card__link span {
	color: var(--color-primary);
	font-size: 1.4rem;
	transition: transform 0.2s ease;
}

.property-type-card__link:hover {
	color: var(--color-primary);
}

.property-type-card__link:hover span {
	transform: translateX(5px);
}


/* =====================================
   PROCESS
===================================== */

.process-section {
	background: var(--color-white);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 4rem;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.process-step {
	position: relative;
	padding: 3rem 2rem;
	border-right: 1px solid var(--color-border);
}

.process-step:last-child {
	border-right: 0;
}

.process-step__number {
	display: block;
	margin-bottom: 2rem;
	color: var(--color-primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.process-step h3 {
	font-size: 1.6rem;
}

.process-step p {
	margin-bottom: 0;
}


/* =====================================
   PAGE CTA
===================================== */

.page-cta {
	background: var(--color-black);
	color: var(--color-white);
}

.page-cta__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.page-cta h2 {
	max-width: 700px;
	margin-bottom: 1rem;
	color: var(--color-white);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.page-cta p {
	max-width: 620px;
	margin-bottom: 0;
	color: var(--color-white-soft);
	font-size: 1.05rem;
}

.page-cta__buttons {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	gap: 1rem;
}

.btn-outline-light {
	border: 2px solid var(--color-white);
	background: transparent;
	color: var(--color-white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
	border-color: var(--color-white);
	background: var(--color-white);
	color: var(--color-black);
}

/* =====================================
   FAQ SIDEBAR
===================================== */

.faq-content {
	background: var(--color-white);
}

.faq-sidebar {
	position: sticky;
	top: 130px;
	padding: 2rem;
	border-top: 4px solid var(--color-primary);
	background: var(--color-light);
}

.faq-sidebar h2 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
}

.faq-navigation {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-navigation li {
	border-bottom: 1px solid var(--color-border);
}

.faq-navigation a {
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
	color: var(--color-text);
	font-weight: 600;
	transition:
		color 0.2s ease,
		padding-left 0.2s ease;
}

.faq-navigation a::after {
	content: "→";
	color: var(--color-primary);
}

.faq-navigation a:hover {
	padding-left: 0.35rem;
	color: var(--color-primary);
}


/* =====================================
   FAQ GROUPS
===================================== */

.faq-groups {
	display: grid;
	gap: 5rem;
}

.faq-group {
	padding: 0;
	scroll-margin-top: 130px;
}

.faq-group__heading {
	margin-bottom: 2rem;
}

.faq-group__heading h2 {
	position: relative;
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 500;
	letter-spacing: -0.035em;
}

.faq-group__heading h2::after {
	content: "";
	display: block;
	width: 120px;
	height: 4px;
	margin-top: 1rem;
	background: var(--color-primary);
}

.faq-accordion {
	border-top: 1px solid var(--color-border);
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
	position: relative;
	padding: 1.5rem 3.5rem 1.5rem 0;
	color: var(--color-black);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-black);
	border-radius: 50%;
	color: var(--color-black);
	font-size: 1.25rem;
	font-weight: 400;
	transform: translateY(-50%);
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: "−";
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}

.faq-item summary:hover {
	color: var(--color-primary);
}

.faq-item__answer {
	padding: 0 3.5rem 1.75rem 0;
}

.faq-item__answer p {
	margin-bottom: 0;
	line-height: 1.8;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991.98px) {

	.interior-hero {
		min-height: 580px;
		padding: 8rem 0 6rem;
	}

	.split-section__image,
	.split-section__image img {
		min-height: 430px;
	}

	.page-cta__content {
		align-items: flex-start;
		flex-direction: column;
	}

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-step:nth-child(2) {
		border-right: 0;
	}

	.process-step:nth-child(-n + 2) {
		border-bottom: 1px solid var(--color-border);
	}

	.faq-sidebar {
		position: static;
	}
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767.98px) {

	.interior-hero {
		min-height: 520px;
		padding: 7rem 0 4.5rem;
		background-position: center;
	}

	.interior-hero h1 {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.interior-hero p {
		font-size: 1rem;
	}

	.centered-section-title::after,
	.split-section__content h2::after,
	.property-types .section-heading h2::after {
		width: 110px;
		height: 3px;
	}

	.split-section__image,
	.split-section__image img {
		min-height: 320px;
	}

	.split-section__content h2 {
		font-size: clamp(2.3rem, 11vw, 3.2rem);
	}

	.feature-card,
	.value-card,
	.property-type-card {
		padding: 2rem;
	}

	.property-type-card {
		min-height: 340px;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.process-step:last-child {
		border-bottom: 0;
	}

	.page-cta__buttons {
		width: 100%;
		flex-direction: column;
	}

	.page-cta__buttons .btn {
		width: 100%;
	}

	.faq-sidebar {
		padding: 1.5rem;
	}

	.faq-groups {
		gap: 4rem;
	}

	.faq-item summary {
		padding-right: 3rem;
	}

	.faq-item__answer {
		padding-right: 0;
	}
}
