.lf-contact-bubble {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1rem, env(safe-area-inset-bottom));
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: var(--lf-orange);
	color: var(--lf-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.2;
	box-shadow: 0 10px 30px rgba(var(--lf-orange-rgb), 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lf-contact-bubble:hover,
.lf-contact-bubble:focus-visible {
	color: var(--lf-white);
	background: var(--lf-orange-hover);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(var(--lf-orange-rgb), 0.42);
}

.lf-contact-bubble__icon {
	display: inline-flex;
	flex-shrink: 0;
}

.lf-contact-bubble__label {
	white-space: nowrap;
}

.lf-contact-section {
	scroll-margin-top: 6rem;
}

.lf-contact-section__title {
	margin: 0 0 1.25rem;
	font-family: var(--lf-font-subtitle);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	color: var(--lf-navy);
}

.lf-contact-page .lf-contact-section {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.lf-contact-page__intro {
	max-width: 42rem;
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--lf-muted);
}

.lf-contact-layout {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.lf-contact-layout {
		grid-template-columns: minmax(240px, 320px) 1fr;
		gap: 2rem;
	}
}

.lf-contact-aside {
	display: grid;
	gap: 1.5rem;
}

.lf-contact-form-wrap .lf-contact-section {
	margin-top: 0;
}

.lf-contact-form-wrap .lf-form {
	margin: 0;
}

.entry-content > .lf-contact-section {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--lf-border);
}

@media (max-width: 480px) {
	.lf-contact-bubble {
		padding: 0.9rem;
		border-radius: 50%;
	}

	.lf-contact-bubble__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}
