/**
 * Public styles for FAQ and discovery output.
 */

/* FAQ — details/summary, so it works without JavaScript. */
.hc-faq { display: grid; gap: 12px; margin: 24px 0; }

.hc-faq__item {
	border: 1px solid var(--hc-stone, #DDD1C8);
	border-radius: 10px;
	background: rgba(255, 255, 255, .5);
	overflow: hidden;
}

.hc-faq__q {
	cursor: pointer;
	padding: 18px 22px;
	font-family: var(--hc-font-display, Georgia, serif);
	font-size: 1.2rem;
	line-height: 1.35;
	color: var(--hc-eggplant, #301E33);
	list-style: none;
	position: relative;
	padding-right: 52px;
	/* Comfortable tap target on a phone. */
	min-height: 48px;
	display: flex;
	align-items: center;
}

.hc-faq__q::-webkit-details-marker { display: none; }

.hc-faq__q::after {
	content: "+";
	position: absolute;
	right: 22px;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--hc-gold-deep, #A8855F);
	transition: transform .2s ease;
}

.hc-faq__item[open] .hc-faq__q::after { content: "\2212"; }

.hc-faq__q:focus-visible {
	outline: 3px solid var(--hc-gold, #C5A481);
	outline-offset: -3px;
}

.hc-faq__a {
	padding: 0 22px 20px;
	line-height: 1.8;
	color: var(--hc-royal, #482E4F);
}

.hc-faq__a p:last-child { margin-bottom: 0; }

/* Discovery */
.hc-discovery { line-height: 1.8; }

.hc-discovery__summary {
	font-family: var(--hc-font-display, Georgia, serif);
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 28px;
}

.hc-discovery__facts {
	display: grid;
	gap: 2px;
	background: var(--hc-stone, #DDD1C8);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 32px;
}

.hc-discovery__facts > div {
	background: rgba(255, 255, 255, .7);
	padding: 14px 20px;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 16px;
}

.hc-discovery__facts dt {
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--hc-gold-deep, #A8855F);
	margin: 0;
}

.hc-discovery__facts dd { margin: 0; }

.hc-discovery__list { margin: 0 0 28px 1.2em; }
.hc-discovery__list li { margin-bottom: 10px; }
.hc-discovery__muted { color: var(--hc-mauve, #715565); font-size: .9rem; }

@media (max-width: 600px) {
	.hc-discovery__facts > div { grid-template-columns: 1fr; gap: 4px; }
}

/* Contact card */
.hc-contact-card {
	background: rgba(255, 255, 255, .6);
	border: 1px solid var(--hc-stone, #DDD1C8);
	border-radius: 12px;
	padding: 26px 28px;
	margin: 24px 0;
	line-height: 1.8;
}

.hc-contact-card p { margin-bottom: 16px; }
.hc-contact-card p:last-child { margin-bottom: 0; }

.hc-contact-card strong {
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--hc-gold-deep, #A8855F);
}
