/* home-faq.css — Phase B FAQ section
 * Accessible accordion using native <details>/<summary> — no JS.
 * Tokens-only.
 */

.home-faq {
	padding: 3rem 1rem;
	background: var(--c-white);
}

.home-faq__container {
	max-width: 880px;
	margin: 0 auto;
}

.home-faq__heading {
	margin: 0 0 .5rem;
	font-size: clamp(1.625rem, 4vw, 2.25rem);
	font-weight: 900;
	letter-spacing: -.01em;
	line-height: 1.15;
	color: var(--c-dark);
	text-align: center;
}

.home-faq__heading-accent {
	color: var(--c-orange-brand);
}

.home-faq__intro {
	margin: 0 auto 2rem;
	color: var(--c-dark);
	font-size: 1rem;
	line-height: 1.55;
	text-align: center;
	opacity: .8;
}

.home-faq__list {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.home-faq__item {
	background: var(--c-white);
	border: 1px solid rgba(35, 31, 32, .1);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.home-faq__item[open] {
	border-color: rgba(244, 111, 12, .35);
	box-shadow:
		0 6px 18px rgba(35, 31, 32, .06),
		0 2px 6px rgba(35, 31, 32, .04);
}

.home-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--c-dark);
	letter-spacing: -.005em;
	list-style: none;
}

.home-faq__question::-webkit-details-marker { display: none; }

.home-faq__question:hover {
	color: var(--c-orange-brand);
}

.home-faq__question:focus-visible {
	outline: 2px solid var(--c-orange-brand);
	outline-offset: 2px;
	border-radius: 8px;
}

.home-faq__chevron {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .25s ease;
}

.home-faq__item[open] .home-faq__chevron {
	transform: rotate(180deg);
}

.home-faq__answer {
	padding: 0 1.25rem 1.25rem;
	color: var(--c-dark);
	font-size: .9375rem;
	line-height: 1.6;
	opacity: .85;
}

.home-faq__answer p {
	margin: 0 0 .75rem;
}

.home-faq__answer p:last-child { margin-bottom: 0; }

.home-faq__answer a {
	color: var(--c-orange-deep);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.home-faq__answer a:hover {
	color: var(--c-orange-brand);
}

@media (min-width: 768px) {
	.home-faq {
		padding: 4rem 1.5rem;
	}
	.home-faq__heading {
		margin-bottom: .75rem;
	}
	.home-faq__intro {
		margin-bottom: 2.5rem;
	}
	.home-faq__question {
		padding: 1.25rem 1.5rem;
		font-size: 1.125rem;
	}
	.home-faq__answer {
		padding: 0 1.5rem 1.5rem;
		font-size: 1rem;
	}
}

@media (min-width: 1200px) {
	.home-faq {
		padding: 5rem 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-faq__item,
	.home-faq__chevron {
		transition: none;
	}
}
