.n19-site-footer {
	background: #f7f7f7;
	color: #000000;
}

.n19-site-footer a {
	color: inherit;
	text-decoration: none;
}

.n19-site-footer__main {
	padding: 24px 0 0;
}

.n19-site-footer__layout {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.n19-site-footer__brand {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 16px;
}

.n19-site-footer__logo-link {
	display: inline-flex;
	grid-column: 1;
	grid-row: 1;
	width: fit-content;
}

.n19-site-footer__logo-link--text {
	flex-direction: column;
	gap: 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.16em;
	line-height: 0.95;
	text-transform: uppercase;
}

.n19-site-footer__logo {
	display: block;
	width: 120px;
	height: auto;
}

.n19-site-footer__description {
	grid-column: 1 / -1;
	max-width: 350px;
	margin: 0;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.25;
	letter-spacing: 0;
}

.n19-site-footer__social {
	display: inline-flex;
	align-items: center;
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	gap: 16px;
}

.n19-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #000000;
}

.n19-site-footer__social-icon {
	width: 24px;
	height: 24px;
	max-width: none;
	display: block;
	overflow: visible;
}

.n19-site-footer__social-icon--facebook path {
	fill: currentColor;
	stroke: none;
}

.n19-site-footer__social-icon--instagram rect,
.n19-site-footer__social-icon--instagram path,
.n19-site-footer__social-icon--instagram line {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.15;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n19-site-footer__divider--mobile {
	display: block;
	width: 100%;
	height: 1px;
	margin: 24px 0;
	background: #dddddd;
}

.n19-site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.n19-site-footer__contact > .n19-site-footer__heading {
	display: none;
}

.n19-site-footer__heading {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #666666;
}

.n19-site-footer__contact-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.n19-site-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.n19-site-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.n19-site-footer__contact-icon-svg {
	width: 24px;
	height: 24px;
	max-width: none;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	overflow: visible;
}

.n19-site-footer__contact-copy {
	display: grid;
	gap: 0;
}

.n19-site-footer__contact-text {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0;
}

.n19-site-footer__contact-note {
	font-size: 11px;
	font-weight: 300;
	line-height: 1.45;
	color: #666666;
}

.n19-site-footer__contact-text--email {
	white-space: nowrap;
}

.n19-site-footer__menu-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.n19-site-footer__accordion-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.n19-site-footer__accordion-icon {
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	align-items: center;
	justify-content: center;
	color: #498e96;
}

.n19-site-footer__accordion-icon::before,
.n19-site-footer__accordion-icon::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 1.5px;
	background: currentColor;
	top: 15px;
	transition: transform 0.2s ease;
}

.n19-site-footer__accordion-icon::before {
	left: 9px;
	transform: rotate(45deg);
}

.n19-site-footer__accordion-icon::after {
	right: 9px;
	transform: rotate(-45deg);
}

.n19-site-footer__accordion-toggle[aria-expanded="true"] .n19-site-footer__accordion-icon::before {
	transform: rotate(-45deg);
}

.n19-site-footer__accordion-toggle[aria-expanded="true"] .n19-site-footer__accordion-icon::after {
	transform: rotate(45deg);
}

.n19-site-footer__accordion-panel[hidden] {
	display: none;
}

.n19-site-footer__menu-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.n19-site-footer__menu-item {
	margin: 0;
	padding: 0;
}

.n19-site-footer__menu-link {
	display: inline-flex;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.25;
	letter-spacing: 0;
}

.n19-site-footer__menu-link:hover,
.n19-site-footer__menu-link:focus-visible,
.n19-site-footer__contact-item:hover,
.n19-site-footer__contact-item:focus-visible,
.n19-site-footer__social-link:hover,
.n19-site-footer__social-link:focus-visible {
	opacity: 0.72;
}

.n19-site-footer__bottom {
	border-top: 1px solid #dddddd;
	margin-top: 16px;
}

.n19-site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 78px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.n19-site-footer__bottom-copy {
	display: grid;
	gap: 4px;
}

.n19-site-footer__copyright {
	margin: 0;
	font-size: 11px;
	font-weight: 200;
	line-height: 1.35;
}

.n19-site-footer__implementation {
	margin: 0;
	font-size: 11px;
	font-weight: 300;
	line-height: 1.45;
}

.n19-site-footer__implementation a {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.n19-site-footer__scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #498e96;
	color: #ffffff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	box-shadow: 0 8px 20px rgba(73, 142, 150, 0.22);
	transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
}

.n19-site-footer__scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.n19-site-footer__scroll-top:hover,
.n19-site-footer__scroll-top:focus-visible {
	transform: translateY(-2px);
	opacity: 0.92;
}

.n19-site-footer__scroll-top-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 18V7' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M7.5 11.5 12 7l4.5 4.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 18V7' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M7.5 11.5 12 7l4.5 4.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

@media (min-width: 768px) {
	.n19-site-footer__main {
		padding: 80px 0 0;
	}

	.n19-site-footer__layout {
		display: grid;
		grid-template-columns: minmax(0, 1.08fr) repeat(3, minmax(0, 1fr));
		column-gap: 40px;
		align-items: start;
	}

	.n19-site-footer__brand {
		display: flex;
		flex-direction: column;
		order: 1;
	}

	.n19-site-footer__contact {
		order: 4;
	}

	.n19-site-footer__menu-group:first-of-type {
		order: 2;
	}

	.n19-site-footer__menu-group:last-of-type {
		order: 3;
	}

	.n19-site-footer__divider--mobile {
		display: none;
	}

	.n19-site-footer__social {
		justify-self: auto;
		gap: 16px;
	}

	.n19-site-footer__social-link {
		width: 32px;
		height: 32px;
	}

	.n19-site-footer__description {
		max-width: 232px;
	}

	.n19-site-footer__heading {
		display: block;
		font-size: 14px;
	}

	.n19-site-footer__contact-items {
		display: grid;
		gap: 12px;
		align-items: start;
	}

	.n19-site-footer__contact-item {
		gap: 16px;
	}

	.n19-site-footer__contact-icon {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.n19-site-footer__contact-icon-svg {
		width: 32px;
		height: 32px;
	}

	.n19-site-footer__contact-text {
		font-size: 16px;
		line-height: 1;
	}

	.n19-site-footer__menu-link {
		font-size: 13px;
		letter-spacing: 0.02em;
	}

	.n19-site-footer__accordion-toggle {
		pointer-events: none;
	}

	.n19-site-footer__accordion-icon {
		display: none;
	}

	.n19-site-footer__accordion-panel[hidden] {
		display: block;
	}

	.n19-site-footer__bottom {
		margin-top: 80px;
		border-top-color: #ececec;
	}

	.n19-site-footer__bottom-inner {
		min-height: 62px;
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.n19-site-footer__scroll-top {
		right: 32px;
		bottom: 32px;
	}
}

/* Design system alignment */
.n19-site-footer {
	background: var(--surface-muted);
	color: var(--text-body);
}

.n19-site-footer__social-link,
.n19-site-footer__contact-text,
.n19-site-footer__menu-link,
.n19-site-footer__copyright,
.n19-site-footer__implementation {
	color: var(--text-body);
}

.n19-site-footer__heading,
.n19-site-footer__contact-note {
	color: var(--text-muted);
}

.n19-site-footer__divider--mobile {
	background: var(--border-subtle);
}

.n19-site-footer__bottom {
	border-top-color: var(--border-subtle);
}

.n19-site-footer__accordion-icon {
	color: var(--accent);
	background: transparent;
}

.n19-site-footer__scroll-top {
	color: var(--text-inverse);
	background: var(--accent);
}

.n19-site-footer__scroll-top {
	box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 24%, transparent);
}

@media (min-width: 768px) {
	.n19-site-footer__bottom {
		border-top-color: var(--border-subtle);
	}
}
