.emerald-footer {
	border-top: 1px solid var(--emerald-footer-border, var(--emerald-border));
	background: var(--emerald-footer-bg);
	color: var(--emerald-footer-text, var(--emerald-muted));
	font-family: var(--emerald-body-font);
	font-size: 0.9rem;
}

.emerald-footer-inner {
	padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.emerald-footer a {
	color: var(--emerald-footer-link, var(--emerald-text));
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

.emerald-footer a:hover,
.emerald-footer a:focus {
	color: var(--emerald-accent);
}

.emerald-footer-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem 1.15rem;
	padding-bottom: 1rem;
}

.emerald-footer-brand {
	color: var(--emerald-footer-link, var(--emerald-text));
	font-family: var(--emerald-heading-font);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
}

.emerald-footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding: 0 0 1.15rem;
}

.emerald-footer-trust span {
	border: 1px solid var(--emerald-footer-border, var(--emerald-border));
	border-radius: 999px;
	padding: 0.35rem 0.7rem;
	color: var(--emerald-footer-text, var(--emerald-muted));
	font-size: 0.78rem;
}

.emerald-footer-accordions {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--emerald-footer-border, var(--emerald-border));
}

.emerald-footer-accordion {
	border-bottom: 1px solid var(--emerald-footer-border, var(--emerald-border));
}

.emerald-footer-accordion-heading {
	margin: 0;
	font-size: 1rem;
}

.emerald-footer-accordion-trigger {
	width: 100%;
	min-height: 48px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--emerald-footer-link, var(--emerald-text));
	justify-content: space-between;
	padding: 0.9rem 1rem 0.9rem 0;
	font-family: var(--emerald-nav-font);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: left;
	text-transform: uppercase;
}

.emerald-footer-accordion-trigger:hover,
.emerald-footer-accordion-trigger:focus {
	background: transparent;
	color: var(--emerald-accent);
}

.emerald-footer-accordion-icon {
	margin-left: 1rem;
	font-size: 1.05rem;
	line-height: 1;
}

.emerald-footer-accordion-trigger[aria-expanded="true"] .emerald-footer-accordion-icon {
	transform: rotate(45deg);
}

.emerald-footer-accordion-panel {
	padding: 0 1rem 1rem 0;
}

.emerald-footer-accordion-panel ul {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.emerald-footer-accordion-panel a,
.emerald-footer-accordion-panel span {
	color: var(--emerald-footer-text, var(--emerald-muted));
	font-size: 0.86rem;
}

@media (max-width: 900px) {
	.emerald-footer-accordions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.emerald-footer-summary,
	.emerald-footer-trust {
		align-items: flex-start;
		flex-direction: column;
	}

	.emerald-footer-accordions {
		grid-template-columns: 1fr;
	}

	.emerald-footer-accordion-trigger {
		padding-right: 0;
	}
}
