/* ============================================================
   FAQ — native <details>/<summary> accordion, no JavaScript
   ============================================================ */
.faq-heading {
	margin-bottom: 48px;
}

.faq-list {
	max-width: 72ch;
}

/* ---------- Item ---------- */
.faq-item {
	border-bottom: 1px solid rgba(26, 32, 40, 0.12);
}

.faq-item:first-of-type {
	border-top: 1px solid rgba(26, 32, 40, 0.12);
}

/* ---------- Summary (question row) ---------- */
.faq-question {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 22px 0;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 600;
	color: var(--color-gunmetal);
	line-height: var(--lh-tight);
	user-select: none;
}

/* Remove native triangle in all browsers */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker                 { display: none; }

/* +/− indicator */
.faq-question::after {
	content: '+';
	flex-shrink: 0;
	font-family: var(--font-body);
	font-size: 22px;
	font-weight: 300;
	color: var(--color-sage);
	line-height: 1;
	transition: transform 0.2s ease;
}

.faq-item[open] > .faq-question::after {
	content: '−';
}

.faq-question:hover {
	color: var(--color-sage);
}

/* ---------- Answer ---------- */
.faq-answer {
	padding: 0 0 24px;
}

.faq-answer p {
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: rgba(26, 32, 40, 0.85);
}

.faq-answer p + p {
	margin-top: 0.85em;
}

/* ---------- Rates list ---------- */
.faq-rates {
	list-style: none;
	margin: 14px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.faq-rates li {
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: rgba(26, 32, 40, 0.85);
	padding-left: 16px;
	position: relative;
}

.faq-rates li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--color-sage);
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
	.faq-heading { margin-bottom: 40px; }
}

@media (max-width: 860px) {
	.faq-list { max-width: 100%; }
}

@media (max-width: 430px) {
	.faq-question { padding: 18px 0; font-size: 16px; }
	.faq-heading  { margin-bottom: 32px; }
}
