/* ======================================================
   FAQ PAGE,
   ====================================================== */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
	margin: 0;
	background: var(--brand-cream);
	color: var(--brand-charcoal);
}

.crfaq-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;

	height: 84px;
	display: flex;
	align-items: center;

	background: rgba(35, 35, 35, 0.92);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(6px);
}

.crfaq-topbar-inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;

	position: relative;

	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.crfaq-toplink {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.crfaq-backlink {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 10px 14px;
	border-radius: 999px;

	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 14px;

	color: #ff2db2;
	border: 1px solid rgba(0, 0, 0, 0.18);
	background: transparent;
}

.crfaq-backlink:hover {
	background: rgba(0, 0, 0, 0.06);
}

.crfaq-backicon {
	font-size: 18px;
	line-height: 1;
}

.crfaq-shell {
	padding: 124px 24px 64px;
	max-width: 960px;
	margin: 0 auto;
}

.spacer-10 {
	height: 64px;
}

.crfaq-h1 {
	margin: 0 0 14px;
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.crfaq-sub {
	margin: 0 0 28px;
	opacity: 0.85;
	line-height: 1.5;
}

.crfaq--main- {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 16px;
	padding: 18px 18px;
	background: rgba(255, 255, 255, 0.55);
	
	margin-bottom: 24px;
	
	scroll-margin-top: 110px;
}

.crfaq-row {
	padding: 14px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.10);

	scroll-margin-top: 110px;
}

.crfaq-row:last-child { padding-bottom: 0; }

.crfaq-q {
	margin: 24px 0 6px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.crfaq-a {
	margin: 0 0 14px;
	line-height: 1.6;
	opacity: 0.92;
}

@media (prefers-color-scheme: dark) {
	body {
background: var(--brand-charcoal);
color: var(--brand-cream);
	}

	.crfaq-topbar {
background: rgba(246, 242, 232, 0.92);
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.crfaq-backlink {
color: var(--brand-cream);
border: 1px solid rgba(255, 255, 255, 0.22);
	}

	.crfaq-backlink:hover {
background: rgba(255, 255, 255, 0.08);
	}

	.crfaq--main- {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.16);
	}

	.crfaq-row {
border-top: 1px solid rgba(255, 255, 255, 0.12);
	}
}

.crfaq-link-underline {
	text-decoration: underline;
}

/* ======================================================
   FAQ TITLE + LOGO ROW
   ====================================================== */
.crfaq-titlebar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.crfaq-titlewrap {
	min-width: 0;
}

.crfaq-logowrap {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

@media (max-width: 1100px) {
	.crfaq-titlebar {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		text-align: center;
	}

	.crfaq-logowrap {
		order: -1;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.crfaq-titlewrap {
		width: 100%;
	}

	.crfaq-logowrap img {
		width: 220px;
	}
}


/* ======================================================
   CONTENT SECTION TITLES
   ====================================================== */
.crfaq-section-title {
	margin: -18px -18px 0; /* remove bottom gap */

	padding: 14px 18px;

	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 18px;

	background: var(--brand-charcoal);
	color: var(--brand-cream);

	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

@media (prefers-color-scheme: dark) {
	.crfaq-section-title {
		background: var(--brand-cream);
		color: var(--brand-charcoal);
	}
}

.crfaq-row {
	padding: 10px 0;
}


/* ======================================================
   FAQ ACCORDION MENU, COMPACT GRID
   ====================================================== */
.crfaq-accordion {
	margin: 0 0 24px;

	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.55);

	padding: 12px;
	display: grid;
	gap: 10px;
}

.crfaq-acc-item {
	display: contents;
}

.crfaq-acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;

	padding: 12px 14px;
	border-radius: 12px;

	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;

	color: inherit;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-align: left;
}

.crfaq-acc-contact {
	grid-column: auto;
}

@media (min-width: 900px) {
	.crfaq-acc-contact {
		grid-column: 3;
	}
}

.crfaq-acc-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}

.crfaq-acc-icon {
	font-weight: 900;
	line-height: 1;
}

.crfaq-acc-panel {
	grid-column: 1 / -1;

	margin-top: -2px;
	border-radius: 12px;

	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(0, 0, 0, 0.10);
}

.crfaq-acc-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.crfaq-acc-links a {
	text-decoration: none;
	font-weight: 600;
}

.crfaq-acc-links a:hover {
	text-decoration: underline;
}

@media (min-width: 420px) {
	.crfaq-accordion {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.crfaq-topbar .menu-label {
		display: inline;
		visibility: visible;
		opacity: 1;
		font-size: 14px;
	}

	.crfaq-topbar .menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		white-space: nowrap;
		color:  var(--brand-cream);
	}
}

@media (min-width: 900px) {
	.crfaq-accordion {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (prefers-color-scheme: dark) {
	.crfaq-accordion {
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.16);
	}

	.crfaq-acc-btn {
		border: 1px solid rgba(255, 255, 255, 0.18);
	}

	.crfaq-acc-btn:hover {
		background: rgba(255, 255, 255, 0.06);
	}

	.crfaq-acc-panel {
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.14);
	}
	
		.crfaq-topbar .menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		white-space: nowrap;
		color:  var(--brand-charcoal);
	}
}
